2025-08-14T21:35:00.6643707Z Current runner version: '2.328.0' 2025-08-14T21:35:00.6652468Z Runner name: 'i-0598cc65f7dec76e0' 2025-08-14T21:35:00.6653313Z Runner group name: 'Default' 2025-08-14T21:35:00.6654198Z Machine name: 'EC2AMAZ-VK08H34' 2025-08-14T21:35:00.6657088Z ##[group]GITHUB_TOKEN Permissions 2025-08-14T21:35:00.6659498Z Contents: read 2025-08-14T21:35:00.6660119Z Metadata: read 2025-08-14T21:35:00.6660715Z ##[endgroup] 2025-08-14T21:35:00.6662983Z Secret source: Actions 2025-08-14T21:35:00.6663712Z Prepare workflow directory 2025-08-14T21:35:00.7187075Z Prepare all required actions 2025-08-14T21:35:00.7227323Z Getting action download info 2025-08-14T21:35:00.9434383Z Download action repository 'pytorch/test-infra@main' (SHA:83f58f391e939c10dcb8cb6d745e4cefa3b98a84) 2025-08-14T21:36:05.4615429Z Download action repository 'pytorch/pytorch@main' (SHA:3be70dc30e893b552fc0f23ca06cd8f7949b6d08) 2025-08-14T21:42:04.4388110Z Download action repository 'nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-08-14T21:42:04.6170844Z Download action repository 'seemethere/download-artifact-s3@1da556a7aa0a088e3153970611f6c432d58e80e6' (SHA:1da556a7aa0a088e3153970611f6c432d58e80e6) 2025-08-14T21:42:04.9152121Z Getting action download info 2025-08-14T21:42:05.0238377Z Download action repository 'actions/checkout@v4' (SHA:08eba0b27e820071cde6df949e0beb9ba4906955) 2025-08-14T21:42:05.2760727Z Uses: pytorch/pytorch/.github/workflows/_win-test.yml@refs/heads/main (1fc683cf17c8c673044538d10266c00f92987be2) 2025-08-14T21:42:05.2765028Z ##[group] Inputs 2025-08-14T21:42:05.2765461Z build-environment: win-vs2022-cpu-py3 2025-08-14T21:42:05.2765777Z cuda-version: cpu 2025-08-14T21:42:05.2766921Z test-matrix: {"include": [{"config": "default", "shard": 1, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 2, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 3, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}]} 2025-08-14T21:42:05.2768050Z sync-tag: 2025-08-14T21:42:05.2768829Z timeout-minutes: 240 2025-08-14T21:42:05.2769357Z disable-monitor: false 2025-08-14T21:42:05.2769628Z monitor-log-interval: 5 2025-08-14T21:42:05.2769910Z monitor-data-collect-interval: 1 2025-08-14T21:42:05.2770187Z ##[endgroup] 2025-08-14T21:42:05.2770622Z Complete job name: win-vs2022-cpu-py3 / test (default, 1, 3, lf.windows.4xlarge.nonephemeral) 2025-08-14T21:42:05.3436329Z ##[group]Run git config --global core.longpaths true 2025-08-14T21:42:05.3436924Z git config --global core.longpaths true 2025-08-14T21:42:05.3437276Z git config --global core.symlinks true 2025-08-14T21:42:05.3437597Z  2025-08-14T21:42:05.3437985Z # https://git-scm.com/docs/git-fsmonitor--daemon. The daemon could lock 2025-08-14T21:42:05.3438542Z # the directory on Windows and prevent GHA from checking out as reported 2025-08-14T21:42:05.3439043Z # in https://github.com/actions/checkout/issues/1018 2025-08-14T21:42:05.3439416Z git config --global core.fsmonitor false 2025-08-14T21:42:05.3463504Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:42:05.3464192Z env: 2025-08-14T21:42:05.3464397Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:42:05.3464629Z ##[endgroup] 2025-08-14T21:42:06.0584184Z ##[group]Run pytorch/test-infra/.github/actions/cleanup-runner@main 2025-08-14T21:42:06.0584671Z env: 2025-08-14T21:42:06.0584901Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:42:06.0585139Z ##[endgroup] 2025-08-14T21:42:06.0734514Z ##[group]Run # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-08-14T21:42:06.0735263Z # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-08-14T21:42:06.0735925Z # Below is the list of commands that could lock $GITHUB_WORKSPACE gathered from sysinternals 2025-08-14T21:42:06.0737774Z # handle tool 2025-08-14T21:42:06.0738110Z $processes = "python", "ninja", "cl", "nvcc", "cmd", "sccache", "git" 2025-08-14T21:42:06.0738527Z Foreach ($process In $processes) { 2025-08-14T21:42:06.0738803Z  Try { 2025-08-14T21:42:06.0739350Z  # https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/stop-process 2025-08-14T21:42:06.0740041Z  Get-Process -Name $process -ErrorAction Stop | Stop-Process -Force 2025-08-14T21:42:06.0740432Z  } 2025-08-14T21:42:06.0740617Z  Catch { 2025-08-14T21:42:06.0740934Z  Write-Output "No leftover $process process, continuing" 2025-08-14T21:42:06.0741313Z  Write-Output $_ 2025-08-14T21:42:06.0741538Z  } 2025-08-14T21:42:06.0741716Z } 2025-08-14T21:42:06.0741885Z  2025-08-14T21:42:06.0742341Z # Try it again https://stackoverflow.com/questions/40585754/powershell-wont-terminate-hung-process 2025-08-14T21:42:06.0742904Z # for hung processes 2025-08-14T21:42:06.0743171Z Foreach ($process In $processes) { 2025-08-14T21:42:06.0743442Z  Try { 2025-08-14T21:42:06.0743822Z  (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process}%'").terminate() 2025-08-14T21:42:06.0744267Z  } 2025-08-14T21:42:06.0744444Z  Catch { 2025-08-14T21:42:06.0744668Z  Write-Output $_ 2025-08-14T21:42:06.0744891Z  } 2025-08-14T21:42:06.0745079Z } 2025-08-14T21:42:06.0745250Z  2025-08-14T21:42:06.0745420Z Try { 2025-08-14T21:42:06.0745648Z  # Print all the processes for debugging 2025-08-14T21:42:06.0746211Z  Wmic Path Win32_Process Get Caption,Processid,Commandline | Format-List 2025-08-14T21:42:06.0746644Z } 2025-08-14T21:42:06.0746818Z Catch { 2025-08-14T21:42:06.0747211Z  # Better to write out whatever exception thrown to help debugging any potential issue 2025-08-14T21:42:06.0747669Z  Write-Output $_ 2025-08-14T21:42:06.0747896Z } 2025-08-14T21:42:06.0763686Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-14T21:42:06.0764144Z env: 2025-08-14T21:42:06.0764342Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:42:06.0764573Z ##[endgroup] 2025-08-14T21:42:06.4621618Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-14T21:42:06.4683327Z Finished 2025-08-14T21:42:06.4844833Z No leftover python process, continuing 2025-08-14T21:42:06.5297704Z Get-Process : Cannot find a process with the name "python". Verify the process name and call the cmdlet again. 2025-08-14T21:42:06.5298421Z At C:\actions-runner\_work\_temp\b573a708-acb7-4ac7-8af7-3efd1e618e92.ps1:9 char:5 2025-08-14T21:42:06.5299032Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-14T21:42:06.5299468Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:42:06.5299954Z + CategoryInfo : ObjectNotFound: (python:String) [Get-Process], ProcessCommandException 2025-08-14T21:42:06.5300813Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-14T21:42:06.5301400Z 2025-08-14T21:42:06.5316037Z No leftover ninja process, continuing 2025-08-14T21:42:06.5325019Z Get-Process : Cannot find a process with the name "ninja". Verify the process name and call the cmdlet again. 2025-08-14T21:42:06.5325835Z At C:\actions-runner\_work\_temp\b573a708-acb7-4ac7-8af7-3efd1e618e92.ps1:9 char:5 2025-08-14T21:42:06.5326435Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-14T21:42:06.5326838Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:42:06.5327320Z + CategoryInfo : ObjectNotFound: (ninja:String) [Get-Process], ProcessCommandException 2025-08-14T21:42:06.5328748Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-14T21:42:06.5329345Z 2025-08-14T21:42:06.5341086Z No leftover cl process, continuing 2025-08-14T21:42:06.5351212Z Get-Process : Cannot find a process with the name "cl". Verify the process name and call the cmdlet again. 2025-08-14T21:42:06.5351901Z At C:\actions-runner\_work\_temp\b573a708-acb7-4ac7-8af7-3efd1e618e92.ps1:9 char:5 2025-08-14T21:42:06.5352440Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-14T21:42:06.5352854Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:42:06.5353318Z + CategoryInfo : ObjectNotFound: (cl:String) [Get-Process], ProcessCommandException 2025-08-14T21:42:06.5354148Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-14T21:42:06.5354790Z 2025-08-14T21:42:06.5366758Z No leftover nvcc process, continuing 2025-08-14T21:42:06.5377135Z Get-Process : Cannot find a process with the name "nvcc". Verify the process name and call the cmdlet again. 2025-08-14T21:42:06.5377871Z At C:\actions-runner\_work\_temp\b573a708-acb7-4ac7-8af7-3efd1e618e92.ps1:9 char:5 2025-08-14T21:42:06.5378527Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-14T21:42:06.5378940Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:42:06.5379412Z + CategoryInfo : ObjectNotFound: (nvcc:String) [Get-Process], ProcessCommandException 2025-08-14T21:42:06.5380255Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-14T21:42:06.5380842Z 2025-08-14T21:42:06.5413274Z No leftover sccache process, continuing 2025-08-14T21:42:06.5424035Z Get-Process : Cannot find a process with the name "sccache". Verify the process name and call the cmdlet again. 2025-08-14T21:42:06.5424720Z At C:\actions-runner\_work\_temp\b573a708-acb7-4ac7-8af7-3efd1e618e92.ps1:9 char:5 2025-08-14T21:42:06.5425303Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-14T21:42:06.5425711Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:42:06.5426213Z + CategoryInfo : ObjectNotFound: (sccache:String) [Get-Process], ProcessCommandException 2025-08-14T21:42:06.5427046Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-14T21:42:06.5427689Z 2025-08-14T21:42:06.5440090Z No leftover git process, continuing 2025-08-14T21:42:06.5450943Z Get-Process : Cannot find a process with the name "git". Verify the process name and call the cmdlet again. 2025-08-14T21:42:06.5451662Z At C:\actions-runner\_work\_temp\b573a708-acb7-4ac7-8af7-3efd1e618e92.ps1:9 char:5 2025-08-14T21:42:06.5452224Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-14T21:42:06.5452635Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:42:06.5453168Z + CategoryInfo : ObjectNotFound: (git:String) [Get-Process], ProcessCommandException 2025-08-14T21:42:06.5454019Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-14T21:42:06.5454617Z 2025-08-14T21:42:06.5752170Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-14T21:42:06.5753099Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-14T21:42:06.5753741Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-14T21:42:06.5754213Z At C:\actions-runner\_work\_temp\b573a708-acb7-4ac7-8af7-3efd1e618e92.ps1:21 char:6 2025-08-14T21:42:06.5754781Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-14T21:42:06.5755211Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:42:06.5755815Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-14T21:42:06.5756512Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-14T21:42:06.5757071Z 2025-08-14T21:42:06.5779371Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-14T21:42:06.5780236Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-14T21:42:06.5780850Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-14T21:42:06.5781324Z At C:\actions-runner\_work\_temp\b573a708-acb7-4ac7-8af7-3efd1e618e92.ps1:21 char:6 2025-08-14T21:42:06.5781877Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-14T21:42:06.5782309Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:42:06.5782835Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-14T21:42:06.5783554Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-14T21:42:06.5784114Z 2025-08-14T21:42:06.5806594Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-14T21:42:06.5807476Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-14T21:42:06.5808053Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-14T21:42:06.5808518Z At C:\actions-runner\_work\_temp\b573a708-acb7-4ac7-8af7-3efd1e618e92.ps1:21 char:6 2025-08-14T21:42:06.5809085Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-14T21:42:06.5809505Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:42:06.5809937Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-14T21:42:06.5810623Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-14T21:42:06.5811190Z 2025-08-14T21:42:06.5835673Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-14T21:42:06.5836541Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-14T21:42:06.5837144Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-14T21:42:06.5837602Z At C:\actions-runner\_work\_temp\b573a708-acb7-4ac7-8af7-3efd1e618e92.ps1:21 char:6 2025-08-14T21:42:06.5838160Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-14T21:42:06.5838588Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:42:06.5839017Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-14T21:42:06.5839721Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-14T21:42:06.5840281Z 2025-08-14T21:42:06.5864279Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-14T21:42:06.5865156Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-14T21:42:06.5865942Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-14T21:42:06.5866407Z At C:\actions-runner\_work\_temp\b573a708-acb7-4ac7-8af7-3efd1e618e92.ps1:21 char:6 2025-08-14T21:42:06.5866977Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-14T21:42:06.5867404Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:42:06.5867823Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-14T21:42:06.5868515Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-14T21:42:06.5869067Z 2025-08-14T21:42:06.5891214Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-14T21:42:06.5892064Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-14T21:42:06.5892665Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-14T21:42:06.5893154Z At C:\actions-runner\_work\_temp\b573a708-acb7-4ac7-8af7-3efd1e618e92.ps1:21 char:6 2025-08-14T21:42:06.5893711Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-14T21:42:06.5894139Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:42:06.5894573Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-14T21:42:06.5895252Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-14T21:42:06.5895815Z 2025-08-14T21:42:06.5917565Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-14T21:42:06.5918396Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-14T21:42:06.5918987Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-14T21:42:06.5919443Z At C:\actions-runner\_work\_temp\b573a708-acb7-4ac7-8af7-3efd1e618e92.ps1:21 char:6 2025-08-14T21:42:06.5919999Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-14T21:42:06.5920427Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:42:06.5920845Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-14T21:42:06.5921529Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-14T21:42:06.5922071Z 2025-08-14T21:42:06.7705909Z Caption CommandLine ProcessId 2025-08-14T21:42:06.7706513Z 2025-08-14T21:42:06.7707041Z System Idle Process 0 2025-08-14T21:42:06.7707859Z 2025-08-14T21:42:06.7709071Z System 4 2025-08-14T21:42:06.7709477Z 2025-08-14T21:42:06.7709866Z Registry 168 2025-08-14T21:42:06.7710251Z 2025-08-14T21:42:06.7711164Z smss.exe 408 2025-08-14T21:42:06.7712490Z 2025-08-14T21:42:06.7712765Z csrss.exe 524 2025-08-14T21:42:06.7713143Z 2025-08-14T21:42:06.7713799Z csrss.exe 600 2025-08-14T21:42:06.7714187Z 2025-08-14T21:42:06.7714864Z wininit.exe 652 2025-08-14T21:42:06.7715264Z 2025-08-14T21:42:06.7716015Z winlogon.exe winlogon.exe 672 2025-08-14T21:42:06.7716454Z 2025-08-14T21:42:06.7717648Z services.exe 744 2025-08-14T21:42:06.7718196Z 2025-08-14T21:42:06.7719476Z lsass.exe C:\Windows\system32\lsass.exe 764 2025-08-14T21:42:06.7719987Z 2025-08-14T21:42:06.7720495Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s PlugPlay 892 2025-08-14T21:42:06.7721380Z 2025-08-14T21:42:06.7721823Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p 916 2025-08-14T21:42:06.7722364Z 2025-08-14T21:42:06.7722734Z fontdrvhost.exe "fontdrvhost.exe" 940 2025-08-14T21:42:06.7723202Z 2025-08-14T21:42:06.7723569Z fontdrvhost.exe "fontdrvhost.exe" 944 2025-08-14T21:42:06.7724056Z 2025-08-14T21:42:06.7724539Z svchost.exe C:\Windows\system32\svchost.exe -k RPCSS -p 136 2025-08-14T21:42:06.7725060Z 2025-08-14T21:42:06.7725705Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s LSM 460 2025-08-14T21:42:06.7726250Z 2025-08-14T21:42:06.7726815Z svchost.exe C:\Windows\System32\svchost.exe -k termsvcs -s TermService 472 2025-08-14T21:42:06.7727401Z 2025-08-14T21:42:06.7728606Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService 1116 2025-08-14T21:42:06.7729299Z 2025-08-14T21:42:06.7729611Z dwm.exe "dwm.exe" 1200 2025-08-14T21:42:06.7730078Z 2025-08-14T21:42:06.7730978Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s EventLog 1248 2025-08-14T21:42:06.7731645Z 2025-08-14T21:42:06.7732103Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s gpsvc 1336 2025-08-14T21:42:06.7732653Z 2025-08-14T21:42:06.7733120Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s nsi 1344 2025-08-14T21:42:06.7733670Z 2025-08-14T21:42:06.7734432Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s Dhcp 1384 2025-08-14T21:42:06.7735086Z 2025-08-14T21:42:06.7735572Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s NlaSvc 1464 2025-08-14T21:42:06.7736155Z 2025-08-14T21:42:06.7737873Z NVDisplay.Container.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\Display.NvContainer\NVDisplay.Container.exe -s NVDisplay.ContainerLocalSystem -f C:\ProgramData\NVIDIA\NVDisplay.ContainerLocalSystem.log -l 3 -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\Display.NvContainer\plugins\LocalSystem -r -p 30000 -cfg NVDisplay.ContainerLocalSystem\LocalSystem /ert 1488 2025-08-14T21:42:06.7739699Z 2025-08-14T21:42:06.7740248Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Schedule 1508 2025-08-14T21:42:06.7740815Z 2025-08-14T21:42:06.7741293Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s netprofm 1596 2025-08-14T21:42:06.7741932Z 2025-08-14T21:42:06.7742539Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s TimeBrokerSvc 1636 2025-08-14T21:42:06.7743219Z 2025-08-14T21:42:06.7743669Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s Themes 1732 2025-08-14T21:42:06.7744226Z 2025-08-14T21:42:06.7744688Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s ProfSvc 1740 2025-08-14T21:42:06.7745232Z 2025-08-14T21:42:06.7745735Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s EventSystem 1748 2025-08-14T21:42:06.7746316Z 2025-08-14T21:42:06.7746772Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s SENS 1852 2025-08-14T21:42:06.7747300Z 2025-08-14T21:42:06.7747862Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s Dnscache 1900 2025-08-14T21:42:06.7748445Z 2025-08-14T21:42:06.7748981Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p 1908 2025-08-14T21:42:06.7749613Z 2025-08-14T21:42:06.7750417Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s ShellHWDetection 1976 2025-08-14T21:42:06.7751012Z 2025-08-14T21:42:06.7751502Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s FontCache 2044 2025-08-14T21:42:06.7752088Z 2025-08-14T21:42:06.7752619Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetworkFirewall -p 1720 2025-08-14T21:42:06.7753247Z 2025-08-14T21:42:06.7753858Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s WinHttpAutoProxySvc 2068 2025-08-14T21:42:06.7754580Z 2025-08-14T21:42:06.7755057Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UserManager 2196 2025-08-14T21:42:06.7755620Z 2025-08-14T21:42:06.7756148Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s LanmanWorkstation 2216 2025-08-14T21:42:06.7756778Z 2025-08-14T21:42:06.7757415Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s UmRdpService 2268 2025-08-14T21:42:06.7758076Z 2025-08-14T21:42:06.7758560Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -s CertPropSvc 2436 2025-08-14T21:42:06.7759179Z 2025-08-14T21:42:06.7759653Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s SessionEnv 2472 2025-08-14T21:42:06.7760210Z 2025-08-14T21:42:06.7760599Z spoolsv.exe C:\Windows\System32\spoolsv.exe 2668 2025-08-14T21:42:06.7761079Z 2025-08-14T21:42:06.7761537Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Winmgmt 2744 2025-08-14T21:42:06.7762088Z 2025-08-14T21:42:06.7762581Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s CryptSvc 2752 2025-08-14T21:42:06.7763164Z 2025-08-14T21:42:06.7763716Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s SysMain 2760 2025-08-14T21:42:06.7764365Z 2025-08-14T21:42:06.7764846Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork -p 2768 2025-08-14T21:42:06.7765512Z 2025-08-14T21:42:06.7766142Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s TrkWks 2784 2025-08-14T21:42:06.7766804Z 2025-08-14T21:42:06.7767267Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s WpnService 2792 2025-08-14T21:42:06.7767971Z 2025-08-14T21:42:06.7768457Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s WinRM 2800 2025-08-14T21:42:06.7769033Z 2025-08-14T21:42:06.7769503Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -s W32Time 2808 2025-08-14T21:42:06.7770085Z 2025-08-14T21:42:06.7770715Z IpOverUsbSvc.exe "C:\Program Files (x86)\Common Files\Microsoft Shared\Phone Tools\CoreCon\11.0\bin\IpOverUsbSvc.exe" 3040 2025-08-14T21:42:06.7771420Z 2025-08-14T21:42:06.7771812Z sshd.exe C:\Windows\System32\OpenSSH\sshd.exe 3056 2025-08-14T21:42:06.7772290Z 2025-08-14T21:42:06.7772776Z svchost.exe C:\Windows\System32\svchost.exe -k smbsvcs -s LanmanServer 2964 2025-08-14T21:42:06.7773440Z 2025-08-14T21:42:06.7774083Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe 3092 2025-08-14T21:42:06.7774831Z 2025-08-14T21:42:06.7775385Z svchost.exe C:\Windows\System32\svchost.exe -k NetSvcs -p -s iphlpsvc 3120 2025-08-14T21:42:06.7775935Z 2025-08-14T21:42:06.7776630Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted -p -s PolicyAgent 3552 2025-08-14T21:42:06.7777441Z 2025-08-14T21:42:06.7777851Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 3664 2025-08-14T21:42:06.7778362Z 2025-08-14T21:42:06.7778942Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s lmhosts 1944 2025-08-14T21:42:06.7779607Z 2025-08-14T21:42:06.7780090Z LogonUI.exe "LogonUI.exe" /flags:0x2 /state0:0xa3a77055 /state1:0x41c64e6d 2736 2025-08-14T21:42:06.7780668Z 2025-08-14T21:42:06.7782347Z NVDisplay.Container.exe "C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\Display.NvContainer\NVDisplay.Container.exe" -f %ProgramData%\NVIDIA\DisplaySessionContainer%d.log -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\Display.NvContainer\plugins\Session -r -l 3 -p 30000 -cfg NVDisplay.ContainerLocalSystem\Session /ert -c 1860 2025-08-14T21:42:06.7784131Z 2025-08-14T21:42:06.7784818Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe -spawnprovider 452 2025-08-14T21:42:06.7785605Z 2025-08-14T21:42:06.7786024Z vds.exe C:\Windows\System32\vds.exe 3760 2025-08-14T21:42:06.7786470Z 2025-08-14T21:42:06.7786972Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNoNetwork -p -s DPS 1924 2025-08-14T21:42:06.7787638Z 2025-08-14T21:42:06.7788049Z msdtc.exe C:\Windows\System32\msdtc.exe 3864 2025-08-14T21:42:06.7788511Z 2025-08-14T21:42:06.7789129Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s UALSVC 3300 2025-08-14T21:42:06.7789775Z 2025-08-14T21:42:06.7790231Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UsoSvc 1332 2025-08-14T21:42:06.7790767Z 2025-08-14T21:42:06.7791243Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s CDPSvc 3816 2025-08-14T21:42:06.7791807Z 2025-08-14T21:42:06.7792397Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s WdiSystemHost 4496 2025-08-14T21:42:06.7793065Z 2025-08-14T21:42:06.7793636Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s PcaSvc 4532 2025-08-14T21:42:06.7794327Z 2025-08-14T21:42:06.7794952Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s LicenseManager 4648 2025-08-14T21:42:06.7795561Z 2025-08-14T21:42:06.7796251Z start-amazon-cloudwatch-agent.exe "C:\Program Files\Amazon\AmazonCloudWatchAgent\start-amazon-cloudwatch-agent.exe" 3904 2025-08-14T21:42:06.7797105Z 2025-08-14T21:42:06.7798634Z 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 4956 2025-08-14T21:42:06.7800293Z 2025-08-14T21:42:06.7800741Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4960 2025-08-14T21:42:06.7801233Z 2025-08-14T21:42:06.7801765Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p 4468 2025-08-14T21:42:06.7802386Z 2025-08-14T21:42:06.7802879Z svchost.exe C:\Windows\system32\svchost.exe -k appmodel -p -s StateRepository 1324 2025-08-14T21:42:06.7803481Z 2025-08-14T21:42:06.7804066Z MicrosoftEdgeUpdate.exe "C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe" /c 3408 2025-08-14T21:42:06.7804735Z 2025-08-14T21:42:06.7805189Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 2292 2025-08-14T21:42:06.7805684Z 2025-08-14T21:42:06.7806292Z Runner.Listener.exe "C:\actions-runner\\bin\Runner.Listener.exe" run 4976 2025-08-14T21:42:06.7806898Z 2025-08-14T21:42:06.7807396Z amazon-ssm-agent.exe "C:\Program Files\Amazon\SSM\amazon-ssm-agent.exe" 4184 2025-08-14T21:42:06.7808033Z 2025-08-14T21:42:06.7808526Z ssm-agent-worker.exe "C:\Program Files\Amazon\SSM\ssm-agent-worker.exe" 4508 2025-08-14T21:42:06.7809088Z 2025-08-14T21:42:06.7809484Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4504 2025-08-14T21:42:06.7809965Z 2025-08-14T21:42:06.7810425Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s wuauserv 1184 2025-08-14T21:42:06.7810985Z 2025-08-14T21:42:06.7811490Z Runner.Worker.exe "C:\actions-runner\bin\Runner.Worker.exe" spawnclient 2172 1388 3920 2025-08-14T21:42:06.7812192Z 2025-08-14T21:42:06.7812598Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 3936 2025-08-14T21:42:06.7813089Z 2025-08-14T21:42:06.7813550Z taskhostw.exe taskhostw.exe /RuntimeWide 1076 2025-08-14T21:42:06.7814043Z 2025-08-14T21:42:06.7814607Z ngentask.exe "C:\Windows\Microsoft.NET\Framework\v4.0.30319\NGenTask.exe" /RuntimeWide /StopEvent:528 5052 2025-08-14T21:42:06.7815267Z 2025-08-14T21:42:06.7815848Z ngentask.exe "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\NGenTask.exe" /RuntimeWide /StopEvent:1016 2840 2025-08-14T21:42:06.7816597Z 2025-08-14T21:42:06.7816986Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4476 2025-08-14T21:42:06.7817479Z 2025-08-14T21:42:06.7817923Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 3308 2025-08-14T21:42:06.7818449Z 2025-08-14T21:42:06.7819004Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s DsSvc 1680 2025-08-14T21:42:06.7819647Z 2025-08-14T21:42:06.7820274Z ngen.exe "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\ngen.exe" ExecuteQueuedItems /LegacyServiceBehavior 4056 2025-08-14T21:42:06.7820991Z 2025-08-14T21:42:06.7821602Z ngen.exe "C:\Windows\Microsoft.NET\Framework\v4.0.30319\ngen.exe" ExecuteQueuedItems /LegacyServiceBehavior 4556 2025-08-14T21:42:06.7822308Z 2025-08-14T21:42:06.7823181Z mscorsvw.exe C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscorsvw.exe -StartupEvent 2ec -InterruptEvent 0 -NGENProcess 370 -Pipe 35c -Comment "NGen Worker Process" 4072 2025-08-14T21:42:06.7824158Z 2025-08-14T21:42:06.7824947Z powershell.exe "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE" -command ". 'C:\actions-runner\_work\_temp\b573a708-acb7-4ac7-8af7-3efd1e618e92.ps1'" 3036 2025-08-14T21:42:06.7826531Z 2025-08-14T21:42:06.7827106Z WMIC.exe "C:\Windows\System32\Wbem\WMIC.exe" Path Win32_Process Get Caption,Processid,Commandline 4832 2025-08-14T21:42:06.7827773Z 2025-08-14T21:42:06.7828178Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 1532 2025-08-14T21:42:06.7828689Z 2025-08-14T21:42:06.7828695Z 2025-08-14T21:42:06.7828700Z 2025-08-14T21:42:06.8121710Z ##[group]Run pytorch/test-infra/.github/actions/setup-ssh@main 2025-08-14T21:42:06.8122135Z with: 2025-08-14T21:42:06.8122818Z github-secret: *** 2025-08-14T21:42:06.8125313Z 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-14T21:42:06.8127664Z activate-with-label: false 2025-08-14T21:42:06.8127915Z label: with-ssh 2025-08-14T21:42:06.8128128Z remove-existing-keys: true 2025-08-14T21:42:06.8128412Z fail-silently: true 2025-08-14T21:42:06.8128614Z env: 2025-08-14T21:42:06.8128797Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:42:06.8129028Z ##[endgroup] 2025-08-14T21:42:06.9675473Z Please see https://github.com/pytorch/pytorch/wiki/Debugging-using-with-ssh-for-Github-Actions for more info. 2025-08-14T21:42:06.9677664Z Not on pull request and ciflow reference could not be extracted, skipping adding ssh keys 2025-08-14T21:42:06.9924641Z ##[group]Run pytorch/pytorch/.github/actions/checkout-pytorch@main 2025-08-14T21:42:06.9925045Z with: 2025-08-14T21:42:06.9925303Z no-sudo: true 2025-08-14T21:42:06.9925512Z submodules: recursive 2025-08-14T21:42:06.9925723Z fetch-depth: 0 2025-08-14T21:42:06.9925915Z env: 2025-08-14T21:42:06.9926085Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:42:06.9926313Z ##[endgroup] 2025-08-14T21:42:07.0009392Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-08-14T21:42:07.0010324Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-08-14T21:42:07.0029326Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:42:07.0029756Z env: 2025-08-14T21:42:07.0029941Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:42:07.0030170Z ##[endgroup] 2025-08-14T21:42:07.0425387Z ##[group]Run # Use all available CPUs for fetching 2025-08-14T21:42:07.0425786Z # Use all available CPUs for fetching 2025-08-14T21:42:07.0426162Z cd "${GITHUB_WORKSPACE}" 2025-08-14T21:42:07.0426525Z git config --global fetch.parallel 0 2025-08-14T21:42:07.0426871Z git config --global submodule.fetchJobs 0 2025-08-14T21:42:07.0427164Z  2025-08-14T21:42:07.0427636Z # Clean workspace. The default checkout action should also do this, but 2025-08-14T21:42:07.0428059Z # do it here as well just in case 2025-08-14T21:42:07.0428343Z if [[ -d .git ]]; then 2025-08-14T21:42:07.0428601Z  if [ -z "${NO_SUDO}" ]; then 2025-08-14T21:42:07.0428875Z  sudo git clean -ffdx 2025-08-14T21:42:07.0429122Z  else 2025-08-14T21:42:07.0429323Z  git clean -ffdx 2025-08-14T21:42:07.0429553Z  fi 2025-08-14T21:42:07.0429727Z fi 2025-08-14T21:42:07.0448426Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:42:07.0448860Z env: 2025-08-14T21:42:07.0449062Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:42:07.0449352Z NO_SUDO: true 2025-08-14T21:42:07.0449557Z ##[endgroup] 2025-08-14T21:42:07.1381455Z ##[group]Run actions/checkout@v4 2025-08-14T21:42:07.1381737Z with: 2025-08-14T21:42:07.1381960Z ref: 1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T21:42:07.1382263Z fetch-depth: 0 2025-08-14T21:42:07.1382467Z submodules: recursive 2025-08-14T21:42:07.1382678Z show-progress: false 2025-08-14T21:42:07.1382911Z repository: pytorch/pytorch 2025-08-14T21:42:07.1383332Z token: *** 2025-08-14T21:42:07.1383572Z ssh-strict: true 2025-08-14T21:42:07.1383761Z ssh-user: git 2025-08-14T21:42:07.1383977Z persist-credentials: true 2025-08-14T21:42:07.1384210Z clean: true 2025-08-14T21:42:07.1384418Z sparse-checkout-cone-mode: true 2025-08-14T21:42:07.1384689Z fetch-tags: false 2025-08-14T21:42:07.1384887Z lfs: false 2025-08-14T21:42:07.1385082Z set-safe-directory: true 2025-08-14T21:42:07.1385295Z env: 2025-08-14T21:42:07.1385474Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:42:07.1385686Z ##[endgroup] 2025-08-14T21:42:07.2761324Z Syncing repository: pytorch/pytorch 2025-08-14T21:42:07.2762684Z ##[group]Getting Git version info 2025-08-14T21:42:07.2763090Z Working directory is 'C:\actions-runner\_work\pytorch\pytorch' 2025-08-14T21:42:07.2858240Z [command]"C:\Program Files\Git\cmd\git.exe" version 2025-08-14T21:42:07.3067705Z git version 2.49.0.windows.1 2025-08-14T21:42:07.3113277Z ##[endgroup] 2025-08-14T21:42:07.3124957Z Copying 'C:\Users\runneruser\.gitconfig' to 'C:\actions-runner\_work\_temp\b3e00423-1831-47bb-9bdf-9987207cc725\.gitconfig' 2025-08-14T21:42:07.3144068Z Temporarily overriding HOME='C:\actions-runner\_work\_temp\b3e00423-1831-47bb-9bdf-9987207cc725' before making global git config changes 2025-08-14T21:42:07.3146215Z Adding repository directory to the temporary git global config as a safe directory 2025-08-14T21:42:07.3154011Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\actions-runner\_work\pytorch\pytorch 2025-08-14T21:42:07.3384347Z Deleting the contents of 'C:\actions-runner\_work\pytorch\pytorch' 2025-08-14T21:42:07.3389657Z ##[group]Initializing the repository 2025-08-14T21:42:07.3400360Z [command]"C:\Program Files\Git\cmd\git.exe" init C:\actions-runner\_work\pytorch\pytorch 2025-08-14T21:42:07.3748594Z Initialized empty Git repository in C:/actions-runner/_work/pytorch/pytorch/.git/ 2025-08-14T21:42:07.3791741Z [command]"C:\Program Files\Git\cmd\git.exe" remote add origin https://github.com/pytorch/pytorch 2025-08-14T21:42:07.4030781Z ##[endgroup] 2025-08-14T21:42:07.4031242Z ##[group]Disabling automatic garbage collection 2025-08-14T21:42:07.4042725Z [command]"C:\Program Files\Git\cmd\git.exe" config --local gc.auto 0 2025-08-14T21:42:07.4274107Z ##[endgroup] 2025-08-14T21:42:07.4274530Z ##[group]Setting up auth 2025-08-14T21:42:07.4288574Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand 2025-08-14T21:42:07.4519975Z [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-14T21:42:08.0497296Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-08-14T21:42:08.0749598Z [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-14T21:42:08.4534105Z [command]"C:\Program Files\Git\cmd\git.exe" config --local http.https://github.com/.extraheader "AUTHORIZATION: basic ***" 2025-08-14T21:42:08.4790555Z ##[endgroup] 2025-08-14T21:42:08.4792226Z ##[group]Fetching the repository 2025-08-14T21:42:08.4805185Z [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-14T21:43:03.1238189Z From https://github.com/pytorch/pytorch 2025-08-14T21:43:03.1238698Z * [new branch] 2.6.0.dev20241004+ -> origin/2.6.0.dev20241004+ 2025-08-14T21:43:03.1239249Z * [new branch] 5addvllmbuild -> origin/5addvllmbuild 2025-08-14T21:43:03.1239839Z * [new branch] AaronWang04_addmmfusion_perftest -> origin/AaronWang04_addmmfusion_perftest 2025-08-14T21:43:03.1240503Z * [new branch] HDCharles-2.6.0-release-notes -> origin/HDCharles-2.6.0-release-notes 2025-08-14T21:43:03.1241212Z * [new branch] JackCaoG/dynamo_make_fx_non_core_aten_ops -> origin/JackCaoG/dynamo_make_fx_non_core_aten_ops 2025-08-14T21:43:03.1241900Z * [new branch] PR-AOTInductorNoneBug -> origin/PR-AOTInductorNoneBug 2025-08-14T21:43:03.1242489Z * [new branch] PR-AOTInductorNoneBugFix -> origin/PR-AOTInductorNoneBugFix 2025-08-14T21:43:03.1243055Z * [new branch] PR-FixConfigsIssue -> origin/PR-FixConfigsIssue 2025-08-14T21:43:03.1243589Z * [new branch] PR-NoneBugFix-viable -> origin/PR-NoneBugFix-viable 2025-08-14T21:43:03.1244120Z * [new branch] PR-ResetToZero -> origin/PR-ResetToZero 2025-08-14T21:43:03.1244639Z * [new branch] Update-Flash-Packaging -> origin/Update-Flash-Packaging 2025-08-14T21:43:03.1245281Z * [new branch] add-missing-args-normalization -> origin/add-missing-args-normalization 2025-08-14T21:43:03.1245918Z * [new branch] add-user-guide-structure -> origin/add-user-guide-structure 2025-08-14T21:43:03.1246425Z * [new branch] addVllmPin -> origin/addVllmPin 2025-08-14T21:43:03.1247835Z * [new branch] add_windows_testing_back -> origin/add_windows_testing_back 2025-08-14T21:43:03.1248460Z * [new branch] addbuildvllm -> origin/addbuildvllm 2025-08-14T21:43:03.1249024Z * [new branch] addmm-heuristic -> origin/addmm-heuristic 2025-08-14T21:43:03.1249501Z * [new branch] addsimde -> origin/addsimde 2025-08-14T21:43:03.1249974Z * [new branch] addvllpinnedfile -> origin/addvllpinnedfile 2025-08-14T21:43:03.1250474Z * [new branch] adi/acl_upgrade -> origin/adi/acl_upgrade 2025-08-14T21:43:03.1250963Z * [new branch] adi/skip_slow_tests -> origin/adi/skip_slow_tests 2025-08-14T21:43:03.1251443Z * [new branch] adi/test -> origin/adi/test 2025-08-14T21:43:03.1251950Z * [new branch] adi/test_bgemm -> origin/adi/test_bgemm 2025-08-14T21:43:03.1252462Z * [new branch] adi/test_fusions -> origin/adi/test_fusions 2025-08-14T21:43:03.1252981Z * [new branch] adi/test_onednn_v3.9 -> origin/adi/test_onednn_v3.9 2025-08-14T21:43:03.1253491Z * [new branch] adi/test_presve_change -> origin/adi/test_presve_change 2025-08-14T21:43:03.1254001Z * [new branch] adi/test_timm -> origin/adi/test_timm 2025-08-14T21:43:03.1254648Z * [new branch] adi/testpresve_change -> origin/adi/testpresve_change 2025-08-14T21:43:03.1255191Z * [new branch] aditew01/test/vec_bf16 -> origin/aditew01/test/vec_bf16 2025-08-14T21:43:03.1255747Z * [new branch] ah-globalfeedback-hook -> origin/ah-globalfeedback-hook 2025-08-14T21:43:03.1256265Z * [new branch] albanD-patch-1 -> origin/albanD-patch-1 2025-08-14T21:43:03.1256746Z * [new branch] alt-disable -> origin/alt-disable 2025-08-14T21:43:03.1257286Z * [new branch] angelayi/aoti_additional_files -> origin/angelayi/aoti_additional_files 2025-08-14T21:43:03.1257892Z * [new branch] angelayi/aoti_inductor_fx -> origin/angelayi/aoti_inductor_fx 2025-08-14T21:43:03.1258543Z * [new branch] angelayi/assert_tensor_metadata_device -> origin/angelayi/assert_tensor_metadata_device 2025-08-14T21:43:03.1259173Z * [new branch] angelayi/benchmark -> origin/angelayi/benchmark 2025-08-14T21:43:03.1259696Z * [new branch] angelayi/benchmark2 -> origin/angelayi/benchmark2 2025-08-14T21:43:03.1260306Z * [new branch] angelayi/change_pytree_serialization -> origin/angelayi/change_pytree_serialization 2025-08-14T21:43:03.1260983Z * [new branch] angelayi/cpp_loader -> origin/angelayi/cpp_loader 2025-08-14T21:43:03.1261551Z * [new branch] angelayi/custom_op_subgraph -> origin/angelayi/custom_op_subgraph 2025-08-14T21:43:03.1262098Z * [new branch] angelayi/customop -> origin/angelayi/customop 2025-08-14T21:43:03.1262606Z * [new branch] angelayi/del_lib -> origin/angelayi/del_lib 2025-08-14T21:43:03.1263069Z * [new branch] angelayi/docs -> origin/angelayi/docs 2025-08-14T21:43:03.1263549Z * [new branch] angelayi/docs2 -> origin/angelayi/docs2 2025-08-14T21:43:03.1264019Z * [new branch] angelayi/fix_pt2 -> origin/angelayi/fix_pt2 2025-08-14T21:43:03.1659657Z * [new branch] angelayi/logging.bak -> origin/angelayi/logging.bak 2025-08-14T21:43:03.1660244Z * [new branch] angelayi/logging2 -> origin/angelayi/logging2 2025-08-14T21:43:03.1660769Z * [new branch] angelayi/no_so_weight -> origin/angelayi/no_so_weight 2025-08-14T21:43:03.1661490Z * [new branch] angelayi/pytree -> origin/angelayi/pytree 2025-08-14T21:43:03.1663458Z * [new branch] angelayi/save_error -> origin/angelayi/save_error 2025-08-14T21:43:03.1663983Z * [new branch] angelayi/scan_layers -> origin/angelayi/scan_layers 2025-08-14T21:43:03.1664514Z * [new branch] angelayi/symint_input -> origin/angelayi/symint_input 2025-08-14T21:43:03.1665090Z * [new branch] angelayi/tensor_nn_module_meta -> origin/angelayi/tensor_nn_module_meta 2025-08-14T21:43:03.1665675Z * [new branch] angelayi/torch_size -> origin/angelayi/torch_size 2025-08-14T21:43:03.1666170Z * [new branch] aoti-cuda-alloc -> origin/aoti-cuda-alloc 2025-08-14T21:43:03.1666668Z * [new branch] aoti_weight_sharing -> origin/aoti_weight_sharing 2025-08-14T21:43:03.1667180Z * [new branch] arsh/symint_mm_ind_decomp -> origin/arsh/symint_mm_ind_decomp 2025-08-14T21:43:03.1667778Z * [new branch] atalman-inductor-perf-cu124 -> origin/atalman-inductor-perf-cu124 2025-08-14T21:43:03.1668428Z * [new branch] atalman-inductor-perf-cu124.1 -> origin/atalman-inductor-perf-cu124.1 2025-08-14T21:43:03.1669003Z * [new branch] atalman-patch-1 -> origin/atalman-patch-1 2025-08-14T21:43:03.1669501Z * [new branch] atalman-patch-2 -> origin/atalman-patch-2 2025-08-14T21:43:03.1670117Z * [new branch] atalman-patch-3 -> origin/atalman-patch-3 2025-08-14T21:43:03.1670608Z * [new branch] atalman-patch-6 -> origin/atalman-patch-6 2025-08-14T21:43:03.1671094Z * [new branch] atalman-patch-7 -> origin/atalman-patch-7 2025-08-14T21:43:03.1671576Z * [new branch] atalman-patch-8 -> origin/atalman-patch-8 2025-08-14T21:43:03.1672088Z * [new branch] atalman_inductor_2.3.0 -> origin/atalman_inductor_2.3.0 2025-08-14T21:43:03.1672609Z * [new branch] atalman_inductor_2.3.1 -> origin/atalman_inductor_2.3.1 2025-08-14T21:43:03.1674565Z * [new branch] atalman_inductor_2.4.0 -> origin/atalman_inductor_2.4.0 2025-08-14T21:43:03.1675096Z * [new branch] atalman_inductor_2.4.x -> origin/atalman_inductor_2.4.x 2025-08-14T21:43:03.1675737Z * [new branch] autoupdate-transformers-pin-via-pr -> origin/autoupdate-transformers-pin-via-pr 2025-08-14T21:43:03.1676364Z * [new branch] backupvllm -> origin/backupvllm 2025-08-14T21:43:03.1676799Z * [new branch] base/1.5 -> origin/base/1.5 2025-08-14T21:43:03.1677349Z * [new branch] batching_sdpa_efficient_attention -> origin/batching_sdpa_efficient_attention 2025-08-14T21:43:03.1677990Z * [new branch] benchmark-updates -> origin/benchmark-updates 2025-08-14T21:43:03.1678587Z * [new branch] benchmarking-script -> origin/benchmarking-script 2025-08-14T21:43:03.1679337Z * [new branch] benjaminglass1/mark-large-tensor-tests-serial -> origin/benjaminglass1/mark-large-tensor-tests-serial 2025-08-14T21:43:03.1680064Z * [new branch] bertmaher/pinbump26 -> origin/bertmaher/pinbump26 2025-08-14T21:43:03.1680644Z * [new branch] bertrand/cutlass -> origin/bertrand/cutlass 2025-08-14T21:43:03.1681117Z * [new branch] bf/cg-log -> origin/bf/cg-log 2025-08-14T21:43:03.1681583Z * [new branch] bf/cg-remove-check -> origin/bf/cg-remove-check 2025-08-14T21:43:03.1682086Z * [new branch] bf/cg-skip-1-kernel -> origin/bf/cg-skip-1-kernel 2025-08-14T21:43:03.1682557Z * [new branch] bf/cudagraph -> origin/bf/cudagraph 2025-08-14T21:43:03.1683175Z * [new branch] bf/cudagraph-disable-input-mutation -> origin/bf/cudagraph-disable-input-mutation 2025-08-14T21:43:03.1684266Z * [new branch] bf/cudagraph-enable-input-mutation-support-benchmark -> origin/bf/cudagraph-enable-input-mutation-support-benchmark 2025-08-14T21:43:03.1685116Z * [new branch] bf/cudagraph-partition -> origin/bf/cudagraph-partition 2025-08-14T21:43:03.1685708Z * [new branch] bf/default-recompile-reason -> origin/bf/default-recompile-reason 2025-08-14T21:43:03.1686295Z * [new branch] bf/donated-buffer-bench -> origin/bf/donated-buffer-bench 2025-08-14T21:43:03.1686862Z * [new branch] bf/improve-kernel-bench -> origin/bf/improve-kernel-bench 2025-08-14T21:43:03.1687404Z * [new branch] bf/kernel-benchmark -> origin/bf/kernel-benchmark 2025-08-14T21:43:03.1687907Z * [new branch] bf/partition-doc -> origin/bf/partition-doc 2025-08-14T21:43:03.2101915Z * [new branch] bf/partition-move-cpu -> origin/bf/partition-move-cpu 2025-08-14T21:43:03.2102608Z * [new branch] bf/partition-turn-on -> origin/bf/partition-turn-on 2025-08-14T21:43:03.2103222Z * [new branch] bf/remove-check-55b0c39d -> origin/bf/remove-check-55b0c39d 2025-08-14T21:43:03.2103774Z * [new branch] bf/skip-asserts -> origin/bf/skip-asserts 2025-08-14T21:43:03.2104243Z * [new branch] bf16adamw -> origin/bf16adamw 2025-08-14T21:43:03.2104982Z * [new branch] bisect_perf_hf_T5_3acc6eac492 -> origin/bisect_perf_hf_T5_3acc6eac492 2025-08-14T21:43:03.2105558Z * [new branch] bisect_perf_hf_T5_3fcf66f61fb -> origin/bisect_perf_hf_T5_3fcf66f61fb 2025-08-14T21:43:03.2106136Z * [new branch] bisect_perf_hf_T5_4009d154129 -> origin/bisect_perf_hf_T5_4009d154129 2025-08-14T21:43:03.2106715Z * [new branch] bisect_perf_hf_T5_40d0740e73d -> origin/bisect_perf_hf_T5_40d0740e73d 2025-08-14T21:43:03.2107270Z * [new branch] bisect_perf_hf_T5_5268754e -> origin/bisect_perf_hf_T5_5268754e 2025-08-14T21:43:03.2107826Z * [new branch] bisect_perf_hf_T5_7d89a8d385c -> origin/bisect_perf_hf_T5_7d89a8d385c 2025-08-14T21:43:03.2108428Z * [new branch] bisect_perf_hf_T5_b7a25c1ee7c -> origin/bisect_perf_hf_T5_b7a25c1ee7c 2025-08-14T21:43:03.2109050Z * [new branch] bisect_perf_hf_T5_c25b201583f -> origin/bisect_perf_hf_T5_c25b201583f 2025-08-14T21:43:03.2109630Z * [new branch] bisect_perf_hf_T5_c93e57efac0 -> origin/bisect_perf_hf_T5_c93e57efac0 2025-08-14T21:43:03.2110184Z * [new branch] bisect_perf_hf_T5_ca9813ea149 -> origin/bisect_perf_hf_T5_ca9813ea149 2025-08-14T21:43:03.2110751Z * [new branch] bisect_perf_hf_T5_d65f194a -> origin/bisect_perf_hf_T5_d65f194a 2025-08-14T21:43:03.2111282Z * [new branch] bisect_perf_hf_T5_da94ab0b -> origin/bisect_perf_hf_T5_da94ab0b 2025-08-14T21:43:03.2111859Z * [new branch] bisect_perf_hf_T5_da94ab0b_new -> origin/bisect_perf_hf_T5_da94ab0b_new 2025-08-14T21:43:03.2112449Z * [new branch] bisect_perf_hf_T5_db4e8a1d8a8 -> origin/bisect_perf_hf_T5_db4e8a1d8a8 2025-08-14T21:43:03.2113012Z * [new branch] bisect_perf_hf_T5_e0d97e936a2 -> origin/bisect_perf_hf_T5_e0d97e936a2 2025-08-14T21:43:03.2113583Z * [new branch] bisect_perf_hf_T5_f23621ec563 -> origin/bisect_perf_hf_T5_f23621ec563 2025-08-14T21:43:03.2114191Z * [new branch] bowbao/bench_updates_stage -> origin/bowbao/bench_updates_stage 2025-08-14T21:43:03.2114772Z * [new branch] bowbao/dort_rewriter -> origin/bowbao/dort_rewriter 2025-08-14T21:43:03.2115278Z * [new branch] bowbao/wip_prs -> origin/bowbao/wip_prs 2025-08-14T21:43:03.2115827Z * [new branch] bowenbao/partial_min_max_reduce -> origin/bowenbao/partial_min_max_reduce 2025-08-14T21:43:03.2117081Z * [new branch] brister/always_wrapper_ir -> origin/brister/always_wrapper_ir 2025-08-14T21:43:03.2117712Z * [new branch] brister/flatten_contig -> origin/brister/flatten_contig 2025-08-14T21:43:03.2118272Z * [new branch] brister/test_block_ptr_same -> origin/brister/test_block_ptr_same 2025-08-14T21:43:03.2118928Z * [new branch] brister/tiled_reduction_no_numel_check -> origin/brister/tiled_reduction_no_numel_check 2025-08-14T21:43:03.2119518Z * [new branch] c57382a49 -> origin/c57382a49 2025-08-14T21:43:03.2120017Z * [new branch] ca_0431d47eaa -> origin/ca_0431d47eaa 2025-08-14T21:43:03.2120506Z * [new branch] ca_fix_0431d47eaa -> origin/ca_fix_0431d47eaa 2025-08-14T21:43:03.2121463Z * [new branch] camyll/revert-94bc900da97ad7f3c35b3b819bb53b23c74b581a-for-release-2.8 -> origin/camyll/revert-94bc900da97ad7f3c35b3b819bb53b23c74b581a-for-release-2.8 2025-08-14T21:43:03.2122538Z * [new branch] camyll/test_precommit_hooks_lintrunner -> origin/camyll/test_precommit_hooks_lintrunner 2025-08-14T21:43:03.2123305Z * [new branch] camyllh/cherrypick-151547-for-release28 -> origin/camyllh/cherrypick-151547-for-release28 2025-08-14T21:43:03.2124025Z * [new branch] camyllh/test_setup_hooks_push -> origin/camyllh/test_setup_hooks_push 2025-08-14T21:43:03.2124725Z * [new branch] cherry-pick-149654-by-pytorch_bot_bot_ -> origin/cherry-pick-149654-by-pytorch_bot_bot_ 2025-08-14T21:43:03.2125602Z * [new branch] cherry-pick-151939-by-pytorch_bot_bot_ -> origin/cherry-pick-151939-by-pytorch_bot_bot_ 2025-08-14T21:43:03.2126444Z * [new branch] cherry-pick-154174-by-pytorch_bot_bot_ -> origin/cherry-pick-154174-by-pytorch_bot_bot_ 2025-08-14T21:43:03.2127269Z * [new branch] cherry-pick-155896-by-pytorch_bot_bot_ -> origin/cherry-pick-155896-by-pytorch_bot_bot_ 2025-08-14T21:43:03.2128102Z * [new branch] cherry-pick-156260-by-pytorch_bot_bot_ -> origin/cherry-pick-156260-by-pytorch_bot_bot_ 2025-08-14T21:43:03.2521899Z * [new branch] cherry-pick-156719-by-pytorch_bot_bot_ -> origin/cherry-pick-156719-by-pytorch_bot_bot_ 2025-08-14T21:43:03.2522690Z * [new branch] cherry-pick-156876-by-pytorch_bot_bot_ -> origin/cherry-pick-156876-by-pytorch_bot_bot_ 2025-08-14T21:43:03.2523466Z * [new branch] cherry-pick-156888-by-pytorch_bot_bot_ -> origin/cherry-pick-156888-by-pytorch_bot_bot_ 2025-08-14T21:43:03.2524243Z * [new branch] cherry-pick-157014-by-pytorch_bot_bot_ -> origin/cherry-pick-157014-by-pytorch_bot_bot_ 2025-08-14T21:43:03.2525085Z * [new branch] cherry-pick-157179-by-pytorch_bot_bot_ -> origin/cherry-pick-157179-by-pytorch_bot_bot_ 2025-08-14T21:43:03.2525835Z * [new branch] cherry-pick-157453-by-pytorch_bot_bot_ -> origin/cherry-pick-157453-by-pytorch_bot_bot_ 2025-08-14T21:43:03.2526577Z * [new branch] cherry-pick-157513-by-pytorch_bot_bot_ -> origin/cherry-pick-157513-by-pytorch_bot_bot_ 2025-08-14T21:43:03.2527319Z * [new branch] cherry-pick-157558-by-pytorch_bot_bot_ -> origin/cherry-pick-157558-by-pytorch_bot_bot_ 2025-08-14T21:43:03.2528064Z * [new branch] cherry-pick-157598-by-pytorch_bot_bot_ -> origin/cherry-pick-157598-by-pytorch_bot_bot_ 2025-08-14T21:43:03.2528799Z * [new branch] cherry-pick-157600-by-pytorch_bot_bot_ -> origin/cherry-pick-157600-by-pytorch_bot_bot_ 2025-08-14T21:43:03.2529548Z * [new branch] cherry-pick-157630-by-pytorch_bot_bot_ -> origin/cherry-pick-157630-by-pytorch_bot_bot_ 2025-08-14T21:43:03.2530286Z * [new branch] cherry-pick-157695-by-pytorch_bot_bot_ -> origin/cherry-pick-157695-by-pytorch_bot_bot_ 2025-08-14T21:43:03.2531114Z * [new branch] cherry-pick-157732-by-pytorch_bot_bot_ -> origin/cherry-pick-157732-by-pytorch_bot_bot_ 2025-08-14T21:43:03.2532058Z * [new branch] cherry-pick-157733-by-pytorch_bot_bot_ -> origin/cherry-pick-157733-by-pytorch_bot_bot_ 2025-08-14T21:43:03.2532797Z * [new branch] cherry-pick-157985-by-pytorch_bot_bot_ -> origin/cherry-pick-157985-by-pytorch_bot_bot_ 2025-08-14T21:43:03.2533545Z * [new branch] cherry-pick-157993-by-pytorch_bot_bot_ -> origin/cherry-pick-157993-by-pytorch_bot_bot_ 2025-08-14T21:43:03.2534277Z * [new branch] cherry-pick-158064-by-pytorch_bot_bot_ -> origin/cherry-pick-158064-by-pytorch_bot_bot_ 2025-08-14T21:43:03.2535035Z * [new branch] cherry-pick-158152-by-pytorch_bot_bot_ -> origin/cherry-pick-158152-by-pytorch_bot_bot_ 2025-08-14T21:43:03.2535780Z * [new branch] cherry-pick-158295-by-pytorch_bot_bot_ -> origin/cherry-pick-158295-by-pytorch_bot_bot_ 2025-08-14T21:43:03.2536558Z * [new branch] cherry-pick-158301-by-pytorch_bot_bot_ -> origin/cherry-pick-158301-by-pytorch_bot_bot_ 2025-08-14T21:43:03.2537356Z * [new branch] cherry-pick-158537-by-pytorch_bot_bot_ -> origin/cherry-pick-158537-by-pytorch_bot_bot_ 2025-08-14T21:43:03.2538092Z * [new branch] cherry-pick-158572-by-pytorch_bot_bot_ -> origin/cherry-pick-158572-by-pytorch_bot_bot_ 2025-08-14T21:43:03.2538730Z * [new branch] cherry-pick-158595 -> origin/cherry-pick-158595 2025-08-14T21:43:03.2539362Z * [new branch] cherry-pick-159181-by-pytorch_bot_bot_ -> origin/cherry-pick-159181-by-pytorch_bot_bot_ 2025-08-14T21:43:03.2540211Z * [new branch] cherry-pick-159969-by-pytorch_bot_bot_ -> origin/cherry-pick-159969-by-pytorch_bot_bot_ 2025-08-14T21:43:03.2540960Z * [new branch] cherry-pick-160586-by-pytorch_bot_bot_ -> origin/cherry-pick-160586-by-pytorch_bot_bot_ 2025-08-14T21:43:03.2541613Z * [new branch] cherry-pick-PR-158746 -> origin/cherry-pick-PR-158746 2025-08-14T21:43:03.2542460Z * [new branch] cherrypick-e4e2701429c17078c3c475382a8b1fa4c8a8cefc -> origin/cherrypick-e4e2701429c17078c3c475382a8b1fa4c8a8cefc 2025-08-14T21:43:03.2543279Z * [new branch] chilli/flex_vllm -> origin/chilli/flex_vllm 2025-08-14T21:43:03.2543808Z * [new branch] ckluk2-compileThread-1 -> origin/ckluk2-compileThread-1 2025-08-14T21:43:03.2544377Z * [new branch] ckluk2-compileThread-2 -> origin/ckluk2-compileThread-2 2025-08-14T21:43:03.2544955Z * [new branch] ckluk2-compileThread-64 -> origin/ckluk2-compileThread-64 2025-08-14T21:43:03.2545466Z * [new branch] ckluk2-test-1 -> origin/ckluk2-test-1 2025-08-14T21:43:03.2545934Z * [new branch] cleantest1 -> origin/cleantest1 2025-08-14T21:43:03.2546382Z * [new branch] codex-testing -> origin/codex-testing 2025-08-14T21:43:03.2547225Z * [new branch] codex/create-test-for-tensor-memory-leak-in-cudagraph -> origin/codex/create-test-for-tensor-memory-leak-in-cudagraph 2025-08-14T21:43:03.2548158Z * [new branch] codex/fix-issue-121219-in-pytorch -> origin/codex/fix-issue-121219-in-pytorch 2025-08-14T21:43:03.3007571Z * [new branch] codex/fix-issue-160415-in-pytorch -> origin/codex/fix-issue-160415-in-pytorch 2025-08-14T21:43:03.3008473Z * [new branch] codex/fix-noqengine-quantized-engine-support -> origin/codex/fix-noqengine-quantized-engine-support 2025-08-14T21:43:03.3009355Z * [new branch] codex/fix-pin_memory-error-handling -> origin/codex/fix-pin_memory-error-handling 2025-08-14T21:43:03.3010081Z * [new branch] codex/propose-fix-for-issue-160332 -> origin/codex/propose-fix-for-issue-160332 2025-08-14T21:43:03.3010932Z * [new branch] codex/refactor-lintrunner-config-to-use-uv-run -> origin/codex/refactor-lintrunner-config-to-use-uv-run 2025-08-14T21:43:03.3012032Z * [new branch] codex/verify-torch-output-and-log-results -> origin/codex/verify-torch-output-and-log-results 2025-08-14T21:43:03.3012838Z * [new branch] compile_fsdp2_disable_stream_and_event -> origin/compile_fsdp2_disable_stream_and_event 2025-08-14T21:43:03.3013474Z * [new branch] comply-with-setuptools -> origin/comply-with-setuptools 2025-08-14T21:43:03.3014047Z * [new branch] context_test -> origin/context_test 2025-08-14T21:43:03.3014579Z * [new branch] copilot/fix-157446 -> origin/copilot/fix-157446 2025-08-14T21:43:03.3015076Z * [new branch] copilot/fix-159257 -> origin/copilot/fix-159257 2025-08-14T21:43:03.3015550Z * [new branch] copy_graph -> origin/copy_graph 2025-08-14T21:43:03.3016023Z * [new branch] cpio/fix_new_ami_tests -> origin/cpio/fix_new_ami_tests 2025-08-14T21:43:03.3016507Z * [new branch] csl/3_proc_sm -> origin/csl/3_proc_sm 2025-08-14T21:43:03.3017051Z * [new branch] csl/add_file_merge_conflict_csv -> origin/csl/add_file_merge_conflict_csv 2025-08-14T21:43:03.3017621Z * [new branch] csl/always_produce_xml -> origin/csl/always_produce_xml 2025-08-14T21:43:03.3018158Z * [new branch] csl/build_test_more_procs -> origin/csl/build_test_more_procs 2025-08-14T21:43:03.3018699Z * [new branch] csl/build_test_more_procs2 -> origin/csl/build_test_more_procs2 2025-08-14T21:43:03.3019393Z * [new branch] csl/disable_flaky_cpp_test -> origin/csl/disable_flaky_cpp_test 2025-08-14T21:43:03.3020007Z * [new branch] csl/disable_periodic_test -> origin/csl/disable_periodic_test 2025-08-14T21:43:03.3020566Z * [new branch] csl/executorch_docker_fail -> origin/csl/executorch_docker_fail 2025-08-14T21:43:03.3021118Z * [new branch] csl/fix_check_alerts -> origin/csl/fix_check_alerts 2025-08-14T21:43:03.3021591Z * [new branch] csl/katex -> origin/csl/katex 2025-08-14T21:43:03.3022067Z * [new branch] csl/larger_runner -> origin/csl/larger_runner 2025-08-14T21:43:03.3022672Z * [new branch] csl/lintrunner_changed_files_removed -> origin/csl/lintrunner_changed_files_removed 2025-08-14T21:43:03.3023397Z * [new branch] csl/lintrunner_changed_files_removed_test -> origin/csl/lintrunner_changed_files_removed_test 2025-08-14T21:43:03.3024049Z * [new branch] csl/lintrunner_stuff -> origin/csl/lintrunner_stuff 2025-08-14T21:43:03.3024540Z * [new branch] csl/mps_sharding -> origin/csl/mps_sharding 2025-08-14T21:43:03.3025096Z * [new branch] csl/multistage_docker -> origin/csl/multistage_docker 2025-08-14T21:43:03.3025655Z * [new branch] csl/no_keep_goin_rocm -> origin/csl/no_keep_goin_rocm 2025-08-14T21:43:03.3026142Z * [new branch] csl/not_600_timeout -> origin/csl/not_600_timeout 2025-08-14T21:43:03.3026717Z * [new branch] csl/remove_unused_docker_images -> origin/csl/remove_unused_docker_images 2025-08-14T21:43:03.3027253Z * [new branch] csl/revert_open -> origin/csl/revert_open 2025-08-14T21:43:03.3027860Z * [new branch] csl/rocm_upload_artifacts_while_running -> origin/csl/rocm_upload_artifacts_while_running 2025-08-14T21:43:03.3028472Z * [new branch] csl/skip_build -> origin/csl/skip_build 2025-08-14T21:43:03.3028932Z * [new branch] csl/td_dynamo -> origin/csl/td_dynamo 2025-08-14T21:43:03.3029474Z * [new branch] csl/test_cuda_build_large_runner -> origin/csl/test_cuda_build_large_runner 2025-08-14T21:43:03.3030034Z * [new branch] csl/unused_docker -> origin/csl/unused_docker 2025-08-14T21:43:03.3030515Z * [new branch] csl/win_sccache -> origin/csl/win_sccache 2025-08-14T21:43:03.3031112Z * [new branch] cublasltrelax2 -> origin/cublasltrelax2 2025-08-14T21:43:03.3031577Z * [new branch] cublasrelax2 -> origin/cublasrelax2 2025-08-14T21:43:03.3032084Z * [new branch] cudnnsdparefactor -> origin/cudnnsdparefactor 2025-08-14T21:43:03.3032591Z * [new branch] custom_lowering_dict -> origin/custom_lowering_dict 2025-08-14T21:43:03.3538481Z * [new branch] czhuge_muon_dev -> origin/czhuge_muon_dev 2025-08-14T21:43:03.3539079Z * [new branch] d4l3k/delete_hook -> origin/d4l3k/delete_hook 2025-08-14T21:43:03.3539568Z * [new branch] d4l3k/dist_queue -> origin/d4l3k/dist_queue 2025-08-14T21:43:03.3540073Z * [new branch] d4l3k/wait_stream -> origin/d4l3k/wait_stream 2025-08-14T21:43:03.3540614Z * [new branch] dcp-safetensor-test-fix -> origin/dcp-safetensor-test-fix 2025-08-14T21:43:03.3541170Z * [new branch] dcp_zoc -> origin/dcp_zoc 2025-08-14T21:43:03.3541642Z * [new branch] delete-quant-docs -> origin/delete-quant-docs 2025-08-14T21:43:03.3542318Z * [new branch] dependabot/pip/dot-ci/docker/protobuf-5.29.5 -> origin/dependabot/pip/dot-ci/docker/protobuf-5.29.5 2025-08-14T21:43:03.3543039Z * [new branch] desertfire/test_cpp_wrapper -> origin/desertfire/test_cpp_wrapper 2025-08-14T21:43:03.3543936Z * [new branch] desertfire/triton-cpu-for-aarch64 -> origin/desertfire/triton-cpu-for-aarch64 2025-08-14T21:43:03.3544649Z * [new branch] dev/joona/MPSNDArrayAdd -> origin/dev/joona/MPSNDArrayAdd 2025-08-14T21:43:03.3545195Z * [new branch] dev/joona/Unranked -> origin/dev/joona/Unranked 2025-08-14T21:43:03.3545674Z * [new branch] dev/joona/cat -> origin/dev/joona/cat 2025-08-14T21:43:03.3546188Z * [new branch] dev/joona/cat_remove_graph -> origin/dev/joona/cat_remove_graph 2025-08-14T21:43:03.3546733Z * [new branch] dev/joona/embeddingbag -> origin/dev/joona/embeddingbag 2025-08-14T21:43:03.3547300Z * [new branch] dev/joona/getTensorsString -> origin/dev/joona/getTensorsString 2025-08-14T21:43:03.3547989Z * [new branch] dev/joona/maxpool2dwithindices_errmsg -> origin/dev/joona/maxpool2dwithindices_errmsg 2025-08-14T21:43:03.3548663Z * [new branch] dev/joona/mps_linear_macos14 -> origin/dev/joona/mps_linear_macos14 2025-08-14T21:43:03.3549191Z * [new branch] dev/joona/sdpa -> origin/dev/joona/sdpa 2025-08-14T21:43:03.3549749Z * [new branch] dev/joona/synchronize_benchmark -> origin/dev/joona/synchronize_benchmark 2025-08-14T21:43:03.3550427Z * [new branch] dev/joona/topk_newapi -> origin/dev/joona/topk_newapi 2025-08-14T21:43:03.3550999Z * [new branch] dev/joona/type_inf -> origin/dev/joona/type_inf 2025-08-14T21:43:03.3551500Z * [new branch] dev/joona/upsize3d -> origin/dev/joona/upsize3d 2025-08-14T21:43:03.3552000Z * [new branch] disable -> origin/disable 2025-08-14T21:43:03.3552593Z * [new branch] divyanshk-log-api-usage-datapipes-1 -> origin/divyanshk-log-api-usage-datapipes-1 2025-08-14T21:43:03.3553218Z * [new branch] e2e-baseline -> origin/e2e-baseline 2025-08-14T21:43:03.3553740Z * [new branch] embg/test_inductor_ci_128B -> origin/embg/test_inductor_ci_128B 2025-08-14T21:43:03.3554296Z * [new branch] embg/test_inductor_ci_base -> origin/embg/test_inductor_ci_base 2025-08-14T21:43:03.3554877Z * [new branch] embg/test_inductor_ci_control -> origin/embg/test_inductor_ci_control 2025-08-14T21:43:03.3555456Z * [new branch] embg/triton_l2_prefetch_128B -> origin/embg/triton_l2_prefetch_128B 2025-08-14T21:43:03.3556764Z * [new branch] embg/triton_l2_prefetch_256B -> origin/embg/triton_l2_prefetch_256B 2025-08-14T21:43:03.3557429Z * [new branch] enable-b200-benchmark -> origin/enable-b200-benchmark 2025-08-14T21:43:03.3557932Z * [new branch] eqy-patch-1 -> origin/eqy-patch-1 2025-08-14T21:43:03.3558405Z * [new branch] eqy-patch-10 -> origin/eqy-patch-10 2025-08-14T21:43:03.3558867Z * [new branch] eqy-patch-2 -> origin/eqy-patch-2 2025-08-14T21:43:03.3559396Z * [new branch] example-convert-torch.nn -> origin/example-convert-torch.nn 2025-08-14T21:43:03.3559947Z * [new branch] exclamaforte/amd-ma -> origin/exclamaforte/amd-ma 2025-08-14T21:43:03.3560603Z * [new branch] exclamaforte/bump-transformer-version -> origin/exclamaforte/bump-transformer-version 2025-08-14T21:43:03.3561428Z * [new branch] exclamaforte/combo-kernels-perf-run -> origin/exclamaforte/combo-kernels-perf-run 2025-08-14T21:43:03.3562214Z * [new branch] exclamaforte/debug-autotuner-profile -> origin/exclamaforte/debug-autotuner-profile 2025-08-14T21:43:03.3562927Z * [new branch] exclamaforte/do_bench_refactor -> origin/exclamaforte/do_bench_refactor 2025-08-14T21:43:03.3563588Z * [new branch] exclamaforte/enable-mem-dep-fusion -> origin/exclamaforte/enable-mem-dep-fusion 2025-08-14T21:43:03.3564478Z * [new branch] exclamaforte/fix-exhaustive-autotuning -> origin/exclamaforte/fix-exhaustive-autotuning 2025-08-14T21:43:03.3565275Z * [new branch] exclamaforte/fix-trace-parsing-fx-svg -> origin/exclamaforte/fix-trace-parsing-fx-svg 2025-08-14T21:43:03.3948734Z * [new branch] exclamaforte/force-pointwise-cat-perf-run -> origin/exclamaforte/force-pointwise-cat-perf-run 2025-08-14T21:43:03.3949795Z * [new branch] exclamaforte/fusion-data -> origin/exclamaforte/fusion-data 2025-08-14T21:43:03.3950528Z * [new branch] exclamaforte/gemm-benchmark-run -> origin/exclamaforte/gemm-benchmark-run 2025-08-14T21:43:03.3951211Z * [new branch] exclamaforte/gemm-export-model -> origin/exclamaforte/gemm-export-model 2025-08-14T21:43:03.3951830Z * [new branch] exclamaforte/gemm-model -> origin/exclamaforte/gemm-model 2025-08-14T21:43:03.3952547Z * [new branch] exclamaforte/gemm-model-all-data-collection -> origin/exclamaforte/gemm-model-all-data-collection 2025-08-14T21:43:03.3953306Z * [new branch] exclamaforte/gemm-to-amd -> origin/exclamaforte/gemm-to-amd 2025-08-14T21:43:03.3953894Z * [new branch] exclamaforte/just-gemm-model -> origin/exclamaforte/just-gemm-model 2025-08-14T21:43:03.3954612Z * [new branch] exclamaforte/just-gemm-model-no-refactor -> origin/exclamaforte/just-gemm-model-no-refactor 2025-08-14T21:43:03.3955373Z * [new branch] exclamaforte/memory-counter -> origin/exclamaforte/memory-counter 2025-08-14T21:43:03.3956047Z * [new branch] exclamaforte/scheduler-refactor -> origin/exclamaforte/scheduler-refactor 2025-08-14T21:43:03.3956743Z * [new branch] exclamaforte/test_cpp_wrapper_mode -> origin/exclamaforte/test_cpp_wrapper_mode 2025-08-14T21:43:03.3957508Z * [new branch] exclamaforte/update-autotune-configs -> origin/exclamaforte/update-autotune-configs 2025-08-14T21:43:03.3958302Z * [new branch] exclamaforte/update-autotune-configs-2 -> origin/exclamaforte/update-autotune-configs-2 2025-08-14T21:43:03.3959077Z * [new branch] exclamaforte/update-pandas-numpy-ci -> origin/exclamaforte/update-pandas-numpy-ci 2025-08-14T21:43:03.3959744Z * [new branch] exclamforte/gemm-model-final -> origin/exclamforte/gemm-model-final 2025-08-14T21:43:03.3960320Z * [new branch] exec -> origin/exec 2025-08-14T21:43:03.3961007Z * [new branch] experimental-mosaic -> origin/experimental-mosaic 2025-08-14T21:43:03.3961594Z * [new branch] export-D58091437 -> origin/export-D58091437 2025-08-14T21:43:03.3962136Z * [new branch] export-D61047529 -> origin/export-D61047529 2025-08-14T21:43:03.3962609Z * [new branch] export-D68846308 -> origin/export-D68846308 2025-08-14T21:43:03.3963099Z * [new branch] export-D70112642 -> origin/export-D70112642 2025-08-14T21:43:03.3963560Z * [new branch] export-D71412006 -> origin/export-D71412006 2025-08-14T21:43:03.3964044Z * [new branch] export-D72483950 -> origin/export-D72483950 2025-08-14T21:43:03.3964520Z * [new branch] export-D73042989 -> origin/export-D73042989 2025-08-14T21:43:03.3964993Z * [new branch] export-D73287751 -> origin/export-D73287751 2025-08-14T21:43:03.3965474Z * [new branch] export-D75183591 -> origin/export-D75183591 2025-08-14T21:43:03.3965940Z * [new branch] export-D75605373 -> origin/export-D75605373 2025-08-14T21:43:03.3966417Z * [new branch] export-D75617432 -> origin/export-D75617432 2025-08-14T21:43:03.3966908Z * [new branch] export-D75659965 -> origin/export-D75659965 2025-08-14T21:43:03.3967541Z * [new branch] export-D76080931 -> origin/export-D76080931 2025-08-14T21:43:03.3968059Z * [new branch] export-D76463347 -> origin/export-D76463347 2025-08-14T21:43:03.3968529Z * [new branch] export-D76797250 -> origin/export-D76797250 2025-08-14T21:43:03.3969002Z * [new branch] export-D76885271 -> origin/export-D76885271 2025-08-14T21:43:03.3969490Z * [new branch] export-D76885620 -> origin/export-D76885620 2025-08-14T21:43:03.3969966Z * [new branch] export-D76936623 -> origin/export-D76936623 2025-08-14T21:43:03.3970444Z * [new branch] export-D76958268 -> origin/export-D76958268 2025-08-14T21:43:03.3970912Z * [new branch] export-D78047846 -> origin/export-D78047846 2025-08-14T21:43:03.3971394Z * [new branch] export-D78308105 -> origin/export-D78308105 2025-08-14T21:43:03.3971869Z * [new branch] export-D78363609 -> origin/export-D78363609 2025-08-14T21:43:03.3972341Z * [new branch] export-D78375400 -> origin/export-D78375400 2025-08-14T21:43:03.3972815Z * [new branch] export-D78431075 -> origin/export-D78431075 2025-08-14T21:43:03.3973321Z * [new branch] export-D78431305 -> origin/export-D78431305 2025-08-14T21:43:03.3973855Z * [new branch] export-D78458745 -> origin/export-D78458745 2025-08-14T21:43:03.3974326Z * [new branch] export-D78524147 -> origin/export-D78524147 2025-08-14T21:43:03.4366445Z * [new branch] export-D78580107 -> origin/export-D78580107 2025-08-14T21:43:03.4367051Z * [new branch] export-D78588406 -> origin/export-D78588406 2025-08-14T21:43:03.4367532Z * [new branch] export-D78691422 -> origin/export-D78691422 2025-08-14T21:43:03.4368041Z * [new branch] export-D78758466 -> origin/export-D78758466 2025-08-14T21:43:03.4368529Z * [new branch] export-D78822171 -> origin/export-D78822171 2025-08-14T21:43:03.4368995Z * [new branch] export-D78822351 -> origin/export-D78822351 2025-08-14T21:43:03.4369485Z * [new branch] export-D78822507 -> origin/export-D78822507 2025-08-14T21:43:03.4369960Z * [new branch] export-D78826994 -> origin/export-D78826994 2025-08-14T21:43:03.4370653Z * [new branch] export-D78894142 -> origin/export-D78894142 2025-08-14T21:43:03.4371122Z * [new branch] export-D78894324 -> origin/export-D78894324 2025-08-14T21:43:03.4371616Z * [new branch] export-D78907485 -> origin/export-D78907485 2025-08-14T21:43:03.4372096Z * [new branch] export-D78929245 -> origin/export-D78929245 2025-08-14T21:43:03.4372570Z * [new branch] export-D78934925 -> origin/export-D78934925 2025-08-14T21:43:03.4373048Z * [new branch] export-D78953203 -> origin/export-D78953203 2025-08-14T21:43:03.4373513Z * [new branch] export-D78953229 -> origin/export-D78953229 2025-08-14T21:43:03.4373993Z * [new branch] export-D78957093 -> origin/export-D78957093 2025-08-14T21:43:03.4374475Z * [new branch] export-D78957389 -> origin/export-D78957389 2025-08-14T21:43:03.4374944Z * [new branch] export-D78957974 -> origin/export-D78957974 2025-08-14T21:43:03.4375423Z * [new branch] export-D78979812 -> origin/export-D78979812 2025-08-14T21:43:03.4375883Z * [new branch] export-D78996107 -> origin/export-D78996107 2025-08-14T21:43:03.4376371Z * [new branch] export-D79026433 -> origin/export-D79026433 2025-08-14T21:43:03.4376969Z * [new branch] export-D79230339 -> origin/export-D79230339 2025-08-14T21:43:03.4377443Z * [new branch] export-D79319835 -> origin/export-D79319835 2025-08-14T21:43:03.4377922Z * [new branch] export-D79328456 -> origin/export-D79328456 2025-08-14T21:43:03.4378391Z * [new branch] export-D79534608 -> origin/export-D79534608 2025-08-14T21:43:03.4378871Z * [new branch] export-D79647167 -> origin/export-D79647167 2025-08-14T21:43:03.4379340Z * [new branch] export-D79751098 -> origin/export-D79751098 2025-08-14T21:43:03.4379814Z * [new branch] export-D79785974 -> origin/export-D79785974 2025-08-14T21:43:03.4380288Z * [new branch] export-D80025417 -> origin/export-D80025417 2025-08-14T21:43:03.4380756Z * [new branch] export-D80120333 -> origin/export-D80120333 2025-08-14T21:43:03.4381240Z * [new branch] export-D80214882 -> origin/export-D80214882 2025-08-14T21:43:03.4381835Z * [new branch] exported-model-train-idempotent -> origin/exported-model-train-idempotent 2025-08-14T21:43:03.4382500Z * [new branch] ezyang/wip-aot-descriptors -> origin/ezyang/wip-aot-descriptors 2025-08-14T21:43:03.4383024Z * [new branch] fa_u8_brgemm -> origin/fa_u8_brgemm 2025-08-14T21:43:03.4383483Z * [new branch] fastmath_baseline -> origin/fastmath_baseline 2025-08-14T21:43:03.4383967Z * [new branch] fbcode/warm -> origin/fbcode/warm 2025-08-14T21:43:03.4384388Z * [new branch] fca -> origin/fca 2025-08-14T21:43:03.4384811Z * [new branch] fca2_ca5984c -> origin/fca2_ca5984c 2025-08-14T21:43:03.4385233Z * [new branch] fca5 -> origin/fca5 2025-08-14T21:43:03.4385751Z * [new branch] feature/function-numa-binding -> origin/feature/function-numa-binding 2025-08-14T21:43:03.4386398Z * [new branch] fengyuan/external-proj -> origin/fengyuan/external-proj 2025-08-14T21:43:03.4387097Z * [new branch] fengyuan/out-of-tree-xpu-ops-improve-test -> origin/fengyuan/out-of-tree-xpu-ops-improve-test 2025-08-14T21:43:03.4387949Z * [new branch] fengyuan/out-of-tree-xpu-ops-remove-dtype -> origin/fengyuan/out-of-tree-xpu-ops-remove-dtype 2025-08-14T21:43:03.4388740Z * [new branch] fengyuan/test-xpu -> origin/fengyuan/test-xpu 2025-08-14T21:43:03.4389243Z * [new branch] ffast_math_baseline -> origin/ffast_math_baseline 2025-08-14T21:43:03.4389739Z * [new branch] ffast_math_target -> origin/ffast_math_target 2025-08-14T21:43:03.4390221Z * [new branch] findhao/base_commit -> origin/findhao/base_commit 2025-08-14T21:43:03.4814436Z * [new branch] findhao/base_commit1 -> origin/findhao/base_commit1 2025-08-14T21:43:03.4815031Z * [new branch] findhao/fix-indirect-access -> origin/findhao/fix-indirect-access 2025-08-14T21:43:03.4815590Z * [new branch] findhao/multistream2 -> origin/findhao/multistream2 2025-08-14T21:43:03.4816122Z * [new branch] findhao/multistream5 -> origin/findhao/multistream5 2025-08-14T21:43:03.4816634Z * [new branch] findhao/multistream6 -> origin/findhao/multistream6 2025-08-14T21:43:03.4817192Z * [new branch] findhao/operatorbench3 -> origin/findhao/operatorbench3 2025-08-14T21:43:03.4817752Z * [new branch] findhao/operatorbench5 -> origin/findhao/operatorbench5 2025-08-14T21:43:03.4818279Z * [new branch] findhao/tritonparse -> origin/findhao/tritonparse 2025-08-14T21:43:03.4818752Z * [new branch] fix -> origin/fix 2025-08-14T21:43:03.4819433Z * [new branch] fix-ck-gemm-template-format -> origin/fix-ck-gemm-template-format 2025-08-14T21:43:03.4820000Z * [new branch] fix-config-ignore -> origin/fix-config-ignore 2025-08-14T21:43:03.4820491Z * [new branch] fix-dict-guard -> origin/fix-dict-guard 2025-08-14T21:43:03.4821040Z * [new branch] fix-distributed-warning -> origin/fix-distributed-warning 2025-08-14T21:43:03.4821643Z * [new branch] fix-inductor-periodic-0528 -> origin/fix-inductor-periodic-0528 2025-08-14T21:43:03.4822245Z * [new branch] fix-rlease-feature-template -> origin/fix-rlease-feature-template 2025-08-14T21:43:03.4822771Z * [new branch] fix_153389 -> origin/fix_153389 2025-08-14T21:43:03.4823219Z * [new branch] fixes-triage -> origin/fixes-triage 2025-08-14T21:43:03.4823694Z * [new branch] flash_decoding_cpu -> origin/flash_decoding_cpu 2025-08-14T21:43:03.4824169Z * [new branch] flex-flash -> origin/flex-flash 2025-08-14T21:43:03.4824607Z * [new branch] flex-lowering -> origin/flex-lowering 2025-08-14T21:43:03.4825074Z * [new branch] flex-warning -> origin/flex-warning 2025-08-14T21:43:03.4825592Z * [new branch] flex_attention_functorch_grad -> origin/flex_attention_functorch_grad 2025-08-14T21:43:03.4826116Z * [new branch] flex_flash -> origin/flex_flash 2025-08-14T21:43:03.4826644Z * [new branch] fmassa/fix_memeff_sharding_rule -> origin/fmassa/fix_memeff_sharding_rule 2025-08-14T21:43:03.4827268Z * [new branch] fmassa/try_fix_ac_tag_propagation -> origin/fmassa/try_fix_ac_tag_propagation 2025-08-14T21:43:03.4827834Z * [new branch] fsdp2_trace_rules -> origin/fsdp2_trace_rules 2025-08-14T21:43:03.4828288Z * [new branch] fsdpv2_3d -> origin/fsdpv2_3d 2025-08-14T21:43:03.4828734Z * [new branch] fsdpv2_3d_m1 -> origin/fsdpv2_3d_m1 2025-08-14T21:43:03.4829164Z * [new branch] fx_cpp -> origin/fx_cpp 2025-08-14T21:43:03.4829582Z * [new branch] fy/fix-win -> origin/fy/fix-win 2025-08-14T21:43:03.4830067Z * [new branch] gh/AlnisM/1/base -> origin/gh/AlnisM/1/base 2025-08-14T21:43:03.4830660Z * [new branch] gh/AlnisM/1/head -> origin/gh/AlnisM/1/head 2025-08-14T21:43:03.4831148Z * [new branch] gh/CaoE/2/base -> origin/gh/CaoE/2/base 2025-08-14T21:43:03.4831606Z * [new branch] gh/CaoE/2/head -> origin/gh/CaoE/2/head 2025-08-14T21:43:03.4832071Z * [new branch] gh/CaoE/2/orig -> origin/gh/CaoE/2/orig 2025-08-14T21:43:03.4832641Z * [new branch] gh/ColinPeppler/72/base -> origin/gh/ColinPeppler/72/base 2025-08-14T21:43:03.4833200Z * [new branch] gh/ColinPeppler/72/head -> origin/gh/ColinPeppler/72/head 2025-08-14T21:43:03.4833761Z * [new branch] gh/ColinPeppler/72/orig -> origin/gh/ColinPeppler/72/orig 2025-08-14T21:43:03.4834319Z * [new branch] gh/ColinPeppler/77/base -> origin/gh/ColinPeppler/77/base 2025-08-14T21:43:03.4834857Z * [new branch] gh/ColinPeppler/77/head -> origin/gh/ColinPeppler/77/head 2025-08-14T21:43:03.4835411Z * [new branch] gh/ColinPeppler/77/orig -> origin/gh/ColinPeppler/77/orig 2025-08-14T21:43:03.4835952Z * [new branch] gh/ColinPeppler/78/base -> origin/gh/ColinPeppler/78/base 2025-08-14T21:43:03.4836505Z * [new branch] gh/ColinPeppler/78/head -> origin/gh/ColinPeppler/78/head 2025-08-14T21:43:03.4837045Z * [new branch] gh/ColinPeppler/78/orig -> origin/gh/ColinPeppler/78/orig 2025-08-14T21:43:03.4837757Z * [new branch] gh/EikanWang/67/base -> origin/gh/EikanWang/67/base 2025-08-14T21:43:03.4838280Z * [new branch] gh/EikanWang/67/head -> origin/gh/EikanWang/67/head 2025-08-14T21:43:03.4838783Z * [new branch] gh/EikanWang/80/base -> origin/gh/EikanWang/80/base 2025-08-14T21:43:03.5282353Z * [new branch] gh/EikanWang/80/head -> origin/gh/EikanWang/80/head 2025-08-14T21:43:03.5282950Z * [new branch] gh/EikanWang/80/orig -> origin/gh/EikanWang/80/orig 2025-08-14T21:43:03.5283490Z * [new branch] gh/EikanWang/81/base -> origin/gh/EikanWang/81/base 2025-08-14T21:43:03.5284006Z * [new branch] gh/EikanWang/81/head -> origin/gh/EikanWang/81/head 2025-08-14T21:43:03.5284518Z * [new branch] gh/EikanWang/81/orig -> origin/gh/EikanWang/81/orig 2025-08-14T21:43:03.5285028Z * [new branch] gh/Gasoonjia/1/base -> origin/gh/Gasoonjia/1/base 2025-08-14T21:43:03.5285555Z * [new branch] gh/Gasoonjia/1/head -> origin/gh/Gasoonjia/1/head 2025-08-14T21:43:03.5286046Z * [new branch] gh/H-Huang/131/base -> origin/gh/H-Huang/131/base 2025-08-14T21:43:03.5286540Z * [new branch] gh/H-Huang/131/head -> origin/gh/H-Huang/131/head 2025-08-14T21:43:03.5287028Z * [new branch] gh/H-Huang/131/orig -> origin/gh/H-Huang/131/orig 2025-08-14T21:43:03.5287513Z * [new branch] gh/H-Huang/132/base -> origin/gh/H-Huang/132/base 2025-08-14T21:43:03.5288010Z * [new branch] gh/H-Huang/132/head -> origin/gh/H-Huang/132/head 2025-08-14T21:43:03.5288484Z * [new branch] gh/H-Huang/132/orig -> origin/gh/H-Huang/132/orig 2025-08-14T21:43:03.5288970Z * [new branch] gh/H-Huang/180/base -> origin/gh/H-Huang/180/base 2025-08-14T21:43:03.5289462Z * [new branch] gh/H-Huang/180/head -> origin/gh/H-Huang/180/head 2025-08-14T21:43:03.5289939Z * [new branch] gh/H-Huang/180/orig -> origin/gh/H-Huang/180/orig 2025-08-14T21:43:03.5290435Z * [new branch] gh/H-Huang/182/base -> origin/gh/H-Huang/182/base 2025-08-14T21:43:03.5290915Z * [new branch] gh/H-Huang/182/head -> origin/gh/H-Huang/182/head 2025-08-14T21:43:03.5291399Z * [new branch] gh/H-Huang/182/orig -> origin/gh/H-Huang/182/orig 2025-08-14T21:43:03.5292068Z * [new branch] gh/H-Huang/183/base -> origin/gh/H-Huang/183/base 2025-08-14T21:43:03.5292566Z * [new branch] gh/H-Huang/183/head -> origin/gh/H-Huang/183/head 2025-08-14T21:43:03.5293057Z * [new branch] gh/H-Huang/183/orig -> origin/gh/H-Huang/183/orig 2025-08-14T21:43:03.5293530Z * [new branch] gh/H-Huang/187/base -> origin/gh/H-Huang/187/base 2025-08-14T21:43:03.5294152Z * [new branch] gh/H-Huang/187/head -> origin/gh/H-Huang/187/head 2025-08-14T21:43:03.5294642Z * [new branch] gh/H-Huang/187/orig -> origin/gh/H-Huang/187/orig 2025-08-14T21:43:03.5295119Z * [new branch] gh/H-Huang/192/base -> origin/gh/H-Huang/192/base 2025-08-14T21:43:03.5295606Z * [new branch] gh/H-Huang/192/head -> origin/gh/H-Huang/192/head 2025-08-14T21:43:03.5296085Z * [new branch] gh/H-Huang/192/orig -> origin/gh/H-Huang/192/orig 2025-08-14T21:43:03.5296576Z * [new branch] gh/H-Huang/195/base -> origin/gh/H-Huang/195/base 2025-08-14T21:43:03.5297051Z * [new branch] gh/H-Huang/195/head -> origin/gh/H-Huang/195/head 2025-08-14T21:43:03.5297546Z * [new branch] gh/H-Huang/195/orig -> origin/gh/H-Huang/195/orig 2025-08-14T21:43:03.5298036Z * [new branch] gh/H-Huang/196/base -> origin/gh/H-Huang/196/base 2025-08-14T21:43:03.5298638Z * [new branch] gh/H-Huang/196/head -> origin/gh/H-Huang/196/head 2025-08-14T21:43:03.5299122Z * [new branch] gh/H-Huang/196/orig -> origin/gh/H-Huang/196/orig 2025-08-14T21:43:03.5299601Z * [new branch] gh/H-Huang/197/base -> origin/gh/H-Huang/197/base 2025-08-14T21:43:03.5300092Z * [new branch] gh/H-Huang/197/head -> origin/gh/H-Huang/197/head 2025-08-14T21:43:03.5300583Z * [new branch] gh/H-Huang/197/orig -> origin/gh/H-Huang/197/orig 2025-08-14T21:43:03.5301064Z * [new branch] gh/H-Huang/198/base -> origin/gh/H-Huang/198/base 2025-08-14T21:43:03.5301551Z * [new branch] gh/H-Huang/198/head -> origin/gh/H-Huang/198/head 2025-08-14T21:43:03.5302033Z * [new branch] gh/H-Huang/198/orig -> origin/gh/H-Huang/198/orig 2025-08-14T21:43:03.5302587Z * [new branch] gh/H-Huang/199/base -> origin/gh/H-Huang/199/base 2025-08-14T21:43:03.5303134Z * [new branch] gh/H-Huang/199/head -> origin/gh/H-Huang/199/head 2025-08-14T21:43:03.5303611Z * [new branch] gh/H-Huang/199/orig -> origin/gh/H-Huang/199/orig 2025-08-14T21:43:03.5304102Z * [new branch] gh/H-Huang/200/base -> origin/gh/H-Huang/200/base 2025-08-14T21:43:03.5304581Z * [new branch] gh/H-Huang/200/head -> origin/gh/H-Huang/200/head 2025-08-14T21:43:03.5305080Z * [new branch] gh/H-Huang/200/orig -> origin/gh/H-Huang/200/orig 2025-08-14T21:43:03.5305552Z * [new branch] gh/H-Huang/201/base -> origin/gh/H-Huang/201/base 2025-08-14T21:43:03.5712470Z * [new branch] gh/H-Huang/201/head -> origin/gh/H-Huang/201/head 2025-08-14T21:43:03.5713004Z * [new branch] gh/H-Huang/201/orig -> origin/gh/H-Huang/201/orig 2025-08-14T21:43:03.5713485Z * [new branch] gh/H-Huang/202/base -> origin/gh/H-Huang/202/base 2025-08-14T21:43:03.5714006Z * [new branch] gh/H-Huang/202/head -> origin/gh/H-Huang/202/head 2025-08-14T21:43:03.5714501Z * [new branch] gh/H-Huang/202/orig -> origin/gh/H-Huang/202/orig 2025-08-14T21:43:03.5714974Z * [new branch] gh/H-Huang/203/base -> origin/gh/H-Huang/203/base 2025-08-14T21:43:03.5715459Z * [new branch] gh/H-Huang/203/head -> origin/gh/H-Huang/203/head 2025-08-14T21:43:03.5716115Z * [new branch] gh/H-Huang/203/orig -> origin/gh/H-Huang/203/orig 2025-08-14T21:43:03.5716610Z * [new branch] gh/H-Huang/204/base -> origin/gh/H-Huang/204/base 2025-08-14T21:43:03.5717094Z * [new branch] gh/H-Huang/204/head -> origin/gh/H-Huang/204/head 2025-08-14T21:43:03.5717607Z * [new branch] gh/H-Huang/204/orig -> origin/gh/H-Huang/204/orig 2025-08-14T21:43:03.5718101Z * [new branch] gh/H-Huang/205/base -> origin/gh/H-Huang/205/base 2025-08-14T21:43:03.5718574Z * [new branch] gh/H-Huang/205/head -> origin/gh/H-Huang/205/head 2025-08-14T21:43:03.5719062Z * [new branch] gh/H-Huang/205/orig -> origin/gh/H-Huang/205/orig 2025-08-14T21:43:03.5719596Z * [new branch] gh/H-Huang/206/base -> origin/gh/H-Huang/206/base 2025-08-14T21:43:03.5720114Z * [new branch] gh/H-Huang/206/head -> origin/gh/H-Huang/206/head 2025-08-14T21:43:03.5720648Z * [new branch] gh/H-Huang/206/orig -> origin/gh/H-Huang/206/orig 2025-08-14T21:43:03.5721124Z * [new branch] gh/H-Huang/207/base -> origin/gh/H-Huang/207/base 2025-08-14T21:43:03.5721624Z * [new branch] gh/H-Huang/207/head -> origin/gh/H-Huang/207/head 2025-08-14T21:43:03.5722095Z * [new branch] gh/H-Huang/207/orig -> origin/gh/H-Huang/207/orig 2025-08-14T21:43:03.5723314Z * [new branch] gh/H-Huang/208/base -> origin/gh/H-Huang/208/base 2025-08-14T21:43:03.5723798Z * [new branch] gh/H-Huang/208/head -> origin/gh/H-Huang/208/head 2025-08-14T21:43:03.5724279Z * [new branch] gh/H-Huang/208/orig -> origin/gh/H-Huang/208/orig 2025-08-14T21:43:03.5724763Z * [new branch] gh/H-Huang/209/base -> origin/gh/H-Huang/209/base 2025-08-14T21:43:03.5725240Z * [new branch] gh/H-Huang/209/head -> origin/gh/H-Huang/209/head 2025-08-14T21:43:03.5725741Z * [new branch] gh/H-Huang/209/orig -> origin/gh/H-Huang/209/orig 2025-08-14T21:43:03.5726226Z * [new branch] gh/H-Huang/210/base -> origin/gh/H-Huang/210/base 2025-08-14T21:43:03.5726708Z * [new branch] gh/H-Huang/210/head -> origin/gh/H-Huang/210/head 2025-08-14T21:43:03.5727192Z * [new branch] gh/H-Huang/210/orig -> origin/gh/H-Huang/210/orig 2025-08-14T21:43:03.5727708Z * [new branch] gh/IvanKobzarev/107/base -> origin/gh/IvanKobzarev/107/base 2025-08-14T21:43:03.5728263Z * [new branch] gh/IvanKobzarev/107/head -> origin/gh/IvanKobzarev/107/head 2025-08-14T21:43:03.5728831Z * [new branch] gh/IvanKobzarev/107/orig -> origin/gh/IvanKobzarev/107/orig 2025-08-14T21:43:03.5729370Z * [new branch] gh/IvanKobzarev/110/base -> origin/gh/IvanKobzarev/110/base 2025-08-14T21:43:03.5729934Z * [new branch] gh/IvanKobzarev/110/head -> origin/gh/IvanKobzarev/110/head 2025-08-14T21:43:03.5730473Z * [new branch] gh/IvanKobzarev/110/orig -> origin/gh/IvanKobzarev/110/orig 2025-08-14T21:43:03.5731034Z * [new branch] gh/IvanKobzarev/111/base -> origin/gh/IvanKobzarev/111/base 2025-08-14T21:43:03.5731587Z * [new branch] gh/IvanKobzarev/111/head -> origin/gh/IvanKobzarev/111/head 2025-08-14T21:43:03.5732142Z * [new branch] gh/IvanKobzarev/111/orig -> origin/gh/IvanKobzarev/111/orig 2025-08-14T21:43:03.5732698Z * [new branch] gh/IvanKobzarev/112/base -> origin/gh/IvanKobzarev/112/base 2025-08-14T21:43:03.5733239Z * [new branch] gh/IvanKobzarev/112/head -> origin/gh/IvanKobzarev/112/head 2025-08-14T21:43:03.5733799Z * [new branch] gh/IvanKobzarev/112/orig -> origin/gh/IvanKobzarev/112/orig 2025-08-14T21:43:03.5734347Z * [new branch] gh/IvanKobzarev/115/base -> origin/gh/IvanKobzarev/115/base 2025-08-14T21:43:03.5735024Z * [new branch] gh/IvanKobzarev/115/head -> origin/gh/IvanKobzarev/115/head 2025-08-14T21:43:03.5735589Z * [new branch] gh/IvanKobzarev/115/orig -> origin/gh/IvanKobzarev/115/orig 2025-08-14T21:43:03.5736138Z * [new branch] gh/IvanKobzarev/116/base -> origin/gh/IvanKobzarev/116/base 2025-08-14T21:43:03.5736715Z * [new branch] gh/IvanKobzarev/116/head -> origin/gh/IvanKobzarev/116/head 2025-08-14T21:43:03.6154418Z * [new branch] gh/IvanKobzarev/116/orig -> origin/gh/IvanKobzarev/116/orig 2025-08-14T21:43:03.6155006Z * [new branch] gh/IvanKobzarev/118/base -> origin/gh/IvanKobzarev/118/base 2025-08-14T21:43:03.6155578Z * [new branch] gh/IvanKobzarev/118/head -> origin/gh/IvanKobzarev/118/head 2025-08-14T21:43:03.6156123Z * [new branch] gh/IvanKobzarev/118/orig -> origin/gh/IvanKobzarev/118/orig 2025-08-14T21:43:03.6156706Z * [new branch] gh/IvanKobzarev/124/base -> origin/gh/IvanKobzarev/124/base 2025-08-14T21:43:03.6157391Z * [new branch] gh/IvanKobzarev/124/head -> origin/gh/IvanKobzarev/124/head 2025-08-14T21:43:03.6157974Z * [new branch] gh/IvanKobzarev/124/orig -> origin/gh/IvanKobzarev/124/orig 2025-08-14T21:43:03.6158610Z * [new branch] gh/IvanKobzarev/126/base -> origin/gh/IvanKobzarev/126/base 2025-08-14T21:43:03.6159430Z * [new branch] gh/IvanKobzarev/126/head -> origin/gh/IvanKobzarev/126/head 2025-08-14T21:43:03.6160067Z * [new branch] gh/IvanKobzarev/126/orig -> origin/gh/IvanKobzarev/126/orig 2025-08-14T21:43:03.6160651Z * [new branch] gh/IvanKobzarev/127/base -> origin/gh/IvanKobzarev/127/base 2025-08-14T21:43:03.6161291Z * [new branch] gh/IvanKobzarev/127/head -> origin/gh/IvanKobzarev/127/head 2025-08-14T21:43:03.6161896Z * [new branch] gh/IvanKobzarev/127/orig -> origin/gh/IvanKobzarev/127/orig 2025-08-14T21:43:03.6162520Z * [new branch] gh/IvanKobzarev/128/base -> origin/gh/IvanKobzarev/128/base 2025-08-14T21:43:03.6163165Z * [new branch] gh/IvanKobzarev/128/head -> origin/gh/IvanKobzarev/128/head 2025-08-14T21:43:03.6163746Z * [new branch] gh/IvanKobzarev/128/orig -> origin/gh/IvanKobzarev/128/orig 2025-08-14T21:43:03.6164390Z * [new branch] gh/IvanKobzarev/129/base -> origin/gh/IvanKobzarev/129/base 2025-08-14T21:43:03.6165018Z * [new branch] gh/IvanKobzarev/129/head -> origin/gh/IvanKobzarev/129/head 2025-08-14T21:43:03.6165608Z * [new branch] gh/IvanKobzarev/129/orig -> origin/gh/IvanKobzarev/129/orig 2025-08-14T21:43:03.6166250Z * [new branch] gh/IvanKobzarev/130/base -> origin/gh/IvanKobzarev/130/base 2025-08-14T21:43:03.6166827Z * [new branch] gh/IvanKobzarev/130/head -> origin/gh/IvanKobzarev/130/head 2025-08-14T21:43:03.6167474Z * [new branch] gh/IvanKobzarev/130/orig -> origin/gh/IvanKobzarev/130/orig 2025-08-14T21:43:03.6168147Z * [new branch] gh/IvanKobzarev/131/base -> origin/gh/IvanKobzarev/131/base 2025-08-14T21:43:03.6168732Z * [new branch] gh/IvanKobzarev/131/head -> origin/gh/IvanKobzarev/131/head 2025-08-14T21:43:03.6169368Z * [new branch] gh/IvanKobzarev/131/orig -> origin/gh/IvanKobzarev/131/orig 2025-08-14T21:43:03.6169911Z * [new branch] gh/IvanKobzarev/132/base -> origin/gh/IvanKobzarev/132/base 2025-08-14T21:43:03.6170469Z * [new branch] gh/IvanKobzarev/132/head -> origin/gh/IvanKobzarev/132/head 2025-08-14T21:43:03.6171031Z * [new branch] gh/IvanKobzarev/132/orig -> origin/gh/IvanKobzarev/132/orig 2025-08-14T21:43:03.6171571Z * [new branch] gh/IvanKobzarev/133/base -> origin/gh/IvanKobzarev/133/base 2025-08-14T21:43:03.6172854Z * [new branch] gh/IvanKobzarev/133/head -> origin/gh/IvanKobzarev/133/head 2025-08-14T21:43:03.6173411Z * [new branch] gh/IvanKobzarev/133/orig -> origin/gh/IvanKobzarev/133/orig 2025-08-14T21:43:03.6173961Z * [new branch] gh/IvanKobzarev/134/base -> origin/gh/IvanKobzarev/134/base 2025-08-14T21:43:03.6174533Z * [new branch] gh/IvanKobzarev/134/head -> origin/gh/IvanKobzarev/134/head 2025-08-14T21:43:03.6175177Z * [new branch] gh/IvanKobzarev/134/orig -> origin/gh/IvanKobzarev/134/orig 2025-08-14T21:43:03.6175773Z * [new branch] gh/IvanKobzarev/135/base -> origin/gh/IvanKobzarev/135/base 2025-08-14T21:43:03.6176315Z * [new branch] gh/IvanKobzarev/135/head -> origin/gh/IvanKobzarev/135/head 2025-08-14T21:43:03.6176869Z * [new branch] gh/IvanKobzarev/135/orig -> origin/gh/IvanKobzarev/135/orig 2025-08-14T21:43:03.6177438Z * [new branch] gh/NikhilAPatel/1/base -> origin/gh/NikhilAPatel/1/base 2025-08-14T21:43:03.6177978Z * [new branch] gh/NikhilAPatel/1/head -> origin/gh/NikhilAPatel/1/head 2025-08-14T21:43:03.6178532Z * [new branch] gh/NikhilAPatel/16/base -> origin/gh/NikhilAPatel/16/base 2025-08-14T21:43:03.6179077Z * [new branch] gh/NikhilAPatel/16/head -> origin/gh/NikhilAPatel/16/head 2025-08-14T21:43:03.6179629Z * [new branch] gh/NikhilAPatel/16/orig -> origin/gh/NikhilAPatel/16/orig 2025-08-14T21:43:03.6180289Z * [new branch] gh/NikhilAPatel/18/base -> origin/gh/NikhilAPatel/18/base 2025-08-14T21:43:03.6180873Z * [new branch] gh/NikhilAPatel/18/head -> origin/gh/NikhilAPatel/18/head 2025-08-14T21:43:03.6181462Z * [new branch] gh/NikhilAPatel/18/orig -> origin/gh/NikhilAPatel/18/orig 2025-08-14T21:43:03.6730976Z * [new branch] gh/NikhilAPatel/19/base -> origin/gh/NikhilAPatel/19/base 2025-08-14T21:43:03.6731680Z * [new branch] gh/NikhilAPatel/19/head -> origin/gh/NikhilAPatel/19/head 2025-08-14T21:43:03.6732319Z * [new branch] gh/NikhilAPatel/19/orig -> origin/gh/NikhilAPatel/19/orig 2025-08-14T21:43:03.6732888Z * [new branch] gh/NikhilAPatel/2/base -> origin/gh/NikhilAPatel/2/base 2025-08-14T21:43:03.6733446Z * [new branch] gh/NikhilAPatel/2/head -> origin/gh/NikhilAPatel/2/head 2025-08-14T21:43:03.6733998Z * [new branch] gh/NikhilAPatel/4/base -> origin/gh/NikhilAPatel/4/base 2025-08-14T21:43:03.6734667Z * [new branch] gh/NikhilAPatel/4/head -> origin/gh/NikhilAPatel/4/head 2025-08-14T21:43:03.6735272Z * [new branch] gh/NikhilAPatel/8/base -> origin/gh/NikhilAPatel/8/base 2025-08-14T21:43:03.6735988Z * [new branch] gh/NikhilAPatel/8/head -> origin/gh/NikhilAPatel/8/head 2025-08-14T21:43:03.6736597Z * [new branch] gh/NikhilAPatel/8/orig -> origin/gh/NikhilAPatel/8/orig 2025-08-14T21:43:03.6737194Z * [new branch] gh/NikhilAPatel/9/base -> origin/gh/NikhilAPatel/9/base 2025-08-14T21:43:03.6737772Z * [new branch] gh/NikhilAPatel/9/head -> origin/gh/NikhilAPatel/9/head 2025-08-14T21:43:03.6738407Z * [new branch] gh/NikhilAPatel/9/orig -> origin/gh/NikhilAPatel/9/orig 2025-08-14T21:43:03.6738977Z * [new branch] gh/PaliC/1/base -> origin/gh/PaliC/1/base 2025-08-14T21:43:03.6739484Z * [new branch] gh/PaliC/1/head -> origin/gh/PaliC/1/head 2025-08-14T21:43:03.6740006Z * [new branch] gh/PaliC/1/orig -> origin/gh/PaliC/1/orig 2025-08-14T21:43:03.6740535Z * [new branch] gh/PaliC/12/base -> origin/gh/PaliC/12/base 2025-08-14T21:43:03.6741073Z * [new branch] gh/PaliC/12/head -> origin/gh/PaliC/12/head 2025-08-14T21:43:03.6741818Z * [new branch] gh/PaliC/12/orig -> origin/gh/PaliC/12/orig 2025-08-14T21:43:03.6742330Z * [new branch] gh/PaliC/13/base -> origin/gh/PaliC/13/base 2025-08-14T21:43:03.6742848Z * [new branch] gh/PaliC/13/head -> origin/gh/PaliC/13/head 2025-08-14T21:43:03.6743363Z * [new branch] gh/PaliC/13/orig -> origin/gh/PaliC/13/orig 2025-08-14T21:43:03.6743866Z * [new branch] gh/PaliC/14/base -> origin/gh/PaliC/14/base 2025-08-14T21:43:03.6744472Z * [new branch] gh/PaliC/14/head -> origin/gh/PaliC/14/head 2025-08-14T21:43:03.6744958Z * [new branch] gh/PaliC/14/orig -> origin/gh/PaliC/14/orig 2025-08-14T21:43:03.6745538Z * [new branch] gh/PaliC/15/base -> origin/gh/PaliC/15/base 2025-08-14T21:43:03.6746051Z * [new branch] gh/PaliC/15/head -> origin/gh/PaliC/15/head 2025-08-14T21:43:03.6746539Z * [new branch] gh/PaliC/15/orig -> origin/gh/PaliC/15/orig 2025-08-14T21:43:03.6747108Z * [new branch] gh/PaliC/16/base -> origin/gh/PaliC/16/base 2025-08-14T21:43:03.6747599Z * [new branch] gh/PaliC/16/head -> origin/gh/PaliC/16/head 2025-08-14T21:43:03.6748109Z * [new branch] gh/PaliC/16/orig -> origin/gh/PaliC/16/orig 2025-08-14T21:43:03.6748645Z * [new branch] gh/PaliC/17/base -> origin/gh/PaliC/17/base 2025-08-14T21:43:03.6749268Z * [new branch] gh/PaliC/17/head -> origin/gh/PaliC/17/head 2025-08-14T21:43:03.6749827Z * [new branch] gh/PaliC/17/orig -> origin/gh/PaliC/17/orig 2025-08-14T21:43:03.6750340Z * [new branch] gh/PaliC/18/base -> origin/gh/PaliC/18/base 2025-08-14T21:43:03.6750897Z * [new branch] gh/PaliC/18/head -> origin/gh/PaliC/18/head 2025-08-14T21:43:03.6751409Z * [new branch] gh/PaliC/18/orig -> origin/gh/PaliC/18/orig 2025-08-14T21:43:03.6751930Z * [new branch] gh/PaliC/19/base -> origin/gh/PaliC/19/base 2025-08-14T21:43:03.6752440Z * [new branch] gh/PaliC/19/head -> origin/gh/PaliC/19/head 2025-08-14T21:43:03.6752980Z * [new branch] gh/PaliC/19/orig -> origin/gh/PaliC/19/orig 2025-08-14T21:43:03.6753844Z * [new branch] gh/PaliC/2/base -> origin/gh/PaliC/2/base 2025-08-14T21:43:03.6754373Z * [new branch] gh/PaliC/2/head -> origin/gh/PaliC/2/head 2025-08-14T21:43:03.6754866Z * [new branch] gh/PaliC/2/orig -> origin/gh/PaliC/2/orig 2025-08-14T21:43:03.6755398Z * [new branch] gh/PaliC/20/base -> origin/gh/PaliC/20/base 2025-08-14T21:43:03.6755936Z * [new branch] gh/PaliC/20/head -> origin/gh/PaliC/20/head 2025-08-14T21:43:03.6756459Z * [new branch] gh/PaliC/20/orig -> origin/gh/PaliC/20/orig 2025-08-14T21:43:03.6756982Z * [new branch] gh/PaliC/21/base -> origin/gh/PaliC/21/base 2025-08-14T21:43:03.6757568Z * [new branch] gh/PaliC/21/head -> origin/gh/PaliC/21/head 2025-08-14T21:43:03.7438858Z * [new branch] gh/PaliC/21/orig -> origin/gh/PaliC/21/orig 2025-08-14T21:43:03.7439437Z * [new branch] gh/PaliC/22/base -> origin/gh/PaliC/22/base 2025-08-14T21:43:03.7440007Z * [new branch] gh/PaliC/22/head -> origin/gh/PaliC/22/head 2025-08-14T21:43:03.7440528Z * [new branch] gh/PaliC/22/orig -> origin/gh/PaliC/22/orig 2025-08-14T21:43:03.7441027Z * [new branch] gh/PaliC/23/base -> origin/gh/PaliC/23/base 2025-08-14T21:43:03.7441549Z * [new branch] gh/PaliC/23/head -> origin/gh/PaliC/23/head 2025-08-14T21:43:03.7442216Z * [new branch] gh/PaliC/23/orig -> origin/gh/PaliC/23/orig 2025-08-14T21:43:03.7442808Z * [new branch] gh/PaliC/24/base -> origin/gh/PaliC/24/base 2025-08-14T21:43:03.7443336Z * [new branch] gh/PaliC/24/head -> origin/gh/PaliC/24/head 2025-08-14T21:43:03.7443815Z * [new branch] gh/PaliC/24/orig -> origin/gh/PaliC/24/orig 2025-08-14T21:43:03.7444390Z * [new branch] gh/PaulZhang12/17/base -> origin/gh/PaulZhang12/17/base 2025-08-14T21:43:03.7445002Z * [new branch] gh/PaulZhang12/17/head -> origin/gh/PaulZhang12/17/head 2025-08-14T21:43:03.7445571Z * [new branch] gh/PaulZhang12/18/base -> origin/gh/PaulZhang12/18/base 2025-08-14T21:43:03.7446162Z * [new branch] gh/PaulZhang12/18/head -> origin/gh/PaulZhang12/18/head 2025-08-14T21:43:03.7446709Z * [new branch] gh/PaulZhang12/18/orig -> origin/gh/PaulZhang12/18/orig 2025-08-14T21:43:03.7447308Z * [new branch] gh/PaulZhang12/19/base -> origin/gh/PaulZhang12/19/base 2025-08-14T21:43:03.7447901Z * [new branch] gh/PaulZhang12/19/head -> origin/gh/PaulZhang12/19/head 2025-08-14T21:43:03.7448447Z * [new branch] gh/PaulZhang12/19/orig -> origin/gh/PaulZhang12/19/orig 2025-08-14T21:43:03.7449009Z * [new branch] gh/PaulZhang12/20/base -> origin/gh/PaulZhang12/20/base 2025-08-14T21:43:03.7449692Z * [new branch] gh/PaulZhang12/20/head -> origin/gh/PaulZhang12/20/head 2025-08-14T21:43:03.7450266Z * [new branch] gh/PaulZhang12/20/orig -> origin/gh/PaulZhang12/20/orig 2025-08-14T21:43:03.7450822Z * [new branch] gh/PaulZhang12/21/base -> origin/gh/PaulZhang12/21/base 2025-08-14T21:43:03.7451428Z * [new branch] gh/PaulZhang12/21/head -> origin/gh/PaulZhang12/21/head 2025-08-14T21:43:03.7451989Z * [new branch] gh/PaulZhang12/21/orig -> origin/gh/PaulZhang12/21/orig 2025-08-14T21:43:03.7452547Z * [new branch] gh/PaulZhang12/22/base -> origin/gh/PaulZhang12/22/base 2025-08-14T21:43:03.7453134Z * [new branch] gh/PaulZhang12/22/head -> origin/gh/PaulZhang12/22/head 2025-08-14T21:43:03.7453698Z * [new branch] gh/PaulZhang12/22/orig -> origin/gh/PaulZhang12/22/orig 2025-08-14T21:43:03.7454277Z * [new branch] gh/SamGinzburg/11/base -> origin/gh/SamGinzburg/11/base 2025-08-14T21:43:03.7454868Z * [new branch] gh/SamGinzburg/11/head -> origin/gh/SamGinzburg/11/head 2025-08-14T21:43:03.7455438Z * [new branch] gh/Sidharth123-cpu/24/base -> origin/gh/Sidharth123-cpu/24/base 2025-08-14T21:43:03.7456050Z * [new branch] gh/Sidharth123-cpu/25/base -> origin/gh/Sidharth123-cpu/25/base 2025-08-14T21:43:03.7456668Z * [new branch] gh/Sidharth123-cpu/26/base -> origin/gh/Sidharth123-cpu/26/base 2025-08-14T21:43:03.7457250Z * [new branch] gh/Sidharth123-cpu/27/base -> origin/gh/Sidharth123-cpu/27/base 2025-08-14T21:43:03.7457850Z * [new branch] gh/Sidharth123-cpu/42/base -> origin/gh/Sidharth123-cpu/42/base 2025-08-14T21:43:03.7458428Z * [new branch] gh/Sidharth123-cpu/42/head -> origin/gh/Sidharth123-cpu/42/head 2025-08-14T21:43:03.7459040Z * [new branch] gh/Sidharth123-cpu/42/orig -> origin/gh/Sidharth123-cpu/42/orig 2025-08-14T21:43:03.7459645Z * [new branch] gh/Sidharth123-cpu/43/base -> origin/gh/Sidharth123-cpu/43/base 2025-08-14T21:43:03.7460230Z * [new branch] gh/Sidharth123-cpu/43/head -> origin/gh/Sidharth123-cpu/43/head 2025-08-14T21:43:03.7460852Z * [new branch] gh/Sidharth123-cpu/43/orig -> origin/gh/Sidharth123-cpu/43/orig 2025-08-14T21:43:03.7461480Z * [new branch] gh/Sidharth123-cpu/44/base -> origin/gh/Sidharth123-cpu/44/base 2025-08-14T21:43:03.7462200Z * [new branch] gh/Sidharth123-cpu/44/head -> origin/gh/Sidharth123-cpu/44/head 2025-08-14T21:43:03.7462873Z * [new branch] gh/Sidharth123-cpu/44/orig -> origin/gh/Sidharth123-cpu/44/orig 2025-08-14T21:43:03.7463462Z * [new branch] gh/Sidharth123-cpu/45/base -> origin/gh/Sidharth123-cpu/45/base 2025-08-14T21:43:03.7464072Z * [new branch] gh/Sidharth123-cpu/45/head -> origin/gh/Sidharth123-cpu/45/head 2025-08-14T21:43:03.7464661Z * [new branch] gh/Sidharth123-cpu/45/orig -> origin/gh/Sidharth123-cpu/45/orig 2025-08-14T21:43:03.7998306Z * [new branch] gh/StrongerXi/1/base -> origin/gh/StrongerXi/1/base 2025-08-14T21:43:03.7998989Z * [new branch] gh/StrongerXi/1/head -> origin/gh/StrongerXi/1/head 2025-08-14T21:43:03.7999592Z * [new branch] gh/StrongerXi/103/base -> origin/gh/StrongerXi/103/base 2025-08-14T21:43:03.8000169Z * [new branch] gh/StrongerXi/103/head -> origin/gh/StrongerXi/103/head 2025-08-14T21:43:03.8017717Z * [new branch] gh/StrongerXi/103/orig -> origin/gh/StrongerXi/103/orig 2025-08-14T21:43:03.8018295Z * [new branch] gh/StrongerXi/133/base -> origin/gh/StrongerXi/133/base 2025-08-14T21:43:03.8018823Z * [new branch] gh/StrongerXi/133/head -> origin/gh/StrongerXi/133/head 2025-08-14T21:43:03.8019357Z * [new branch] gh/StrongerXi/133/orig -> origin/gh/StrongerXi/133/orig 2025-08-14T21:43:03.8020088Z * [new branch] gh/StrongerXi/134/base -> origin/gh/StrongerXi/134/base 2025-08-14T21:43:03.8020669Z * [new branch] gh/StrongerXi/134/head -> origin/gh/StrongerXi/134/head 2025-08-14T21:43:03.8021270Z * [new branch] gh/StrongerXi/134/orig -> origin/gh/StrongerXi/134/orig 2025-08-14T21:43:03.8021788Z * [new branch] gh/StrongerXi/135/base -> origin/gh/StrongerXi/135/base 2025-08-14T21:43:03.8022335Z * [new branch] gh/StrongerXi/135/head -> origin/gh/StrongerXi/135/head 2025-08-14T21:43:03.8022851Z * [new branch] gh/StrongerXi/135/orig -> origin/gh/StrongerXi/135/orig 2025-08-14T21:43:03.8023385Z * [new branch] gh/StrongerXi/136/base -> origin/gh/StrongerXi/136/base 2025-08-14T21:43:03.8023921Z * [new branch] gh/StrongerXi/136/head -> origin/gh/StrongerXi/136/head 2025-08-14T21:43:03.8024445Z * [new branch] gh/StrongerXi/136/orig -> origin/gh/StrongerXi/136/orig 2025-08-14T21:43:03.8024975Z * [new branch] gh/StrongerXi/137/base -> origin/gh/StrongerXi/137/base 2025-08-14T21:43:03.8025498Z * [new branch] gh/StrongerXi/137/head -> origin/gh/StrongerXi/137/head 2025-08-14T21:43:03.8026027Z * [new branch] gh/StrongerXi/137/orig -> origin/gh/StrongerXi/137/orig 2025-08-14T21:43:03.8026600Z * [new branch] gh/StrongerXi/138/base -> origin/gh/StrongerXi/138/base 2025-08-14T21:43:03.8027171Z * [new branch] gh/StrongerXi/138/head -> origin/gh/StrongerXi/138/head 2025-08-14T21:43:03.8027705Z * [new branch] gh/StrongerXi/138/orig -> origin/gh/StrongerXi/138/orig 2025-08-14T21:43:03.8028213Z * [new branch] gh/StrongerXi/71/base -> origin/gh/StrongerXi/71/base 2025-08-14T21:43:03.8028737Z * [new branch] gh/StrongerXi/71/head -> origin/gh/StrongerXi/71/head 2025-08-14T21:43:03.8029264Z * [new branch] gh/StrongerXi/72/base -> origin/gh/StrongerXi/72/base 2025-08-14T21:43:03.8029773Z * [new branch] gh/StrongerXi/72/head -> origin/gh/StrongerXi/72/head 2025-08-14T21:43:03.8030289Z * [new branch] gh/XilunWu/131/base -> origin/gh/XilunWu/131/base 2025-08-14T21:43:03.8030779Z * [new branch] gh/XilunWu/131/head -> origin/gh/XilunWu/131/head 2025-08-14T21:43:03.8031410Z * [new branch] gh/XilunWu/131/orig -> origin/gh/XilunWu/131/orig 2025-08-14T21:43:03.8031906Z * [new branch] gh/XilunWu/133/base -> origin/gh/XilunWu/133/base 2025-08-14T21:43:03.8032462Z * [new branch] gh/XilunWu/133/head -> origin/gh/XilunWu/133/head 2025-08-14T21:43:03.8033013Z * [new branch] gh/XilunWu/133/orig -> origin/gh/XilunWu/133/orig 2025-08-14T21:43:03.8033507Z * [new branch] gh/XilunWu/136/base -> origin/gh/XilunWu/136/base 2025-08-14T21:43:03.8034027Z * [new branch] gh/XilunWu/136/head -> origin/gh/XilunWu/136/head 2025-08-14T21:43:03.8034516Z * [new branch] gh/XilunWu/136/orig -> origin/gh/XilunWu/136/orig 2025-08-14T21:43:03.8035033Z * [new branch] gh/XilunWu/139/base -> origin/gh/XilunWu/139/base 2025-08-14T21:43:03.8035533Z * [new branch] gh/XilunWu/139/head -> origin/gh/XilunWu/139/head 2025-08-14T21:43:03.8036025Z * [new branch] gh/XilunWu/139/orig -> origin/gh/XilunWu/139/orig 2025-08-14T21:43:03.8036531Z * [new branch] gh/XilunWu/143/base -> origin/gh/XilunWu/143/base 2025-08-14T21:43:03.8037022Z * [new branch] gh/XilunWu/143/head -> origin/gh/XilunWu/143/head 2025-08-14T21:43:03.8037599Z * [new branch] gh/XilunWu/143/orig -> origin/gh/XilunWu/143/orig 2025-08-14T21:43:03.8038295Z * [new branch] gh/XilunWu/144/base -> origin/gh/XilunWu/144/base 2025-08-14T21:43:03.8038791Z * [new branch] gh/XilunWu/144/head -> origin/gh/XilunWu/144/head 2025-08-14T21:43:03.8039305Z * [new branch] gh/XilunWu/144/orig -> origin/gh/XilunWu/144/orig 2025-08-14T21:43:03.8039795Z * [new branch] gh/XilunWu/145/base -> origin/gh/XilunWu/145/base 2025-08-14T21:43:03.8040298Z * [new branch] gh/XilunWu/145/head -> origin/gh/XilunWu/145/head 2025-08-14T21:43:03.8462241Z * [new branch] gh/XilunWu/145/orig -> origin/gh/XilunWu/145/orig 2025-08-14T21:43:03.8462803Z * [new branch] gh/XilunWu/146/base -> origin/gh/XilunWu/146/base 2025-08-14T21:43:03.8463321Z * [new branch] gh/XilunWu/146/head -> origin/gh/XilunWu/146/head 2025-08-14T21:43:03.8463814Z * [new branch] gh/XilunWu/146/orig -> origin/gh/XilunWu/146/orig 2025-08-14T21:43:03.8464327Z * [new branch] gh/XilunWu/147/base -> origin/gh/XilunWu/147/base 2025-08-14T21:43:03.8464919Z * [new branch] gh/XilunWu/147/head -> origin/gh/XilunWu/147/head 2025-08-14T21:43:03.8465407Z * [new branch] gh/XilunWu/147/orig -> origin/gh/XilunWu/147/orig 2025-08-14T21:43:03.8465901Z * [new branch] gh/XilunWu/148/base -> origin/gh/XilunWu/148/base 2025-08-14T21:43:03.8466383Z * [new branch] gh/XilunWu/148/head -> origin/gh/XilunWu/148/head 2025-08-14T21:43:03.8466888Z * [new branch] gh/XilunWu/148/orig -> origin/gh/XilunWu/148/orig 2025-08-14T21:43:03.8467378Z * [new branch] gh/XilunWu/149/base -> origin/gh/XilunWu/149/base 2025-08-14T21:43:03.8467865Z * [new branch] gh/XilunWu/149/head -> origin/gh/XilunWu/149/head 2025-08-14T21:43:03.8468357Z * [new branch] gh/XilunWu/149/orig -> origin/gh/XilunWu/149/orig 2025-08-14T21:43:03.8468843Z * [new branch] gh/XilunWu/150/base -> origin/gh/XilunWu/150/base 2025-08-14T21:43:03.8469333Z * [new branch] gh/XilunWu/150/head -> origin/gh/XilunWu/150/head 2025-08-14T21:43:03.8469823Z * [new branch] gh/XilunWu/150/orig -> origin/gh/XilunWu/150/orig 2025-08-14T21:43:03.8470345Z * [new branch] gh/XilunWu/151/base -> origin/gh/XilunWu/151/base 2025-08-14T21:43:03.8471065Z * [new branch] gh/XilunWu/151/head -> origin/gh/XilunWu/151/head 2025-08-14T21:43:03.8471555Z * [new branch] gh/XilunWu/151/orig -> origin/gh/XilunWu/151/orig 2025-08-14T21:43:03.8472064Z * [new branch] gh/XilunWu/152/base -> origin/gh/XilunWu/152/base 2025-08-14T21:43:03.8472550Z * [new branch] gh/XilunWu/152/head -> origin/gh/XilunWu/152/head 2025-08-14T21:43:03.8473055Z * [new branch] gh/XilunWu/152/orig -> origin/gh/XilunWu/152/orig 2025-08-14T21:43:03.8473556Z * [new branch] gh/XilunWu/153/base -> origin/gh/XilunWu/153/base 2025-08-14T21:43:03.8474045Z * [new branch] gh/XilunWu/153/head -> origin/gh/XilunWu/153/head 2025-08-14T21:43:03.8474543Z * [new branch] gh/XilunWu/153/orig -> origin/gh/XilunWu/153/orig 2025-08-14T21:43:03.8475022Z * [new branch] gh/XilunWu/154/base -> origin/gh/XilunWu/154/base 2025-08-14T21:43:03.8475517Z * [new branch] gh/XilunWu/154/head -> origin/gh/XilunWu/154/head 2025-08-14T21:43:03.8476019Z * [new branch] gh/XilunWu/154/orig -> origin/gh/XilunWu/154/orig 2025-08-14T21:43:03.8476557Z * [new branch] gh/XilunWu/156/base -> origin/gh/XilunWu/156/base 2025-08-14T21:43:03.8477130Z * [new branch] gh/XilunWu/156/head -> origin/gh/XilunWu/156/head 2025-08-14T21:43:03.8477820Z * [new branch] gh/XilunWu/156/orig -> origin/gh/XilunWu/156/orig 2025-08-14T21:43:03.8478323Z * [new branch] gh/XilunWu/157/base -> origin/gh/XilunWu/157/base 2025-08-14T21:43:03.8478815Z * [new branch] gh/XilunWu/157/head -> origin/gh/XilunWu/157/head 2025-08-14T21:43:03.8479302Z * [new branch] gh/XilunWu/157/orig -> origin/gh/XilunWu/157/orig 2025-08-14T21:43:03.8479789Z * [new branch] gh/XilunWu/158/base -> origin/gh/XilunWu/158/base 2025-08-14T21:43:03.8480275Z * [new branch] gh/XilunWu/158/head -> origin/gh/XilunWu/158/head 2025-08-14T21:43:03.8480763Z * [new branch] gh/XilunWu/158/orig -> origin/gh/XilunWu/158/orig 2025-08-14T21:43:03.8481244Z * [new branch] gh/XilunWu/159/base -> origin/gh/XilunWu/159/base 2025-08-14T21:43:03.8481731Z * [new branch] gh/XilunWu/159/head -> origin/gh/XilunWu/159/head 2025-08-14T21:43:03.8482279Z * [new branch] gh/XilunWu/159/orig -> origin/gh/XilunWu/159/orig 2025-08-14T21:43:03.8482801Z * [new branch] gh/XilunWu/160/base -> origin/gh/XilunWu/160/base 2025-08-14T21:43:03.8483295Z * [new branch] gh/XilunWu/160/head -> origin/gh/XilunWu/160/head 2025-08-14T21:43:03.8483782Z * [new branch] gh/XilunWu/160/orig -> origin/gh/XilunWu/160/orig 2025-08-14T21:43:03.8484279Z * [new branch] gh/XilunWu/161/base -> origin/gh/XilunWu/161/base 2025-08-14T21:43:03.8484770Z * [new branch] gh/XilunWu/161/head -> origin/gh/XilunWu/161/head 2025-08-14T21:43:03.8485249Z * [new branch] gh/XilunWu/161/orig -> origin/gh/XilunWu/161/orig 2025-08-14T21:43:03.8485746Z * [new branch] gh/XilunWu/162/base -> origin/gh/XilunWu/162/base 2025-08-14T21:43:03.8905330Z * [new branch] gh/XilunWu/162/head -> origin/gh/XilunWu/162/head 2025-08-14T21:43:03.8905934Z * [new branch] gh/XilunWu/162/orig -> origin/gh/XilunWu/162/orig 2025-08-14T21:43:03.8906476Z * [new branch] gh/XilunWu/163/base -> origin/gh/XilunWu/163/base 2025-08-14T21:43:03.8906955Z * [new branch] gh/XilunWu/163/head -> origin/gh/XilunWu/163/head 2025-08-14T21:43:03.8907454Z * [new branch] gh/XilunWu/163/orig -> origin/gh/XilunWu/163/orig 2025-08-14T21:43:03.8908145Z * [new branch] gh/XuehaiPan/14/base -> origin/gh/XuehaiPan/14/base 2025-08-14T21:43:03.8908655Z * [new branch] gh/XuehaiPan/14/head -> origin/gh/XuehaiPan/14/head 2025-08-14T21:43:03.8909163Z * [new branch] gh/XuehaiPan/14/orig -> origin/gh/XuehaiPan/14/orig 2025-08-14T21:43:03.8909664Z * [new branch] gh/XuehaiPan/179/base -> origin/gh/XuehaiPan/179/base 2025-08-14T21:43:03.8910183Z * [new branch] gh/XuehaiPan/179/head -> origin/gh/XuehaiPan/179/head 2025-08-14T21:43:03.8910685Z * [new branch] gh/XuehaiPan/179/orig -> origin/gh/XuehaiPan/179/orig 2025-08-14T21:43:03.8911187Z * [new branch] gh/XuehaiPan/189/base -> origin/gh/XuehaiPan/189/base 2025-08-14T21:43:03.8911697Z * [new branch] gh/XuehaiPan/189/head -> origin/gh/XuehaiPan/189/head 2025-08-14T21:43:03.8912197Z * [new branch] gh/XuehaiPan/189/orig -> origin/gh/XuehaiPan/189/orig 2025-08-14T21:43:03.8912699Z * [new branch] gh/XuehaiPan/227/base -> origin/gh/XuehaiPan/227/base 2025-08-14T21:43:03.8913207Z * [new branch] gh/XuehaiPan/227/head -> origin/gh/XuehaiPan/227/head 2025-08-14T21:43:03.8913710Z * [new branch] gh/XuehaiPan/227/orig -> origin/gh/XuehaiPan/227/orig 2025-08-14T21:43:03.8914210Z * [new branch] gh/XuehaiPan/231/base -> origin/gh/XuehaiPan/231/base 2025-08-14T21:43:03.8914827Z * [new branch] gh/XuehaiPan/231/head -> origin/gh/XuehaiPan/231/head 2025-08-14T21:43:03.8915343Z * [new branch] gh/XuehaiPan/231/orig -> origin/gh/XuehaiPan/231/orig 2025-08-14T21:43:03.8915844Z * [new branch] gh/XuehaiPan/232/base -> origin/gh/XuehaiPan/232/base 2025-08-14T21:43:03.8916364Z * [new branch] gh/XuehaiPan/232/head -> origin/gh/XuehaiPan/232/head 2025-08-14T21:43:03.8916885Z * [new branch] gh/XuehaiPan/232/orig -> origin/gh/XuehaiPan/232/orig 2025-08-14T21:43:03.8917446Z * [new branch] gh/XuehaiPan/249/base -> origin/gh/XuehaiPan/249/base 2025-08-14T21:43:03.8917969Z * [new branch] gh/XuehaiPan/249/head -> origin/gh/XuehaiPan/249/head 2025-08-14T21:43:03.8918474Z * [new branch] gh/XuehaiPan/249/orig -> origin/gh/XuehaiPan/249/orig 2025-08-14T21:43:03.8918996Z * [new branch] gh/XuehaiPan/253/base -> origin/gh/XuehaiPan/253/base 2025-08-14T21:43:03.8919528Z * [new branch] gh/XuehaiPan/253/head -> origin/gh/XuehaiPan/253/head 2025-08-14T21:43:03.8920090Z * [new branch] gh/XuehaiPan/253/orig -> origin/gh/XuehaiPan/253/orig 2025-08-14T21:43:03.8920666Z * [new branch] gh/XuehaiPan/254/base -> origin/gh/XuehaiPan/254/base 2025-08-14T21:43:03.8921182Z * [new branch] gh/XuehaiPan/254/head -> origin/gh/XuehaiPan/254/head 2025-08-14T21:43:03.8921708Z * [new branch] gh/XuehaiPan/254/orig -> origin/gh/XuehaiPan/254/orig 2025-08-14T21:43:03.8922213Z * [new branch] gh/XuehaiPan/255/base -> origin/gh/XuehaiPan/255/base 2025-08-14T21:43:03.8922731Z * [new branch] gh/XuehaiPan/255/head -> origin/gh/XuehaiPan/255/head 2025-08-14T21:43:03.8923241Z * [new branch] gh/XuehaiPan/255/orig -> origin/gh/XuehaiPan/255/orig 2025-08-14T21:43:03.8923751Z * [new branch] gh/XuehaiPan/257/base -> origin/gh/XuehaiPan/257/base 2025-08-14T21:43:03.8924270Z * [new branch] gh/XuehaiPan/257/head -> origin/gh/XuehaiPan/257/head 2025-08-14T21:43:03.8924775Z * [new branch] gh/XuehaiPan/257/orig -> origin/gh/XuehaiPan/257/orig 2025-08-14T21:43:03.8925290Z * [new branch] gh/XuehaiPan/271/base -> origin/gh/XuehaiPan/271/base 2025-08-14T21:43:03.8925846Z * [new branch] gh/XuehaiPan/271/head -> origin/gh/XuehaiPan/271/head 2025-08-14T21:43:03.8926508Z * [new branch] gh/XuehaiPan/271/orig -> origin/gh/XuehaiPan/271/orig 2025-08-14T21:43:03.8927039Z * [new branch] gh/XuehaiPan/283/base -> origin/gh/XuehaiPan/283/base 2025-08-14T21:43:03.8927549Z * [new branch] gh/XuehaiPan/283/head -> origin/gh/XuehaiPan/283/head 2025-08-14T21:43:03.8928071Z * [new branch] gh/XuehaiPan/283/orig -> origin/gh/XuehaiPan/283/orig 2025-08-14T21:43:03.8928599Z * [new branch] gh/XuehaiPan/290/base -> origin/gh/XuehaiPan/290/base 2025-08-14T21:43:03.8929103Z * [new branch] gh/XuehaiPan/290/head -> origin/gh/XuehaiPan/290/head 2025-08-14T21:43:03.9330553Z * [new branch] gh/XuehaiPan/290/orig -> origin/gh/XuehaiPan/290/orig 2025-08-14T21:43:03.9331138Z * [new branch] gh/XuehaiPan/328/base -> origin/gh/XuehaiPan/328/base 2025-08-14T21:43:03.9331758Z * [new branch] gh/XuehaiPan/328/head -> origin/gh/XuehaiPan/328/head 2025-08-14T21:43:03.9332277Z * [new branch] gh/XuehaiPan/328/orig -> origin/gh/XuehaiPan/328/orig 2025-08-14T21:43:03.9332837Z * [new branch] gh/XuehaiPan/339/base -> origin/gh/XuehaiPan/339/base 2025-08-14T21:43:03.9333359Z * [new branch] gh/XuehaiPan/339/head -> origin/gh/XuehaiPan/339/head 2025-08-14T21:43:03.9333870Z * [new branch] gh/XuehaiPan/339/orig -> origin/gh/XuehaiPan/339/orig 2025-08-14T21:43:03.9334597Z * [new branch] gh/XuehaiPan/343/base -> origin/gh/XuehaiPan/343/base 2025-08-14T21:43:03.9335126Z * [new branch] gh/XuehaiPan/343/head -> origin/gh/XuehaiPan/343/head 2025-08-14T21:43:03.9335634Z * [new branch] gh/XuehaiPan/343/orig -> origin/gh/XuehaiPan/343/orig 2025-08-14T21:43:03.9336163Z * [new branch] gh/XuehaiPan/344/base -> origin/gh/XuehaiPan/344/base 2025-08-14T21:43:03.9336679Z * [new branch] gh/XuehaiPan/344/head -> origin/gh/XuehaiPan/344/head 2025-08-14T21:43:03.9337203Z * [new branch] gh/XuehaiPan/344/orig -> origin/gh/XuehaiPan/344/orig 2025-08-14T21:43:03.9337709Z * [new branch] gh/XuehaiPan/345/base -> origin/gh/XuehaiPan/345/base 2025-08-14T21:43:03.9338327Z * [new branch] gh/XuehaiPan/345/head -> origin/gh/XuehaiPan/345/head 2025-08-14T21:43:03.9338862Z * [new branch] gh/XuehaiPan/345/orig -> origin/gh/XuehaiPan/345/orig 2025-08-14T21:43:03.9339359Z * [new branch] gh/XuehaiPan/346/base -> origin/gh/XuehaiPan/346/base 2025-08-14T21:43:03.9339865Z * [new branch] gh/XuehaiPan/346/head -> origin/gh/XuehaiPan/346/head 2025-08-14T21:43:03.9340368Z * [new branch] gh/XuehaiPan/346/orig -> origin/gh/XuehaiPan/346/orig 2025-08-14T21:43:03.9340883Z * [new branch] gh/XuehaiPan/347/base -> origin/gh/XuehaiPan/347/base 2025-08-14T21:43:03.9341404Z * [new branch] gh/XuehaiPan/347/head -> origin/gh/XuehaiPan/347/head 2025-08-14T21:43:03.9341903Z * [new branch] gh/XuehaiPan/347/orig -> origin/gh/XuehaiPan/347/orig 2025-08-14T21:43:03.9342421Z * [new branch] gh/XuehaiPan/348/base -> origin/gh/XuehaiPan/348/base 2025-08-14T21:43:03.9342923Z * [new branch] gh/XuehaiPan/348/head -> origin/gh/XuehaiPan/348/head 2025-08-14T21:43:03.9343438Z * [new branch] gh/XuehaiPan/348/orig -> origin/gh/XuehaiPan/348/orig 2025-08-14T21:43:03.9344004Z * [new branch] gh/XuehaiPan/350/base -> origin/gh/XuehaiPan/350/base 2025-08-14T21:43:03.9344556Z * [new branch] gh/XuehaiPan/350/head -> origin/gh/XuehaiPan/350/head 2025-08-14T21:43:03.9345067Z * [new branch] gh/XuehaiPan/350/orig -> origin/gh/XuehaiPan/350/orig 2025-08-14T21:43:03.9345697Z * [new branch] gh/XuehaiPan/352/base -> origin/gh/XuehaiPan/352/base 2025-08-14T21:43:03.9346224Z * [new branch] gh/XuehaiPan/352/head -> origin/gh/XuehaiPan/352/head 2025-08-14T21:43:03.9346747Z * [new branch] gh/XuehaiPan/352/orig -> origin/gh/XuehaiPan/352/orig 2025-08-14T21:43:03.9347257Z * [new branch] gh/XuehaiPan/356/base -> origin/gh/XuehaiPan/356/base 2025-08-14T21:43:03.9347817Z * [new branch] gh/XuehaiPan/356/head -> origin/gh/XuehaiPan/356/head 2025-08-14T21:43:03.9348331Z * [new branch] gh/XuehaiPan/356/orig -> origin/gh/XuehaiPan/356/orig 2025-08-14T21:43:03.9348859Z * [new branch] gh/XuehaiPan/357/base -> origin/gh/XuehaiPan/357/base 2025-08-14T21:43:03.9349383Z * [new branch] gh/XuehaiPan/357/head -> origin/gh/XuehaiPan/357/head 2025-08-14T21:43:03.9349979Z * [new branch] gh/XuehaiPan/357/orig -> origin/gh/XuehaiPan/357/orig 2025-08-14T21:43:03.9350507Z * [new branch] gh/XuehaiPan/358/base -> origin/gh/XuehaiPan/358/base 2025-08-14T21:43:03.9351011Z * [new branch] gh/XuehaiPan/358/head -> origin/gh/XuehaiPan/358/head 2025-08-14T21:43:03.9351508Z * [new branch] gh/XuehaiPan/358/orig -> origin/gh/XuehaiPan/358/orig 2025-08-14T21:43:03.9352010Z * [new branch] gh/XuehaiPan/359/base -> origin/gh/XuehaiPan/359/base 2025-08-14T21:43:03.9352613Z * [new branch] gh/XuehaiPan/359/head -> origin/gh/XuehaiPan/359/head 2025-08-14T21:43:03.9353114Z * [new branch] gh/XuehaiPan/359/orig -> origin/gh/XuehaiPan/359/orig 2025-08-14T21:43:03.9353618Z * [new branch] gh/XuehaiPan/360/base -> origin/gh/XuehaiPan/360/base 2025-08-14T21:43:03.9354118Z * [new branch] gh/XuehaiPan/360/head -> origin/gh/XuehaiPan/360/head 2025-08-14T21:43:03.9354620Z * [new branch] gh/XuehaiPan/360/orig -> origin/gh/XuehaiPan/360/orig 2025-08-14T21:43:03.9757455Z * [new branch] gh/XuehaiPan/365/base -> origin/gh/XuehaiPan/365/base 2025-08-14T21:43:03.9758033Z * [new branch] gh/XuehaiPan/365/head -> origin/gh/XuehaiPan/365/head 2025-08-14T21:43:03.9758564Z * [new branch] gh/XuehaiPan/365/orig -> origin/gh/XuehaiPan/365/orig 2025-08-14T21:43:03.9759069Z * [new branch] gh/XuehaiPan/366/base -> origin/gh/XuehaiPan/366/base 2025-08-14T21:43:03.9759595Z * [new branch] gh/XuehaiPan/366/head -> origin/gh/XuehaiPan/366/head 2025-08-14T21:43:03.9760100Z * [new branch] gh/XuehaiPan/368/base -> origin/gh/XuehaiPan/368/base 2025-08-14T21:43:03.9760607Z * [new branch] gh/XuehaiPan/368/head -> origin/gh/XuehaiPan/368/head 2025-08-14T21:43:03.9761099Z * [new branch] gh/XuehaiPan/368/orig -> origin/gh/XuehaiPan/368/orig 2025-08-14T21:43:03.9761641Z * [new branch] gh/XuehaiPan/369/base -> origin/gh/XuehaiPan/369/base 2025-08-14T21:43:03.9762135Z * [new branch] gh/XuehaiPan/369/head -> origin/gh/XuehaiPan/369/head 2025-08-14T21:43:03.9762673Z * [new branch] gh/XuehaiPan/369/orig -> origin/gh/XuehaiPan/369/orig 2025-08-14T21:43:03.9763226Z * [new branch] gh/XuehaiPan/370/base -> origin/gh/XuehaiPan/370/base 2025-08-14T21:43:03.9763832Z * [new branch] gh/XuehaiPan/370/head -> origin/gh/XuehaiPan/370/head 2025-08-14T21:43:03.9764374Z * [new branch] gh/XuehaiPan/370/orig -> origin/gh/XuehaiPan/370/orig 2025-08-14T21:43:03.9764964Z * [new branch] gh/XuehaiPan/371/base -> origin/gh/XuehaiPan/371/base 2025-08-14T21:43:03.9765501Z * [new branch] gh/XuehaiPan/371/head -> origin/gh/XuehaiPan/371/head 2025-08-14T21:43:03.9766081Z * [new branch] gh/XuehaiPan/371/orig -> origin/gh/XuehaiPan/371/orig 2025-08-14T21:43:03.9766876Z * [new branch] gh/XuehaiPan/372/base -> origin/gh/XuehaiPan/372/base 2025-08-14T21:43:03.9767422Z * [new branch] gh/XuehaiPan/372/head -> origin/gh/XuehaiPan/372/head 2025-08-14T21:43:03.9768009Z * [new branch] gh/XuehaiPan/372/orig -> origin/gh/XuehaiPan/372/orig 2025-08-14T21:43:03.9768551Z * [new branch] gh/XuehaiPan/373/base -> origin/gh/XuehaiPan/373/base 2025-08-14T21:43:03.9769149Z * [new branch] gh/XuehaiPan/373/head -> origin/gh/XuehaiPan/373/head 2025-08-14T21:43:03.9769690Z * [new branch] gh/XuehaiPan/373/orig -> origin/gh/XuehaiPan/373/orig 2025-08-14T21:43:03.9770260Z * [new branch] gh/XuehaiPan/374/base -> origin/gh/XuehaiPan/374/base 2025-08-14T21:43:03.9770820Z * [new branch] gh/XuehaiPan/374/head -> origin/gh/XuehaiPan/374/head 2025-08-14T21:43:03.9771362Z * [new branch] gh/XuehaiPan/374/orig -> origin/gh/XuehaiPan/374/orig 2025-08-14T21:43:03.9771966Z * [new branch] gh/XuehaiPan/375/base -> origin/gh/XuehaiPan/375/base 2025-08-14T21:43:03.9772510Z * [new branch] gh/XuehaiPan/375/head -> origin/gh/XuehaiPan/375/head 2025-08-14T21:43:03.9773099Z * [new branch] gh/XuehaiPan/375/orig -> origin/gh/XuehaiPan/375/orig 2025-08-14T21:43:03.9773804Z * [new branch] gh/XuehaiPan/376/base -> origin/gh/XuehaiPan/376/base 2025-08-14T21:43:03.9774347Z * [new branch] gh/XuehaiPan/376/head -> origin/gh/XuehaiPan/376/head 2025-08-14T21:43:03.9774935Z * [new branch] gh/XuehaiPan/376/orig -> origin/gh/XuehaiPan/376/orig 2025-08-14T21:43:03.9775474Z * [new branch] gh/XuehaiPan/377/base -> origin/gh/XuehaiPan/377/base 2025-08-14T21:43:03.9776020Z * [new branch] gh/XuehaiPan/377/head -> origin/gh/XuehaiPan/377/head 2025-08-14T21:43:03.9776623Z * [new branch] gh/XuehaiPan/377/orig -> origin/gh/XuehaiPan/377/orig 2025-08-14T21:43:03.9777165Z * [new branch] gh/XuehaiPan/378/base -> origin/gh/XuehaiPan/378/base 2025-08-14T21:43:03.9777759Z * [new branch] gh/XuehaiPan/378/head -> origin/gh/XuehaiPan/378/head 2025-08-14T21:43:03.9778301Z * [new branch] gh/XuehaiPan/378/orig -> origin/gh/XuehaiPan/378/orig 2025-08-14T21:43:03.9778893Z * [new branch] gh/XuehaiPan/379/base -> origin/gh/XuehaiPan/379/base 2025-08-14T21:43:03.9779447Z * [new branch] gh/XuehaiPan/379/head -> origin/gh/XuehaiPan/379/head 2025-08-14T21:43:03.9780023Z * [new branch] gh/XuehaiPan/379/orig -> origin/gh/XuehaiPan/379/orig 2025-08-14T21:43:03.9780584Z * [new branch] gh/ZhiweiYan-96/39/base -> origin/gh/ZhiweiYan-96/39/base 2025-08-14T21:43:03.9781187Z * [new branch] gh/ZhiweiYan-96/39/head -> origin/gh/ZhiweiYan-96/39/head 2025-08-14T21:43:03.9781744Z * [new branch] gh/ZhiweiYan-96/39/orig -> origin/gh/ZhiweiYan-96/39/orig 2025-08-14T21:43:03.9782340Z * [new branch] gh/ZhiweiYan-96/44/base -> origin/gh/ZhiweiYan-96/44/base 2025-08-14T21:43:03.9782891Z * [new branch] gh/ZhiweiYan-96/44/head -> origin/gh/ZhiweiYan-96/44/head 2025-08-14T21:43:04.0244355Z * [new branch] gh/ZhiweiYan-96/45/base -> origin/gh/ZhiweiYan-96/45/base 2025-08-14T21:43:04.0244961Z * [new branch] gh/ZhiweiYan-96/45/head -> origin/gh/ZhiweiYan-96/45/head 2025-08-14T21:43:04.0245496Z * [new branch] gh/ZhiweiYan-96/49/base -> origin/gh/ZhiweiYan-96/49/base 2025-08-14T21:43:04.0246014Z * [new branch] gh/ZhiweiYan-96/49/head -> origin/gh/ZhiweiYan-96/49/head 2025-08-14T21:43:04.0246527Z * [new branch] gh/ZhiweiYan-96/62/base -> origin/gh/ZhiweiYan-96/62/base 2025-08-14T21:43:04.0247219Z * [new branch] gh/ZhiweiYan-96/62/head -> origin/gh/ZhiweiYan-96/62/head 2025-08-14T21:43:04.0247742Z * [new branch] gh/ZhiweiYan-96/64/base -> origin/gh/ZhiweiYan-96/64/base 2025-08-14T21:43:04.0248263Z * [new branch] gh/ZhiweiYan-96/64/head -> origin/gh/ZhiweiYan-96/64/head 2025-08-14T21:43:04.0248787Z * [new branch] gh/ZhiweiYan-96/64/orig -> origin/gh/ZhiweiYan-96/64/orig 2025-08-14T21:43:04.0249309Z * [new branch] gh/ZhiweiYan-96/65/base -> origin/gh/ZhiweiYan-96/65/base 2025-08-14T21:43:04.0249885Z * [new branch] gh/ZhiweiYan-96/65/head -> origin/gh/ZhiweiYan-96/65/head 2025-08-14T21:43:04.0250432Z * [new branch] gh/ZhiweiYan-96/65/orig -> origin/gh/ZhiweiYan-96/65/orig 2025-08-14T21:43:04.0250994Z * [new branch] gh/ZhiweiYan-96/66/base -> origin/gh/ZhiweiYan-96/66/base 2025-08-14T21:43:04.0251515Z * [new branch] gh/ZhiweiYan-96/66/head -> origin/gh/ZhiweiYan-96/66/head 2025-08-14T21:43:04.0252051Z * [new branch] gh/ZhiweiYan-96/67/base -> origin/gh/ZhiweiYan-96/67/base 2025-08-14T21:43:04.0252567Z * [new branch] gh/ZhiweiYan-96/67/head -> origin/gh/ZhiweiYan-96/67/head 2025-08-14T21:43:04.0253083Z * [new branch] gh/ZhiweiYan-96/68/base -> origin/gh/ZhiweiYan-96/68/base 2025-08-14T21:43:04.0253590Z * [new branch] gh/ZhiweiYan-96/68/head -> origin/gh/ZhiweiYan-96/68/head 2025-08-14T21:43:04.0254242Z * [new branch] gh/ZhiweiYan-96/68/orig -> origin/gh/ZhiweiYan-96/68/orig 2025-08-14T21:43:04.0254752Z * [new branch] gh/aakhundov/1/base -> origin/gh/aakhundov/1/base 2025-08-14T21:43:04.0255255Z * [new branch] gh/aakhundov/1/head -> origin/gh/aakhundov/1/head 2025-08-14T21:43:04.0255755Z * [new branch] gh/aakhundov/2/base -> origin/gh/aakhundov/2/base 2025-08-14T21:43:04.0256251Z * [new branch] gh/aakhundov/2/head -> origin/gh/aakhundov/2/head 2025-08-14T21:43:04.0256757Z * [new branch] gh/aditew01/openblas -> origin/gh/aditew01/openblas 2025-08-14T21:43:04.0257261Z * [new branch] gh/aditew01/sbgemm -> origin/gh/aditew01/sbgemm 2025-08-14T21:43:04.0257750Z * [new branch] gh/aditew01/vecbf16 -> origin/gh/aditew01/vecbf16 2025-08-14T21:43:04.0258460Z * [new branch] gh/alexbrauckmann/paddedtensor_faketensor_init -> origin/gh/alexbrauckmann/paddedtensor_faketensor_init 2025-08-14T21:43:04.0259276Z * [new branch] gh/alexbrauckmann/paddedtensor_init -> origin/gh/alexbrauckmann/paddedtensor_init 2025-08-14T21:43:04.0260034Z * [new branch] gh/alexbrauckmann/paddedtensor_meta_init -> origin/gh/alexbrauckmann/paddedtensor_meta_init 2025-08-14T21:43:04.0260698Z * [new branch] gh/alexsamardzic/7/base -> origin/gh/alexsamardzic/7/base 2025-08-14T21:43:04.0261246Z * [new branch] gh/alexsamardzic/7/head -> origin/gh/alexsamardzic/7/head 2025-08-14T21:43:04.0261791Z * [new branch] gh/alexsamardzic/7/orig -> origin/gh/alexsamardzic/7/orig 2025-08-14T21:43:04.0262321Z * [new branch] gh/alexsamardzic/8/base -> origin/gh/alexsamardzic/8/base 2025-08-14T21:43:04.0262850Z * [new branch] gh/alexsamardzic/8/head -> origin/gh/alexsamardzic/8/head 2025-08-14T21:43:04.0263375Z * [new branch] gh/alexsamardzic/8/orig -> origin/gh/alexsamardzic/8/orig 2025-08-14T21:43:04.0263880Z * [new branch] gh/amjames/18/base -> origin/gh/amjames/18/base 2025-08-14T21:43:04.0264360Z * [new branch] gh/amjames/18/head -> origin/gh/amjames/18/head 2025-08-14T21:43:04.0264839Z * [new branch] gh/amjames/18/orig -> origin/gh/amjames/18/orig 2025-08-14T21:43:04.0265432Z * [new branch] gh/andrewor14/35/base -> origin/gh/andrewor14/35/base 2025-08-14T21:43:04.0265987Z * [new branch] gh/andrewor14/35/head -> origin/gh/andrewor14/35/head 2025-08-14T21:43:04.0266541Z * [new branch] gh/andrewor14/35/orig -> origin/gh/andrewor14/35/orig 2025-08-14T21:43:04.0267077Z * [new branch] gh/andrewor14/50/base -> origin/gh/andrewor14/50/base 2025-08-14T21:43:04.0267573Z * [new branch] gh/andrewor14/50/head -> origin/gh/andrewor14/50/head 2025-08-14T21:43:04.0268075Z * [new branch] gh/andrewor14/50/orig -> origin/gh/andrewor14/50/orig 2025-08-14T21:43:04.0692436Z * [new branch] gh/andyanwang/1/base -> origin/gh/andyanwang/1/base 2025-08-14T21:43:04.0693014Z * [new branch] gh/andyanwang/1/head -> origin/gh/andyanwang/1/head 2025-08-14T21:43:04.0693613Z * [new branch] gh/andyanwang/1/orig -> origin/gh/andyanwang/1/orig 2025-08-14T21:43:04.0694171Z * [new branch] gh/andyanwang/13/base -> origin/gh/andyanwang/13/base 2025-08-14T21:43:04.0694673Z * [new branch] gh/andyanwang/13/head -> origin/gh/andyanwang/13/head 2025-08-14T21:43:04.0695168Z * [new branch] gh/andyanwang/13/orig -> origin/gh/andyanwang/13/orig 2025-08-14T21:43:04.0695673Z * [new branch] gh/andyanwang/2/base -> origin/gh/andyanwang/2/base 2025-08-14T21:43:04.0696333Z * [new branch] gh/andyanwang/2/head -> origin/gh/andyanwang/2/head 2025-08-14T21:43:04.0696839Z * [new branch] gh/andyanwang/2/orig -> origin/gh/andyanwang/2/orig 2025-08-14T21:43:04.0697346Z * [new branch] gh/andyanwang/28/base -> origin/gh/andyanwang/28/base 2025-08-14T21:43:04.0697843Z * [new branch] gh/andyanwang/28/head -> origin/gh/andyanwang/28/head 2025-08-14T21:43:04.0698351Z * [new branch] gh/andyanwang/28/orig -> origin/gh/andyanwang/28/orig 2025-08-14T21:43:04.0698858Z * [new branch] gh/andyanwang/3/base -> origin/gh/andyanwang/3/base 2025-08-14T21:43:04.0699404Z * [new branch] gh/andyanwang/3/head -> origin/gh/andyanwang/3/head 2025-08-14T21:43:04.0699948Z * [new branch] gh/andyanwang/3/orig -> origin/gh/andyanwang/3/orig 2025-08-14T21:43:04.0700489Z * [new branch] gh/andyanwang/30/base -> origin/gh/andyanwang/30/base 2025-08-14T21:43:04.0700998Z * [new branch] gh/andyanwang/30/orig -> origin/gh/andyanwang/30/orig 2025-08-14T21:43:04.0701499Z * [new branch] gh/andyanwang/31/base -> origin/gh/andyanwang/31/base 2025-08-14T21:43:04.0702002Z * [new branch] gh/andyanwang/31/orig -> origin/gh/andyanwang/31/orig 2025-08-14T21:43:04.0702511Z * [new branch] gh/andyanwang/32/base -> origin/gh/andyanwang/32/base 2025-08-14T21:43:04.0703014Z * [new branch] gh/andyanwang/32/head -> origin/gh/andyanwang/32/head 2025-08-14T21:43:04.0703521Z * [new branch] gh/andyanwang/32/orig -> origin/gh/andyanwang/32/orig 2025-08-14T21:43:04.0704018Z * [new branch] gh/andyanwang/33/base -> origin/gh/andyanwang/33/base 2025-08-14T21:43:04.0704520Z * [new branch] gh/andyanwang/33/head -> origin/gh/andyanwang/33/head 2025-08-14T21:43:04.0705028Z * [new branch] gh/andyanwang/33/orig -> origin/gh/andyanwang/33/orig 2025-08-14T21:43:04.0705566Z * [new branch] gh/andyanwang/34/base -> origin/gh/andyanwang/34/base 2025-08-14T21:43:04.0706113Z * [new branch] gh/andyanwang/34/head -> origin/gh/andyanwang/34/head 2025-08-14T21:43:04.0706652Z * [new branch] gh/andyanwang/34/orig -> origin/gh/andyanwang/34/orig 2025-08-14T21:43:04.0707150Z * [new branch] gh/andyanwang/35/base -> origin/gh/andyanwang/35/base 2025-08-14T21:43:04.0707747Z * [new branch] gh/andyanwang/35/head -> origin/gh/andyanwang/35/head 2025-08-14T21:43:04.0708255Z * [new branch] gh/andyanwang/35/orig -> origin/gh/andyanwang/35/orig 2025-08-14T21:43:04.0708769Z * [new branch] gh/andyanwang/36/base -> origin/gh/andyanwang/36/base 2025-08-14T21:43:04.0709268Z * [new branch] gh/andyanwang/36/head -> origin/gh/andyanwang/36/head 2025-08-14T21:43:04.0709785Z * [new branch] gh/andyanwang/36/orig -> origin/gh/andyanwang/36/orig 2025-08-14T21:43:04.0710291Z * [new branch] gh/andyanwang/37/base -> origin/gh/andyanwang/37/base 2025-08-14T21:43:04.0710800Z * [new branch] gh/andyanwang/37/head -> origin/gh/andyanwang/37/head 2025-08-14T21:43:04.0711309Z * [new branch] gh/andyanwang/37/orig -> origin/gh/andyanwang/37/orig 2025-08-14T21:43:04.0711850Z * [new branch] gh/andyanwang/38/base -> origin/gh/andyanwang/38/base 2025-08-14T21:43:04.0712397Z * [new branch] gh/andyanwang/38/head -> origin/gh/andyanwang/38/head 2025-08-14T21:43:04.0712939Z * [new branch] gh/andyanwang/38/orig -> origin/gh/andyanwang/38/orig 2025-08-14T21:43:04.0713441Z * [new branch] gh/andyanwang/39/base -> origin/gh/andyanwang/39/base 2025-08-14T21:43:04.0713942Z * [new branch] gh/andyanwang/39/head -> origin/gh/andyanwang/39/head 2025-08-14T21:43:04.0714551Z * [new branch] gh/andyanwang/39/orig -> origin/gh/andyanwang/39/orig 2025-08-14T21:43:04.0715055Z * [new branch] gh/andyanwang/4/base -> origin/gh/andyanwang/4/base 2025-08-14T21:43:04.0715551Z * [new branch] gh/andyanwang/4/head -> origin/gh/andyanwang/4/head 2025-08-14T21:43:04.0716048Z * [new branch] gh/andyanwang/4/orig -> origin/gh/andyanwang/4/orig 2025-08-14T21:43:04.0716563Z * [new branch] gh/andyanwang/40/base -> origin/gh/andyanwang/40/base 2025-08-14T21:43:04.1145188Z * [new branch] gh/andyanwang/40/head -> origin/gh/andyanwang/40/head 2025-08-14T21:43:04.1145765Z * [new branch] gh/andyanwang/40/orig -> origin/gh/andyanwang/40/orig 2025-08-14T21:43:04.1146266Z * [new branch] gh/angelayi/102/base -> origin/gh/angelayi/102/base 2025-08-14T21:43:04.1146777Z * [new branch] gh/angelayi/102/head -> origin/gh/angelayi/102/head 2025-08-14T21:43:04.1147272Z * [new branch] gh/angelayi/102/orig -> origin/gh/angelayi/102/orig 2025-08-14T21:43:04.1147766Z * [new branch] gh/angelayi/103/base -> origin/gh/angelayi/103/base 2025-08-14T21:43:04.1148257Z * [new branch] gh/angelayi/103/head -> origin/gh/angelayi/103/head 2025-08-14T21:43:04.1148743Z * [new branch] gh/angelayi/103/orig -> origin/gh/angelayi/103/orig 2025-08-14T21:43:04.1149241Z * [new branch] gh/angelayi/104/base -> origin/gh/angelayi/104/base 2025-08-14T21:43:04.1149734Z * [new branch] gh/angelayi/104/head -> origin/gh/angelayi/104/head 2025-08-14T21:43:04.1150216Z * [new branch] gh/angelayi/104/orig -> origin/gh/angelayi/104/orig 2025-08-14T21:43:04.1150747Z * [new branch] gh/angelayi/105/base -> origin/gh/angelayi/105/base 2025-08-14T21:43:04.1151241Z * [new branch] gh/angelayi/105/head -> origin/gh/angelayi/105/head 2025-08-14T21:43:04.1151772Z * [new branch] gh/angelayi/105/orig -> origin/gh/angelayi/105/orig 2025-08-14T21:43:04.1152258Z * [new branch] gh/angelayi/106/base -> origin/gh/angelayi/106/base 2025-08-14T21:43:04.1152753Z * [new branch] gh/angelayi/106/head -> origin/gh/angelayi/106/head 2025-08-14T21:43:04.1153398Z * [new branch] gh/angelayi/106/orig -> origin/gh/angelayi/106/orig 2025-08-14T21:43:04.1153894Z * [new branch] gh/angelayi/107/base -> origin/gh/angelayi/107/base 2025-08-14T21:43:04.1154418Z * [new branch] gh/angelayi/107/head -> origin/gh/angelayi/107/head 2025-08-14T21:43:04.1154907Z * [new branch] gh/angelayi/108/base -> origin/gh/angelayi/108/base 2025-08-14T21:43:04.1155391Z * [new branch] gh/angelayi/108/head -> origin/gh/angelayi/108/head 2025-08-14T21:43:04.1155889Z * [new branch] gh/angelayi/108/orig -> origin/gh/angelayi/108/orig 2025-08-14T21:43:04.1156369Z * [new branch] gh/angelayi/109/base -> origin/gh/angelayi/109/base 2025-08-14T21:43:04.1156907Z * [new branch] gh/angelayi/109/head -> origin/gh/angelayi/109/head 2025-08-14T21:43:04.1157487Z * [new branch] gh/angelayi/109/orig -> origin/gh/angelayi/109/orig 2025-08-14T21:43:04.1157995Z * [new branch] gh/angelayi/110/base -> origin/gh/angelayi/110/base 2025-08-14T21:43:04.1158497Z * [new branch] gh/angelayi/110/head -> origin/gh/angelayi/110/head 2025-08-14T21:43:04.1158985Z * [new branch] gh/angelayi/110/orig -> origin/gh/angelayi/110/orig 2025-08-14T21:43:04.1159489Z * [new branch] gh/angelayi/97/base -> origin/gh/angelayi/97/base 2025-08-14T21:43:04.1160077Z * [new branch] gh/angelayi/97/head -> origin/gh/angelayi/97/head 2025-08-14T21:43:04.1160572Z * [new branch] gh/angelayi/97/orig -> origin/gh/angelayi/97/orig 2025-08-14T21:43:04.1161061Z * [new branch] gh/ani300/1/base -> origin/gh/ani300/1/base 2025-08-14T21:43:04.1161530Z * [new branch] gh/ani300/1/head -> origin/gh/ani300/1/head 2025-08-14T21:43:04.1161980Z * [new branch] gh/ani300/1/orig -> origin/gh/ani300/1/orig 2025-08-14T21:43:04.1162480Z * [new branch] gh/anijain2305/753/base -> origin/gh/anijain2305/753/base 2025-08-14T21:43:04.1163039Z * [new branch] gh/anijain2305/753/head -> origin/gh/anijain2305/753/head 2025-08-14T21:43:04.1163602Z * [new branch] gh/anijain2305/753/orig -> origin/gh/anijain2305/753/orig 2025-08-14T21:43:04.1164123Z * [new branch] gh/anijain2305/766/base -> origin/gh/anijain2305/766/base 2025-08-14T21:43:04.1164638Z * [new branch] gh/anijain2305/766/head -> origin/gh/anijain2305/766/head 2025-08-14T21:43:04.1165153Z * [new branch] gh/anijain2305/766/orig -> origin/gh/anijain2305/766/orig 2025-08-14T21:43:04.1165664Z * [new branch] gh/anijain2305/790/base -> origin/gh/anijain2305/790/base 2025-08-14T21:43:04.1166180Z * [new branch] gh/anijain2305/790/head -> origin/gh/anijain2305/790/head 2025-08-14T21:43:04.1166694Z * [new branch] gh/anijain2305/790/orig -> origin/gh/anijain2305/790/orig 2025-08-14T21:43:04.1167201Z * [new branch] gh/anijain2305/792/base -> origin/gh/anijain2305/792/base 2025-08-14T21:43:04.1167727Z * [new branch] gh/anijain2305/792/head -> origin/gh/anijain2305/792/head 2025-08-14T21:43:04.1168232Z * [new branch] gh/anijain2305/792/orig -> origin/gh/anijain2305/792/orig 2025-08-14T21:43:04.1576185Z * [new branch] gh/anijain2305/803/base -> origin/gh/anijain2305/803/base 2025-08-14T21:43:04.1576872Z * [new branch] gh/anijain2305/803/head -> origin/gh/anijain2305/803/head 2025-08-14T21:43:04.1577397Z * [new branch] gh/anijain2305/803/orig -> origin/gh/anijain2305/803/orig 2025-08-14T21:43:04.1577910Z * [new branch] gh/anijain2305/804/base -> origin/gh/anijain2305/804/base 2025-08-14T21:43:04.1578424Z * [new branch] gh/anijain2305/804/head -> origin/gh/anijain2305/804/head 2025-08-14T21:43:04.1579106Z * [new branch] gh/anijain2305/804/orig -> origin/gh/anijain2305/804/orig 2025-08-14T21:43:04.1579640Z * [new branch] gh/anijain2305/805/base -> origin/gh/anijain2305/805/base 2025-08-14T21:43:04.1580153Z * [new branch] gh/anijain2305/805/head -> origin/gh/anijain2305/805/head 2025-08-14T21:43:04.1580675Z * [new branch] gh/anijain2305/805/orig -> origin/gh/anijain2305/805/orig 2025-08-14T21:43:04.1581199Z * [new branch] gh/anijain2305/810/base -> origin/gh/anijain2305/810/base 2025-08-14T21:43:04.1581716Z * [new branch] gh/anijain2305/810/head -> origin/gh/anijain2305/810/head 2025-08-14T21:43:04.1582276Z * [new branch] gh/anijain2305/810/orig -> origin/gh/anijain2305/810/orig 2025-08-14T21:43:04.1582821Z * [new branch] gh/anijain2305/811/base -> origin/gh/anijain2305/811/base 2025-08-14T21:43:04.1583339Z * [new branch] gh/anijain2305/811/head -> origin/gh/anijain2305/811/head 2025-08-14T21:43:04.1583847Z * [new branch] gh/anijain2305/811/orig -> origin/gh/anijain2305/811/orig 2025-08-14T21:43:04.1584368Z * [new branch] gh/anijain2305/812/base -> origin/gh/anijain2305/812/base 2025-08-14T21:43:04.1584881Z * [new branch] gh/anijain2305/812/head -> origin/gh/anijain2305/812/head 2025-08-14T21:43:04.1586036Z * [new branch] gh/anijain2305/812/orig -> origin/gh/anijain2305/812/orig 2025-08-14T21:43:04.1586565Z * [new branch] gh/anijain2305/813/base -> origin/gh/anijain2305/813/base 2025-08-14T21:43:04.1587076Z * [new branch] gh/anijain2305/813/head -> origin/gh/anijain2305/813/head 2025-08-14T21:43:04.1587604Z * [new branch] gh/anijain2305/813/orig -> origin/gh/anijain2305/813/orig 2025-08-14T21:43:04.1588177Z * [new branch] gh/anijain2305/814/base -> origin/gh/anijain2305/814/base 2025-08-14T21:43:04.1588734Z * [new branch] gh/anijain2305/814/head -> origin/gh/anijain2305/814/head 2025-08-14T21:43:04.1589255Z * [new branch] gh/anijain2305/814/orig -> origin/gh/anijain2305/814/orig 2025-08-14T21:43:04.1589764Z * [new branch] gh/anijain2305/815/base -> origin/gh/anijain2305/815/base 2025-08-14T21:43:04.1590278Z * [new branch] gh/anijain2305/815/head -> origin/gh/anijain2305/815/head 2025-08-14T21:43:04.1590801Z * [new branch] gh/anijain2305/815/orig -> origin/gh/anijain2305/815/orig 2025-08-14T21:43:04.1591308Z * [new branch] gh/anijain2305/816/base -> origin/gh/anijain2305/816/base 2025-08-14T21:43:04.1591818Z * [new branch] gh/anijain2305/816/head -> origin/gh/anijain2305/816/head 2025-08-14T21:43:04.1592323Z * [new branch] gh/anijain2305/817/base -> origin/gh/anijain2305/817/base 2025-08-14T21:43:04.1592845Z * [new branch] gh/anijain2305/817/head -> origin/gh/anijain2305/817/head 2025-08-14T21:43:04.1593362Z * [new branch] gh/anijain2305/817/orig -> origin/gh/anijain2305/817/orig 2025-08-14T21:43:04.1593916Z * [new branch] gh/anijain2305/818/base -> origin/gh/anijain2305/818/base 2025-08-14T21:43:04.1594481Z * [new branch] gh/anijain2305/818/head -> origin/gh/anijain2305/818/head 2025-08-14T21:43:04.1594997Z * [new branch] gh/anijain2305/818/orig -> origin/gh/anijain2305/818/orig 2025-08-14T21:43:04.1595517Z * [new branch] gh/anijain2305/819/base -> origin/gh/anijain2305/819/base 2025-08-14T21:43:04.1596033Z * [new branch] gh/anijain2305/819/head -> origin/gh/anijain2305/819/head 2025-08-14T21:43:04.1596538Z * [new branch] gh/anijain2305/819/orig -> origin/gh/anijain2305/819/orig 2025-08-14T21:43:04.1597052Z * [new branch] gh/anijain2305/820/base -> origin/gh/anijain2305/820/base 2025-08-14T21:43:04.1597737Z * [new branch] gh/anijain2305/820/head -> origin/gh/anijain2305/820/head 2025-08-14T21:43:04.1598263Z * [new branch] gh/anijain2305/820/orig -> origin/gh/anijain2305/820/orig 2025-08-14T21:43:04.1598782Z * [new branch] gh/anijain2305/821/base -> origin/gh/anijain2305/821/base 2025-08-14T21:43:04.1599298Z * [new branch] gh/anijain2305/821/head -> origin/gh/anijain2305/821/head 2025-08-14T21:43:04.1599901Z * [new branch] gh/anijain2305/821/orig -> origin/gh/anijain2305/821/orig 2025-08-14T21:43:04.1600413Z * [new branch] gh/anijain2305/822/base -> origin/gh/anijain2305/822/base 2025-08-14T21:43:04.1985598Z * [new branch] gh/anijain2305/822/head -> origin/gh/anijain2305/822/head 2025-08-14T21:43:04.1986128Z * [new branch] gh/anijain2305/822/orig -> origin/gh/anijain2305/822/orig 2025-08-14T21:43:04.1986643Z * [new branch] gh/anijain2305/823/base -> origin/gh/anijain2305/823/base 2025-08-14T21:43:04.1987170Z * [new branch] gh/anijain2305/823/head -> origin/gh/anijain2305/823/head 2025-08-14T21:43:04.1987682Z * [new branch] gh/anijain2305/823/orig -> origin/gh/anijain2305/823/orig 2025-08-14T21:43:04.1988203Z * [new branch] gh/anijain2305/824/base -> origin/gh/anijain2305/824/base 2025-08-14T21:43:04.1988895Z * [new branch] gh/anijain2305/824/head -> origin/gh/anijain2305/824/head 2025-08-14T21:43:04.1989458Z * [new branch] gh/anijain2305/824/orig -> origin/gh/anijain2305/824/orig 2025-08-14T21:43:04.1990022Z * [new branch] gh/anijain2305/825/base -> origin/gh/anijain2305/825/base 2025-08-14T21:43:04.1990532Z * [new branch] gh/anijain2305/825/head -> origin/gh/anijain2305/825/head 2025-08-14T21:43:04.1991045Z * [new branch] gh/anijain2305/825/orig -> origin/gh/anijain2305/825/orig 2025-08-14T21:43:04.1991557Z * [new branch] gh/anijain2305/826/base -> origin/gh/anijain2305/826/base 2025-08-14T21:43:04.1992074Z * [new branch] gh/anijain2305/826/head -> origin/gh/anijain2305/826/head 2025-08-14T21:43:04.1992586Z * [new branch] gh/anijain2305/826/orig -> origin/gh/anijain2305/826/orig 2025-08-14T21:43:04.1993109Z * [new branch] gh/anijain2305/827/base -> origin/gh/anijain2305/827/base 2025-08-14T21:43:04.1993630Z * [new branch] gh/anijain2305/827/head -> origin/gh/anijain2305/827/head 2025-08-14T21:43:04.1994147Z * [new branch] gh/anijain2305/827/orig -> origin/gh/anijain2305/827/orig 2025-08-14T21:43:04.1994653Z * [new branch] gh/anijain2305/828/base -> origin/gh/anijain2305/828/base 2025-08-14T21:43:04.1995213Z * [new branch] gh/anijain2305/828/head -> origin/gh/anijain2305/828/head 2025-08-14T21:43:04.1995765Z * [new branch] gh/anijain2305/828/orig -> origin/gh/anijain2305/828/orig 2025-08-14T21:43:04.1996283Z * [new branch] gh/anijain2305/829/base -> origin/gh/anijain2305/829/base 2025-08-14T21:43:04.1996795Z * [new branch] gh/anijain2305/829/head -> origin/gh/anijain2305/829/head 2025-08-14T21:43:04.1997354Z * [new branch] gh/anijain2305/829/orig -> origin/gh/anijain2305/829/orig 2025-08-14T21:43:04.1997880Z * [new branch] gh/anijain2305/830/base -> origin/gh/anijain2305/830/base 2025-08-14T21:43:04.1998393Z * [new branch] gh/anijain2305/830/head -> origin/gh/anijain2305/830/head 2025-08-14T21:43:04.1998920Z * [new branch] gh/anijain2305/830/orig -> origin/gh/anijain2305/830/orig 2025-08-14T21:43:04.1999432Z * [new branch] gh/anijain2305/831/base -> origin/gh/anijain2305/831/base 2025-08-14T21:43:04.2000675Z * [new branch] gh/anijain2305/831/head -> origin/gh/anijain2305/831/head 2025-08-14T21:43:04.2001264Z * [new branch] gh/anijain2305/831/orig -> origin/gh/anijain2305/831/orig 2025-08-14T21:43:04.2001820Z * [new branch] gh/anijain2305/832/base -> origin/gh/anijain2305/832/base 2025-08-14T21:43:04.2002342Z * [new branch] gh/anijain2305/832/head -> origin/gh/anijain2305/832/head 2025-08-14T21:43:04.2002848Z * [new branch] gh/anijain2305/832/orig -> origin/gh/anijain2305/832/orig 2025-08-14T21:43:04.2003375Z * [new branch] gh/anijain2305/833/base -> origin/gh/anijain2305/833/base 2025-08-14T21:43:04.2003897Z * [new branch] gh/anijain2305/833/head -> origin/gh/anijain2305/833/head 2025-08-14T21:43:04.2004404Z * [new branch] gh/anijain2305/833/orig -> origin/gh/anijain2305/833/orig 2025-08-14T21:43:04.2004922Z * [new branch] gh/anijain2305/834/base -> origin/gh/anijain2305/834/base 2025-08-14T21:43:04.2005438Z * [new branch] gh/anijain2305/834/head -> origin/gh/anijain2305/834/head 2025-08-14T21:43:04.2005956Z * [new branch] gh/anijain2305/834/orig -> origin/gh/anijain2305/834/orig 2025-08-14T21:43:04.2006470Z * [new branch] gh/anijain2305/835/base -> origin/gh/anijain2305/835/base 2025-08-14T21:43:04.2007016Z * [new branch] gh/anijain2305/835/head -> origin/gh/anijain2305/835/head 2025-08-14T21:43:04.2007691Z * [new branch] gh/anijain2305/835/orig -> origin/gh/anijain2305/835/orig 2025-08-14T21:43:04.2008209Z * [new branch] gh/anijain2305/836/base -> origin/gh/anijain2305/836/base 2025-08-14T21:43:04.2008734Z * [new branch] gh/anijain2305/836/head -> origin/gh/anijain2305/836/head 2025-08-14T21:43:04.2009256Z * [new branch] gh/anijain2305/836/orig -> origin/gh/anijain2305/836/orig 2025-08-14T21:43:04.2009773Z * [new branch] gh/anijain2305/837/base -> origin/gh/anijain2305/837/base 2025-08-14T21:43:04.2437007Z * [new branch] gh/anijain2305/837/head -> origin/gh/anijain2305/837/head 2025-08-14T21:43:04.2437842Z * [new branch] gh/anijain2305/837/orig -> origin/gh/anijain2305/837/orig 2025-08-14T21:43:04.2438370Z * [new branch] gh/anijain2305/838/base -> origin/gh/anijain2305/838/base 2025-08-14T21:43:04.2438889Z * [new branch] gh/anijain2305/838/head -> origin/gh/anijain2305/838/head 2025-08-14T21:43:04.2439417Z * [new branch] gh/anijain2305/838/orig -> origin/gh/anijain2305/838/orig 2025-08-14T21:43:04.2439936Z * [new branch] gh/anijain2305/839/base -> origin/gh/anijain2305/839/base 2025-08-14T21:43:04.2440445Z * [new branch] gh/anijain2305/839/head -> origin/gh/anijain2305/839/head 2025-08-14T21:43:04.2440958Z * [new branch] gh/anijain2305/839/orig -> origin/gh/anijain2305/839/orig 2025-08-14T21:43:04.2441492Z * [new branch] gh/anijain2305/840/base -> origin/gh/anijain2305/840/base 2025-08-14T21:43:04.2442003Z * [new branch] gh/anijain2305/840/head -> origin/gh/anijain2305/840/head 2025-08-14T21:43:04.2442513Z * [new branch] gh/anijain2305/840/orig -> origin/gh/anijain2305/840/orig 2025-08-14T21:43:04.2443018Z * [new branch] gh/anijain2305/841/base -> origin/gh/anijain2305/841/base 2025-08-14T21:43:04.2443539Z * [new branch] gh/anijain2305/841/head -> origin/gh/anijain2305/841/head 2025-08-14T21:43:04.2444055Z * [new branch] gh/anijain2305/841/orig -> origin/gh/anijain2305/841/orig 2025-08-14T21:43:04.2444562Z * [new branch] gh/anijain2305/842/base -> origin/gh/anijain2305/842/base 2025-08-14T21:43:04.2445076Z * [new branch] gh/anijain2305/842/head -> origin/gh/anijain2305/842/head 2025-08-14T21:43:04.2445750Z * [new branch] gh/anijain2305/842/orig -> origin/gh/anijain2305/842/orig 2025-08-14T21:43:04.2446270Z * [new branch] gh/anijain2305/843/base -> origin/gh/anijain2305/843/base 2025-08-14T21:43:04.2446788Z * [new branch] gh/anijain2305/843/head -> origin/gh/anijain2305/843/head 2025-08-14T21:43:04.2447305Z * [new branch] gh/anijain2305/843/orig -> origin/gh/anijain2305/843/orig 2025-08-14T21:43:04.2447829Z * [new branch] gh/anijain2305/844/base -> origin/gh/anijain2305/844/base 2025-08-14T21:43:04.2448350Z * [new branch] gh/anijain2305/844/head -> origin/gh/anijain2305/844/head 2025-08-14T21:43:04.2448869Z * [new branch] gh/anijain2305/844/orig -> origin/gh/anijain2305/844/orig 2025-08-14T21:43:04.2449383Z * [new branch] gh/anijain2305/845/base -> origin/gh/anijain2305/845/base 2025-08-14T21:43:04.2449890Z * [new branch] gh/anijain2305/845/head -> origin/gh/anijain2305/845/head 2025-08-14T21:43:04.2450408Z * [new branch] gh/anijain2305/845/orig -> origin/gh/anijain2305/845/orig 2025-08-14T21:43:04.2450916Z * [new branch] gh/anijain2305/846/base -> origin/gh/anijain2305/846/base 2025-08-14T21:43:04.2451439Z * [new branch] gh/anijain2305/846/head -> origin/gh/anijain2305/846/head 2025-08-14T21:43:04.2451961Z * [new branch] gh/anijain2305/846/orig -> origin/gh/anijain2305/846/orig 2025-08-14T21:43:04.2452584Z * [new branch] gh/anijain2305/847/base -> origin/gh/anijain2305/847/base 2025-08-14T21:43:04.2453100Z * [new branch] gh/anijain2305/847/head -> origin/gh/anijain2305/847/head 2025-08-14T21:43:04.2453610Z * [new branch] gh/anijain2305/847/orig -> origin/gh/anijain2305/847/orig 2025-08-14T21:43:04.2454134Z * [new branch] gh/anijain2305/848/base -> origin/gh/anijain2305/848/base 2025-08-14T21:43:04.2454656Z * [new branch] gh/anijain2305/848/head -> origin/gh/anijain2305/848/head 2025-08-14T21:43:04.2455183Z * [new branch] gh/anijain2305/848/orig -> origin/gh/anijain2305/848/orig 2025-08-14T21:43:04.2455692Z * [new branch] gh/anjali411/216/base -> origin/gh/anjali411/216/base 2025-08-14T21:43:04.2456183Z * [new branch] gh/anjali411/216/head -> origin/gh/anjali411/216/head 2025-08-14T21:43:04.2456684Z * [new branch] gh/anjali411/216/orig -> origin/gh/anjali411/216/orig 2025-08-14T21:43:04.2457190Z * [new branch] gh/ankitageorge/10/base -> origin/gh/ankitageorge/10/base 2025-08-14T21:43:04.2457728Z * [new branch] gh/ankitageorge/10/head -> origin/gh/ankitageorge/10/head 2025-08-14T21:43:04.2458266Z * [new branch] gh/ankitageorge/10/orig -> origin/gh/ankitageorge/10/orig 2025-08-14T21:43:04.2458793Z * [new branch] gh/ankitageorge/12/base -> origin/gh/ankitageorge/12/base 2025-08-14T21:43:04.2459335Z * [new branch] gh/ankitageorge/12/head -> origin/gh/ankitageorge/12/head 2025-08-14T21:43:04.2459862Z * [new branch] gh/ankitageorge/12/orig -> origin/gh/ankitageorge/12/orig 2025-08-14T21:43:04.2460392Z * [new branch] gh/ankitageorge/13/base -> origin/gh/ankitageorge/13/base 2025-08-14T21:43:04.2912356Z * [new branch] gh/ankitageorge/13/head -> origin/gh/ankitageorge/13/head 2025-08-14T21:43:04.2912978Z * [new branch] gh/ankitageorge/13/orig -> origin/gh/ankitageorge/13/orig 2025-08-14T21:43:04.2913524Z * [new branch] gh/ankitageorge/14/base -> origin/gh/ankitageorge/14/base 2025-08-14T21:43:04.2914079Z * [new branch] gh/ankitageorge/14/head -> origin/gh/ankitageorge/14/head 2025-08-14T21:43:04.2914600Z * [new branch] gh/ankitageorge/14/orig -> origin/gh/ankitageorge/14/orig 2025-08-14T21:43:04.2915303Z * [new branch] gh/ankitageorge/15/base -> origin/gh/ankitageorge/15/base 2025-08-14T21:43:04.2915835Z * [new branch] gh/ankitageorge/15/head -> origin/gh/ankitageorge/15/head 2025-08-14T21:43:04.2916374Z * [new branch] gh/ankitageorge/15/orig -> origin/gh/ankitageorge/15/orig 2025-08-14T21:43:04.2916909Z * [new branch] gh/ankitageorge/16/base -> origin/gh/ankitageorge/16/base 2025-08-14T21:43:04.2917484Z * [new branch] gh/ankitageorge/16/head -> origin/gh/ankitageorge/16/head 2025-08-14T21:43:04.2918062Z * [new branch] gh/ankitageorge/16/orig -> origin/gh/ankitageorge/16/orig 2025-08-14T21:43:04.2918630Z * [new branch] gh/ankitageorge/17/base -> origin/gh/ankitageorge/17/base 2025-08-14T21:43:04.2919171Z * [new branch] gh/ankitageorge/17/head -> origin/gh/ankitageorge/17/head 2025-08-14T21:43:04.2919699Z * [new branch] gh/ankitageorge/17/orig -> origin/gh/ankitageorge/17/orig 2025-08-14T21:43:04.2920224Z * [new branch] gh/ankitageorge/18/base -> origin/gh/ankitageorge/18/base 2025-08-14T21:43:04.2920752Z * [new branch] gh/ankitageorge/18/head -> origin/gh/ankitageorge/18/head 2025-08-14T21:43:04.2921273Z * [new branch] gh/ankitageorge/18/orig -> origin/gh/ankitageorge/18/orig 2025-08-14T21:43:04.2921802Z * [new branch] gh/ankitageorge/19/base -> origin/gh/ankitageorge/19/base 2025-08-14T21:43:04.2922447Z * [new branch] gh/ankitageorge/19/head -> origin/gh/ankitageorge/19/head 2025-08-14T21:43:04.2922985Z * [new branch] gh/ankitageorge/19/orig -> origin/gh/ankitageorge/19/orig 2025-08-14T21:43:04.2923521Z * [new branch] gh/ankitageorge/20/base -> origin/gh/ankitageorge/20/base 2025-08-14T21:43:04.2924048Z * [new branch] gh/ankitageorge/20/head -> origin/gh/ankitageorge/20/head 2025-08-14T21:43:04.2924592Z * [new branch] gh/ankitageorge/20/orig -> origin/gh/ankitageorge/20/orig 2025-08-14T21:43:04.2925116Z * [new branch] gh/ankitageorge/21/base -> origin/gh/ankitageorge/21/base 2025-08-14T21:43:04.2925648Z * [new branch] gh/ankitageorge/21/head -> origin/gh/ankitageorge/21/head 2025-08-14T21:43:04.2926177Z * [new branch] gh/ankitageorge/21/orig -> origin/gh/ankitageorge/21/orig 2025-08-14T21:43:04.2926696Z * [new branch] gh/anshul-si/1/base -> origin/gh/anshul-si/1/base 2025-08-14T21:43:04.2927191Z * [new branch] gh/anshul-si/1/head -> origin/gh/anshul-si/1/head 2025-08-14T21:43:04.2927677Z * [new branch] gh/anshul-si/10/base -> origin/gh/anshul-si/10/base 2025-08-14T21:43:04.2928177Z * [new branch] gh/anshul-si/10/head -> origin/gh/anshul-si/10/head 2025-08-14T21:43:04.2928668Z * [new branch] gh/anshul-si/10/orig -> origin/gh/anshul-si/10/orig 2025-08-14T21:43:04.2929199Z * [new branch] gh/anshul-si/11/base -> origin/gh/anshul-si/11/base 2025-08-14T21:43:04.2929733Z * [new branch] gh/anshul-si/11/head -> origin/gh/anshul-si/11/head 2025-08-14T21:43:04.2930218Z * [new branch] gh/anshul-si/11/orig -> origin/gh/anshul-si/11/orig 2025-08-14T21:43:04.2930706Z * [new branch] gh/anshul-si/12/base -> origin/gh/anshul-si/12/base 2025-08-14T21:43:04.2931213Z * [new branch] gh/anshul-si/12/head -> origin/gh/anshul-si/12/head 2025-08-14T21:43:04.2931704Z * [new branch] gh/anshul-si/12/orig -> origin/gh/anshul-si/12/orig 2025-08-14T21:43:04.2932192Z * [new branch] gh/anshul-si/13/base -> origin/gh/anshul-si/13/base 2025-08-14T21:43:04.2932673Z * [new branch] gh/anshul-si/13/head -> origin/gh/anshul-si/13/head 2025-08-14T21:43:04.2933261Z * [new branch] gh/anshul-si/13/orig -> origin/gh/anshul-si/13/orig 2025-08-14T21:43:04.2933746Z * [new branch] gh/anshul-si/14/base -> origin/gh/anshul-si/14/base 2025-08-14T21:43:04.2934239Z * [new branch] gh/anshul-si/14/head -> origin/gh/anshul-si/14/head 2025-08-14T21:43:04.2934736Z * [new branch] gh/anshul-si/14/orig -> origin/gh/anshul-si/14/orig 2025-08-14T21:43:04.2935228Z * [new branch] gh/anshul-si/15/base -> origin/gh/anshul-si/15/base 2025-08-14T21:43:04.2935763Z * [new branch] gh/anshul-si/15/head -> origin/gh/anshul-si/15/head 2025-08-14T21:43:04.2936258Z * [new branch] gh/anshul-si/15/orig -> origin/gh/anshul-si/15/orig 2025-08-14T21:43:04.3337727Z * [new branch] gh/anshul-si/16/base -> origin/gh/anshul-si/16/base 2025-08-14T21:43:04.3338292Z * [new branch] gh/anshul-si/16/head -> origin/gh/anshul-si/16/head 2025-08-14T21:43:04.3338830Z * [new branch] gh/anshul-si/16/orig -> origin/gh/anshul-si/16/orig 2025-08-14T21:43:04.3339340Z * [new branch] gh/anshul-si/17/base -> origin/gh/anshul-si/17/base 2025-08-14T21:43:04.3339835Z * [new branch] gh/anshul-si/17/head -> origin/gh/anshul-si/17/head 2025-08-14T21:43:04.3340343Z * [new branch] gh/anshul-si/17/orig -> origin/gh/anshul-si/17/orig 2025-08-14T21:43:04.3341054Z * [new branch] gh/anshul-si/18/base -> origin/gh/anshul-si/18/base 2025-08-14T21:43:04.3341552Z * [new branch] gh/anshul-si/18/head -> origin/gh/anshul-si/18/head 2025-08-14T21:43:04.3342052Z * [new branch] gh/anshul-si/18/orig -> origin/gh/anshul-si/18/orig 2025-08-14T21:43:04.3343311Z * [new branch] gh/anshul-si/19/base -> origin/gh/anshul-si/19/base 2025-08-14T21:43:04.3343831Z * [new branch] gh/anshul-si/19/head -> origin/gh/anshul-si/19/head 2025-08-14T21:43:04.3344421Z * [new branch] gh/anshul-si/19/orig -> origin/gh/anshul-si/19/orig 2025-08-14T21:43:04.3345021Z * [new branch] gh/anshul-si/2/base -> origin/gh/anshul-si/2/base 2025-08-14T21:43:04.3345535Z * [new branch] gh/anshul-si/2/head -> origin/gh/anshul-si/2/head 2025-08-14T21:43:04.3346146Z * [new branch] gh/anshul-si/20/base -> origin/gh/anshul-si/20/base 2025-08-14T21:43:04.3346676Z * [new branch] gh/anshul-si/20/head -> origin/gh/anshul-si/20/head 2025-08-14T21:43:04.3347166Z * [new branch] gh/anshul-si/20/orig -> origin/gh/anshul-si/20/orig 2025-08-14T21:43:04.3347677Z * [new branch] gh/anshul-si/21/base -> origin/gh/anshul-si/21/base 2025-08-14T21:43:04.3348186Z * [new branch] gh/anshul-si/21/head -> origin/gh/anshul-si/21/head 2025-08-14T21:43:04.3348675Z * [new branch] gh/anshul-si/21/orig -> origin/gh/anshul-si/21/orig 2025-08-14T21:43:04.3349166Z * [new branch] gh/anshul-si/22/base -> origin/gh/anshul-si/22/base 2025-08-14T21:43:04.3349795Z * [new branch] gh/anshul-si/22/head -> origin/gh/anshul-si/22/head 2025-08-14T21:43:04.3350333Z * [new branch] gh/anshul-si/22/orig -> origin/gh/anshul-si/22/orig 2025-08-14T21:43:04.3350833Z * [new branch] gh/anshul-si/23/base -> origin/gh/anshul-si/23/base 2025-08-14T21:43:04.3351326Z * [new branch] gh/anshul-si/23/head -> origin/gh/anshul-si/23/head 2025-08-14T21:43:04.3351817Z * [new branch] gh/anshul-si/23/orig -> origin/gh/anshul-si/23/orig 2025-08-14T21:43:04.3352301Z * [new branch] gh/anshul-si/24/base -> origin/gh/anshul-si/24/base 2025-08-14T21:43:04.3352790Z * [new branch] gh/anshul-si/24/head -> origin/gh/anshul-si/24/head 2025-08-14T21:43:04.3353430Z * [new branch] gh/anshul-si/24/orig -> origin/gh/anshul-si/24/orig 2025-08-14T21:43:04.3353925Z * [new branch] gh/anshul-si/25/base -> origin/gh/anshul-si/25/base 2025-08-14T21:43:04.3354425Z * [new branch] gh/anshul-si/25/head -> origin/gh/anshul-si/25/head 2025-08-14T21:43:04.3354906Z * [new branch] gh/anshul-si/25/orig -> origin/gh/anshul-si/25/orig 2025-08-14T21:43:04.3355404Z * [new branch] gh/anshul-si/26/base -> origin/gh/anshul-si/26/base 2025-08-14T21:43:04.3355895Z * [new branch] gh/anshul-si/26/head -> origin/gh/anshul-si/26/head 2025-08-14T21:43:04.3356388Z * [new branch] gh/anshul-si/26/orig -> origin/gh/anshul-si/26/orig 2025-08-14T21:43:04.3356876Z * [new branch] gh/anshul-si/27/base -> origin/gh/anshul-si/27/base 2025-08-14T21:43:04.3357420Z * [new branch] gh/anshul-si/27/head -> origin/gh/anshul-si/27/head 2025-08-14T21:43:04.3357947Z * [new branch] gh/anshul-si/27/orig -> origin/gh/anshul-si/27/orig 2025-08-14T21:43:04.3358441Z * [new branch] gh/anshul-si/3/base -> origin/gh/anshul-si/3/base 2025-08-14T21:43:04.3358937Z * [new branch] gh/anshul-si/3/head -> origin/gh/anshul-si/3/head 2025-08-14T21:43:04.3359440Z * [new branch] gh/anshul-si/4/base -> origin/gh/anshul-si/4/base 2025-08-14T21:43:04.3360037Z * [new branch] gh/anshul-si/4/head -> origin/gh/anshul-si/4/head 2025-08-14T21:43:04.3360533Z * [new branch] gh/anshul-si/5/base -> origin/gh/anshul-si/5/base 2025-08-14T21:43:04.3361006Z * [new branch] gh/anshul-si/5/head -> origin/gh/anshul-si/5/head 2025-08-14T21:43:04.3361498Z * [new branch] gh/anshul-si/6/base -> origin/gh/anshul-si/6/base 2025-08-14T21:43:04.3361988Z * [new branch] gh/anshul-si/6/head -> origin/gh/anshul-si/6/head 2025-08-14T21:43:04.3782432Z * [new branch] gh/anshul-si/6/orig -> origin/gh/anshul-si/6/orig 2025-08-14T21:43:04.3783013Z * [new branch] gh/anshul-si/7/base -> origin/gh/anshul-si/7/base 2025-08-14T21:43:04.3792168Z * [new branch] gh/anshul-si/7/head -> origin/gh/anshul-si/7/head 2025-08-14T21:43:04.3792670Z * [new branch] gh/anshul-si/7/orig -> origin/gh/anshul-si/7/orig 2025-08-14T21:43:04.3793174Z * [new branch] gh/anshul-si/8/base -> origin/gh/anshul-si/8/base 2025-08-14T21:43:04.3793652Z * [new branch] gh/anshul-si/8/head -> origin/gh/anshul-si/8/head 2025-08-14T21:43:04.3794139Z * [new branch] gh/anshul-si/8/orig -> origin/gh/anshul-si/8/orig 2025-08-14T21:43:04.3794618Z * [new branch] gh/anshul-si/9/base -> origin/gh/anshul-si/9/base 2025-08-14T21:43:04.3795108Z * [new branch] gh/anshul-si/9/head -> origin/gh/anshul-si/9/head 2025-08-14T21:43:04.3795587Z * [new branch] gh/anshul-si/9/orig -> origin/gh/anshul-si/9/orig 2025-08-14T21:43:04.3796068Z * [new branch] gh/aorenste/132/base -> origin/gh/aorenste/132/base 2025-08-14T21:43:04.3796567Z * [new branch] gh/aorenste/132/head -> origin/gh/aorenste/132/head 2025-08-14T21:43:04.3836695Z * [new branch] gh/aorenste/235/base -> origin/gh/aorenste/235/base 2025-08-14T21:43:04.3837249Z * [new branch] gh/aorenste/235/head -> origin/gh/aorenste/235/head 2025-08-14T21:43:04.3837742Z * [new branch] gh/aorenste/235/orig -> origin/gh/aorenste/235/orig 2025-08-14T21:43:04.3838228Z * [new branch] gh/aorenste/236/base -> origin/gh/aorenste/236/base 2025-08-14T21:43:04.3838716Z * [new branch] gh/aorenste/236/head -> origin/gh/aorenste/236/head 2025-08-14T21:43:04.3839397Z * [new branch] gh/aorenste/236/orig -> origin/gh/aorenste/236/orig 2025-08-14T21:43:04.3839899Z * [new branch] gh/aorenste/237/base -> origin/gh/aorenste/237/base 2025-08-14T21:43:04.3840399Z * [new branch] gh/aorenste/237/head -> origin/gh/aorenste/237/head 2025-08-14T21:43:04.3841903Z * [new branch] gh/aorenste/237/orig -> origin/gh/aorenste/237/orig 2025-08-14T21:43:04.3842439Z * [new branch] gh/aorenste/238/base -> origin/gh/aorenste/238/base 2025-08-14T21:43:04.3842931Z * [new branch] gh/aorenste/238/head -> origin/gh/aorenste/238/head 2025-08-14T21:43:04.3843432Z * [new branch] gh/aorenste/238/orig -> origin/gh/aorenste/238/orig 2025-08-14T21:43:04.3843940Z * [new branch] gh/bdhirsh/650/base -> origin/gh/bdhirsh/650/base 2025-08-14T21:43:04.3844418Z * [new branch] gh/bdhirsh/650/head -> origin/gh/bdhirsh/650/head 2025-08-14T21:43:04.3844911Z * [new branch] gh/bdhirsh/650/orig -> origin/gh/bdhirsh/650/orig 2025-08-14T21:43:04.3845395Z * [new branch] gh/bdhirsh/656/base -> origin/gh/bdhirsh/656/base 2025-08-14T21:43:04.3845874Z * [new branch] gh/bdhirsh/656/head -> origin/gh/bdhirsh/656/head 2025-08-14T21:43:04.3846349Z * [new branch] gh/bdhirsh/657/base -> origin/gh/bdhirsh/657/base 2025-08-14T21:43:04.3848006Z * [new branch] gh/bdhirsh/657/head -> origin/gh/bdhirsh/657/head 2025-08-14T21:43:04.3848498Z * [new branch] gh/bdhirsh/659/base -> origin/gh/bdhirsh/659/base 2025-08-14T21:43:04.3848982Z * [new branch] gh/bdhirsh/659/head -> origin/gh/bdhirsh/659/head 2025-08-14T21:43:04.3849468Z * [new branch] gh/bdhirsh/659/orig -> origin/gh/bdhirsh/659/orig 2025-08-14T21:43:04.3849948Z * [new branch] gh/bdhirsh/663/base -> origin/gh/bdhirsh/663/base 2025-08-14T21:43:04.3850434Z * [new branch] gh/bdhirsh/663/head -> origin/gh/bdhirsh/663/head 2025-08-14T21:43:04.3850915Z * [new branch] gh/bdhirsh/663/orig -> origin/gh/bdhirsh/663/orig 2025-08-14T21:43:04.3851395Z * [new branch] gh/bdhirsh/665/base -> origin/gh/bdhirsh/665/base 2025-08-14T21:43:04.3851877Z * [new branch] gh/bdhirsh/665/head -> origin/gh/bdhirsh/665/head 2025-08-14T21:43:04.3852937Z * [new branch] gh/bdhirsh/665/orig -> origin/gh/bdhirsh/665/orig 2025-08-14T21:43:04.3853833Z * [new branch] gh/bdhirsh/666/base -> origin/gh/bdhirsh/666/base 2025-08-14T21:43:04.3854336Z * [new branch] gh/bdhirsh/666/head -> origin/gh/bdhirsh/666/head 2025-08-14T21:43:04.3854817Z * [new branch] gh/bdhirsh/666/orig -> origin/gh/bdhirsh/666/orig 2025-08-14T21:43:04.3855361Z * [new branch] gh/benjaminglass1/79/base -> origin/gh/benjaminglass1/79/base 2025-08-14T21:43:04.3855925Z * [new branch] gh/benjaminglass1/79/head -> origin/gh/benjaminglass1/79/head 2025-08-14T21:43:04.3856490Z * [new branch] gh/benjaminglass1/79/orig -> origin/gh/benjaminglass1/79/orig 2025-08-14T21:43:04.3857050Z * [new branch] gh/benjaminglass1/86/base -> origin/gh/benjaminglass1/86/base 2025-08-14T21:43:04.4244326Z * [new branch] gh/benjaminglass1/86/head -> origin/gh/benjaminglass1/86/head 2025-08-14T21:43:04.4244956Z * [new branch] gh/benjaminglass1/86/orig -> origin/gh/benjaminglass1/86/orig 2025-08-14T21:43:04.4245514Z * [new branch] gh/benjaminglass1/89/base -> origin/gh/benjaminglass1/89/base 2025-08-14T21:43:04.4246068Z * [new branch] gh/benjaminglass1/89/head -> origin/gh/benjaminglass1/89/head 2025-08-14T21:43:04.4246621Z * [new branch] gh/benjaminglass1/89/orig -> origin/gh/benjaminglass1/89/orig 2025-08-14T21:43:04.4247379Z * [new branch] gh/benjaminglass1/91/base -> origin/gh/benjaminglass1/91/base 2025-08-14T21:43:04.4247934Z * [new branch] gh/benjaminglass1/91/head -> origin/gh/benjaminglass1/91/head 2025-08-14T21:43:04.4248474Z * [new branch] gh/benjaminglass1/91/orig -> origin/gh/benjaminglass1/91/orig 2025-08-14T21:43:04.4249031Z * [new branch] gh/benjaminglass1/93/base -> origin/gh/benjaminglass1/93/base 2025-08-14T21:43:04.4249592Z * [new branch] gh/benjaminglass1/93/head -> origin/gh/benjaminglass1/93/head 2025-08-14T21:43:04.4250142Z * [new branch] gh/benjaminglass1/93/orig -> origin/gh/benjaminglass1/93/orig 2025-08-14T21:43:04.4250689Z * [new branch] gh/benjaminglass1/94/base -> origin/gh/benjaminglass1/94/base 2025-08-14T21:43:04.4251244Z * [new branch] gh/benjaminglass1/94/head -> origin/gh/benjaminglass1/94/head 2025-08-14T21:43:04.4251798Z * [new branch] gh/benjaminglass1/94/orig -> origin/gh/benjaminglass1/94/orig 2025-08-14T21:43:04.4252352Z * [new branch] gh/benjaminglass1/95/base -> origin/gh/benjaminglass1/95/base 2025-08-14T21:43:04.4252890Z * [new branch] gh/benjaminglass1/95/head -> origin/gh/benjaminglass1/95/head 2025-08-14T21:43:04.4253443Z * [new branch] gh/benjaminglass1/95/orig -> origin/gh/benjaminglass1/95/orig 2025-08-14T21:43:04.4254120Z * [new branch] gh/benjaminglass1/96/base -> origin/gh/benjaminglass1/96/base 2025-08-14T21:43:04.4254678Z * [new branch] gh/benjaminglass1/96/head -> origin/gh/benjaminglass1/96/head 2025-08-14T21:43:04.4255238Z * [new branch] gh/benjaminglass1/96/orig -> origin/gh/benjaminglass1/96/orig 2025-08-14T21:43:04.4255785Z * [new branch] gh/benjaminglass1/97/base -> origin/gh/benjaminglass1/97/base 2025-08-14T21:43:04.4256344Z * [new branch] gh/benjaminglass1/97/head -> origin/gh/benjaminglass1/97/head 2025-08-14T21:43:04.4256890Z * [new branch] gh/benjaminglass1/97/orig -> origin/gh/benjaminglass1/97/orig 2025-08-14T21:43:04.4257439Z * [new branch] gh/benjaminglass1/98/base -> origin/gh/benjaminglass1/98/base 2025-08-14T21:43:04.4257988Z * [new branch] gh/benjaminglass1/98/head -> origin/gh/benjaminglass1/98/head 2025-08-14T21:43:04.4258543Z * [new branch] gh/benjaminglass1/98/orig -> origin/gh/benjaminglass1/98/orig 2025-08-14T21:43:04.4259077Z * [new branch] gh/bobrenjc93/478/base -> origin/gh/bobrenjc93/478/base 2025-08-14T21:43:04.4259586Z * [new branch] gh/bobrenjc93/478/head -> origin/gh/bobrenjc93/478/head 2025-08-14T21:43:04.4260101Z * [new branch] gh/bobrenjc93/478/orig -> origin/gh/bobrenjc93/478/orig 2025-08-14T21:43:04.4260610Z * [new branch] gh/bobrenjc93/514/base -> origin/gh/bobrenjc93/514/base 2025-08-14T21:43:04.4261115Z * [new branch] gh/bobrenjc93/514/head -> origin/gh/bobrenjc93/514/head 2025-08-14T21:43:04.4261621Z * [new branch] gh/bobrenjc93/514/orig -> origin/gh/bobrenjc93/514/orig 2025-08-14T21:43:04.4262122Z * [new branch] gh/bobrenjc93/521/base -> origin/gh/bobrenjc93/521/base 2025-08-14T21:43:04.4262639Z * [new branch] gh/bobrenjc93/521/head -> origin/gh/bobrenjc93/521/head 2025-08-14T21:43:04.4263149Z * [new branch] gh/bobrenjc93/521/orig -> origin/gh/bobrenjc93/521/orig 2025-08-14T21:43:04.4263649Z * [new branch] gh/bobrenjc93/522/base -> origin/gh/bobrenjc93/522/base 2025-08-14T21:43:04.4264159Z * [new branch] gh/bobrenjc93/522/head -> origin/gh/bobrenjc93/522/head 2025-08-14T21:43:04.4264658Z * [new branch] gh/bobrenjc93/522/orig -> origin/gh/bobrenjc93/522/orig 2025-08-14T21:43:04.4265275Z * [new branch] gh/bobrenjc93/525/base -> origin/gh/bobrenjc93/525/base 2025-08-14T21:43:04.4265781Z * [new branch] gh/bobrenjc93/525/head -> origin/gh/bobrenjc93/525/head 2025-08-14T21:43:04.4266300Z * [new branch] gh/bobrenjc93/525/orig -> origin/gh/bobrenjc93/525/orig 2025-08-14T21:43:04.4266824Z * [new branch] gh/bobrenjc93/526/base -> origin/gh/bobrenjc93/526/base 2025-08-14T21:43:04.4267334Z * [new branch] gh/bobrenjc93/526/head -> origin/gh/bobrenjc93/526/head 2025-08-14T21:43:04.4267853Z * [new branch] gh/bobrenjc93/526/orig -> origin/gh/bobrenjc93/526/orig 2025-08-14T21:43:04.4268361Z * [new branch] gh/bobrenjc93/527/base -> origin/gh/bobrenjc93/527/base 2025-08-14T21:43:04.4774651Z * [new branch] gh/bobrenjc93/527/head -> origin/gh/bobrenjc93/527/head 2025-08-14T21:43:04.4775259Z * [new branch] gh/bobrenjc93/527/orig -> origin/gh/bobrenjc93/527/orig 2025-08-14T21:43:04.4775808Z * [new branch] gh/bobrenjc93/528/base -> origin/gh/bobrenjc93/528/base 2025-08-14T21:43:04.4776328Z * [new branch] gh/bobrenjc93/528/head -> origin/gh/bobrenjc93/528/head 2025-08-14T21:43:04.4776894Z * [new branch] gh/bobrenjc93/528/orig -> origin/gh/bobrenjc93/528/orig 2025-08-14T21:43:04.4777443Z * [new branch] gh/bobrenjc93/529/base -> origin/gh/bobrenjc93/529/base 2025-08-14T21:43:04.4778207Z * [new branch] gh/bobrenjc93/529/head -> origin/gh/bobrenjc93/529/head 2025-08-14T21:43:04.4778713Z * [new branch] gh/bobrenjc93/529/orig -> origin/gh/bobrenjc93/529/orig 2025-08-14T21:43:04.4779222Z * [new branch] gh/bobrenjc93/534/base -> origin/gh/bobrenjc93/534/base 2025-08-14T21:43:04.4779734Z * [new branch] gh/bobrenjc93/534/head -> origin/gh/bobrenjc93/534/head 2025-08-14T21:43:04.4780248Z * [new branch] gh/bobrenjc93/534/orig -> origin/gh/bobrenjc93/534/orig 2025-08-14T21:43:04.4780758Z * [new branch] gh/bobrenjc93/535/base -> origin/gh/bobrenjc93/535/base 2025-08-14T21:43:04.4781257Z * [new branch] gh/bobrenjc93/535/head -> origin/gh/bobrenjc93/535/head 2025-08-14T21:43:04.4781769Z * [new branch] gh/bobrenjc93/535/orig -> origin/gh/bobrenjc93/535/orig 2025-08-14T21:43:04.4782285Z * [new branch] gh/bobrenjc93/536/base -> origin/gh/bobrenjc93/536/base 2025-08-14T21:43:04.4782788Z * [new branch] gh/bobrenjc93/536/head -> origin/gh/bobrenjc93/536/head 2025-08-14T21:43:04.4783300Z * [new branch] gh/bobrenjc93/536/orig -> origin/gh/bobrenjc93/536/orig 2025-08-14T21:43:04.4783803Z * [new branch] gh/bobrenjc93/537/base -> origin/gh/bobrenjc93/537/base 2025-08-14T21:43:04.4784313Z * [new branch] gh/bobrenjc93/537/head -> origin/gh/bobrenjc93/537/head 2025-08-14T21:43:04.4784821Z * [new branch] gh/bobrenjc93/537/orig -> origin/gh/bobrenjc93/537/orig 2025-08-14T21:43:04.4785327Z * [new branch] gh/bobrenjc93/538/base -> origin/gh/bobrenjc93/538/base 2025-08-14T21:43:04.4785838Z * [new branch] gh/bobrenjc93/538/head -> origin/gh/bobrenjc93/538/head 2025-08-14T21:43:04.4786337Z * [new branch] gh/bobrenjc93/538/orig -> origin/gh/bobrenjc93/538/orig 2025-08-14T21:43:04.4786858Z * [new branch] gh/bobrenjc93/539/base -> origin/gh/bobrenjc93/539/base 2025-08-14T21:43:04.4787360Z * [new branch] gh/bobrenjc93/539/head -> origin/gh/bobrenjc93/539/head 2025-08-14T21:43:04.4787876Z * [new branch] gh/bobrenjc93/539/orig -> origin/gh/bobrenjc93/539/orig 2025-08-14T21:43:04.4788387Z * [new branch] gh/bobrenjc93/540/base -> origin/gh/bobrenjc93/540/base 2025-08-14T21:43:04.4789020Z * [new branch] gh/bobrenjc93/540/head -> origin/gh/bobrenjc93/540/head 2025-08-14T21:43:04.4789540Z * [new branch] gh/bobrenjc93/540/orig -> origin/gh/bobrenjc93/540/orig 2025-08-14T21:43:04.4790044Z * [new branch] gh/bobrenjc93/541/base -> origin/gh/bobrenjc93/541/base 2025-08-14T21:43:04.4790566Z * [new branch] gh/bobrenjc93/541/head -> origin/gh/bobrenjc93/541/head 2025-08-14T21:43:04.4791085Z * [new branch] gh/bobrenjc93/541/orig -> origin/gh/bobrenjc93/541/orig 2025-08-14T21:43:04.4791601Z * [new branch] gh/bobrenjc93/542/base -> origin/gh/bobrenjc93/542/base 2025-08-14T21:43:04.4792121Z * [new branch] gh/bobrenjc93/542/head -> origin/gh/bobrenjc93/542/head 2025-08-14T21:43:04.4792627Z * [new branch] gh/bobrenjc93/542/orig -> origin/gh/bobrenjc93/542/orig 2025-08-14T21:43:04.4793145Z * [new branch] gh/bobrenjc93/543/base -> origin/gh/bobrenjc93/543/base 2025-08-14T21:43:04.4793666Z * [new branch] gh/bobrenjc93/543/head -> origin/gh/bobrenjc93/543/head 2025-08-14T21:43:04.4794175Z * [new branch] gh/bobrenjc93/543/orig -> origin/gh/bobrenjc93/543/orig 2025-08-14T21:43:04.4794687Z * [new branch] gh/bobrenjc93/544/base -> origin/gh/bobrenjc93/544/base 2025-08-14T21:43:04.4795189Z * [new branch] gh/bobrenjc93/544/head -> origin/gh/bobrenjc93/544/head 2025-08-14T21:43:04.4795812Z * [new branch] gh/bobrenjc93/544/orig -> origin/gh/bobrenjc93/544/orig 2025-08-14T21:43:04.4796335Z * [new branch] gh/bobrenjc93/545/base -> origin/gh/bobrenjc93/545/base 2025-08-14T21:43:04.4796849Z * [new branch] gh/bobrenjc93/545/head -> origin/gh/bobrenjc93/545/head 2025-08-14T21:43:04.4797430Z * [new branch] gh/bobrenjc93/545/orig -> origin/gh/bobrenjc93/545/orig 2025-08-14T21:43:04.4797950Z * [new branch] gh/bobrenjc93/546/base -> origin/gh/bobrenjc93/546/base 2025-08-14T21:43:04.5271966Z * [new branch] gh/bobrenjc93/546/head -> origin/gh/bobrenjc93/546/head 2025-08-14T21:43:04.5272544Z * [new branch] gh/bobrenjc93/546/orig -> origin/gh/bobrenjc93/546/orig 2025-08-14T21:43:04.5273064Z * [new branch] gh/bobrenjc93/547/base -> origin/gh/bobrenjc93/547/base 2025-08-14T21:43:04.5273572Z * [new branch] gh/bobrenjc93/547/head -> origin/gh/bobrenjc93/547/head 2025-08-14T21:43:04.5274119Z * [new branch] gh/bobrenjc93/547/orig -> origin/gh/bobrenjc93/547/orig 2025-08-14T21:43:04.5274633Z * [new branch] gh/bobrenjc93/548/base -> origin/gh/bobrenjc93/548/base 2025-08-14T21:43:04.5275145Z * [new branch] gh/bobrenjc93/548/head -> origin/gh/bobrenjc93/548/head 2025-08-14T21:43:04.5275671Z * [new branch] gh/bobrenjc93/548/orig -> origin/gh/bobrenjc93/548/orig 2025-08-14T21:43:04.5276191Z * [new branch] gh/bobrenjc93/549/base -> origin/gh/bobrenjc93/549/base 2025-08-14T21:43:04.5276700Z * [new branch] gh/bobrenjc93/549/head -> origin/gh/bobrenjc93/549/head 2025-08-14T21:43:04.5277249Z * [new branch] gh/bobrenjc93/549/orig -> origin/gh/bobrenjc93/549/orig 2025-08-14T21:43:04.5277776Z * [new branch] gh/briancoutinho/2/base -> origin/gh/briancoutinho/2/base 2025-08-14T21:43:04.5278324Z * [new branch] gh/briancoutinho/2/head -> origin/gh/briancoutinho/2/head 2025-08-14T21:43:04.5278823Z * [new branch] gh/c00w/23/base -> origin/gh/c00w/23/base 2025-08-14T21:43:04.5279281Z * [new branch] gh/c00w/23/head -> origin/gh/c00w/23/head 2025-08-14T21:43:04.5279725Z * [new branch] gh/c00w/38/base -> origin/gh/c00w/38/base 2025-08-14T21:43:04.5280161Z * [new branch] gh/c00w/38/head -> origin/gh/c00w/38/head 2025-08-14T21:43:04.5280812Z * [new branch] gh/c00w/38/orig -> origin/gh/c00w/38/orig 2025-08-14T21:43:04.5281278Z * [new branch] gh/c00w/48/base -> origin/gh/c00w/48/base 2025-08-14T21:43:04.5281726Z * [new branch] gh/c00w/48/head -> origin/gh/c00w/48/head 2025-08-14T21:43:04.5282180Z * [new branch] gh/c00w/48/orig -> origin/gh/c00w/48/orig 2025-08-14T21:43:04.5282622Z * [new branch] gh/c00w/50/base -> origin/gh/c00w/50/base 2025-08-14T21:43:04.5283063Z * [new branch] gh/c00w/50/head -> origin/gh/c00w/50/head 2025-08-14T21:43:04.5283499Z * [new branch] gh/c00w/50/orig -> origin/gh/c00w/50/orig 2025-08-14T21:43:04.5283944Z * [new branch] gh/c00w/51/base -> origin/gh/c00w/51/base 2025-08-14T21:43:04.5284383Z * [new branch] gh/c00w/51/head -> origin/gh/c00w/51/head 2025-08-14T21:43:04.5284823Z * [new branch] gh/c00w/51/orig -> origin/gh/c00w/51/orig 2025-08-14T21:43:04.5285268Z * [new branch] gh/c00w/52/base -> origin/gh/c00w/52/base 2025-08-14T21:43:04.5285705Z * [new branch] gh/c00w/52/head -> origin/gh/c00w/52/head 2025-08-14T21:43:04.5286147Z * [new branch] gh/c00w/52/orig -> origin/gh/c00w/52/orig 2025-08-14T21:43:04.5286710Z * [new branch] gh/c00w/53/base -> origin/gh/c00w/53/base 2025-08-14T21:43:04.5287162Z * [new branch] gh/c00w/53/head -> origin/gh/c00w/53/head 2025-08-14T21:43:04.5287608Z * [new branch] gh/c00w/53/orig -> origin/gh/c00w/53/orig 2025-08-14T21:43:04.5288045Z * [new branch] gh/c00w/54/base -> origin/gh/c00w/54/base 2025-08-14T21:43:04.5288499Z * [new branch] gh/c00w/54/head -> origin/gh/c00w/54/head 2025-08-14T21:43:04.5288942Z * [new branch] gh/c00w/54/orig -> origin/gh/c00w/54/orig 2025-08-14T21:43:04.5289422Z * [new branch] gh/chenmillie/1/base -> origin/gh/chenmillie/1/base 2025-08-14T21:43:04.5289935Z * [new branch] gh/chenmillie/1/head -> origin/gh/chenmillie/1/head 2025-08-14T21:43:04.5290433Z * [new branch] gh/chenmillie/1/orig -> origin/gh/chenmillie/1/orig 2025-08-14T21:43:04.5290934Z * [new branch] gh/clee2000/1/base -> origin/gh/clee2000/1/base 2025-08-14T21:43:04.5291401Z * [new branch] gh/clee2000/1/head -> origin/gh/clee2000/1/head 2025-08-14T21:43:04.5291876Z * [new branch] gh/clee2000/1/orig -> origin/gh/clee2000/1/orig 2025-08-14T21:43:04.5292382Z * [new branch] gh/coconutruben/1/base -> origin/gh/coconutruben/1/base 2025-08-14T21:43:04.5292905Z * [new branch] gh/coconutruben/1/head -> origin/gh/coconutruben/1/head 2025-08-14T21:43:04.5293439Z * [new branch] gh/coconutruben/11/base -> origin/gh/coconutruben/11/base 2025-08-14T21:43:04.5293966Z * [new branch] gh/coconutruben/11/head -> origin/gh/coconutruben/11/head 2025-08-14T21:43:04.5294502Z * [new branch] gh/coconutruben/11/orig -> origin/gh/coconutruben/11/orig 2025-08-14T21:43:04.5731719Z * [new branch] gh/coconutruben/12/base -> origin/gh/coconutruben/12/base 2025-08-14T21:43:04.5732347Z * [new branch] gh/coconutruben/12/head -> origin/gh/coconutruben/12/head 2025-08-14T21:43:04.5732917Z * [new branch] gh/coconutruben/12/orig -> origin/gh/coconutruben/12/orig 2025-08-14T21:43:04.5733457Z * [new branch] gh/coconutruben/13/base -> origin/gh/coconutruben/13/base 2025-08-14T21:43:04.5733993Z * [new branch] gh/coconutruben/13/head -> origin/gh/coconutruben/13/head 2025-08-14T21:43:04.5734738Z * [new branch] gh/coconutruben/13/orig -> origin/gh/coconutruben/13/orig 2025-08-14T21:43:04.5735266Z * [new branch] gh/coconutruben/14/base -> origin/gh/coconutruben/14/base 2025-08-14T21:43:04.5735803Z * [new branch] gh/coconutruben/14/head -> origin/gh/coconutruben/14/head 2025-08-14T21:43:04.5736338Z * [new branch] gh/coconutruben/14/orig -> origin/gh/coconutruben/14/orig 2025-08-14T21:43:04.5736881Z * [new branch] gh/coconutruben/15/base -> origin/gh/coconutruben/15/base 2025-08-14T21:43:04.5737418Z * [new branch] gh/coconutruben/15/head -> origin/gh/coconutruben/15/head 2025-08-14T21:43:04.5737945Z * [new branch] gh/coconutruben/15/orig -> origin/gh/coconutruben/15/orig 2025-08-14T21:43:04.5738476Z * [new branch] gh/coconutruben/16/base -> origin/gh/coconutruben/16/base 2025-08-14T21:43:04.5739012Z * [new branch] gh/coconutruben/16/head -> origin/gh/coconutruben/16/head 2025-08-14T21:43:04.5739546Z * [new branch] gh/coconutruben/16/orig -> origin/gh/coconutruben/16/orig 2025-08-14T21:43:04.5740075Z * [new branch] gh/coconutruben/17/base -> origin/gh/coconutruben/17/base 2025-08-14T21:43:04.5740592Z * [new branch] gh/coconutruben/17/head -> origin/gh/coconutruben/17/head 2025-08-14T21:43:04.5741118Z * [new branch] gh/coconutruben/17/orig -> origin/gh/coconutruben/17/orig 2025-08-14T21:43:04.5741773Z * [new branch] gh/coconutruben/18/base -> origin/gh/coconutruben/18/base 2025-08-14T21:43:04.5742311Z * [new branch] gh/coconutruben/18/head -> origin/gh/coconutruben/18/head 2025-08-14T21:43:04.5742849Z * [new branch] gh/coconutruben/18/orig -> origin/gh/coconutruben/18/orig 2025-08-14T21:43:04.5743377Z * [new branch] gh/coconutruben/19/base -> origin/gh/coconutruben/19/base 2025-08-14T21:43:04.5743916Z * [new branch] gh/coconutruben/19/head -> origin/gh/coconutruben/19/head 2025-08-14T21:43:04.5744454Z * [new branch] gh/coconutruben/19/orig -> origin/gh/coconutruben/19/orig 2025-08-14T21:43:04.5744987Z * [new branch] gh/coconutruben/20/base -> origin/gh/coconutruben/20/base 2025-08-14T21:43:04.5745515Z * [new branch] gh/coconutruben/20/head -> origin/gh/coconutruben/20/head 2025-08-14T21:43:04.5746045Z * [new branch] gh/coconutruben/20/orig -> origin/gh/coconutruben/20/orig 2025-08-14T21:43:04.5746580Z * [new branch] gh/coconutruben/21/base -> origin/gh/coconutruben/21/base 2025-08-14T21:43:04.5747106Z * [new branch] gh/coconutruben/21/head -> origin/gh/coconutruben/21/head 2025-08-14T21:43:04.5747638Z * [new branch] gh/coconutruben/21/orig -> origin/gh/coconutruben/21/orig 2025-08-14T21:43:04.5748170Z * [new branch] gh/coconutruben/22/base -> origin/gh/coconutruben/22/base 2025-08-14T21:43:04.5748698Z * [new branch] gh/coconutruben/22/head -> origin/gh/coconutruben/22/head 2025-08-14T21:43:04.5749226Z * [new branch] gh/coconutruben/22/orig -> origin/gh/coconutruben/22/orig 2025-08-14T21:43:04.5749756Z * [new branch] gh/coconutruben/23/base -> origin/gh/coconutruben/23/base 2025-08-14T21:43:04.5750431Z * [new branch] gh/coconutruben/23/head -> origin/gh/coconutruben/23/head 2025-08-14T21:43:04.5750995Z * [new branch] gh/coconutruben/23/orig -> origin/gh/coconutruben/23/orig 2025-08-14T21:43:04.5751571Z * [new branch] gh/coconutruben/24/base -> origin/gh/coconutruben/24/base 2025-08-14T21:43:04.5752212Z * [new branch] gh/coconutruben/24/head -> origin/gh/coconutruben/24/head 2025-08-14T21:43:04.5752773Z * [new branch] gh/coconutruben/24/orig -> origin/gh/coconutruben/24/orig 2025-08-14T21:43:04.5753461Z * [new branch] gh/coconutruben/25/base -> origin/gh/coconutruben/25/base 2025-08-14T21:43:04.5754040Z * [new branch] gh/coconutruben/25/head -> origin/gh/coconutruben/25/head 2025-08-14T21:43:04.5754624Z * [new branch] gh/coconutruben/25/orig -> origin/gh/coconutruben/25/orig 2025-08-14T21:43:04.5755197Z * [new branch] gh/coconutruben/26/base -> origin/gh/coconutruben/26/base 2025-08-14T21:43:04.5755784Z * [new branch] gh/coconutruben/26/head -> origin/gh/coconutruben/26/head 2025-08-14T21:43:04.5756371Z * [new branch] gh/coconutruben/26/orig -> origin/gh/coconutruben/26/orig 2025-08-14T21:43:04.6168582Z * [new branch] gh/coconutruben/27/base -> origin/gh/coconutruben/27/base 2025-08-14T21:43:04.6169261Z * [new branch] gh/coconutruben/27/head -> origin/gh/coconutruben/27/head 2025-08-14T21:43:04.6169972Z * [new branch] gh/coconutruben/27/orig -> origin/gh/coconutruben/27/orig 2025-08-14T21:43:04.6170563Z * [new branch] gh/codingwithsurya/10/base -> origin/gh/codingwithsurya/10/base 2025-08-14T21:43:04.6171221Z * [new branch] gh/codingwithsurya/10/head -> origin/gh/codingwithsurya/10/head 2025-08-14T21:43:04.6171814Z * [new branch] gh/codingwithsurya/10/orig -> origin/gh/codingwithsurya/10/orig 2025-08-14T21:43:04.6172769Z * [new branch] gh/codingwithsurya/11/base -> origin/gh/codingwithsurya/11/base 2025-08-14T21:43:04.6173400Z * [new branch] gh/codingwithsurya/11/head -> origin/gh/codingwithsurya/11/head 2025-08-14T21:43:04.6173994Z * [new branch] gh/codingwithsurya/11/orig -> origin/gh/codingwithsurya/11/orig 2025-08-14T21:43:04.6174617Z * [new branch] gh/codingwithsurya/12/base -> origin/gh/codingwithsurya/12/base 2025-08-14T21:43:04.6188457Z * [new branch] gh/codingwithsurya/12/head -> origin/gh/codingwithsurya/12/head 2025-08-14T21:43:04.6189079Z * [new branch] gh/codingwithsurya/12/orig -> origin/gh/codingwithsurya/12/orig 2025-08-14T21:43:04.6189726Z * [new branch] gh/codingwithsurya/13/base -> origin/gh/codingwithsurya/13/base 2025-08-14T21:43:04.6190360Z * [new branch] gh/codingwithsurya/13/head -> origin/gh/codingwithsurya/13/head 2025-08-14T21:43:04.6190947Z * [new branch] gh/codingwithsurya/13/orig -> origin/gh/codingwithsurya/13/orig 2025-08-14T21:43:04.6191527Z * [new branch] gh/codingwithsurya/14/base -> origin/gh/codingwithsurya/14/base 2025-08-14T21:43:04.6192086Z * [new branch] gh/codingwithsurya/14/head -> origin/gh/codingwithsurya/14/head 2025-08-14T21:43:04.6192658Z * [new branch] gh/codingwithsurya/14/orig -> origin/gh/codingwithsurya/14/orig 2025-08-14T21:43:04.6193230Z * [new branch] gh/codingwithsurya/15/base -> origin/gh/codingwithsurya/15/base 2025-08-14T21:43:04.6193790Z * [new branch] gh/codingwithsurya/15/head -> origin/gh/codingwithsurya/15/head 2025-08-14T21:43:04.6194361Z * [new branch] gh/codingwithsurya/15/orig -> origin/gh/codingwithsurya/15/orig 2025-08-14T21:43:04.6194920Z * [new branch] gh/codingwithsurya/16/base -> origin/gh/codingwithsurya/16/base 2025-08-14T21:43:04.6195539Z * [new branch] gh/codingwithsurya/16/head -> origin/gh/codingwithsurya/16/head 2025-08-14T21:43:04.6196168Z * [new branch] gh/codingwithsurya/16/orig -> origin/gh/codingwithsurya/16/orig 2025-08-14T21:43:04.6196727Z * [new branch] gh/codingwithsurya/17/base -> origin/gh/codingwithsurya/17/base 2025-08-14T21:43:04.6197360Z * [new branch] gh/codingwithsurya/17/head -> origin/gh/codingwithsurya/17/head 2025-08-14T21:43:04.6197921Z * [new branch] gh/codingwithsurya/17/orig -> origin/gh/codingwithsurya/17/orig 2025-08-14T21:43:04.6198669Z * [new branch] gh/codingwithsurya/18/base -> origin/gh/codingwithsurya/18/base 2025-08-14T21:43:04.6199254Z * [new branch] gh/codingwithsurya/18/head -> origin/gh/codingwithsurya/18/head 2025-08-14T21:43:04.6199821Z * [new branch] gh/codingwithsurya/18/orig -> origin/gh/codingwithsurya/18/orig 2025-08-14T21:43:04.6200396Z * [new branch] gh/codingwithsurya/19/base -> origin/gh/codingwithsurya/19/base 2025-08-14T21:43:04.6201024Z * [new branch] gh/codingwithsurya/19/head -> origin/gh/codingwithsurya/19/head 2025-08-14T21:43:04.6201658Z * [new branch] gh/codingwithsurya/19/orig -> origin/gh/codingwithsurya/19/orig 2025-08-14T21:43:04.6202225Z * [new branch] gh/codingwithsurya/20/base -> origin/gh/codingwithsurya/20/base 2025-08-14T21:43:04.6202784Z * [new branch] gh/codingwithsurya/20/head -> origin/gh/codingwithsurya/20/head 2025-08-14T21:43:04.6203383Z * [new branch] gh/codingwithsurya/20/orig -> origin/gh/codingwithsurya/20/orig 2025-08-14T21:43:04.6203950Z * [new branch] gh/codingwithsurya/21/base -> origin/gh/codingwithsurya/21/base 2025-08-14T21:43:04.6204531Z * [new branch] gh/codingwithsurya/21/head -> origin/gh/codingwithsurya/21/head 2025-08-14T21:43:04.6205107Z * [new branch] gh/codingwithsurya/21/orig -> origin/gh/codingwithsurya/21/orig 2025-08-14T21:43:04.6205795Z * [new branch] gh/codingwithsurya/8/base -> origin/gh/codingwithsurya/8/base 2025-08-14T21:43:04.6206375Z * [new branch] gh/codingwithsurya/8/head -> origin/gh/codingwithsurya/8/head 2025-08-14T21:43:04.6207020Z * [new branch] gh/codingwithsurya/8/orig -> origin/gh/codingwithsurya/8/orig 2025-08-14T21:43:04.6207635Z * [new branch] gh/codingwithsurya/9/base -> origin/gh/codingwithsurya/9/base 2025-08-14T21:43:04.6208292Z * [new branch] gh/codingwithsurya/9/head -> origin/gh/codingwithsurya/9/head 2025-08-14T21:43:04.6623563Z * [new branch] gh/codingwithsurya/9/orig -> origin/gh/codingwithsurya/9/orig 2025-08-14T21:43:04.6624167Z * [new branch] gh/colinchan15/1/base -> origin/gh/colinchan15/1/base 2025-08-14T21:43:04.6624686Z * [new branch] gh/colinchan15/1/head -> origin/gh/colinchan15/1/head 2025-08-14T21:43:04.6625222Z * [new branch] gh/colinchan15/2/base -> origin/gh/colinchan15/2/base 2025-08-14T21:43:04.6625746Z * [new branch] gh/colinchan15/2/head -> origin/gh/colinchan15/2/head 2025-08-14T21:43:04.6626251Z * [new branch] gh/colinchan15/3/base -> origin/gh/colinchan15/3/base 2025-08-14T21:43:04.6626866Z * [new branch] gh/colinchan15/3/head -> origin/gh/colinchan15/3/head 2025-08-14T21:43:04.6627370Z * [new branch] gh/colinchan15/4/base -> origin/gh/colinchan15/4/base 2025-08-14T21:43:04.6627890Z * [new branch] gh/colinchan15/4/head -> origin/gh/colinchan15/4/head 2025-08-14T21:43:04.6628401Z * [new branch] gh/colinchan15/5/base -> origin/gh/colinchan15/5/base 2025-08-14T21:43:04.6628897Z * [new branch] gh/colinchan15/5/head -> origin/gh/colinchan15/5/head 2025-08-14T21:43:04.6629410Z * [new branch] gh/colinchan15/6/base -> origin/gh/colinchan15/6/base 2025-08-14T21:43:04.6629915Z * [new branch] gh/colinchan15/6/head -> origin/gh/colinchan15/6/head 2025-08-14T21:43:04.6630448Z * [new branch] gh/davidberard98/351/base -> origin/gh/davidberard98/351/base 2025-08-14T21:43:04.6630999Z * [new branch] gh/davidberard98/351/head -> origin/gh/davidberard98/351/head 2025-08-14T21:43:04.6631538Z * [new branch] gh/davidberard98/351/orig -> origin/gh/davidberard98/351/orig 2025-08-14T21:43:04.6632123Z * [new branch] gh/davidberard98/353/base -> origin/gh/davidberard98/353/base 2025-08-14T21:43:04.6632875Z * [new branch] gh/davidberard98/353/head -> origin/gh/davidberard98/353/head 2025-08-14T21:43:04.6633448Z * [new branch] gh/davidberard98/353/orig -> origin/gh/davidberard98/353/orig 2025-08-14T21:43:04.6633995Z * [new branch] gh/davidberard98/356/base -> origin/gh/davidberard98/356/base 2025-08-14T21:43:04.6634540Z * [new branch] gh/davidberard98/356/head -> origin/gh/davidberard98/356/head 2025-08-14T21:43:04.6635105Z * [new branch] gh/davidberard98/356/orig -> origin/gh/davidberard98/356/orig 2025-08-14T21:43:04.6635651Z * [new branch] gh/davidberard98/382/base -> origin/gh/davidberard98/382/base 2025-08-14T21:43:04.6636207Z * [new branch] gh/davidberard98/382/head -> origin/gh/davidberard98/382/head 2025-08-14T21:43:04.6636755Z * [new branch] gh/davidberard98/382/orig -> origin/gh/davidberard98/382/orig 2025-08-14T21:43:04.6637344Z * [new branch] gh/davidberard98/386/base -> origin/gh/davidberard98/386/base 2025-08-14T21:43:04.6637939Z * [new branch] gh/davidberard98/386/head -> origin/gh/davidberard98/386/head 2025-08-14T21:43:04.6638518Z * [new branch] gh/davidberard98/386/orig -> origin/gh/davidberard98/386/orig 2025-08-14T21:43:04.6639067Z * [new branch] gh/davidberard98/389/base -> origin/gh/davidberard98/389/base 2025-08-14T21:43:04.6639727Z * [new branch] gh/davidberard98/389/head -> origin/gh/davidberard98/389/head 2025-08-14T21:43:04.6640276Z * [new branch] gh/davidberard98/389/orig -> origin/gh/davidberard98/389/orig 2025-08-14T21:43:04.6640830Z * [new branch] gh/davidberard98/390/base -> origin/gh/davidberard98/390/base 2025-08-14T21:43:04.6641371Z * [new branch] gh/davidberard98/390/head -> origin/gh/davidberard98/390/head 2025-08-14T21:43:04.6641933Z * [new branch] gh/davidberard98/390/orig -> origin/gh/davidberard98/390/orig 2025-08-14T21:43:04.6642479Z * [new branch] gh/davidberard98/391/base -> origin/gh/davidberard98/391/base 2025-08-14T21:43:04.6643039Z * [new branch] gh/davidberard98/391/head -> origin/gh/davidberard98/391/head 2025-08-14T21:43:04.6643636Z * [new branch] gh/davidberard98/391/orig -> origin/gh/davidberard98/391/orig 2025-08-14T21:43:04.6644226Z * [new branch] gh/davidberard98/392/base -> origin/gh/davidberard98/392/base 2025-08-14T21:43:04.6644777Z * [new branch] gh/davidberard98/392/head -> origin/gh/davidberard98/392/head 2025-08-14T21:43:04.6645332Z * [new branch] gh/davidberard98/392/orig -> origin/gh/davidberard98/392/orig 2025-08-14T21:43:04.6645880Z * [new branch] gh/davidberard98/393/base -> origin/gh/davidberard98/393/base 2025-08-14T21:43:04.6646424Z * [new branch] gh/davidberard98/393/head -> origin/gh/davidberard98/393/head 2025-08-14T21:43:04.6646977Z * [new branch] gh/davidberard98/393/orig -> origin/gh/davidberard98/393/orig 2025-08-14T21:43:04.6647522Z * [new branch] gh/davidberard98/394/base -> origin/gh/davidberard98/394/base 2025-08-14T21:43:04.6648068Z * [new branch] gh/davidberard98/394/head -> origin/gh/davidberard98/394/head 2025-08-14T21:43:04.7072747Z * [new branch] gh/davidberard98/394/orig -> origin/gh/davidberard98/394/orig 2025-08-14T21:43:04.7073387Z * [new branch] gh/davidberard98/395/base -> origin/gh/davidberard98/395/base 2025-08-14T21:43:04.7073948Z * [new branch] gh/davidberard98/395/head -> origin/gh/davidberard98/395/head 2025-08-14T21:43:04.7074491Z * [new branch] gh/davidberard98/395/orig -> origin/gh/davidberard98/395/orig 2025-08-14T21:43:04.7075034Z * [new branch] gh/davidberard98/396/base -> origin/gh/davidberard98/396/base 2025-08-14T21:43:04.7075761Z * [new branch] gh/davidberard98/396/head -> origin/gh/davidberard98/396/head 2025-08-14T21:43:04.7076314Z * [new branch] gh/davidberard98/396/orig -> origin/gh/davidberard98/396/orig 2025-08-14T21:43:04.7076871Z * [new branch] gh/davidberard98/397/base -> origin/gh/davidberard98/397/base 2025-08-14T21:43:04.7077459Z * [new branch] gh/davidberard98/397/head -> origin/gh/davidberard98/397/head 2025-08-14T21:43:04.7078014Z * [new branch] gh/davidberard98/397/orig -> origin/gh/davidberard98/397/orig 2025-08-14T21:43:04.7078550Z * [new branch] gh/davidberard98/398/base -> origin/gh/davidberard98/398/base 2025-08-14T21:43:04.7079095Z * [new branch] gh/davidberard98/398/head -> origin/gh/davidberard98/398/head 2025-08-14T21:43:04.7079663Z * [new branch] gh/davidberard98/398/orig -> origin/gh/davidberard98/398/orig 2025-08-14T21:43:04.7080200Z * [new branch] gh/desertfire/570/base -> origin/gh/desertfire/570/base 2025-08-14T21:43:04.7080723Z * [new branch] gh/desertfire/570/head -> origin/gh/desertfire/570/head 2025-08-14T21:43:04.7081238Z * [new branch] gh/desertfire/570/orig -> origin/gh/desertfire/570/orig 2025-08-14T21:43:04.7081766Z * [new branch] gh/desertfire/572/base -> origin/gh/desertfire/572/base 2025-08-14T21:43:04.7082285Z * [new branch] gh/desertfire/572/head -> origin/gh/desertfire/572/head 2025-08-14T21:43:04.7083751Z * [new branch] gh/desertfire/572/orig -> origin/gh/desertfire/572/orig 2025-08-14T21:43:04.7084277Z * [new branch] gh/desertfire/589/base -> origin/gh/desertfire/589/base 2025-08-14T21:43:04.7084784Z * [new branch] gh/desertfire/589/head -> origin/gh/desertfire/589/head 2025-08-14T21:43:04.7085304Z * [new branch] gh/desertfire/589/orig -> origin/gh/desertfire/589/orig 2025-08-14T21:43:04.7085830Z * [new branch] gh/desertfire/590/base -> origin/gh/desertfire/590/base 2025-08-14T21:43:04.7086336Z * [new branch] gh/desertfire/590/head -> origin/gh/desertfire/590/head 2025-08-14T21:43:04.7086854Z * [new branch] gh/desertfire/590/orig -> origin/gh/desertfire/590/orig 2025-08-14T21:43:04.7087357Z * [new branch] gh/desertfire/591/base -> origin/gh/desertfire/591/base 2025-08-14T21:43:04.7087871Z * [new branch] gh/desertfire/591/head -> origin/gh/desertfire/591/head 2025-08-14T21:43:04.7088386Z * [new branch] gh/desertfire/591/orig -> origin/gh/desertfire/591/orig 2025-08-14T21:43:04.7088890Z * [new branch] gh/desertfire/592/base -> origin/gh/desertfire/592/base 2025-08-14T21:43:04.7089410Z * [new branch] gh/desertfire/592/head -> origin/gh/desertfire/592/head 2025-08-14T21:43:04.7089924Z * [new branch] gh/desertfire/592/orig -> origin/gh/desertfire/592/orig 2025-08-14T21:43:04.7090435Z * [new branch] gh/desertfire/593/base -> origin/gh/desertfire/593/base 2025-08-14T21:43:04.7090946Z * [new branch] gh/desertfire/593/head -> origin/gh/desertfire/593/head 2025-08-14T21:43:04.7091454Z * [new branch] gh/desertfire/593/orig -> origin/gh/desertfire/593/orig 2025-08-14T21:43:04.7091972Z * [new branch] gh/desertfire/594/base -> origin/gh/desertfire/594/base 2025-08-14T21:43:04.7092483Z * [new branch] gh/desertfire/594/head -> origin/gh/desertfire/594/head 2025-08-14T21:43:04.7092996Z * [new branch] gh/desertfire/594/orig -> origin/gh/desertfire/594/orig 2025-08-14T21:43:04.7093511Z * [new branch] gh/desertfire/595/base -> origin/gh/desertfire/595/base 2025-08-14T21:43:04.7094019Z * [new branch] gh/desertfire/595/head -> origin/gh/desertfire/595/head 2025-08-14T21:43:04.7094657Z * [new branch] gh/desertfire/595/orig -> origin/gh/desertfire/595/orig 2025-08-14T21:43:04.7095166Z * [new branch] gh/desertfire/596/base -> origin/gh/desertfire/596/base 2025-08-14T21:43:04.7095686Z * [new branch] gh/desertfire/596/head -> origin/gh/desertfire/596/head 2025-08-14T21:43:04.7096193Z * [new branch] gh/desertfire/596/orig -> origin/gh/desertfire/596/orig 2025-08-14T21:43:04.7096728Z * [new branch] gh/desertfire/597/base -> origin/gh/desertfire/597/base 2025-08-14T21:43:04.7097243Z * [new branch] gh/desertfire/597/head -> origin/gh/desertfire/597/head 2025-08-14T21:43:04.7549263Z * [new branch] gh/desertfire/597/orig -> origin/gh/desertfire/597/orig 2025-08-14T21:43:04.7549835Z * [new branch] gh/dharakk/1/base -> origin/gh/dharakk/1/base 2025-08-14T21:43:04.7550348Z * [new branch] gh/dharakk/1/head -> origin/gh/dharakk/1/head 2025-08-14T21:43:04.7550852Z * [new branch] gh/dharakk/4/base -> origin/gh/dharakk/4/base 2025-08-14T21:43:04.7551324Z * [new branch] gh/dharakk/4/head -> origin/gh/dharakk/4/head 2025-08-14T21:43:04.7551789Z * [new branch] gh/dharakk/4/orig -> origin/gh/dharakk/4/orig 2025-08-14T21:43:04.7552286Z * [new branch] gh/drisspg/140/base -> origin/gh/drisspg/140/base 2025-08-14T21:43:04.7553083Z * [new branch] gh/drisspg/140/head -> origin/gh/drisspg/140/head 2025-08-14T21:43:04.7553565Z * [new branch] gh/drisspg/140/orig -> origin/gh/drisspg/140/orig 2025-08-14T21:43:04.7554048Z * [new branch] gh/drisspg/149/base -> origin/gh/drisspg/149/base 2025-08-14T21:43:04.7554526Z * [new branch] gh/drisspg/149/head -> origin/gh/drisspg/149/head 2025-08-14T21:43:04.7555011Z * [new branch] gh/drisspg/149/orig -> origin/gh/drisspg/149/orig 2025-08-14T21:43:04.7555495Z * [new branch] gh/drisspg/150/base -> origin/gh/drisspg/150/base 2025-08-14T21:43:04.7555974Z * [new branch] gh/drisspg/150/head -> origin/gh/drisspg/150/head 2025-08-14T21:43:04.7556460Z * [new branch] gh/drisspg/150/orig -> origin/gh/drisspg/150/orig 2025-08-14T21:43:04.7556937Z * [new branch] gh/drisspg/151/base -> origin/gh/drisspg/151/base 2025-08-14T21:43:04.7557513Z * [new branch] gh/drisspg/151/head -> origin/gh/drisspg/151/head 2025-08-14T21:43:04.7557989Z * [new branch] gh/drisspg/151/orig -> origin/gh/drisspg/151/orig 2025-08-14T21:43:04.7558559Z * [new branch] gh/drisspg/158/base -> origin/gh/drisspg/158/base 2025-08-14T21:43:04.7559090Z * [new branch] gh/drisspg/158/head -> origin/gh/drisspg/158/head 2025-08-14T21:43:04.7559570Z * [new branch] gh/drisspg/158/orig -> origin/gh/drisspg/158/orig 2025-08-14T21:43:04.7560056Z * [new branch] gh/drisspg/159/base -> origin/gh/drisspg/159/base 2025-08-14T21:43:04.7560538Z * [new branch] gh/drisspg/159/head -> origin/gh/drisspg/159/head 2025-08-14T21:43:04.7561023Z * [new branch] gh/drisspg/159/orig -> origin/gh/drisspg/159/orig 2025-08-14T21:43:04.7561515Z * [new branch] gh/drisspg/166/base -> origin/gh/drisspg/166/base 2025-08-14T21:43:04.7561997Z * [new branch] gh/drisspg/166/head -> origin/gh/drisspg/166/head 2025-08-14T21:43:04.7562481Z * [new branch] gh/drisspg/166/orig -> origin/gh/drisspg/166/orig 2025-08-14T21:43:04.7562957Z * [new branch] gh/drisspg/168/base -> origin/gh/drisspg/168/base 2025-08-14T21:43:04.7563440Z * [new branch] gh/drisspg/168/head -> origin/gh/drisspg/168/head 2025-08-14T21:43:04.7564851Z * [new branch] gh/drisspg/168/orig -> origin/gh/drisspg/168/orig 2025-08-14T21:43:04.7565400Z * [new branch] gh/drisspg/169/base -> origin/gh/drisspg/169/base 2025-08-14T21:43:04.7565899Z * [new branch] gh/drisspg/169/head -> origin/gh/drisspg/169/head 2025-08-14T21:43:04.7566383Z * [new branch] gh/drisspg/169/orig -> origin/gh/drisspg/169/orig 2025-08-14T21:43:04.7566876Z * [new branch] gh/drisspg/170/base -> origin/gh/drisspg/170/base 2025-08-14T21:43:04.7567365Z * [new branch] gh/drisspg/170/head -> origin/gh/drisspg/170/head 2025-08-14T21:43:04.7567850Z * [new branch] gh/drisspg/170/orig -> origin/gh/drisspg/170/orig 2025-08-14T21:43:04.7568338Z * [new branch] gh/drisspg/171/base -> origin/gh/drisspg/171/base 2025-08-14T21:43:04.7568815Z * [new branch] gh/drisspg/171/head -> origin/gh/drisspg/171/head 2025-08-14T21:43:04.7569312Z * [new branch] gh/drisspg/171/orig -> origin/gh/drisspg/171/orig 2025-08-14T21:43:04.7569844Z * [new branch] gh/drisspg/172/base -> origin/gh/drisspg/172/base 2025-08-14T21:43:04.7570383Z * [new branch] gh/drisspg/172/head -> origin/gh/drisspg/172/head 2025-08-14T21:43:04.7570868Z * [new branch] gh/drisspg/172/orig -> origin/gh/drisspg/172/orig 2025-08-14T21:43:04.7571478Z * [new branch] gh/drisspg/173/base -> origin/gh/drisspg/173/base 2025-08-14T21:43:04.7571984Z * [new branch] gh/drisspg/173/head -> origin/gh/drisspg/173/head 2025-08-14T21:43:04.7572468Z * [new branch] gh/drisspg/173/orig -> origin/gh/drisspg/173/orig 2025-08-14T21:43:04.7572957Z * [new branch] gh/drisspg/174/base -> origin/gh/drisspg/174/base 2025-08-14T21:43:04.7573450Z * [new branch] gh/drisspg/174/head -> origin/gh/drisspg/174/head 2025-08-14T21:43:04.8012290Z * [new branch] gh/drisspg/174/orig -> origin/gh/drisspg/174/orig 2025-08-14T21:43:04.8012932Z * [new branch] gh/drisspg/175/base -> origin/gh/drisspg/175/base 2025-08-14T21:43:04.8013449Z * [new branch] gh/drisspg/175/head -> origin/gh/drisspg/175/head 2025-08-14T21:43:04.8013931Z * [new branch] gh/drisspg/175/orig -> origin/gh/drisspg/175/orig 2025-08-14T21:43:04.8014446Z * [new branch] gh/drisspg/176/base -> origin/gh/drisspg/176/base 2025-08-14T21:43:04.8014924Z * [new branch] gh/drisspg/176/head -> origin/gh/drisspg/176/head 2025-08-14T21:43:04.8015412Z * [new branch] gh/drisspg/176/orig -> origin/gh/drisspg/176/orig 2025-08-14T21:43:04.8015891Z * [new branch] gh/drisspg/177/base -> origin/gh/drisspg/177/base 2025-08-14T21:43:04.8016392Z * [new branch] gh/drisspg/177/head -> origin/gh/drisspg/177/head 2025-08-14T21:43:04.8016891Z * [new branch] gh/drisspg/177/orig -> origin/gh/drisspg/177/orig 2025-08-14T21:43:04.8017369Z * [new branch] gh/drisspg/178/base -> origin/gh/drisspg/178/base 2025-08-14T21:43:04.8017845Z * [new branch] gh/drisspg/178/head -> origin/gh/drisspg/178/head 2025-08-14T21:43:04.8018388Z * [new branch] gh/drisspg/178/orig -> origin/gh/drisspg/178/orig 2025-08-14T21:43:04.8018917Z * [new branch] gh/drisspg/179/base -> origin/gh/drisspg/179/base 2025-08-14T21:43:04.8019397Z * [new branch] gh/drisspg/179/head -> origin/gh/drisspg/179/head 2025-08-14T21:43:04.8019878Z * [new branch] gh/drisspg/179/orig -> origin/gh/drisspg/179/orig 2025-08-14T21:43:04.8020353Z * [new branch] gh/drisspg/180/base -> origin/gh/drisspg/180/base 2025-08-14T21:43:04.8021020Z * [new branch] gh/drisspg/180/head -> origin/gh/drisspg/180/head 2025-08-14T21:43:04.8021504Z * [new branch] gh/drisspg/180/orig -> origin/gh/drisspg/180/orig 2025-08-14T21:43:04.8021990Z * [new branch] gh/drisspg/181/base -> origin/gh/drisspg/181/base 2025-08-14T21:43:04.8022477Z * [new branch] gh/drisspg/181/head -> origin/gh/drisspg/181/head 2025-08-14T21:43:04.8022976Z * [new branch] gh/drisspg/181/orig -> origin/gh/drisspg/181/orig 2025-08-14T21:43:04.8023471Z * [new branch] gh/drisspg/182/base -> origin/gh/drisspg/182/base 2025-08-14T21:43:04.8024002Z * [new branch] gh/drisspg/182/head -> origin/gh/drisspg/182/head 2025-08-14T21:43:04.8024527Z * [new branch] gh/drisspg/183/base -> origin/gh/drisspg/183/base 2025-08-14T21:43:04.8025010Z * [new branch] gh/drisspg/183/head -> origin/gh/drisspg/183/head 2025-08-14T21:43:04.8025495Z * [new branch] gh/drisspg/184/base -> origin/gh/drisspg/184/base 2025-08-14T21:43:04.8025979Z * [new branch] gh/drisspg/184/head -> origin/gh/drisspg/184/head 2025-08-14T21:43:04.8026453Z * [new branch] gh/drisspg/185/base -> origin/gh/drisspg/185/base 2025-08-14T21:43:04.8027035Z * [new branch] gh/drisspg/185/head -> origin/gh/drisspg/185/head 2025-08-14T21:43:04.8027959Z * [new branch] gh/dsjohns2/1/base -> origin/gh/dsjohns2/1/base 2025-08-14T21:43:04.8028492Z * [new branch] gh/dsjohns2/1/head -> origin/gh/dsjohns2/1/head 2025-08-14T21:43:04.8028992Z * [new branch] gh/eellison/784/base -> origin/gh/eellison/784/base 2025-08-14T21:43:04.8029489Z * [new branch] gh/eellison/784/head -> origin/gh/eellison/784/head 2025-08-14T21:43:04.8030088Z * [new branch] gh/eellison/784/orig -> origin/gh/eellison/784/orig 2025-08-14T21:43:04.8030578Z * [new branch] gh/eellison/785/base -> origin/gh/eellison/785/base 2025-08-14T21:43:04.8031069Z * [new branch] gh/eellison/785/head -> origin/gh/eellison/785/head 2025-08-14T21:43:04.8031559Z * [new branch] gh/eellison/785/orig -> origin/gh/eellison/785/orig 2025-08-14T21:43:04.8032042Z * [new branch] gh/eellison/789/base -> origin/gh/eellison/789/base 2025-08-14T21:43:04.8032546Z * [new branch] gh/eellison/789/head -> origin/gh/eellison/789/head 2025-08-14T21:43:04.8033034Z * [new branch] gh/eellison/789/orig -> origin/gh/eellison/789/orig 2025-08-14T21:43:04.8033538Z * [new branch] gh/eellison/800/base -> origin/gh/eellison/800/base 2025-08-14T21:43:04.8034026Z * [new branch] gh/eellison/800/head -> origin/gh/eellison/800/head 2025-08-14T21:43:04.8034520Z * [new branch] gh/eellison/800/orig -> origin/gh/eellison/800/orig 2025-08-14T21:43:04.8035009Z * [new branch] gh/eellison/801/base -> origin/gh/eellison/801/base 2025-08-14T21:43:04.8035544Z * [new branch] gh/eellison/801/head -> origin/gh/eellison/801/head 2025-08-14T21:43:04.8036089Z * [new branch] gh/eellison/801/orig -> origin/gh/eellison/801/orig 2025-08-14T21:43:04.9489431Z * [new branch] gh/eellison/802/base -> origin/gh/eellison/802/base 2025-08-14T21:43:04.9489989Z * [new branch] gh/eellison/802/head -> origin/gh/eellison/802/head 2025-08-14T21:43:04.9490488Z * [new branch] gh/eellison/802/orig -> origin/gh/eellison/802/orig 2025-08-14T21:43:04.9491000Z * [new branch] gh/eellison/805/base -> origin/gh/eellison/805/base 2025-08-14T21:43:04.9491484Z * [new branch] gh/eellison/805/head -> origin/gh/eellison/805/head 2025-08-14T21:43:04.9492179Z * [new branch] gh/eellison/805/orig -> origin/gh/eellison/805/orig 2025-08-14T21:43:04.9492673Z * [new branch] gh/eellison/808/base -> origin/gh/eellison/808/base 2025-08-14T21:43:04.9493178Z * [new branch] gh/eellison/808/head -> origin/gh/eellison/808/head 2025-08-14T21:43:04.9493673Z * [new branch] gh/eellison/808/orig -> origin/gh/eellison/808/orig 2025-08-14T21:43:04.9494169Z * [new branch] gh/eellison/809/base -> origin/gh/eellison/809/base 2025-08-14T21:43:04.9494681Z * [new branch] gh/eellison/809/head -> origin/gh/eellison/809/head 2025-08-14T21:43:04.9495160Z * [new branch] gh/eellison/809/orig -> origin/gh/eellison/809/orig 2025-08-14T21:43:04.9495647Z * [new branch] gh/eellison/810/base -> origin/gh/eellison/810/base 2025-08-14T21:43:04.9496147Z * [new branch] gh/eellison/810/head -> origin/gh/eellison/810/head 2025-08-14T21:43:04.9496631Z * [new branch] gh/eellison/810/orig -> origin/gh/eellison/810/orig 2025-08-14T21:43:04.9497122Z * [new branch] gh/eellison/811/base -> origin/gh/eellison/811/base 2025-08-14T21:43:04.9497603Z * [new branch] gh/eellison/811/head -> origin/gh/eellison/811/head 2025-08-14T21:43:04.9498089Z * [new branch] gh/eellison/811/orig -> origin/gh/eellison/811/orig 2025-08-14T21:43:04.9498708Z * [new branch] gh/eellison/812/base -> origin/gh/eellison/812/base 2025-08-14T21:43:04.9499191Z * [new branch] gh/eellison/812/head -> origin/gh/eellison/812/head 2025-08-14T21:43:04.9499688Z * [new branch] gh/eellison/812/orig -> origin/gh/eellison/812/orig 2025-08-14T21:43:04.9500176Z * [new branch] gh/eellison/813/base -> origin/gh/eellison/813/base 2025-08-14T21:43:04.9500674Z * [new branch] gh/eellison/813/head -> origin/gh/eellison/813/head 2025-08-14T21:43:04.9501165Z * [new branch] gh/eellison/813/orig -> origin/gh/eellison/813/orig 2025-08-14T21:43:04.9501643Z * [new branch] gh/etaf/132/base -> origin/gh/etaf/132/base 2025-08-14T21:43:04.9502103Z * [new branch] gh/etaf/132/head -> origin/gh/etaf/132/head 2025-08-14T21:43:04.9502554Z * [new branch] gh/etaf/132/orig -> origin/gh/etaf/132/orig 2025-08-14T21:43:04.9503014Z * [new branch] gh/etaf/138/base -> origin/gh/etaf/138/base 2025-08-14T21:43:04.9503459Z * [new branch] gh/etaf/138/head -> origin/gh/etaf/138/head 2025-08-14T21:43:04.9503909Z * [new branch] gh/etaf/138/orig -> origin/gh/etaf/138/orig 2025-08-14T21:43:04.9504361Z * [new branch] gh/etaf/140/base -> origin/gh/etaf/140/base 2025-08-14T21:43:04.9504813Z * [new branch] gh/etaf/140/head -> origin/gh/etaf/140/head 2025-08-14T21:43:04.9505264Z * [new branch] gh/etaf/140/orig -> origin/gh/etaf/140/orig 2025-08-14T21:43:04.9505713Z * [new branch] gh/etaf/143/base -> origin/gh/etaf/143/base 2025-08-14T21:43:04.9506171Z * [new branch] gh/etaf/143/head -> origin/gh/etaf/143/head 2025-08-14T21:43:04.9506626Z * [new branch] gh/etaf/143/orig -> origin/gh/etaf/143/orig 2025-08-14T21:43:04.9507083Z * [new branch] gh/etaf/147/base -> origin/gh/etaf/147/base 2025-08-14T21:43:04.9507554Z * [new branch] gh/etaf/147/head -> origin/gh/etaf/147/head 2025-08-14T21:43:04.9507999Z * [new branch] gh/etaf/148/base -> origin/gh/etaf/148/base 2025-08-14T21:43:04.9508450Z * [new branch] gh/etaf/148/head -> origin/gh/etaf/148/head 2025-08-14T21:43:04.9509014Z * [new branch] gh/etaf/148/orig -> origin/gh/etaf/148/orig 2025-08-14T21:43:04.9509467Z * [new branch] gh/etaf/149/base -> origin/gh/etaf/149/base 2025-08-14T21:43:04.9509927Z * [new branch] gh/etaf/149/head -> origin/gh/etaf/149/head 2025-08-14T21:43:04.9510383Z * [new branch] gh/etaf/149/orig -> origin/gh/etaf/149/orig 2025-08-14T21:43:04.9510849Z * [new branch] gh/etaf/150/base -> origin/gh/etaf/150/base 2025-08-14T21:43:04.9511312Z * [new branch] gh/etaf/150/head -> origin/gh/etaf/150/head 2025-08-14T21:43:04.9511763Z * [new branch] gh/etaf/150/orig -> origin/gh/etaf/150/orig 2025-08-14T21:43:04.9512221Z * [new branch] gh/etaf/151/base -> origin/gh/etaf/151/base 2025-08-14T21:43:04.9964233Z * [new branch] gh/etaf/151/head -> origin/gh/etaf/151/head 2025-08-14T21:43:04.9964732Z * [new branch] gh/etaf/151/orig -> origin/gh/etaf/151/orig 2025-08-14T21:43:04.9965193Z * [new branch] gh/etaf/152/base -> origin/gh/etaf/152/base 2025-08-14T21:43:04.9965671Z * [new branch] gh/etaf/152/head -> origin/gh/etaf/152/head 2025-08-14T21:43:04.9966122Z * [new branch] gh/etaf/152/orig -> origin/gh/etaf/152/orig 2025-08-14T21:43:04.9966756Z * [new branch] gh/etaf/153/base -> origin/gh/etaf/153/base 2025-08-14T21:43:04.9967220Z * [new branch] gh/etaf/153/head -> origin/gh/etaf/153/head 2025-08-14T21:43:04.9967671Z * [new branch] gh/etaf/153/orig -> origin/gh/etaf/153/orig 2025-08-14T21:43:04.9968119Z * [new branch] gh/etaf/154/base -> origin/gh/etaf/154/base 2025-08-14T21:43:04.9968588Z * [new branch] gh/etaf/154/head -> origin/gh/etaf/154/head 2025-08-14T21:43:04.9969043Z * [new branch] gh/etaf/154/orig -> origin/gh/etaf/154/orig 2025-08-14T21:43:04.9969496Z * [new branch] gh/etaf/155/base -> origin/gh/etaf/155/base 2025-08-14T21:43:04.9969952Z * [new branch] gh/etaf/155/head -> origin/gh/etaf/155/head 2025-08-14T21:43:04.9970398Z * [new branch] gh/etaf/155/orig -> origin/gh/etaf/155/orig 2025-08-14T21:43:04.9970878Z * [new branch] gh/ezyang/2374/base -> origin/gh/ezyang/2374/base 2025-08-14T21:43:04.9971363Z * [new branch] gh/ezyang/2374/head -> origin/gh/ezyang/2374/head 2025-08-14T21:43:04.9971846Z * [new branch] gh/ezyang/2374/orig -> origin/gh/ezyang/2374/orig 2025-08-14T21:43:04.9972318Z * [new branch] gh/ezyang/2973/base -> origin/gh/ezyang/2973/base 2025-08-14T21:43:04.9972796Z * [new branch] gh/ezyang/2973/head -> origin/gh/ezyang/2973/head 2025-08-14T21:43:04.9973289Z * [new branch] gh/ezyang/2973/orig -> origin/gh/ezyang/2973/orig 2025-08-14T21:43:04.9973759Z * [new branch] gh/ezyang/2974/base -> origin/gh/ezyang/2974/base 2025-08-14T21:43:04.9974245Z * [new branch] gh/ezyang/2974/head -> origin/gh/ezyang/2974/head 2025-08-14T21:43:04.9974720Z * [new branch] gh/ezyang/2974/orig -> origin/gh/ezyang/2974/orig 2025-08-14T21:43:04.9975205Z * [new branch] gh/ezyang/3068/base -> origin/gh/ezyang/3068/base 2025-08-14T21:43:04.9975685Z * [new branch] gh/ezyang/3068/head -> origin/gh/ezyang/3068/head 2025-08-14T21:43:04.9976157Z * [new branch] gh/ezyang/3068/orig -> origin/gh/ezyang/3068/orig 2025-08-14T21:43:04.9976641Z * [new branch] gh/ezyang/3071/base -> origin/gh/ezyang/3071/base 2025-08-14T21:43:04.9977231Z * [new branch] gh/ezyang/3071/head -> origin/gh/ezyang/3071/head 2025-08-14T21:43:04.9977715Z * [new branch] gh/ezyang/3071/orig -> origin/gh/ezyang/3071/orig 2025-08-14T21:43:04.9978194Z * [new branch] gh/ezyang/3074/base -> origin/gh/ezyang/3074/base 2025-08-14T21:43:04.9978666Z * [new branch] gh/ezyang/3074/head -> origin/gh/ezyang/3074/head 2025-08-14T21:43:04.9979147Z * [new branch] gh/ezyang/3074/orig -> origin/gh/ezyang/3074/orig 2025-08-14T21:43:04.9979627Z * [new branch] gh/ezyang/3088/base -> origin/gh/ezyang/3088/base 2025-08-14T21:43:04.9980102Z * [new branch] gh/ezyang/3088/head -> origin/gh/ezyang/3088/head 2025-08-14T21:43:04.9980589Z * [new branch] gh/ezyang/3088/orig -> origin/gh/ezyang/3088/orig 2025-08-14T21:43:04.9981061Z * [new branch] gh/ezyang/3092/base -> origin/gh/ezyang/3092/base 2025-08-14T21:43:04.9981554Z * [new branch] gh/ezyang/3092/head -> origin/gh/ezyang/3092/head 2025-08-14T21:43:04.9982029Z * [new branch] gh/ezyang/3092/orig -> origin/gh/ezyang/3092/orig 2025-08-14T21:43:04.9982504Z * [new branch] gh/ezyang/3097/base -> origin/gh/ezyang/3097/base 2025-08-14T21:43:04.9982982Z * [new branch] gh/ezyang/3097/head -> origin/gh/ezyang/3097/head 2025-08-14T21:43:04.9983571Z * [new branch] gh/ezyang/3097/orig -> origin/gh/ezyang/3097/orig 2025-08-14T21:43:04.9984182Z * [new branch] gh/ezyang/3098/base -> origin/gh/ezyang/3098/base 2025-08-14T21:43:04.9984703Z * [new branch] gh/ezyang/3098/head -> origin/gh/ezyang/3098/head 2025-08-14T21:43:04.9985239Z * [new branch] gh/ezyang/3098/orig -> origin/gh/ezyang/3098/orig 2025-08-14T21:43:04.9985755Z * [new branch] gh/ezyang/3099/base -> origin/gh/ezyang/3099/base 2025-08-14T21:43:04.9986242Z * [new branch] gh/ezyang/3099/head -> origin/gh/ezyang/3099/head 2025-08-14T21:43:04.9986720Z * [new branch] gh/ezyang/3099/orig -> origin/gh/ezyang/3099/orig 2025-08-14T21:43:05.0421981Z * [new branch] gh/ezyang/3100/base -> origin/gh/ezyang/3100/base 2025-08-14T21:43:05.0422528Z * [new branch] gh/ezyang/3100/head -> origin/gh/ezyang/3100/head 2025-08-14T21:43:05.0423049Z * [new branch] gh/ezyang/3100/orig -> origin/gh/ezyang/3100/orig 2025-08-14T21:43:05.0423526Z * [new branch] gh/ezyang/3101/base -> origin/gh/ezyang/3101/base 2025-08-14T21:43:05.0424009Z * [new branch] gh/ezyang/3101/head -> origin/gh/ezyang/3101/head 2025-08-14T21:43:05.0424493Z * [new branch] gh/ezyang/3101/orig -> origin/gh/ezyang/3101/orig 2025-08-14T21:43:05.0424967Z * [new branch] gh/ezyang/3102/base -> origin/gh/ezyang/3102/base 2025-08-14T21:43:05.0425461Z * [new branch] gh/ezyang/3102/head -> origin/gh/ezyang/3102/head 2025-08-14T21:43:05.0425929Z * [new branch] gh/ezyang/3102/orig -> origin/gh/ezyang/3102/orig 2025-08-14T21:43:05.0426413Z * [new branch] gh/ezyang/3103/base -> origin/gh/ezyang/3103/base 2025-08-14T21:43:05.0426893Z * [new branch] gh/ezyang/3103/head -> origin/gh/ezyang/3103/head 2025-08-14T21:43:05.0427369Z * [new branch] gh/ezyang/3103/orig -> origin/gh/ezyang/3103/orig 2025-08-14T21:43:05.0427853Z * [new branch] gh/ezyang/3104/base -> origin/gh/ezyang/3104/base 2025-08-14T21:43:05.0428324Z * [new branch] gh/ezyang/3104/head -> origin/gh/ezyang/3104/head 2025-08-14T21:43:05.0428823Z * [new branch] gh/ezyang/3104/orig -> origin/gh/ezyang/3104/orig 2025-08-14T21:43:05.0429301Z * [new branch] gh/ezyang/3105/base -> origin/gh/ezyang/3105/base 2025-08-14T21:43:05.0429967Z * [new branch] gh/ezyang/3105/head -> origin/gh/ezyang/3105/head 2025-08-14T21:43:05.0430461Z * [new branch] gh/ezyang/3105/orig -> origin/gh/ezyang/3105/orig 2025-08-14T21:43:05.0430947Z * [new branch] gh/ezyang/3106/base -> origin/gh/ezyang/3106/base 2025-08-14T21:43:05.0431564Z * [new branch] gh/ezyang/3106/head -> origin/gh/ezyang/3106/head 2025-08-14T21:43:05.0432059Z * [new branch] gh/ezyang/3106/orig -> origin/gh/ezyang/3106/orig 2025-08-14T21:43:05.0432536Z * [new branch] gh/ezyang/3107/base -> origin/gh/ezyang/3107/base 2025-08-14T21:43:05.0433021Z * [new branch] gh/ezyang/3107/head -> origin/gh/ezyang/3107/head 2025-08-14T21:43:05.0433508Z * [new branch] gh/ezyang/3107/orig -> origin/gh/ezyang/3107/orig 2025-08-14T21:43:05.0434003Z * [new branch] gh/ezyang/3108/base -> origin/gh/ezyang/3108/base 2025-08-14T21:43:05.0434489Z * [new branch] gh/ezyang/3108/head -> origin/gh/ezyang/3108/head 2025-08-14T21:43:05.0434963Z * [new branch] gh/ezyang/3108/orig -> origin/gh/ezyang/3108/orig 2025-08-14T21:43:05.0435447Z * [new branch] gh/ezyang/3109/base -> origin/gh/ezyang/3109/base 2025-08-14T21:43:05.0435928Z * [new branch] gh/ezyang/3109/head -> origin/gh/ezyang/3109/head 2025-08-14T21:43:05.0436544Z * [new branch] gh/ezyang/3109/orig -> origin/gh/ezyang/3109/orig 2025-08-14T21:43:05.0437040Z * [new branch] gh/ezyang/3110/base -> origin/gh/ezyang/3110/base 2025-08-14T21:43:05.0437566Z * [new branch] gh/ezyang/3110/head -> origin/gh/ezyang/3110/head 2025-08-14T21:43:05.0438063Z * [new branch] gh/ezyang/3110/orig -> origin/gh/ezyang/3110/orig 2025-08-14T21:43:05.0438546Z * [new branch] gh/ezyang/3111/base -> origin/gh/ezyang/3111/base 2025-08-14T21:43:05.0439041Z * [new branch] gh/ezyang/3111/head -> origin/gh/ezyang/3111/head 2025-08-14T21:43:05.0439518Z * [new branch] gh/ezyang/3111/orig -> origin/gh/ezyang/3111/orig 2025-08-14T21:43:05.0440000Z * [new branch] gh/ezyang/3112/base -> origin/gh/ezyang/3112/base 2025-08-14T21:43:05.0440498Z * [new branch] gh/ezyang/3112/head -> origin/gh/ezyang/3112/head 2025-08-14T21:43:05.0440972Z * [new branch] gh/ezyang/3112/orig -> origin/gh/ezyang/3112/orig 2025-08-14T21:43:05.0441467Z * [new branch] gh/ezyang/3113/base -> origin/gh/ezyang/3113/base 2025-08-14T21:43:05.0441957Z * [new branch] gh/ezyang/3113/head -> origin/gh/ezyang/3113/head 2025-08-14T21:43:05.0442426Z * [new branch] gh/ezyang/3113/orig -> origin/gh/ezyang/3113/orig 2025-08-14T21:43:05.0442919Z * [new branch] gh/ezyang/3114/base -> origin/gh/ezyang/3114/base 2025-08-14T21:43:05.0443387Z * [new branch] gh/ezyang/3114/head -> origin/gh/ezyang/3114/head 2025-08-14T21:43:05.0443867Z * [new branch] gh/ezyang/3114/orig -> origin/gh/ezyang/3114/orig 2025-08-14T21:43:05.0444345Z * [new branch] gh/ezyang/3115/base -> origin/gh/ezyang/3115/base 2025-08-14T21:43:05.0444820Z * [new branch] gh/ezyang/3115/head -> origin/gh/ezyang/3115/head 2025-08-14T21:43:05.0897077Z * [new branch] gh/ezyang/3115/orig -> origin/gh/ezyang/3115/orig 2025-08-14T21:43:05.0897615Z * [new branch] gh/ezyang/3116/base -> origin/gh/ezyang/3116/base 2025-08-14T21:43:05.0898100Z * [new branch] gh/ezyang/3116/head -> origin/gh/ezyang/3116/head 2025-08-14T21:43:05.0898612Z * [new branch] gh/ezyang/3116/orig -> origin/gh/ezyang/3116/orig 2025-08-14T21:43:05.0899328Z * [new branch] gh/ezyang/3117/base -> origin/gh/ezyang/3117/base 2025-08-14T21:43:05.0899813Z * [new branch] gh/ezyang/3117/head -> origin/gh/ezyang/3117/head 2025-08-14T21:43:05.0900306Z * [new branch] gh/ezyang/3117/orig -> origin/gh/ezyang/3117/orig 2025-08-14T21:43:05.0900786Z * [new branch] gh/ezyang/3118/base -> origin/gh/ezyang/3118/base 2025-08-14T21:43:05.0901278Z * [new branch] gh/ezyang/3118/head -> origin/gh/ezyang/3118/head 2025-08-14T21:43:05.0901752Z * [new branch] gh/ezyang/3118/orig -> origin/gh/ezyang/3118/orig 2025-08-14T21:43:05.0902226Z * [new branch] gh/ezyang/3119/base -> origin/gh/ezyang/3119/base 2025-08-14T21:43:05.0902719Z * [new branch] gh/ezyang/3119/head -> origin/gh/ezyang/3119/head 2025-08-14T21:43:05.0903190Z * [new branch] gh/ezyang/3119/orig -> origin/gh/ezyang/3119/orig 2025-08-14T21:43:05.0903669Z * [new branch] gh/ezyang/3120/base -> origin/gh/ezyang/3120/base 2025-08-14T21:43:05.0904140Z * [new branch] gh/ezyang/3120/head -> origin/gh/ezyang/3120/head 2025-08-14T21:43:05.0904619Z * [new branch] gh/ezyang/3120/orig -> origin/gh/ezyang/3120/orig 2025-08-14T21:43:05.0905087Z * [new branch] gh/ezyang/3121/base -> origin/gh/ezyang/3121/base 2025-08-14T21:43:05.0905700Z * [new branch] gh/ezyang/3121/head -> origin/gh/ezyang/3121/head 2025-08-14T21:43:05.0906181Z * [new branch] gh/ezyang/3121/orig -> origin/gh/ezyang/3121/orig 2025-08-14T21:43:05.0906664Z * [new branch] gh/ezyang/3122/base -> origin/gh/ezyang/3122/base 2025-08-14T21:43:05.0907141Z * [new branch] gh/ezyang/3122/head -> origin/gh/ezyang/3122/head 2025-08-14T21:43:05.0907621Z * [new branch] gh/ezyang/3122/orig -> origin/gh/ezyang/3122/orig 2025-08-14T21:43:05.0908106Z * [new branch] gh/ezyang/3123/base -> origin/gh/ezyang/3123/base 2025-08-14T21:43:05.0908583Z * [new branch] gh/ezyang/3123/head -> origin/gh/ezyang/3123/head 2025-08-14T21:43:05.0909063Z * [new branch] gh/ezyang/3123/orig -> origin/gh/ezyang/3123/orig 2025-08-14T21:43:05.0909547Z * [new branch] gh/ezyang/3124/base -> origin/gh/ezyang/3124/base 2025-08-14T21:43:05.0910019Z * [new branch] gh/ezyang/3124/head -> origin/gh/ezyang/3124/head 2025-08-14T21:43:05.0910500Z * [new branch] gh/ezyang/3124/orig -> origin/gh/ezyang/3124/orig 2025-08-14T21:43:05.0910981Z * [new branch] gh/ezyang/3125/base -> origin/gh/ezyang/3125/base 2025-08-14T21:43:05.0911453Z * [new branch] gh/ezyang/3125/head -> origin/gh/ezyang/3125/head 2025-08-14T21:43:05.0911944Z * [new branch] gh/ezyang/3125/orig -> origin/gh/ezyang/3125/orig 2025-08-14T21:43:05.0912418Z * [new branch] gh/ezyang/3126/base -> origin/gh/ezyang/3126/base 2025-08-14T21:43:05.0912903Z * [new branch] gh/ezyang/3126/head -> origin/gh/ezyang/3126/head 2025-08-14T21:43:05.0913382Z * [new branch] gh/ezyang/3126/orig -> origin/gh/ezyang/3126/orig 2025-08-14T21:43:05.0913857Z * [new branch] gh/ezyang/3127/base -> origin/gh/ezyang/3127/base 2025-08-14T21:43:05.0914336Z * [new branch] gh/ezyang/3127/head -> origin/gh/ezyang/3127/head 2025-08-14T21:43:05.0914803Z * [new branch] gh/ezyang/3127/orig -> origin/gh/ezyang/3127/orig 2025-08-14T21:43:05.0915286Z * [new branch] gh/ezyang/3128/base -> origin/gh/ezyang/3128/base 2025-08-14T21:43:05.0915756Z * [new branch] gh/ezyang/3128/head -> origin/gh/ezyang/3128/head 2025-08-14T21:43:05.0916334Z * [new branch] gh/ezyang/3128/orig -> origin/gh/ezyang/3128/orig 2025-08-14T21:43:05.0916827Z * [new branch] gh/ezyang/3129/base -> origin/gh/ezyang/3129/base 2025-08-14T21:43:05.0917380Z * [new branch] gh/ezyang/3129/head -> origin/gh/ezyang/3129/head 2025-08-14T21:43:05.0917872Z * [new branch] gh/ezyang/3129/orig -> origin/gh/ezyang/3129/orig 2025-08-14T21:43:05.0918352Z * [new branch] gh/ezyang/3130/base -> origin/gh/ezyang/3130/base 2025-08-14T21:43:05.0918832Z * [new branch] gh/ezyang/3130/head -> origin/gh/ezyang/3130/head 2025-08-14T21:43:05.0919316Z * [new branch] gh/ezyang/3130/orig -> origin/gh/ezyang/3130/orig 2025-08-14T21:43:05.0919798Z * [new branch] gh/ezyang/3131/base -> origin/gh/ezyang/3131/base 2025-08-14T21:43:05.1399028Z * [new branch] gh/ezyang/3131/head -> origin/gh/ezyang/3131/head 2025-08-14T21:43:05.1399556Z * [new branch] gh/ezyang/3131/orig -> origin/gh/ezyang/3131/orig 2025-08-14T21:43:05.1400057Z * [new branch] gh/ezyang/3132/base -> origin/gh/ezyang/3132/base 2025-08-14T21:43:05.1400537Z * [new branch] gh/ezyang/3132/head -> origin/gh/ezyang/3132/head 2025-08-14T21:43:05.1401114Z * [new branch] gh/ezyang/3132/orig -> origin/gh/ezyang/3132/orig 2025-08-14T21:43:05.1401799Z * [new branch] gh/ezyang/3133/base -> origin/gh/ezyang/3133/base 2025-08-14T21:43:05.1402293Z * [new branch] gh/ezyang/3133/head -> origin/gh/ezyang/3133/head 2025-08-14T21:43:05.1402764Z * [new branch] gh/ezyang/3133/orig -> origin/gh/ezyang/3133/orig 2025-08-14T21:43:05.1403252Z * [new branch] gh/ezyang/3134/base -> origin/gh/ezyang/3134/base 2025-08-14T21:43:05.1403730Z * [new branch] gh/ezyang/3134/head -> origin/gh/ezyang/3134/head 2025-08-14T21:43:05.1404205Z * [new branch] gh/ezyang/3134/orig -> origin/gh/ezyang/3134/orig 2025-08-14T21:43:05.1404681Z * [new branch] gh/ezyang/3135/base -> origin/gh/ezyang/3135/base 2025-08-14T21:43:05.1405162Z * [new branch] gh/ezyang/3135/head -> origin/gh/ezyang/3135/head 2025-08-14T21:43:05.1405648Z * [new branch] gh/ezyang/3135/orig -> origin/gh/ezyang/3135/orig 2025-08-14T21:43:05.1406117Z * [new branch] gh/ezyang/3136/base -> origin/gh/ezyang/3136/base 2025-08-14T21:43:05.1406604Z * [new branch] gh/ezyang/3136/head -> origin/gh/ezyang/3136/head 2025-08-14T21:43:05.1407074Z * [new branch] gh/ezyang/3136/orig -> origin/gh/ezyang/3136/orig 2025-08-14T21:43:05.1407558Z * [new branch] gh/fadara01/1/base -> origin/gh/fadara01/1/base 2025-08-14T21:43:05.1408044Z * [new branch] gh/fadara01/1/head -> origin/gh/fadara01/1/head 2025-08-14T21:43:05.1408523Z * [new branch] gh/fadara01/1/orig -> origin/gh/fadara01/1/orig 2025-08-14T21:43:05.1408998Z * [new branch] gh/fduwjj/168/base -> origin/gh/fduwjj/168/base 2025-08-14T21:43:05.1409462Z * [new branch] gh/fduwjj/168/head -> origin/gh/fduwjj/168/head 2025-08-14T21:43:05.1409936Z * [new branch] gh/fduwjj/168/orig -> origin/gh/fduwjj/168/orig 2025-08-14T21:43:05.1410410Z * [new branch] gh/fduwjj/169/base -> origin/gh/fduwjj/169/base 2025-08-14T21:43:05.1410875Z * [new branch] gh/fduwjj/169/head -> origin/gh/fduwjj/169/head 2025-08-14T21:43:05.1411352Z * [new branch] gh/fduwjj/169/orig -> origin/gh/fduwjj/169/orig 2025-08-14T21:43:05.1411816Z * [new branch] gh/fduwjj/170/base -> origin/gh/fduwjj/170/base 2025-08-14T21:43:05.1412411Z * [new branch] gh/fduwjj/170/head -> origin/gh/fduwjj/170/head 2025-08-14T21:43:05.1412898Z * [new branch] gh/fduwjj/170/orig -> origin/gh/fduwjj/170/orig 2025-08-14T21:43:05.1413367Z * [new branch] gh/fduwjj/171/base -> origin/gh/fduwjj/171/base 2025-08-14T21:43:05.1413846Z * [new branch] gh/fduwjj/171/head -> origin/gh/fduwjj/171/head 2025-08-14T21:43:05.1414322Z * [new branch] gh/fduwjj/171/orig -> origin/gh/fduwjj/171/orig 2025-08-14T21:43:05.1414805Z * [new branch] gh/fduwjj/172/base -> origin/gh/fduwjj/172/base 2025-08-14T21:43:05.1415273Z * [new branch] gh/fduwjj/172/head -> origin/gh/fduwjj/172/head 2025-08-14T21:43:05.1415748Z * [new branch] gh/fduwjj/172/orig -> origin/gh/fduwjj/172/orig 2025-08-14T21:43:05.1416227Z * [new branch] gh/fduwjj/173/base -> origin/gh/fduwjj/173/base 2025-08-14T21:43:05.1416695Z * [new branch] gh/fduwjj/173/head -> origin/gh/fduwjj/173/head 2025-08-14T21:43:05.1417169Z * [new branch] gh/fduwjj/173/orig -> origin/gh/fduwjj/173/orig 2025-08-14T21:43:05.1417643Z * [new branch] gh/fduwjj/174/base -> origin/gh/fduwjj/174/base 2025-08-14T21:43:05.1418119Z * [new branch] gh/fduwjj/174/head -> origin/gh/fduwjj/174/head 2025-08-14T21:43:05.1418708Z * [new branch] gh/fduwjj/174/orig -> origin/gh/fduwjj/174/orig 2025-08-14T21:43:05.1419179Z * [new branch] gh/fduwjj/175/base -> origin/gh/fduwjj/175/base 2025-08-14T21:43:05.1419660Z * [new branch] gh/fduwjj/175/head -> origin/gh/fduwjj/175/head 2025-08-14T21:43:05.1420134Z * [new branch] gh/fduwjj/175/orig -> origin/gh/fduwjj/175/orig 2025-08-14T21:43:05.1420619Z * [new branch] gh/fduwjj/176/base -> origin/gh/fduwjj/176/base 2025-08-14T21:43:05.1421091Z * [new branch] gh/fduwjj/176/head -> origin/gh/fduwjj/176/head 2025-08-14T21:43:05.1421553Z * [new branch] gh/fduwjj/176/orig -> origin/gh/fduwjj/176/orig 2025-08-14T21:43:05.1422034Z * [new branch] gh/fduwjj/177/base -> origin/gh/fduwjj/177/base 2025-08-14T21:43:05.1845006Z * [new branch] gh/fduwjj/177/head -> origin/gh/fduwjj/177/head 2025-08-14T21:43:05.1845583Z * [new branch] gh/fduwjj/177/orig -> origin/gh/fduwjj/177/orig 2025-08-14T21:43:05.1846096Z * [new branch] gh/fduwjj/178/base -> origin/gh/fduwjj/178/base 2025-08-14T21:43:05.1846570Z * [new branch] gh/fduwjj/178/head -> origin/gh/fduwjj/178/head 2025-08-14T21:43:05.1847059Z * [new branch] gh/fduwjj/178/orig -> origin/gh/fduwjj/178/orig 2025-08-14T21:43:05.1847538Z * [new branch] gh/fduwjj/179/base -> origin/gh/fduwjj/179/base 2025-08-14T21:43:05.1848017Z * [new branch] gh/fduwjj/179/head -> origin/gh/fduwjj/179/head 2025-08-14T21:43:05.1848487Z * [new branch] gh/fduwjj/179/orig -> origin/gh/fduwjj/179/orig 2025-08-14T21:43:05.1848950Z * [new branch] gh/fduwjj/180/base -> origin/gh/fduwjj/180/base 2025-08-14T21:43:05.1849425Z * [new branch] gh/fduwjj/180/head -> origin/gh/fduwjj/180/head 2025-08-14T21:43:05.1849898Z * [new branch] gh/fduwjj/180/orig -> origin/gh/fduwjj/180/orig 2025-08-14T21:43:05.1850368Z * [new branch] gh/fduwjj/181/base -> origin/gh/fduwjj/181/base 2025-08-14T21:43:05.1850838Z * [new branch] gh/fduwjj/181/head -> origin/gh/fduwjj/181/head 2025-08-14T21:43:05.1851308Z * [new branch] gh/fduwjj/181/orig -> origin/gh/fduwjj/181/orig 2025-08-14T21:43:05.1851956Z * [new branch] gh/fegin/306/base -> origin/gh/fegin/306/base 2025-08-14T21:43:05.1852423Z * [new branch] gh/fegin/306/head -> origin/gh/fegin/306/head 2025-08-14T21:43:05.1852890Z * [new branch] gh/fegin/306/orig -> origin/gh/fegin/306/orig 2025-08-14T21:43:05.1853364Z * [new branch] gh/fegin/307/base -> origin/gh/fegin/307/base 2025-08-14T21:43:05.1853834Z * [new branch] gh/fegin/307/head -> origin/gh/fegin/307/head 2025-08-14T21:43:05.1854316Z * [new branch] gh/fegin/307/orig -> origin/gh/fegin/307/orig 2025-08-14T21:43:05.1854781Z * [new branch] gh/fffrog/114/base -> origin/gh/fffrog/114/base 2025-08-14T21:43:05.1855265Z * [new branch] gh/fffrog/114/head -> origin/gh/fffrog/114/head 2025-08-14T21:43:05.1855729Z * [new branch] gh/fffrog/114/orig -> origin/gh/fffrog/114/orig 2025-08-14T21:43:05.1856216Z * [new branch] gh/fffrog/117/base -> origin/gh/fffrog/117/base 2025-08-14T21:43:05.1856691Z * [new branch] gh/fffrog/117/head -> origin/gh/fffrog/117/head 2025-08-14T21:43:05.1857158Z * [new branch] gh/fffrog/117/orig -> origin/gh/fffrog/117/orig 2025-08-14T21:43:05.1857628Z * [new branch] gh/fffrog/119/base -> origin/gh/fffrog/119/base 2025-08-14T21:43:05.1858211Z * [new branch] gh/fffrog/119/head -> origin/gh/fffrog/119/head 2025-08-14T21:43:05.1858742Z * [new branch] gh/fffrog/119/orig -> origin/gh/fffrog/119/orig 2025-08-14T21:43:05.1859272Z * [new branch] gh/fffrog/120/base -> origin/gh/fffrog/120/base 2025-08-14T21:43:05.1859743Z * [new branch] gh/fffrog/120/head -> origin/gh/fffrog/120/head 2025-08-14T21:43:05.1860222Z * [new branch] gh/fffrog/120/orig -> origin/gh/fffrog/120/orig 2025-08-14T21:43:05.1860698Z * [new branch] gh/fffrog/121/base -> origin/gh/fffrog/121/base 2025-08-14T21:43:05.1861175Z * [new branch] gh/fffrog/121/head -> origin/gh/fffrog/121/head 2025-08-14T21:43:05.1861654Z * [new branch] gh/fffrog/121/orig -> origin/gh/fffrog/121/orig 2025-08-14T21:43:05.1862125Z * [new branch] gh/fffrog/122/base -> origin/gh/fffrog/122/base 2025-08-14T21:43:05.1862600Z * [new branch] gh/fffrog/122/head -> origin/gh/fffrog/122/head 2025-08-14T21:43:05.1863067Z * [new branch] gh/fffrog/122/orig -> origin/gh/fffrog/122/orig 2025-08-14T21:43:05.1863539Z * [new branch] gh/fffrog/123/base -> origin/gh/fffrog/123/base 2025-08-14T21:43:05.1864009Z * [new branch] gh/fffrog/123/head -> origin/gh/fffrog/123/head 2025-08-14T21:43:05.1864496Z * [new branch] gh/fffrog/123/orig -> origin/gh/fffrog/123/orig 2025-08-14T21:43:05.1864968Z * [new branch] gh/fffrog/124/base -> origin/gh/fffrog/124/base 2025-08-14T21:43:05.1865432Z * [new branch] gh/fffrog/124/head -> origin/gh/fffrog/124/head 2025-08-14T21:43:05.1865902Z * [new branch] gh/fffrog/124/orig -> origin/gh/fffrog/124/orig 2025-08-14T21:43:05.1866378Z * [new branch] gh/fffrog/125/base -> origin/gh/fffrog/125/base 2025-08-14T21:43:05.1866857Z * [new branch] gh/fffrog/125/head -> origin/gh/fffrog/125/head 2025-08-14T21:43:05.1867432Z * [new branch] gh/fffrog/125/orig -> origin/gh/fffrog/125/orig 2025-08-14T21:43:05.2283487Z * [new branch] gh/fffrog/126/base -> origin/gh/fffrog/126/base 2025-08-14T21:43:05.2284065Z * [new branch] gh/fffrog/126/head -> origin/gh/fffrog/126/head 2025-08-14T21:43:05.2284861Z * [new branch] gh/fffrog/126/orig -> origin/gh/fffrog/126/orig 2025-08-14T21:43:05.2285398Z * [new branch] gh/fffrog/127/base -> origin/gh/fffrog/127/base 2025-08-14T21:43:05.2285919Z * [new branch] gh/fffrog/127/head -> origin/gh/fffrog/127/head 2025-08-14T21:43:05.2286439Z * [new branch] gh/fffrog/127/orig -> origin/gh/fffrog/127/orig 2025-08-14T21:43:05.2286949Z * [new branch] gh/fffrog/128/base -> origin/gh/fffrog/128/base 2025-08-14T21:43:05.2287492Z * [new branch] gh/fffrog/128/head -> origin/gh/fffrog/128/head 2025-08-14T21:43:05.2288011Z * [new branch] gh/fffrog/128/orig -> origin/gh/fffrog/128/orig 2025-08-14T21:43:05.2288524Z * [new branch] gh/fffrog/129/base -> origin/gh/fffrog/129/base 2025-08-14T21:43:05.2289045Z * [new branch] gh/fffrog/129/head -> origin/gh/fffrog/129/head 2025-08-14T21:43:05.2289557Z * [new branch] gh/fffrog/129/orig -> origin/gh/fffrog/129/orig 2025-08-14T21:43:05.2290077Z * [new branch] gh/fffrog/130/base -> origin/gh/fffrog/130/base 2025-08-14T21:43:05.2290630Z * [new branch] gh/fffrog/130/head -> origin/gh/fffrog/130/head 2025-08-14T21:43:05.2291141Z * [new branch] gh/fffrog/130/orig -> origin/gh/fffrog/130/orig 2025-08-14T21:43:05.2291805Z * [new branch] gh/fffrog/131/base -> origin/gh/fffrog/131/base 2025-08-14T21:43:05.2292317Z * [new branch] gh/fffrog/131/head -> origin/gh/fffrog/131/head 2025-08-14T21:43:05.2292843Z * [new branch] gh/fffrog/131/orig -> origin/gh/fffrog/131/orig 2025-08-14T21:43:05.2293367Z * [new branch] gh/fffrog/132/base -> origin/gh/fffrog/132/base 2025-08-14T21:43:05.2293875Z * [new branch] gh/fffrog/132/head -> origin/gh/fffrog/132/head 2025-08-14T21:43:05.2294354Z * [new branch] gh/fffrog/132/orig -> origin/gh/fffrog/132/orig 2025-08-14T21:43:05.2294826Z * [new branch] gh/fffrog/133/base -> origin/gh/fffrog/133/base 2025-08-14T21:43:05.2295298Z * [new branch] gh/fffrog/133/head -> origin/gh/fffrog/133/head 2025-08-14T21:43:05.2295764Z * [new branch] gh/fffrog/133/orig -> origin/gh/fffrog/133/orig 2025-08-14T21:43:05.2296244Z * [new branch] gh/fffrog/134/base -> origin/gh/fffrog/134/base 2025-08-14T21:43:05.2296719Z * [new branch] gh/fffrog/134/head -> origin/gh/fffrog/134/head 2025-08-14T21:43:05.2297185Z * [new branch] gh/fffrog/134/orig -> origin/gh/fffrog/134/orig 2025-08-14T21:43:05.2297666Z * [new branch] gh/fffrog/135/base -> origin/gh/fffrog/135/base 2025-08-14T21:43:05.2298132Z * [new branch] gh/fffrog/135/head -> origin/gh/fffrog/135/head 2025-08-14T21:43:05.2298618Z * [new branch] gh/fffrog/135/orig -> origin/gh/fffrog/135/orig 2025-08-14T21:43:05.2299139Z * [new branch] gh/fffrog/136/base -> origin/gh/fffrog/136/base 2025-08-14T21:43:05.2299669Z * [new branch] gh/fffrog/136/head -> origin/gh/fffrog/136/head 2025-08-14T21:43:05.2300192Z * [new branch] gh/fffrog/136/orig -> origin/gh/fffrog/136/orig 2025-08-14T21:43:05.2300669Z * [new branch] gh/fffrog/137/base -> origin/gh/fffrog/137/base 2025-08-14T21:43:05.2301145Z * [new branch] gh/fffrog/137/head -> origin/gh/fffrog/137/head 2025-08-14T21:43:05.2301622Z * [new branch] gh/fffrog/137/orig -> origin/gh/fffrog/137/orig 2025-08-14T21:43:05.2302089Z * [new branch] gh/fffrog/138/base -> origin/gh/fffrog/138/base 2025-08-14T21:43:05.2302559Z * [new branch] gh/fffrog/138/head -> origin/gh/fffrog/138/head 2025-08-14T21:43:05.2303139Z * [new branch] gh/fffrog/138/orig -> origin/gh/fffrog/138/orig 2025-08-14T21:43:05.2303647Z * [new branch] gh/gmagogsfm/1/base -> origin/gh/gmagogsfm/1/base 2025-08-14T21:43:05.2304160Z * [new branch] gh/gmagogsfm/1/head -> origin/gh/gmagogsfm/1/head 2025-08-14T21:43:05.2304648Z * [new branch] gh/gmagogsfm/1/orig -> origin/gh/gmagogsfm/1/orig 2025-08-14T21:43:05.2305191Z * [new branch] gh/gmagogsfm/2/base -> origin/gh/gmagogsfm/2/base 2025-08-14T21:43:05.2305723Z * [new branch] gh/gmagogsfm/2/head -> origin/gh/gmagogsfm/2/head 2025-08-14T21:43:05.2306275Z * [new branch] gh/gmagogsfm/2/orig -> origin/gh/gmagogsfm/2/orig 2025-08-14T21:43:05.2306769Z * [new branch] gh/gmagogsfm/3/base -> origin/gh/gmagogsfm/3/base 2025-08-14T21:43:05.2307254Z * [new branch] gh/gmagogsfm/3/head -> origin/gh/gmagogsfm/3/head 2025-08-14T21:43:05.2307750Z * [new branch] gh/gmagogsfm/3/orig -> origin/gh/gmagogsfm/3/orig 2025-08-14T21:43:05.2729977Z * [new branch] gh/gmagogsfm/4/base -> origin/gh/gmagogsfm/4/base 2025-08-14T21:43:05.2730499Z * [new branch] gh/gmagogsfm/4/head -> origin/gh/gmagogsfm/4/head 2025-08-14T21:43:05.2730992Z * [new branch] gh/gmagogsfm/4/orig -> origin/gh/gmagogsfm/4/orig 2025-08-14T21:43:05.2731663Z * [new branch] gh/guangyey/130/base -> origin/gh/guangyey/130/base 2025-08-14T21:43:05.2732166Z * [new branch] gh/guangyey/130/head -> origin/gh/guangyey/130/head 2025-08-14T21:43:05.2732656Z * [new branch] gh/guangyey/130/orig -> origin/gh/guangyey/130/orig 2025-08-14T21:43:05.2733250Z * [new branch] gh/guangyey/133/base -> origin/gh/guangyey/133/base 2025-08-14T21:43:05.2733755Z * [new branch] gh/guangyey/133/head -> origin/gh/guangyey/133/head 2025-08-14T21:43:05.2734240Z * [new branch] gh/guangyey/133/orig -> origin/gh/guangyey/133/orig 2025-08-14T21:43:05.2734728Z * [new branch] gh/guangyey/134/base -> origin/gh/guangyey/134/base 2025-08-14T21:43:05.2735254Z * [new branch] gh/guangyey/134/head -> origin/gh/guangyey/134/head 2025-08-14T21:43:05.2735854Z * [new branch] gh/guangyey/134/orig -> origin/gh/guangyey/134/orig 2025-08-14T21:43:05.2736337Z * [new branch] gh/guangyey/135/base -> origin/gh/guangyey/135/base 2025-08-14T21:43:05.2736835Z * [new branch] gh/guangyey/135/head -> origin/gh/guangyey/135/head 2025-08-14T21:43:05.2737343Z * [new branch] gh/guangyey/135/orig -> origin/gh/guangyey/135/orig 2025-08-14T21:43:05.2737827Z * [new branch] gh/guangyey/139/base -> origin/gh/guangyey/139/base 2025-08-14T21:43:05.2738334Z * [new branch] gh/guangyey/139/head -> origin/gh/guangyey/139/head 2025-08-14T21:43:05.2738818Z * [new branch] gh/guangyey/139/orig -> origin/gh/guangyey/139/orig 2025-08-14T21:43:05.2739316Z * [new branch] gh/guangyey/140/base -> origin/gh/guangyey/140/base 2025-08-14T21:43:05.2739810Z * [new branch] gh/guangyey/140/head -> origin/gh/guangyey/140/head 2025-08-14T21:43:05.2740295Z * [new branch] gh/guangyey/140/orig -> origin/gh/guangyey/140/orig 2025-08-14T21:43:05.2740800Z * [new branch] gh/guangyey/142/base -> origin/gh/guangyey/142/base 2025-08-14T21:43:05.2741330Z * [new branch] gh/guangyey/142/head -> origin/gh/guangyey/142/head 2025-08-14T21:43:05.2741864Z * [new branch] gh/guangyey/142/orig -> origin/gh/guangyey/142/orig 2025-08-14T21:43:05.2742483Z * [new branch] gh/guangyey/145/base -> origin/gh/guangyey/145/base 2025-08-14T21:43:05.2743030Z * [new branch] gh/guangyey/145/head -> origin/gh/guangyey/145/head 2025-08-14T21:43:05.2743529Z * [new branch] gh/guangyey/145/orig -> origin/gh/guangyey/145/orig 2025-08-14T21:43:05.2744015Z * [new branch] gh/guangyey/153/base -> origin/gh/guangyey/153/base 2025-08-14T21:43:05.2744519Z * [new branch] gh/guangyey/153/head -> origin/gh/guangyey/153/head 2025-08-14T21:43:05.2745020Z * [new branch] gh/guangyey/153/orig -> origin/gh/guangyey/153/orig 2025-08-14T21:43:05.2745511Z * [new branch] gh/guangyey/158/base -> origin/gh/guangyey/158/base 2025-08-14T21:43:05.2746007Z * [new branch] gh/guangyey/158/head -> origin/gh/guangyey/158/head 2025-08-14T21:43:05.2746493Z * [new branch] gh/guangyey/158/orig -> origin/gh/guangyey/158/orig 2025-08-14T21:43:05.2747027Z * [new branch] gh/guangyey/159/base -> origin/gh/guangyey/159/base 2025-08-14T21:43:05.2747562Z * [new branch] gh/guangyey/159/head -> origin/gh/guangyey/159/head 2025-08-14T21:43:05.2748054Z * [new branch] gh/guangyey/159/orig -> origin/gh/guangyey/159/orig 2025-08-14T21:43:05.2748543Z * [new branch] gh/guangyey/163/base -> origin/gh/guangyey/163/base 2025-08-14T21:43:05.2749136Z * [new branch] gh/guangyey/163/head -> origin/gh/guangyey/163/head 2025-08-14T21:43:05.2749638Z * [new branch] gh/guangyey/163/orig -> origin/gh/guangyey/163/orig 2025-08-14T21:43:05.2750133Z * [new branch] gh/guangyey/165/base -> origin/gh/guangyey/165/base 2025-08-14T21:43:05.2750624Z * [new branch] gh/guangyey/165/head -> origin/gh/guangyey/165/head 2025-08-14T21:43:05.2751114Z * [new branch] gh/guangyey/165/orig -> origin/gh/guangyey/165/orig 2025-08-14T21:43:05.2751608Z * [new branch] gh/guangyey/168/base -> origin/gh/guangyey/168/base 2025-08-14T21:43:05.2752100Z * [new branch] gh/guangyey/168/head -> origin/gh/guangyey/168/head 2025-08-14T21:43:05.2752581Z * [new branch] gh/guangyey/168/orig -> origin/gh/guangyey/168/orig 2025-08-14T21:43:05.2753120Z * [new branch] gh/guangyey/169/base -> origin/gh/guangyey/169/base 2025-08-14T21:43:05.2753695Z * [new branch] gh/guangyey/169/head -> origin/gh/guangyey/169/head 2025-08-14T21:43:05.3150990Z * [new branch] gh/guangyey/169/orig -> origin/gh/guangyey/169/orig 2025-08-14T21:43:05.3151555Z * [new branch] gh/guangyey/170/base -> origin/gh/guangyey/170/base 2025-08-14T21:43:05.3152095Z * [new branch] gh/guangyey/170/head -> origin/gh/guangyey/170/head 2025-08-14T21:43:05.3152605Z * [new branch] gh/guangyey/170/orig -> origin/gh/guangyey/170/orig 2025-08-14T21:43:05.3153114Z * [new branch] gh/guangyey/171/base -> origin/gh/guangyey/171/base 2025-08-14T21:43:05.3153605Z * [new branch] gh/guangyey/171/head -> origin/gh/guangyey/171/head 2025-08-14T21:43:05.3154091Z * [new branch] gh/guangyey/171/orig -> origin/gh/guangyey/171/orig 2025-08-14T21:43:05.3154583Z * [new branch] gh/guangyey/172/base -> origin/gh/guangyey/172/base 2025-08-14T21:43:05.3155094Z * [new branch] gh/guangyey/172/head -> origin/gh/guangyey/172/head 2025-08-14T21:43:05.3155589Z * [new branch] gh/guangyey/172/orig -> origin/gh/guangyey/172/orig 2025-08-14T21:43:05.3156080Z * [new branch] gh/guangyey/173/base -> origin/gh/guangyey/173/base 2025-08-14T21:43:05.3156565Z * [new branch] gh/guangyey/173/head -> origin/gh/guangyey/173/head 2025-08-14T21:43:05.3157287Z * [new branch] gh/guangyey/173/orig -> origin/gh/guangyey/173/orig 2025-08-14T21:43:05.3157824Z * [new branch] gh/guangyey/174/base -> origin/gh/guangyey/174/base 2025-08-14T21:43:05.3158333Z * [new branch] gh/guangyey/174/head -> origin/gh/guangyey/174/head 2025-08-14T21:43:05.3158830Z * [new branch] gh/guangyey/174/orig -> origin/gh/guangyey/174/orig 2025-08-14T21:43:05.3159318Z * [new branch] gh/guangyey/175/base -> origin/gh/guangyey/175/base 2025-08-14T21:43:05.3159818Z * [new branch] gh/guangyey/175/head -> origin/gh/guangyey/175/head 2025-08-14T21:43:05.3160302Z * [new branch] gh/guangyey/175/orig -> origin/gh/guangyey/175/orig 2025-08-14T21:43:05.3160792Z * [new branch] gh/guangyey/176/base -> origin/gh/guangyey/176/base 2025-08-14T21:43:05.3161272Z * [new branch] gh/guangyey/176/head -> origin/gh/guangyey/176/head 2025-08-14T21:43:05.3161765Z * [new branch] gh/guangyey/176/orig -> origin/gh/guangyey/176/orig 2025-08-14T21:43:05.3162254Z * [new branch] gh/guangyey/177/base -> origin/gh/guangyey/177/base 2025-08-14T21:43:05.3162743Z * [new branch] gh/guangyey/177/head -> origin/gh/guangyey/177/head 2025-08-14T21:43:05.3163297Z * [new branch] gh/guangyey/177/orig -> origin/gh/guangyey/177/orig 2025-08-14T21:43:05.3163951Z * [new branch] gh/guangyey/178/base -> origin/gh/guangyey/178/base 2025-08-14T21:43:05.3164449Z * [new branch] gh/guangyey/178/head -> origin/gh/guangyey/178/head 2025-08-14T21:43:05.3164945Z * [new branch] gh/guangyey/178/orig -> origin/gh/guangyey/178/orig 2025-08-14T21:43:05.3165433Z * [new branch] gh/guangyey/179/base -> origin/gh/guangyey/179/base 2025-08-14T21:43:05.3165933Z * [new branch] gh/guangyey/179/head -> origin/gh/guangyey/179/head 2025-08-14T21:43:05.3166418Z * [new branch] gh/guangyey/179/orig -> origin/gh/guangyey/179/orig 2025-08-14T21:43:05.3166913Z * [new branch] gh/guangyey/180/base -> origin/gh/guangyey/180/base 2025-08-14T21:43:05.3167405Z * [new branch] gh/guangyey/180/head -> origin/gh/guangyey/180/head 2025-08-14T21:43:05.3167894Z * [new branch] gh/guangyey/180/orig -> origin/gh/guangyey/180/orig 2025-08-14T21:43:05.3168398Z * [new branch] gh/guangyey/181/base -> origin/gh/guangyey/181/base 2025-08-14T21:43:05.3168925Z * [new branch] gh/guangyey/181/head -> origin/gh/guangyey/181/head 2025-08-14T21:43:05.3169466Z * [new branch] gh/guangyey/181/orig -> origin/gh/guangyey/181/orig 2025-08-14T21:43:05.3169960Z * [new branch] gh/guangyey/182/base -> origin/gh/guangyey/182/base 2025-08-14T21:43:05.3170451Z * [new branch] gh/guangyey/182/head -> origin/gh/guangyey/182/head 2025-08-14T21:43:05.3170946Z * [new branch] gh/guangyey/182/orig -> origin/gh/guangyey/182/orig 2025-08-14T21:43:05.3171434Z * [new branch] gh/guangyey/183/base -> origin/gh/guangyey/183/base 2025-08-14T21:43:05.3171931Z * [new branch] gh/guangyey/183/head -> origin/gh/guangyey/183/head 2025-08-14T21:43:05.3172419Z * [new branch] gh/guangyey/183/orig -> origin/gh/guangyey/183/orig 2025-08-14T21:43:05.3172929Z * [new branch] gh/guangyey/184/base -> origin/gh/guangyey/184/base 2025-08-14T21:43:05.3173432Z * [new branch] gh/guangyey/184/head -> origin/gh/guangyey/184/head 2025-08-14T21:43:05.3173913Z * [new branch] gh/guangyey/184/orig -> origin/gh/guangyey/184/orig 2025-08-14T21:43:05.3575062Z * [new branch] gh/guangyey/185/base -> origin/gh/guangyey/185/base 2025-08-14T21:43:05.3575772Z * [new branch] gh/guangyey/185/head -> origin/gh/guangyey/185/head 2025-08-14T21:43:05.3576268Z * [new branch] gh/guangyey/185/orig -> origin/gh/guangyey/185/orig 2025-08-14T21:43:05.3576818Z * [new branch] gh/guangyey/79/base -> origin/gh/guangyey/79/base 2025-08-14T21:43:05.3577375Z * [new branch] gh/guangyey/79/head -> origin/gh/guangyey/79/head 2025-08-14T21:43:05.3577873Z * [new branch] gh/guangyey/79/orig -> origin/gh/guangyey/79/orig 2025-08-14T21:43:05.3578355Z * [new branch] gh/guangyey/89/base -> origin/gh/guangyey/89/base 2025-08-14T21:43:05.3578831Z * [new branch] gh/guangyey/89/head -> origin/gh/guangyey/89/head 2025-08-14T21:43:05.3579313Z * [new branch] gh/guangyey/89/orig -> origin/gh/guangyey/89/orig 2025-08-14T21:43:05.3579847Z * [new branch] gh/guilhermeleobas/107/base -> origin/gh/guilhermeleobas/107/base 2025-08-14T21:43:05.3580429Z * [new branch] gh/guilhermeleobas/107/head -> origin/gh/guilhermeleobas/107/head 2025-08-14T21:43:05.3581004Z * [new branch] gh/guilhermeleobas/107/orig -> origin/gh/guilhermeleobas/107/orig 2025-08-14T21:43:05.3581575Z * [new branch] gh/guilhermeleobas/108/base -> origin/gh/guilhermeleobas/108/base 2025-08-14T21:43:05.3582153Z * [new branch] gh/guilhermeleobas/108/head -> origin/gh/guilhermeleobas/108/head 2025-08-14T21:43:05.3583404Z * [new branch] gh/guilhermeleobas/108/orig -> origin/gh/guilhermeleobas/108/orig 2025-08-14T21:43:05.3583985Z * [new branch] gh/guilhermeleobas/124/base -> origin/gh/guilhermeleobas/124/base 2025-08-14T21:43:05.3584565Z * [new branch] gh/guilhermeleobas/124/head -> origin/gh/guilhermeleobas/124/head 2025-08-14T21:43:05.3585128Z * [new branch] gh/guilhermeleobas/124/orig -> origin/gh/guilhermeleobas/124/orig 2025-08-14T21:43:05.3585723Z * [new branch] gh/guilhermeleobas/147/base -> origin/gh/guilhermeleobas/147/base 2025-08-14T21:43:05.3586287Z * [new branch] gh/guilhermeleobas/147/head -> origin/gh/guilhermeleobas/147/head 2025-08-14T21:43:05.3586855Z * [new branch] gh/guilhermeleobas/147/orig -> origin/gh/guilhermeleobas/147/orig 2025-08-14T21:43:05.3587423Z * [new branch] gh/guilhermeleobas/150/base -> origin/gh/guilhermeleobas/150/base 2025-08-14T21:43:05.3587987Z * [new branch] gh/guilhermeleobas/150/head -> origin/gh/guilhermeleobas/150/head 2025-08-14T21:43:05.3588560Z * [new branch] gh/guilhermeleobas/150/orig -> origin/gh/guilhermeleobas/150/orig 2025-08-14T21:43:05.3589121Z * [new branch] gh/guilhermeleobas/163/base -> origin/gh/guilhermeleobas/163/base 2025-08-14T21:43:05.3589689Z * [new branch] gh/guilhermeleobas/163/head -> origin/gh/guilhermeleobas/163/head 2025-08-14T21:43:05.3590260Z * [new branch] gh/guilhermeleobas/163/orig -> origin/gh/guilhermeleobas/163/orig 2025-08-14T21:43:05.3590835Z * [new branch] gh/guilhermeleobas/164/base -> origin/gh/guilhermeleobas/164/base 2025-08-14T21:43:05.3591400Z * [new branch] gh/guilhermeleobas/164/head -> origin/gh/guilhermeleobas/164/head 2025-08-14T21:43:05.3591964Z * [new branch] gh/guilhermeleobas/164/orig -> origin/gh/guilhermeleobas/164/orig 2025-08-14T21:43:05.3592544Z * [new branch] gh/guilhermeleobas/165/base -> origin/gh/guilhermeleobas/165/base 2025-08-14T21:43:05.3593108Z * [new branch] gh/guilhermeleobas/165/head -> origin/gh/guilhermeleobas/165/head 2025-08-14T21:43:05.3593678Z * [new branch] gh/guilhermeleobas/165/orig -> origin/gh/guilhermeleobas/165/orig 2025-08-14T21:43:05.3594261Z * [new branch] gh/guilhermeleobas/166/base -> origin/gh/guilhermeleobas/166/base 2025-08-14T21:43:05.3594930Z * [new branch] gh/guilhermeleobas/166/head -> origin/gh/guilhermeleobas/166/head 2025-08-14T21:43:05.3595510Z * [new branch] gh/guilhermeleobas/166/orig -> origin/gh/guilhermeleobas/166/orig 2025-08-14T21:43:05.3596075Z * [new branch] gh/guilhermeleobas/167/base -> origin/gh/guilhermeleobas/167/base 2025-08-14T21:43:05.3596651Z * [new branch] gh/guilhermeleobas/167/head -> origin/gh/guilhermeleobas/167/head 2025-08-14T21:43:05.3597339Z * [new branch] gh/guilhermeleobas/167/orig -> origin/gh/guilhermeleobas/167/orig 2025-08-14T21:43:05.3597909Z * [new branch] gh/guilhermeleobas/168/base -> origin/gh/guilhermeleobas/168/base 2025-08-14T21:43:05.3598489Z * [new branch] gh/guilhermeleobas/168/head -> origin/gh/guilhermeleobas/168/head 2025-08-14T21:43:05.3599053Z * [new branch] gh/guilhermeleobas/168/orig -> origin/gh/guilhermeleobas/168/orig 2025-08-14T21:43:05.3599642Z * [new branch] gh/guilhermeleobas/169/base -> origin/gh/guilhermeleobas/169/base 2025-08-14T21:43:05.3600216Z * [new branch] gh/guilhermeleobas/169/head -> origin/gh/guilhermeleobas/169/head 2025-08-14T21:43:05.3972330Z * [new branch] gh/guilhermeleobas/169/orig -> origin/gh/guilhermeleobas/169/orig 2025-08-14T21:43:05.3972930Z * [new branch] gh/guilhermeleobas/170/base -> origin/gh/guilhermeleobas/170/base 2025-08-14T21:43:05.3973664Z * [new branch] gh/guilhermeleobas/170/head -> origin/gh/guilhermeleobas/170/head 2025-08-14T21:43:05.3974264Z * [new branch] gh/guilhermeleobas/170/orig -> origin/gh/guilhermeleobas/170/orig 2025-08-14T21:43:05.3974835Z * [new branch] gh/guilhermeleobas/171/base -> origin/gh/guilhermeleobas/171/base 2025-08-14T21:43:05.3975403Z * [new branch] gh/guilhermeleobas/171/head -> origin/gh/guilhermeleobas/171/head 2025-08-14T21:43:05.3975985Z * [new branch] gh/guilhermeleobas/171/orig -> origin/gh/guilhermeleobas/171/orig 2025-08-14T21:43:05.3976558Z * [new branch] gh/guilhermeleobas/173/base -> origin/gh/guilhermeleobas/173/base 2025-08-14T21:43:05.3977121Z * [new branch] gh/guilhermeleobas/173/head -> origin/gh/guilhermeleobas/173/head 2025-08-14T21:43:05.3977699Z * [new branch] gh/guilhermeleobas/173/orig -> origin/gh/guilhermeleobas/173/orig 2025-08-14T21:43:05.3978262Z * [new branch] gh/guilhermeleobas/181/base -> origin/gh/guilhermeleobas/181/base 2025-08-14T21:43:05.3978839Z * [new branch] gh/guilhermeleobas/181/head -> origin/gh/guilhermeleobas/181/head 2025-08-14T21:43:05.3979411Z * [new branch] gh/guilhermeleobas/181/orig -> origin/gh/guilhermeleobas/181/orig 2025-08-14T21:43:05.3979978Z * [new branch] gh/guilhermeleobas/182/base -> origin/gh/guilhermeleobas/182/base 2025-08-14T21:43:05.3980555Z * [new branch] gh/guilhermeleobas/182/head -> origin/gh/guilhermeleobas/182/head 2025-08-14T21:43:05.3981120Z * [new branch] gh/guilhermeleobas/182/orig -> origin/gh/guilhermeleobas/182/orig 2025-08-14T21:43:05.3981694Z * [new branch] gh/guilhermeleobas/183/base -> origin/gh/guilhermeleobas/183/base 2025-08-14T21:43:05.3982268Z * [new branch] gh/guilhermeleobas/183/head -> origin/gh/guilhermeleobas/183/head 2025-08-14T21:43:05.3982830Z * [new branch] gh/guilhermeleobas/183/orig -> origin/gh/guilhermeleobas/183/orig 2025-08-14T21:43:05.3983404Z * [new branch] gh/guilhermeleobas/184/base -> origin/gh/guilhermeleobas/184/base 2025-08-14T21:43:05.3983973Z * [new branch] gh/guilhermeleobas/184/head -> origin/gh/guilhermeleobas/184/head 2025-08-14T21:43:05.3984557Z * [new branch] gh/guilhermeleobas/184/orig -> origin/gh/guilhermeleobas/184/orig 2025-08-14T21:43:05.3985131Z * [new branch] gh/guilhermeleobas/185/base -> origin/gh/guilhermeleobas/185/base 2025-08-14T21:43:05.3986371Z * [new branch] gh/guilhermeleobas/185/head -> origin/gh/guilhermeleobas/185/head 2025-08-14T21:43:05.3986980Z * [new branch] gh/guilhermeleobas/185/orig -> origin/gh/guilhermeleobas/185/orig 2025-08-14T21:43:05.3987549Z * [new branch] gh/guilhermeleobas/188/base -> origin/gh/guilhermeleobas/188/base 2025-08-14T21:43:05.3988130Z * [new branch] gh/guilhermeleobas/188/head -> origin/gh/guilhermeleobas/188/head 2025-08-14T21:43:05.3988711Z * [new branch] gh/guilhermeleobas/188/orig -> origin/gh/guilhermeleobas/188/orig 2025-08-14T21:43:05.3989277Z * [new branch] gh/guilhermeleobas/189/base -> origin/gh/guilhermeleobas/189/base 2025-08-14T21:43:05.3989853Z * [new branch] gh/guilhermeleobas/189/head -> origin/gh/guilhermeleobas/189/head 2025-08-14T21:43:05.3990420Z * [new branch] gh/guilhermeleobas/189/orig -> origin/gh/guilhermeleobas/189/orig 2025-08-14T21:43:05.3990997Z * [new branch] gh/guilhermeleobas/190/base -> origin/gh/guilhermeleobas/190/base 2025-08-14T21:43:05.3991559Z * [new branch] gh/guilhermeleobas/190/head -> origin/gh/guilhermeleobas/190/head 2025-08-14T21:43:05.3992142Z * [new branch] gh/guilhermeleobas/190/orig -> origin/gh/guilhermeleobas/190/orig 2025-08-14T21:43:05.3992723Z * [new branch] gh/guilhermeleobas/192/base -> origin/gh/guilhermeleobas/192/base 2025-08-14T21:43:05.3993403Z * [new branch] gh/guilhermeleobas/192/head -> origin/gh/guilhermeleobas/192/head 2025-08-14T21:43:05.3993990Z * [new branch] gh/guilhermeleobas/192/orig -> origin/gh/guilhermeleobas/192/orig 2025-08-14T21:43:05.3994555Z * [new branch] gh/guilhermeleobas/193/base -> origin/gh/guilhermeleobas/193/base 2025-08-14T21:43:05.3995131Z * [new branch] gh/guilhermeleobas/193/head -> origin/gh/guilhermeleobas/193/head 2025-08-14T21:43:05.3995727Z * [new branch] gh/guilhermeleobas/193/orig -> origin/gh/guilhermeleobas/193/orig 2025-08-14T21:43:05.3996302Z * [new branch] gh/guilhermeleobas/194/base -> origin/gh/guilhermeleobas/194/base 2025-08-14T21:43:05.3996891Z * [new branch] gh/guilhermeleobas/194/head -> origin/gh/guilhermeleobas/194/head 2025-08-14T21:43:05.3997544Z * [new branch] gh/guilhermeleobas/194/orig -> origin/gh/guilhermeleobas/194/orig 2025-08-14T21:43:05.4368443Z * [new branch] gh/guilhermeleobas/203/base -> origin/gh/guilhermeleobas/203/base 2025-08-14T21:43:05.4369044Z * [new branch] gh/guilhermeleobas/203/head -> origin/gh/guilhermeleobas/203/head 2025-08-14T21:43:05.4369635Z * [new branch] gh/guilhermeleobas/203/orig -> origin/gh/guilhermeleobas/203/orig 2025-08-14T21:43:05.4370223Z * [new branch] gh/guilhermeleobas/204/base -> origin/gh/guilhermeleobas/204/base 2025-08-14T21:43:05.4370817Z * [new branch] gh/guilhermeleobas/204/head -> origin/gh/guilhermeleobas/204/head 2025-08-14T21:43:05.4371385Z * [new branch] gh/guilhermeleobas/204/orig -> origin/gh/guilhermeleobas/204/orig 2025-08-14T21:43:05.4371957Z * [new branch] gh/guilhermeleobas/205/base -> origin/gh/guilhermeleobas/205/base 2025-08-14T21:43:05.4372540Z * [new branch] gh/guilhermeleobas/205/head -> origin/gh/guilhermeleobas/205/head 2025-08-14T21:43:05.4373115Z * [new branch] gh/guilhermeleobas/205/orig -> origin/gh/guilhermeleobas/205/orig 2025-08-14T21:43:05.4373700Z * [new branch] gh/guilhermeleobas/206/base -> origin/gh/guilhermeleobas/206/base 2025-08-14T21:43:05.4374271Z * [new branch] gh/guilhermeleobas/206/head -> origin/gh/guilhermeleobas/206/head 2025-08-14T21:43:05.4374844Z * [new branch] gh/guilhermeleobas/206/orig -> origin/gh/guilhermeleobas/206/orig 2025-08-14T21:43:05.4375409Z * [new branch] gh/guilhermeleobas/207/base -> origin/gh/guilhermeleobas/207/base 2025-08-14T21:43:05.4376132Z * [new branch] gh/guilhermeleobas/207/head -> origin/gh/guilhermeleobas/207/head 2025-08-14T21:43:05.4376708Z * [new branch] gh/guilhermeleobas/207/orig -> origin/gh/guilhermeleobas/207/orig 2025-08-14T21:43:05.4377270Z * [new branch] gh/guilhermeleobas/208/base -> origin/gh/guilhermeleobas/208/base 2025-08-14T21:43:05.4377853Z * [new branch] gh/guilhermeleobas/208/head -> origin/gh/guilhermeleobas/208/head 2025-08-14T21:43:05.4378428Z * [new branch] gh/guilhermeleobas/208/orig -> origin/gh/guilhermeleobas/208/orig 2025-08-14T21:43:05.4378999Z * [new branch] gh/guilhermeleobas/209/base -> origin/gh/guilhermeleobas/209/base 2025-08-14T21:43:05.4379570Z * [new branch] gh/guilhermeleobas/209/head -> origin/gh/guilhermeleobas/209/head 2025-08-14T21:43:05.4380139Z * [new branch] gh/guilhermeleobas/209/orig -> origin/gh/guilhermeleobas/209/orig 2025-08-14T21:43:05.4380716Z * [new branch] gh/guilhermeleobas/210/base -> origin/gh/guilhermeleobas/210/base 2025-08-14T21:43:05.4381283Z * [new branch] gh/guilhermeleobas/210/head -> origin/gh/guilhermeleobas/210/head 2025-08-14T21:43:05.4381852Z * [new branch] gh/guilhermeleobas/210/orig -> origin/gh/guilhermeleobas/210/orig 2025-08-14T21:43:05.4382428Z * [new branch] gh/guilhermeleobas/211/base -> origin/gh/guilhermeleobas/211/base 2025-08-14T21:43:05.4383109Z * [new branch] gh/guilhermeleobas/211/head -> origin/gh/guilhermeleobas/211/head 2025-08-14T21:43:05.4383688Z * [new branch] gh/guilhermeleobas/211/orig -> origin/gh/guilhermeleobas/211/orig 2025-08-14T21:43:05.4384257Z * [new branch] gh/guilhermeleobas/212/base -> origin/gh/guilhermeleobas/212/base 2025-08-14T21:43:05.4384830Z * [new branch] gh/guilhermeleobas/212/head -> origin/gh/guilhermeleobas/212/head 2025-08-14T21:43:05.4385512Z * [new branch] gh/guilhermeleobas/212/orig -> origin/gh/guilhermeleobas/212/orig 2025-08-14T21:43:05.4386081Z * [new branch] gh/guilhermeleobas/213/base -> origin/gh/guilhermeleobas/213/base 2025-08-14T21:43:05.4386664Z * [new branch] gh/guilhermeleobas/213/head -> origin/gh/guilhermeleobas/213/head 2025-08-14T21:43:05.4387238Z * [new branch] gh/guilhermeleobas/213/orig -> origin/gh/guilhermeleobas/213/orig 2025-08-14T21:43:05.4387809Z * [new branch] gh/guilhermeleobas/214/base -> origin/gh/guilhermeleobas/214/base 2025-08-14T21:43:05.4388385Z * [new branch] gh/guilhermeleobas/214/head -> origin/gh/guilhermeleobas/214/head 2025-08-14T21:43:05.4388949Z * [new branch] gh/guilhermeleobas/214/orig -> origin/gh/guilhermeleobas/214/orig 2025-08-14T21:43:05.4389525Z * [new branch] gh/guilhermeleobas/215/base -> origin/gh/guilhermeleobas/215/base 2025-08-14T21:43:05.4390095Z * [new branch] gh/guilhermeleobas/215/head -> origin/gh/guilhermeleobas/215/head 2025-08-14T21:43:05.4390665Z * [new branch] gh/guilhermeleobas/215/orig -> origin/gh/guilhermeleobas/215/orig 2025-08-14T21:43:05.4391243Z * [new branch] gh/guilhermeleobas/216/base -> origin/gh/guilhermeleobas/216/base 2025-08-14T21:43:05.4391812Z * [new branch] gh/guilhermeleobas/216/head -> origin/gh/guilhermeleobas/216/head 2025-08-14T21:43:05.4392387Z * [new branch] gh/guilhermeleobas/216/orig -> origin/gh/guilhermeleobas/216/orig 2025-08-14T21:43:05.4392952Z * [new branch] gh/guilhermeleobas/217/base -> origin/gh/guilhermeleobas/217/base 2025-08-14T21:43:05.4786337Z * [new branch] gh/guilhermeleobas/217/head -> origin/gh/guilhermeleobas/217/head 2025-08-14T21:43:05.4787008Z * [new branch] gh/guilhermeleobas/217/orig -> origin/gh/guilhermeleobas/217/orig 2025-08-14T21:43:05.4787789Z * [new branch] gh/guilhermeleobas/218/base -> origin/gh/guilhermeleobas/218/base 2025-08-14T21:43:05.4788403Z * [new branch] gh/guilhermeleobas/218/head -> origin/gh/guilhermeleobas/218/head 2025-08-14T21:43:05.4788976Z * [new branch] gh/guilhermeleobas/218/orig -> origin/gh/guilhermeleobas/218/orig 2025-08-14T21:43:05.4789561Z * [new branch] gh/guilhermeleobas/219/base -> origin/gh/guilhermeleobas/219/base 2025-08-14T21:43:05.4790136Z * [new branch] gh/guilhermeleobas/219/head -> origin/gh/guilhermeleobas/219/head 2025-08-14T21:43:05.4790714Z * [new branch] gh/guilhermeleobas/219/orig -> origin/gh/guilhermeleobas/219/orig 2025-08-14T21:43:05.4791291Z * [new branch] gh/guilhermeleobas/220/base -> origin/gh/guilhermeleobas/220/base 2025-08-14T21:43:05.4791855Z * [new branch] gh/guilhermeleobas/220/head -> origin/gh/guilhermeleobas/220/head 2025-08-14T21:43:05.4792430Z * [new branch] gh/guilhermeleobas/220/orig -> origin/gh/guilhermeleobas/220/orig 2025-08-14T21:43:05.4793005Z * [new branch] gh/guilhermeleobas/221/base -> origin/gh/guilhermeleobas/221/base 2025-08-14T21:43:05.4793570Z * [new branch] gh/guilhermeleobas/221/head -> origin/gh/guilhermeleobas/221/head 2025-08-14T21:43:05.4794146Z * [new branch] gh/guilhermeleobas/221/orig -> origin/gh/guilhermeleobas/221/orig 2025-08-14T21:43:05.4794709Z * [new branch] gh/guilhermeleobas/222/base -> origin/gh/guilhermeleobas/222/base 2025-08-14T21:43:05.4795414Z * [new branch] gh/guilhermeleobas/222/head -> origin/gh/guilhermeleobas/222/head 2025-08-14T21:43:05.4795996Z * [new branch] gh/guilhermeleobas/222/orig -> origin/gh/guilhermeleobas/222/orig 2025-08-14T21:43:05.4796582Z * [new branch] gh/guilhermeleobas/223/base -> origin/gh/guilhermeleobas/223/base 2025-08-14T21:43:05.4797230Z * [new branch] gh/guilhermeleobas/223/head -> origin/gh/guilhermeleobas/223/head 2025-08-14T21:43:05.4797804Z * [new branch] gh/guilhermeleobas/223/orig -> origin/gh/guilhermeleobas/223/orig 2025-08-14T21:43:05.4798377Z * [new branch] gh/guilhermeleobas/224/base -> origin/gh/guilhermeleobas/224/base 2025-08-14T21:43:05.4798954Z * [new branch] gh/guilhermeleobas/224/head -> origin/gh/guilhermeleobas/224/head 2025-08-14T21:43:05.4799526Z * [new branch] gh/guilhermeleobas/224/orig -> origin/gh/guilhermeleobas/224/orig 2025-08-14T21:43:05.4801644Z * [new branch] gh/guilhermeleobas/225/base -> origin/gh/guilhermeleobas/225/base 2025-08-14T21:43:05.4802220Z * [new branch] gh/guilhermeleobas/225/head -> origin/gh/guilhermeleobas/225/head 2025-08-14T21:43:05.4802811Z * [new branch] gh/guilhermeleobas/225/orig -> origin/gh/guilhermeleobas/225/orig 2025-08-14T21:43:05.4803399Z * [new branch] gh/guilhermeleobas/226/base -> origin/gh/guilhermeleobas/226/base 2025-08-14T21:43:05.4803976Z * [new branch] gh/guilhermeleobas/226/head -> origin/gh/guilhermeleobas/226/head 2025-08-14T21:43:05.4804554Z * [new branch] gh/guilhermeleobas/226/orig -> origin/gh/guilhermeleobas/226/orig 2025-08-14T21:43:05.4805124Z * [new branch] gh/guilhermeleobas/227/base -> origin/gh/guilhermeleobas/227/base 2025-08-14T21:43:05.4805696Z * [new branch] gh/guilhermeleobas/227/head -> origin/gh/guilhermeleobas/227/head 2025-08-14T21:43:05.4806275Z * [new branch] gh/guilhermeleobas/227/orig -> origin/gh/guilhermeleobas/227/orig 2025-08-14T21:43:05.4806847Z * [new branch] gh/guilhermeleobas/228/base -> origin/gh/guilhermeleobas/228/base 2025-08-14T21:43:05.4807417Z * [new branch] gh/guilhermeleobas/228/head -> origin/gh/guilhermeleobas/228/head 2025-08-14T21:43:05.4807983Z * [new branch] gh/guilhermeleobas/228/orig -> origin/gh/guilhermeleobas/228/orig 2025-08-14T21:43:05.4808685Z * [new branch] gh/guilhermeleobas/229/base -> origin/gh/guilhermeleobas/229/base 2025-08-14T21:43:05.4809274Z * [new branch] gh/guilhermeleobas/229/head -> origin/gh/guilhermeleobas/229/head 2025-08-14T21:43:05.4809846Z * [new branch] gh/guilhermeleobas/229/orig -> origin/gh/guilhermeleobas/229/orig 2025-08-14T21:43:05.4810430Z * [new branch] gh/guilhermeleobas/230/base -> origin/gh/guilhermeleobas/230/base 2025-08-14T21:43:05.4811014Z * [new branch] gh/guilhermeleobas/230/head -> origin/gh/guilhermeleobas/230/head 2025-08-14T21:43:05.4811603Z * [new branch] gh/guilhermeleobas/230/orig -> origin/gh/guilhermeleobas/230/orig 2025-08-14T21:43:05.4812183Z * [new branch] gh/guilhermeleobas/231/base -> origin/gh/guilhermeleobas/231/base 2025-08-14T21:43:05.4812749Z * [new branch] gh/guilhermeleobas/231/head -> origin/gh/guilhermeleobas/231/head 2025-08-14T21:43:05.5219722Z * [new branch] gh/guilhermeleobas/231/orig -> origin/gh/guilhermeleobas/231/orig 2025-08-14T21:43:05.5220356Z * [new branch] gh/guilhermeleobas/232/base -> origin/gh/guilhermeleobas/232/base 2025-08-14T21:43:05.5220947Z * [new branch] gh/guilhermeleobas/232/head -> origin/gh/guilhermeleobas/232/head 2025-08-14T21:43:05.5221550Z * [new branch] gh/guilhermeleobas/232/orig -> origin/gh/guilhermeleobas/232/orig 2025-08-14T21:43:05.5222368Z * [new branch] gh/guilhermeleobas/233/base -> origin/gh/guilhermeleobas/233/base 2025-08-14T21:43:05.5222988Z * [new branch] gh/guilhermeleobas/233/head -> origin/gh/guilhermeleobas/233/head 2025-08-14T21:43:05.5223560Z * [new branch] gh/guilhermeleobas/233/orig -> origin/gh/guilhermeleobas/233/orig 2025-08-14T21:43:05.5224137Z * [new branch] gh/guilhermeleobas/73/base -> origin/gh/guilhermeleobas/73/base 2025-08-14T21:43:05.5224713Z * [new branch] gh/guilhermeleobas/73/head -> origin/gh/guilhermeleobas/73/head 2025-08-14T21:43:05.5225274Z * [new branch] gh/guilhermeleobas/73/orig -> origin/gh/guilhermeleobas/73/orig 2025-08-14T21:43:05.5225829Z * [new branch] gh/henrylhtsang/103/base -> origin/gh/henrylhtsang/103/base 2025-08-14T21:43:05.5226366Z * [new branch] gh/henrylhtsang/103/head -> origin/gh/henrylhtsang/103/head 2025-08-14T21:43:05.5226904Z * [new branch] gh/henrylhtsang/103/orig -> origin/gh/henrylhtsang/103/orig 2025-08-14T21:43:05.5227446Z * [new branch] gh/henrylhtsang/108/base -> origin/gh/henrylhtsang/108/base 2025-08-14T21:43:05.5228023Z * [new branch] gh/henrylhtsang/108/head -> origin/gh/henrylhtsang/108/head 2025-08-14T21:43:05.5240970Z * [new branch] gh/henrylhtsang/108/orig -> origin/gh/henrylhtsang/108/orig 2025-08-14T21:43:05.5241544Z * [new branch] gh/henrylhtsang/118/base -> origin/gh/henrylhtsang/118/base 2025-08-14T21:43:05.5242107Z * [new branch] gh/henrylhtsang/118/head -> origin/gh/henrylhtsang/118/head 2025-08-14T21:43:05.5242651Z * [new branch] gh/henrylhtsang/118/orig -> origin/gh/henrylhtsang/118/orig 2025-08-14T21:43:05.5243184Z * [new branch] gh/henrylhtsang/123/base -> origin/gh/henrylhtsang/123/base 2025-08-14T21:43:05.5243727Z * [new branch] gh/henrylhtsang/123/head -> origin/gh/henrylhtsang/123/head 2025-08-14T21:43:05.5244277Z * [new branch] gh/henrylhtsang/123/orig -> origin/gh/henrylhtsang/123/orig 2025-08-14T21:43:05.5244813Z * [new branch] gh/henrylhtsang/124/base -> origin/gh/henrylhtsang/124/base 2025-08-14T21:43:05.5245450Z * [new branch] gh/henrylhtsang/124/head -> origin/gh/henrylhtsang/124/head 2025-08-14T21:43:05.5245989Z * [new branch] gh/henrylhtsang/124/orig -> origin/gh/henrylhtsang/124/orig 2025-08-14T21:43:05.5246722Z * [new branch] gh/henrylhtsang/125/base -> origin/gh/henrylhtsang/125/base 2025-08-14T21:43:05.5247282Z * [new branch] gh/henrylhtsang/125/head -> origin/gh/henrylhtsang/125/head 2025-08-14T21:43:05.5247820Z * [new branch] gh/henrylhtsang/125/orig -> origin/gh/henrylhtsang/125/orig 2025-08-14T21:43:05.5248376Z * [new branch] gh/henrylhtsang/126/base -> origin/gh/henrylhtsang/126/base 2025-08-14T21:43:05.5248913Z * [new branch] gh/henrylhtsang/126/head -> origin/gh/henrylhtsang/126/head 2025-08-14T21:43:05.5249473Z * [new branch] gh/henrylhtsang/126/orig -> origin/gh/henrylhtsang/126/orig 2025-08-14T21:43:05.5250005Z * [new branch] gh/henrylhtsang/127/base -> origin/gh/henrylhtsang/127/base 2025-08-14T21:43:05.5250552Z * [new branch] gh/henrylhtsang/127/head -> origin/gh/henrylhtsang/127/head 2025-08-14T21:43:05.5251194Z * [new branch] gh/henrylhtsang/127/orig -> origin/gh/henrylhtsang/127/orig 2025-08-14T21:43:05.5251735Z * [new branch] gh/henrylhtsang/128/base -> origin/gh/henrylhtsang/128/base 2025-08-14T21:43:05.5252275Z * [new branch] gh/henrylhtsang/128/head -> origin/gh/henrylhtsang/128/head 2025-08-14T21:43:05.5252804Z * [new branch] gh/henrylhtsang/128/orig -> origin/gh/henrylhtsang/128/orig 2025-08-14T21:43:05.5253343Z * [new branch] gh/henrylhtsang/129/base -> origin/gh/henrylhtsang/129/base 2025-08-14T21:43:05.5254010Z * [new branch] gh/henrylhtsang/129/head -> origin/gh/henrylhtsang/129/head 2025-08-14T21:43:05.5254538Z * [new branch] gh/henrylhtsang/129/orig -> origin/gh/henrylhtsang/129/orig 2025-08-14T21:43:05.5255085Z * [new branch] gh/henrylhtsang/130/base -> origin/gh/henrylhtsang/130/base 2025-08-14T21:43:05.5255631Z * [new branch] gh/henrylhtsang/130/head -> origin/gh/henrylhtsang/130/head 2025-08-14T21:43:05.5256180Z * [new branch] gh/henrylhtsang/131/base -> origin/gh/henrylhtsang/131/base 2025-08-14T21:43:05.5256764Z * [new branch] gh/henrylhtsang/131/head -> origin/gh/henrylhtsang/131/head 2025-08-14T21:43:05.5634472Z * [new branch] gh/henrylhtsang/131/orig -> origin/gh/henrylhtsang/131/orig 2025-08-14T21:43:05.5635035Z * [new branch] gh/henrylhtsang/132/base -> origin/gh/henrylhtsang/132/base 2025-08-14T21:43:05.5635595Z * [new branch] gh/henrylhtsang/132/head -> origin/gh/henrylhtsang/132/head 2025-08-14T21:43:05.5636133Z * [new branch] gh/henrylhtsang/132/orig -> origin/gh/henrylhtsang/132/orig 2025-08-14T21:43:05.5636682Z * [new branch] gh/henrylhtsang/133/base -> origin/gh/henrylhtsang/133/base 2025-08-14T21:43:05.5637269Z * [new branch] gh/henrylhtsang/133/head -> origin/gh/henrylhtsang/133/head 2025-08-14T21:43:05.5637817Z * [new branch] gh/henrylhtsang/133/orig -> origin/gh/henrylhtsang/133/orig 2025-08-14T21:43:05.5638365Z * [new branch] gh/henrylhtsang/134/base -> origin/gh/henrylhtsang/134/base 2025-08-14T21:43:05.5638913Z * [new branch] gh/henrylhtsang/134/head -> origin/gh/henrylhtsang/134/head 2025-08-14T21:43:05.5639468Z * [new branch] gh/henrylhtsang/134/orig -> origin/gh/henrylhtsang/134/orig 2025-08-14T21:43:05.5640004Z * [new branch] gh/henrylhtsang/135/base -> origin/gh/henrylhtsang/135/base 2025-08-14T21:43:05.5640559Z * [new branch] gh/henrylhtsang/135/head -> origin/gh/henrylhtsang/135/head 2025-08-14T21:43:05.5641097Z * [new branch] gh/henrylhtsang/135/orig -> origin/gh/henrylhtsang/135/orig 2025-08-14T21:43:05.5641650Z * [new branch] gh/henrylhtsang/136/base -> origin/gh/henrylhtsang/136/base 2025-08-14T21:43:05.5642199Z * [new branch] gh/henrylhtsang/136/head -> origin/gh/henrylhtsang/136/head 2025-08-14T21:43:05.5642882Z * [new branch] gh/henrylhtsang/136/orig -> origin/gh/henrylhtsang/136/orig 2025-08-14T21:43:05.5643432Z * [new branch] gh/henrylhtsang/137/base -> origin/gh/henrylhtsang/137/base 2025-08-14T21:43:05.5643971Z * [new branch] gh/henrylhtsang/137/head -> origin/gh/henrylhtsang/137/head 2025-08-14T21:43:05.5644525Z * [new branch] gh/henrylhtsang/137/orig -> origin/gh/henrylhtsang/137/orig 2025-08-14T21:43:05.5645091Z * [new branch] gh/henrylhtsang/138/base -> origin/gh/henrylhtsang/138/base 2025-08-14T21:43:05.5645631Z * [new branch] gh/henrylhtsang/138/head -> origin/gh/henrylhtsang/138/head 2025-08-14T21:43:05.5646182Z * [new branch] gh/henrylhtsang/138/orig -> origin/gh/henrylhtsang/138/orig 2025-08-14T21:43:05.5646717Z * [new branch] gh/henrylhtsang/139/base -> origin/gh/henrylhtsang/139/base 2025-08-14T21:43:05.5647267Z * [new branch] gh/henrylhtsang/139/head -> origin/gh/henrylhtsang/139/head 2025-08-14T21:43:05.5647816Z * [new branch] gh/henrylhtsang/139/orig -> origin/gh/henrylhtsang/139/orig 2025-08-14T21:43:05.5648351Z * [new branch] gh/henrylhtsang/140/base -> origin/gh/henrylhtsang/140/base 2025-08-14T21:43:05.5648897Z * [new branch] gh/henrylhtsang/140/head -> origin/gh/henrylhtsang/140/head 2025-08-14T21:43:05.5649546Z * [new branch] gh/henrylhtsang/140/orig -> origin/gh/henrylhtsang/140/orig 2025-08-14T21:43:05.5650099Z * [new branch] gh/henrylhtsang/141/base -> origin/gh/henrylhtsang/141/base 2025-08-14T21:43:05.5650657Z * [new branch] gh/henrylhtsang/141/head -> origin/gh/henrylhtsang/141/head 2025-08-14T21:43:05.5651194Z * [new branch] gh/henrylhtsang/141/orig -> origin/gh/henrylhtsang/141/orig 2025-08-14T21:43:05.5651736Z * [new branch] gh/henrylhtsang/142/base -> origin/gh/henrylhtsang/142/base 2025-08-14T21:43:05.5652272Z * [new branch] gh/henrylhtsang/142/head -> origin/gh/henrylhtsang/142/head 2025-08-14T21:43:05.5652812Z * [new branch] gh/henrylhtsang/142/orig -> origin/gh/henrylhtsang/142/orig 2025-08-14T21:43:05.5653353Z * [new branch] gh/henrylhtsang/143/base -> origin/gh/henrylhtsang/143/base 2025-08-14T21:43:05.5653883Z * [new branch] gh/henrylhtsang/143/head -> origin/gh/henrylhtsang/143/head 2025-08-14T21:43:05.5654436Z * [new branch] gh/henrylhtsang/143/orig -> origin/gh/henrylhtsang/143/orig 2025-08-14T21:43:05.5654973Z * [new branch] gh/henrylhtsang/144/base -> origin/gh/henrylhtsang/144/base 2025-08-14T21:43:05.5655515Z * [new branch] gh/henrylhtsang/144/head -> origin/gh/henrylhtsang/144/head 2025-08-14T21:43:05.5656057Z * [new branch] gh/henrylhtsang/144/orig -> origin/gh/henrylhtsang/144/orig 2025-08-14T21:43:05.5656590Z * [new branch] gh/henrylhtsang/145/base -> origin/gh/henrylhtsang/145/base 2025-08-14T21:43:05.5657139Z * [new branch] gh/henrylhtsang/145/head -> origin/gh/henrylhtsang/145/head 2025-08-14T21:43:05.5657673Z * [new branch] gh/henrylhtsang/145/orig -> origin/gh/henrylhtsang/145/orig 2025-08-14T21:43:05.5658216Z * [new branch] gh/henrylhtsang/146/base -> origin/gh/henrylhtsang/146/base 2025-08-14T21:43:05.5658752Z * [new branch] gh/henrylhtsang/146/head -> origin/gh/henrylhtsang/146/head 2025-08-14T21:43:05.6087240Z * [new branch] gh/henrylhtsang/146/orig -> origin/gh/henrylhtsang/146/orig 2025-08-14T21:43:05.6087816Z * [new branch] gh/huydhn/1/head -> origin/gh/huydhn/1/head 2025-08-14T21:43:05.6088302Z * [new branch] gh/huydhn/1/next -> origin/gh/huydhn/1/next 2025-08-14T21:43:05.6088759Z * [new branch] gh/huydhn/2/head -> origin/gh/huydhn/2/head 2025-08-14T21:43:05.6089402Z * [new branch] gh/huydhn/2/next -> origin/gh/huydhn/2/next 2025-08-14T21:43:05.6089923Z * [new branch] gh/huydhn/2/orig -> origin/gh/huydhn/2/orig 2025-08-14T21:43:05.6090421Z * [new branch] gh/huydhn/3/head -> origin/gh/huydhn/3/head 2025-08-14T21:43:05.6090884Z * [new branch] gh/huydhn/3/next -> origin/gh/huydhn/3/next 2025-08-14T21:43:05.6091347Z * [new branch] gh/huydhn/3/orig -> origin/gh/huydhn/3/orig 2025-08-14T21:43:05.6091829Z * [new branch] gh/huydhn/4/head -> origin/gh/huydhn/4/head 2025-08-14T21:43:05.6092279Z * [new branch] gh/huydhn/4/next -> origin/gh/huydhn/4/next 2025-08-14T21:43:05.6092742Z * [new branch] gh/huydhn/4/orig -> origin/gh/huydhn/4/orig 2025-08-14T21:43:05.6093207Z * [new branch] gh/huydhn/5/head -> origin/gh/huydhn/5/head 2025-08-14T21:43:05.6093665Z * [new branch] gh/huydhn/5/next -> origin/gh/huydhn/5/next 2025-08-14T21:43:05.6094130Z * [new branch] gh/huydhn/5/orig -> origin/gh/huydhn/5/orig 2025-08-14T21:43:05.6094581Z * [new branch] gh/huydhn/6/head -> origin/gh/huydhn/6/head 2025-08-14T21:43:05.6095048Z * [new branch] gh/huydhn/6/next -> origin/gh/huydhn/6/next 2025-08-14T21:43:05.6095670Z * [new branch] gh/huydhn/6/orig -> origin/gh/huydhn/6/orig 2025-08-14T21:43:05.6096170Z * [new branch] gh/int3/97/base -> origin/gh/int3/97/base 2025-08-14T21:43:05.6096635Z * [new branch] gh/int3/97/head -> origin/gh/int3/97/head 2025-08-14T21:43:05.6097104Z * [new branch] gh/isuruf/101/base -> origin/gh/isuruf/101/base 2025-08-14T21:43:05.6097608Z * [new branch] gh/isuruf/101/head -> origin/gh/isuruf/101/head 2025-08-14T21:43:05.6098093Z * [new branch] gh/isuruf/116/base -> origin/gh/isuruf/116/base 2025-08-14T21:43:05.6098561Z * [new branch] gh/isuruf/116/head -> origin/gh/isuruf/116/head 2025-08-14T21:43:05.6099037Z * [new branch] gh/isuruf/116/orig -> origin/gh/isuruf/116/orig 2025-08-14T21:43:05.6099506Z * [new branch] gh/isuruf/141/base -> origin/gh/isuruf/141/base 2025-08-14T21:43:05.6099983Z * [new branch] gh/isuruf/141/head -> origin/gh/isuruf/141/head 2025-08-14T21:43:05.6100449Z * [new branch] gh/isuruf/141/orig -> origin/gh/isuruf/141/orig 2025-08-14T21:43:05.6100927Z * [new branch] gh/isuruf/142/base -> origin/gh/isuruf/142/base 2025-08-14T21:43:05.6101440Z * [new branch] gh/isuruf/142/head -> origin/gh/isuruf/142/head 2025-08-14T21:43:05.6101952Z * [new branch] gh/isuruf/142/orig -> origin/gh/isuruf/142/orig 2025-08-14T21:43:05.6102435Z * [new branch] gh/isuruf/81/base -> origin/gh/isuruf/81/base 2025-08-14T21:43:05.6102901Z * [new branch] gh/isuruf/81/head -> origin/gh/isuruf/81/head 2025-08-14T21:43:05.6103371Z * [new branch] gh/isuruf/81/orig -> origin/gh/isuruf/81/orig 2025-08-14T21:43:05.6103857Z * [new branch] gh/jamesjwu/140/base -> origin/gh/jamesjwu/140/base 2025-08-14T21:43:05.6104351Z * [new branch] gh/jamesjwu/140/head -> origin/gh/jamesjwu/140/head 2025-08-14T21:43:05.6104848Z * [new branch] gh/jamesjwu/140/orig -> origin/gh/jamesjwu/140/orig 2025-08-14T21:43:05.6105335Z * [new branch] gh/jamesjwu/150/base -> origin/gh/jamesjwu/150/base 2025-08-14T21:43:05.6105827Z * [new branch] gh/jamesjwu/150/head -> origin/gh/jamesjwu/150/head 2025-08-14T21:43:05.6106428Z * [new branch] gh/jamesjwu/150/orig -> origin/gh/jamesjwu/150/orig 2025-08-14T21:43:05.6106964Z * [new branch] gh/jamesjwu/154/base -> origin/gh/jamesjwu/154/base 2025-08-14T21:43:05.6107501Z * [new branch] gh/jamesjwu/154/head -> origin/gh/jamesjwu/154/head 2025-08-14T21:43:05.6107994Z * [new branch] gh/jamesjwu/154/orig -> origin/gh/jamesjwu/154/orig 2025-08-14T21:43:05.6108487Z * [new branch] gh/jamesjwu/155/base -> origin/gh/jamesjwu/155/base 2025-08-14T21:43:05.6108974Z * [new branch] gh/jamesjwu/155/head -> origin/gh/jamesjwu/155/head 2025-08-14T21:43:05.6109472Z * [new branch] gh/jamesjwu/155/orig -> origin/gh/jamesjwu/155/orig 2025-08-14T21:43:05.6109964Z * [new branch] gh/jamesjwu/159/base -> origin/gh/jamesjwu/159/base 2025-08-14T21:43:05.6110446Z * [new branch] gh/jamesjwu/159/head -> origin/gh/jamesjwu/159/head 2025-08-14T21:43:05.7054117Z * [new branch] gh/jamesjwu/159/orig -> origin/gh/jamesjwu/159/orig 2025-08-14T21:43:05.7054720Z * [new branch] gh/jamesjwu/163/base -> origin/gh/jamesjwu/163/base 2025-08-14T21:43:05.7055272Z * [new branch] gh/jamesjwu/163/head -> origin/gh/jamesjwu/163/head 2025-08-14T21:43:05.7055770Z * [new branch] gh/jamesjwu/163/orig -> origin/gh/jamesjwu/163/orig 2025-08-14T21:43:05.7056464Z * [new branch] gh/jamesjwu/171/base -> origin/gh/jamesjwu/171/base 2025-08-14T21:43:05.7056963Z * [new branch] gh/jamesjwu/171/head -> origin/gh/jamesjwu/171/head 2025-08-14T21:43:05.7057448Z * [new branch] gh/jamesjwu/171/orig -> origin/gh/jamesjwu/171/orig 2025-08-14T21:43:05.7057951Z * [new branch] gh/jamesjwu/174/base -> origin/gh/jamesjwu/174/base 2025-08-14T21:43:05.7058457Z * [new branch] gh/jamesjwu/174/head -> origin/gh/jamesjwu/174/head 2025-08-14T21:43:05.7058953Z * [new branch] gh/jamesjwu/174/orig -> origin/gh/jamesjwu/174/orig 2025-08-14T21:43:05.7059445Z * [new branch] gh/jamesjwu/175/base -> origin/gh/jamesjwu/175/base 2025-08-14T21:43:05.7059928Z * [new branch] gh/jamesjwu/175/head -> origin/gh/jamesjwu/175/head 2025-08-14T21:43:05.7060471Z * [new branch] gh/jamesjwu/175/orig -> origin/gh/jamesjwu/175/orig 2025-08-14T21:43:05.7061017Z * [new branch] gh/jamesjwu/176/base -> origin/gh/jamesjwu/176/base 2025-08-14T21:43:05.7061511Z * [new branch] gh/jamesjwu/176/head -> origin/gh/jamesjwu/176/head 2025-08-14T21:43:05.7062008Z * [new branch] gh/jamesjwu/176/orig -> origin/gh/jamesjwu/176/orig 2025-08-14T21:43:05.7062495Z * [new branch] gh/jamesjwu/177/base -> origin/gh/jamesjwu/177/base 2025-08-14T21:43:05.7062990Z * [new branch] gh/jamesjwu/177/head -> origin/gh/jamesjwu/177/head 2025-08-14T21:43:05.7063478Z * [new branch] gh/jamesjwu/177/orig -> origin/gh/jamesjwu/177/orig 2025-08-14T21:43:05.7063968Z * [new branch] gh/jamesjwu/178/base -> origin/gh/jamesjwu/178/base 2025-08-14T21:43:05.7064466Z * [new branch] gh/jamesjwu/178/head -> origin/gh/jamesjwu/178/head 2025-08-14T21:43:05.7064948Z * [new branch] gh/jamesjwu/178/orig -> origin/gh/jamesjwu/178/orig 2025-08-14T21:43:05.7065447Z * [new branch] gh/jamesjwu/179/base -> origin/gh/jamesjwu/179/base 2025-08-14T21:43:05.7065939Z * [new branch] gh/jamesjwu/179/head -> origin/gh/jamesjwu/179/head 2025-08-14T21:43:05.7066482Z * [new branch] gh/jamesjwu/179/orig -> origin/gh/jamesjwu/179/orig 2025-08-14T21:43:05.7067035Z * [new branch] gh/jamesjwu/180/base -> origin/gh/jamesjwu/180/base 2025-08-14T21:43:05.7067682Z * [new branch] gh/jamesjwu/180/head -> origin/gh/jamesjwu/180/head 2025-08-14T21:43:05.7068188Z * [new branch] gh/jamesjwu/180/orig -> origin/gh/jamesjwu/180/orig 2025-08-14T21:43:05.7068678Z * [new branch] gh/jamesjwu/181/base -> origin/gh/jamesjwu/181/base 2025-08-14T21:43:05.7069182Z * [new branch] gh/jamesjwu/181/head -> origin/gh/jamesjwu/181/head 2025-08-14T21:43:05.7069694Z * [new branch] gh/jamesjwu/181/orig -> origin/gh/jamesjwu/181/orig 2025-08-14T21:43:05.7070188Z * [new branch] gh/jamesjwu/182/base -> origin/gh/jamesjwu/182/base 2025-08-14T21:43:05.7070685Z * [new branch] gh/jamesjwu/182/head -> origin/gh/jamesjwu/182/head 2025-08-14T21:43:05.7071176Z * [new branch] gh/jamesjwu/182/orig -> origin/gh/jamesjwu/182/orig 2025-08-14T21:43:05.7071678Z * [new branch] gh/jamesjwu/183/base -> origin/gh/jamesjwu/183/base 2025-08-14T21:43:05.7072226Z * [new branch] gh/jamesjwu/183/head -> origin/gh/jamesjwu/183/head 2025-08-14T21:43:05.7072768Z * [new branch] gh/jamesjwu/183/orig -> origin/gh/jamesjwu/183/orig 2025-08-14T21:43:05.7073274Z * [new branch] gh/jamesjwu/184/base -> origin/gh/jamesjwu/184/base 2025-08-14T21:43:05.7073762Z * [new branch] gh/jamesjwu/184/head -> origin/gh/jamesjwu/184/head 2025-08-14T21:43:05.7074357Z * [new branch] gh/jamesjwu/184/orig -> origin/gh/jamesjwu/184/orig 2025-08-14T21:43:05.7074868Z * [new branch] gh/jamesjwu/52/base -> origin/gh/jamesjwu/52/base 2025-08-14T21:43:05.7075358Z * [new branch] gh/jamesjwu/52/head -> origin/gh/jamesjwu/52/head 2025-08-14T21:43:05.7075863Z * [new branch] gh/jamesjwu/53/base -> origin/gh/jamesjwu/53/base 2025-08-14T21:43:05.7076350Z * [new branch] gh/jamesjwu/53/head -> origin/gh/jamesjwu/53/head 2025-08-14T21:43:05.7076844Z * [new branch] gh/jamesjwu/54/base -> origin/gh/jamesjwu/54/base 2025-08-14T21:43:05.7077419Z * [new branch] gh/jamesjwu/54/head -> origin/gh/jamesjwu/54/head 2025-08-14T21:43:05.7525613Z * [new branch] gh/jamesjwu/55/base -> origin/gh/jamesjwu/55/base 2025-08-14T21:43:05.7526219Z * [new branch] gh/jamesjwu/55/head -> origin/gh/jamesjwu/55/head 2025-08-14T21:43:05.7526742Z * [new branch] gh/jamesjwu/56/base -> origin/gh/jamesjwu/56/base 2025-08-14T21:43:05.7527236Z * [new branch] gh/jamesjwu/56/head -> origin/gh/jamesjwu/56/head 2025-08-14T21:43:05.7527749Z * [new branch] gh/jamesjwu/57/base -> origin/gh/jamesjwu/57/base 2025-08-14T21:43:05.7528234Z * [new branch] gh/jamesjwu/57/head -> origin/gh/jamesjwu/57/head 2025-08-14T21:43:05.7528743Z * [new branch] gh/jamesjwu/58/base -> origin/gh/jamesjwu/58/base 2025-08-14T21:43:05.7529223Z * [new branch] gh/jamesjwu/58/head -> origin/gh/jamesjwu/58/head 2025-08-14T21:43:05.7529703Z * [new branch] gh/jamesjwu/59/base -> origin/gh/jamesjwu/59/base 2025-08-14T21:43:05.7530205Z * [new branch] gh/jamesjwu/59/head -> origin/gh/jamesjwu/59/head 2025-08-14T21:43:05.7530691Z * [new branch] gh/jamesjwu/60/base -> origin/gh/jamesjwu/60/base 2025-08-14T21:43:05.7531173Z * [new branch] gh/jamesjwu/60/head -> origin/gh/jamesjwu/60/head 2025-08-14T21:43:05.7531659Z * [new branch] gh/jamesjwu/61/base -> origin/gh/jamesjwu/61/base 2025-08-14T21:43:05.7532134Z * [new branch] gh/jamesjwu/61/head -> origin/gh/jamesjwu/61/head 2025-08-14T21:43:05.7532626Z * [new branch] gh/jamesjwu/62/base -> origin/gh/jamesjwu/62/base 2025-08-14T21:43:05.7533287Z * [new branch] gh/jamesjwu/62/head -> origin/gh/jamesjwu/62/head 2025-08-14T21:43:05.7533781Z * [new branch] gh/jamesjwu/63/base -> origin/gh/jamesjwu/63/base 2025-08-14T21:43:05.7534275Z * [new branch] gh/jamesjwu/63/head -> origin/gh/jamesjwu/63/head 2025-08-14T21:43:05.7534750Z * [new branch] gh/jamesjwu/64/base -> origin/gh/jamesjwu/64/base 2025-08-14T21:43:05.7535241Z * [new branch] gh/jamesjwu/64/head -> origin/gh/jamesjwu/64/head 2025-08-14T21:43:05.7535719Z * [new branch] gh/jamesjwu/65/base -> origin/gh/jamesjwu/65/base 2025-08-14T21:43:05.7536203Z * [new branch] gh/jamesjwu/65/head -> origin/gh/jamesjwu/65/head 2025-08-14T21:43:05.7536691Z * [new branch] gh/janeyx99/165/base -> origin/gh/janeyx99/165/base 2025-08-14T21:43:05.7537173Z * [new branch] gh/janeyx99/165/head -> origin/gh/janeyx99/165/head 2025-08-14T21:43:05.7537663Z * [new branch] gh/janeyx99/165/orig -> origin/gh/janeyx99/165/orig 2025-08-14T21:43:05.7538145Z * [new branch] gh/janeyx99/201/base -> origin/gh/janeyx99/201/base 2025-08-14T21:43:05.7538640Z * [new branch] gh/janeyx99/201/head -> origin/gh/janeyx99/201/head 2025-08-14T21:43:05.7539128Z * [new branch] gh/janeyx99/201/orig -> origin/gh/janeyx99/201/orig 2025-08-14T21:43:05.7539725Z * [new branch] gh/janeyx99/225/base -> origin/gh/janeyx99/225/base 2025-08-14T21:43:05.7540221Z * [new branch] gh/janeyx99/225/head -> origin/gh/janeyx99/225/head 2025-08-14T21:43:05.7540708Z * [new branch] gh/janeyx99/225/orig -> origin/gh/janeyx99/225/orig 2025-08-14T21:43:05.7541204Z * [new branch] gh/janeyx99/256/base -> origin/gh/janeyx99/256/base 2025-08-14T21:43:05.7541699Z * [new branch] gh/janeyx99/256/head -> origin/gh/janeyx99/256/head 2025-08-14T21:43:05.7542193Z * [new branch] gh/janeyx99/256/orig -> origin/gh/janeyx99/256/orig 2025-08-14T21:43:05.7542690Z * [new branch] gh/janeyx99/268/base -> origin/gh/janeyx99/268/base 2025-08-14T21:43:05.7543171Z * [new branch] gh/janeyx99/268/head -> origin/gh/janeyx99/268/head 2025-08-14T21:43:05.7543656Z * [new branch] gh/janeyx99/268/orig -> origin/gh/janeyx99/268/orig 2025-08-14T21:43:05.7544150Z * [new branch] gh/janeyx99/269/base -> origin/gh/janeyx99/269/base 2025-08-14T21:43:05.7544645Z * [new branch] gh/janeyx99/269/head -> origin/gh/janeyx99/269/head 2025-08-14T21:43:05.7545132Z * [new branch] gh/janeyx99/269/orig -> origin/gh/janeyx99/269/orig 2025-08-14T21:43:05.7545614Z * [new branch] gh/janeyx99/274/base -> origin/gh/janeyx99/274/base 2025-08-14T21:43:05.7546109Z * [new branch] gh/janeyx99/274/head -> origin/gh/janeyx99/274/head 2025-08-14T21:43:05.7546595Z * [new branch] gh/janeyx99/274/orig -> origin/gh/janeyx99/274/orig 2025-08-14T21:43:05.7547090Z * [new branch] gh/janeyx99/276/base -> origin/gh/janeyx99/276/base 2025-08-14T21:43:05.7547588Z * [new branch] gh/janeyx99/276/head -> origin/gh/janeyx99/276/head 2025-08-14T21:43:05.7548071Z * [new branch] gh/janeyx99/276/orig -> origin/gh/janeyx99/276/orig 2025-08-14T21:43:05.7548562Z * [new branch] gh/janeyx99/277/base -> origin/gh/janeyx99/277/base 2025-08-14T21:43:05.7959093Z * [new branch] gh/janeyx99/277/head -> origin/gh/janeyx99/277/head 2025-08-14T21:43:05.7959665Z * [new branch] gh/janeyx99/277/orig -> origin/gh/janeyx99/277/orig 2025-08-14T21:43:05.7960280Z * [new branch] gh/janeyx99/278/base -> origin/gh/janeyx99/278/base 2025-08-14T21:43:05.7960990Z * [new branch] gh/janeyx99/278/head -> origin/gh/janeyx99/278/head 2025-08-14T21:43:05.7961492Z * [new branch] gh/janeyx99/278/orig -> origin/gh/janeyx99/278/orig 2025-08-14T21:43:05.7961991Z * [new branch] gh/janeyx99/279/base -> origin/gh/janeyx99/279/base 2025-08-14T21:43:05.7962471Z * [new branch] gh/janeyx99/279/head -> origin/gh/janeyx99/279/head 2025-08-14T21:43:05.7962973Z * [new branch] gh/janeyx99/279/orig -> origin/gh/janeyx99/279/orig 2025-08-14T21:43:05.7963451Z * [new branch] gh/janeyx99/280/base -> origin/gh/janeyx99/280/base 2025-08-14T21:43:05.7963940Z * [new branch] gh/janeyx99/280/head -> origin/gh/janeyx99/280/head 2025-08-14T21:43:05.7964417Z * [new branch] gh/janeyx99/280/orig -> origin/gh/janeyx99/280/orig 2025-08-14T21:43:05.7964907Z * [new branch] gh/janeyx99/281/base -> origin/gh/janeyx99/281/base 2025-08-14T21:43:05.7965398Z * [new branch] gh/janeyx99/281/head -> origin/gh/janeyx99/281/head 2025-08-14T21:43:05.7965881Z * [new branch] gh/janeyx99/281/orig -> origin/gh/janeyx99/281/orig 2025-08-14T21:43:05.7966376Z * [new branch] gh/janeyx99/282/base -> origin/gh/janeyx99/282/base 2025-08-14T21:43:05.7966856Z * [new branch] gh/janeyx99/282/head -> origin/gh/janeyx99/282/head 2025-08-14T21:43:05.7967469Z * [new branch] gh/janeyx99/282/orig -> origin/gh/janeyx99/282/orig 2025-08-14T21:43:05.7967961Z * [new branch] gh/janeyx99/283/base -> origin/gh/janeyx99/283/base 2025-08-14T21:43:05.7968445Z * [new branch] gh/janeyx99/283/head -> origin/gh/janeyx99/283/head 2025-08-14T21:43:05.7968947Z * [new branch] gh/janeyx99/283/orig -> origin/gh/janeyx99/283/orig 2025-08-14T21:43:05.7969433Z * [new branch] gh/janeyx99/284/base -> origin/gh/janeyx99/284/base 2025-08-14T21:43:05.7969926Z * [new branch] gh/janeyx99/284/head -> origin/gh/janeyx99/284/head 2025-08-14T21:43:05.7970421Z * [new branch] gh/janeyx99/284/orig -> origin/gh/janeyx99/284/orig 2025-08-14T21:43:05.7970908Z * [new branch] gh/janeyx99/285/base -> origin/gh/janeyx99/285/base 2025-08-14T21:43:05.7971400Z * [new branch] gh/janeyx99/285/head -> origin/gh/janeyx99/285/head 2025-08-14T21:43:05.7971889Z * [new branch] gh/janeyx99/285/orig -> origin/gh/janeyx99/285/orig 2025-08-14T21:43:05.7972375Z * [new branch] gh/janeyx99/286/base -> origin/gh/janeyx99/286/base 2025-08-14T21:43:05.7972870Z * [new branch] gh/janeyx99/286/head -> origin/gh/janeyx99/286/head 2025-08-14T21:43:05.7973347Z * [new branch] gh/janeyx99/286/orig -> origin/gh/janeyx99/286/orig 2025-08-14T21:43:05.7973840Z * [new branch] gh/janeyx99/287/base -> origin/gh/janeyx99/287/base 2025-08-14T21:43:05.7974322Z * [new branch] gh/janeyx99/287/head -> origin/gh/janeyx99/287/head 2025-08-14T21:43:05.7974816Z * [new branch] gh/janeyx99/287/orig -> origin/gh/janeyx99/287/orig 2025-08-14T21:43:05.7975301Z * [new branch] gh/janeyx99/288/base -> origin/gh/janeyx99/288/base 2025-08-14T21:43:05.7975794Z * [new branch] gh/janeyx99/288/head -> origin/gh/janeyx99/288/head 2025-08-14T21:43:05.7976291Z * [new branch] gh/janeyx99/288/orig -> origin/gh/janeyx99/288/orig 2025-08-14T21:43:05.7976774Z * [new branch] gh/janeyx99/289/base -> origin/gh/janeyx99/289/base 2025-08-14T21:43:05.7977265Z * [new branch] gh/janeyx99/289/head -> origin/gh/janeyx99/289/head 2025-08-14T21:43:05.7977855Z * [new branch] gh/janeyx99/289/orig -> origin/gh/janeyx99/289/orig 2025-08-14T21:43:05.7978351Z * [new branch] gh/janeyx99/290/base -> origin/gh/janeyx99/290/base 2025-08-14T21:43:05.7978849Z * [new branch] gh/janeyx99/290/head -> origin/gh/janeyx99/290/head 2025-08-14T21:43:05.7979333Z * [new branch] gh/janeyx99/290/orig -> origin/gh/janeyx99/290/orig 2025-08-14T21:43:05.7979829Z * [new branch] gh/janeyx99/291/base -> origin/gh/janeyx99/291/base 2025-08-14T21:43:05.7980325Z * [new branch] gh/janeyx99/291/head -> origin/gh/janeyx99/291/head 2025-08-14T21:43:05.7980825Z * [new branch] gh/janeyx99/291/orig -> origin/gh/janeyx99/291/orig 2025-08-14T21:43:05.7981320Z * [new branch] gh/janeyx99/292/base -> origin/gh/janeyx99/292/base 2025-08-14T21:43:05.7981805Z * [new branch] gh/janeyx99/292/head -> origin/gh/janeyx99/292/head 2025-08-14T21:43:05.7982306Z * [new branch] gh/janeyx99/292/orig -> origin/gh/janeyx99/292/orig 2025-08-14T21:43:05.8441180Z * [new branch] gh/janeyx99/293/base -> origin/gh/janeyx99/293/base 2025-08-14T21:43:05.8441770Z * [new branch] gh/janeyx99/293/head -> origin/gh/janeyx99/293/head 2025-08-14T21:43:05.8442262Z * [new branch] gh/janeyx99/293/orig -> origin/gh/janeyx99/293/orig 2025-08-14T21:43:05.8442988Z * [new branch] gh/janeyx99/294/base -> origin/gh/janeyx99/294/base 2025-08-14T21:43:05.8443479Z * [new branch] gh/janeyx99/294/head -> origin/gh/janeyx99/294/head 2025-08-14T21:43:05.8443981Z * [new branch] gh/janeyx99/294/orig -> origin/gh/janeyx99/294/orig 2025-08-14T21:43:05.8444466Z * [new branch] gh/janeyx99/295/base -> origin/gh/janeyx99/295/base 2025-08-14T21:43:05.8444942Z * [new branch] gh/janeyx99/295/head -> origin/gh/janeyx99/295/head 2025-08-14T21:43:05.8445439Z * [new branch] gh/janeyx99/295/orig -> origin/gh/janeyx99/295/orig 2025-08-14T21:43:05.8445920Z * [new branch] gh/janeyx99/296/base -> origin/gh/janeyx99/296/base 2025-08-14T21:43:05.8447118Z * [new branch] gh/janeyx99/296/head -> origin/gh/janeyx99/296/head 2025-08-14T21:43:05.8447624Z * [new branch] gh/janeyx99/296/orig -> origin/gh/janeyx99/296/orig 2025-08-14T21:43:05.8448108Z * [new branch] gh/janeyx99/297/base -> origin/gh/janeyx99/297/base 2025-08-14T21:43:05.8448595Z * [new branch] gh/janeyx99/297/head -> origin/gh/janeyx99/297/head 2025-08-14T21:43:05.8449069Z * [new branch] gh/janeyx99/297/orig -> origin/gh/janeyx99/297/orig 2025-08-14T21:43:05.8449557Z * [new branch] gh/janeyx99/298/base -> origin/gh/janeyx99/298/base 2025-08-14T21:43:05.8450055Z * [new branch] gh/janeyx99/298/head -> origin/gh/janeyx99/298/head 2025-08-14T21:43:05.8450542Z * [new branch] gh/janeyx99/298/orig -> origin/gh/janeyx99/298/orig 2025-08-14T21:43:05.8451025Z * [new branch] gh/janeyx99/299/base -> origin/gh/janeyx99/299/base 2025-08-14T21:43:05.8451506Z * [new branch] gh/janeyx99/299/head -> origin/gh/janeyx99/299/head 2025-08-14T21:43:05.8451992Z * [new branch] gh/janeyx99/299/orig -> origin/gh/janeyx99/299/orig 2025-08-14T21:43:05.8452479Z * [new branch] gh/janeyx99/300/base -> origin/gh/janeyx99/300/base 2025-08-14T21:43:05.8452965Z * [new branch] gh/janeyx99/300/head -> origin/gh/janeyx99/300/head 2025-08-14T21:43:05.8453445Z * [new branch] gh/janeyx99/300/orig -> origin/gh/janeyx99/300/orig 2025-08-14T21:43:05.8453929Z * [new branch] gh/janeyx99/88/base -> origin/gh/janeyx99/88/base 2025-08-14T21:43:05.8454567Z * [new branch] gh/janeyx99/88/head -> origin/gh/janeyx99/88/head 2025-08-14T21:43:05.8455050Z * [new branch] gh/janeyx99/88/orig -> origin/gh/janeyx99/88/orig 2025-08-14T21:43:05.8455536Z * [new branch] gh/jansel/360/base -> origin/gh/jansel/360/base 2025-08-14T21:43:05.8456019Z * [new branch] gh/jansel/360/head -> origin/gh/jansel/360/head 2025-08-14T21:43:05.8456493Z * [new branch] gh/jansel/451/base -> origin/gh/jansel/451/base 2025-08-14T21:43:05.8456972Z * [new branch] gh/jansel/451/head -> origin/gh/jansel/451/head 2025-08-14T21:43:05.8457442Z * [new branch] gh/jansel/451/orig -> origin/gh/jansel/451/orig 2025-08-14T21:43:05.8457911Z * [new branch] gh/jansel/462/base -> origin/gh/jansel/462/base 2025-08-14T21:43:05.8458386Z * [new branch] gh/jansel/462/head -> origin/gh/jansel/462/head 2025-08-14T21:43:05.8458852Z * [new branch] gh/jansel/462/orig -> origin/gh/jansel/462/orig 2025-08-14T21:43:05.8459326Z * [new branch] gh/jansel/531/base -> origin/gh/jansel/531/base 2025-08-14T21:43:05.8459793Z * [new branch] gh/jansel/531/head -> origin/gh/jansel/531/head 2025-08-14T21:43:05.8460266Z * [new branch] gh/jansel/531/orig -> origin/gh/jansel/531/orig 2025-08-14T21:43:05.8460849Z * [new branch] gh/jansel/534/base -> origin/gh/jansel/534/base 2025-08-14T21:43:05.8461314Z * [new branch] gh/jansel/534/head -> origin/gh/jansel/534/head 2025-08-14T21:43:05.8461794Z * [new branch] gh/jansel/534/orig -> origin/gh/jansel/534/orig 2025-08-14T21:43:05.8462297Z * [new branch] gh/jbschlosser/226/base -> origin/gh/jbschlosser/226/base 2025-08-14T21:43:05.8462842Z * [new branch] gh/jbschlosser/226/head -> origin/gh/jbschlosser/226/head 2025-08-14T21:43:05.8463366Z * [new branch] gh/jbschlosser/226/orig -> origin/gh/jbschlosser/226/orig 2025-08-14T21:43:05.8463907Z * [new branch] gh/jbschlosser/239/base -> origin/gh/jbschlosser/239/base 2025-08-14T21:43:05.8464434Z * [new branch] gh/jbschlosser/239/head -> origin/gh/jbschlosser/239/head 2025-08-14T21:43:05.8909670Z * [new branch] gh/jbschlosser/239/orig -> origin/gh/jbschlosser/239/orig 2025-08-14T21:43:05.8910300Z * [new branch] gh/jbschlosser/247/base -> origin/gh/jbschlosser/247/base 2025-08-14T21:43:05.8910843Z * [new branch] gh/jbschlosser/247/head -> origin/gh/jbschlosser/247/head 2025-08-14T21:43:05.8911372Z * [new branch] gh/jbschlosser/247/orig -> origin/gh/jbschlosser/247/orig 2025-08-14T21:43:05.8911903Z * [new branch] gh/jbschlosser/248/base -> origin/gh/jbschlosser/248/base 2025-08-14T21:43:05.8912439Z * [new branch] gh/jbschlosser/248/head -> origin/gh/jbschlosser/248/head 2025-08-14T21:43:05.8912972Z * [new branch] gh/jbschlosser/248/orig -> origin/gh/jbschlosser/248/orig 2025-08-14T21:43:05.8913489Z * [new branch] gh/jbschlosser/249/base -> origin/gh/jbschlosser/249/base 2025-08-14T21:43:05.8914018Z * [new branch] gh/jbschlosser/249/head -> origin/gh/jbschlosser/249/head 2025-08-14T21:43:05.8914561Z * [new branch] gh/jbschlosser/249/orig -> origin/gh/jbschlosser/249/orig 2025-08-14T21:43:05.8915082Z * [new branch] gh/jbschlosser/250/base -> origin/gh/jbschlosser/250/base 2025-08-14T21:43:05.8915615Z * [new branch] gh/jbschlosser/250/head -> origin/gh/jbschlosser/250/head 2025-08-14T21:43:05.8916132Z * [new branch] gh/jbschlosser/250/orig -> origin/gh/jbschlosser/250/orig 2025-08-14T21:43:05.8916646Z * [new branch] gh/jiayisunx/57/base -> origin/gh/jiayisunx/57/base 2025-08-14T21:43:05.8917425Z * [new branch] gh/jiayisunx/57/head -> origin/gh/jiayisunx/57/head 2025-08-14T21:43:05.8917925Z * [new branch] gh/jiayisunx/57/orig -> origin/gh/jiayisunx/57/orig 2025-08-14T21:43:05.8918442Z * [new branch] gh/jiayisunx/59/base -> origin/gh/jiayisunx/59/base 2025-08-14T21:43:05.8918932Z * [new branch] gh/jiayisunx/59/head -> origin/gh/jiayisunx/59/head 2025-08-14T21:43:05.8919439Z * [new branch] gh/jiayisunx/59/orig -> origin/gh/jiayisunx/59/orig 2025-08-14T21:43:05.8919939Z * [new branch] gh/jiayisunx/61/base -> origin/gh/jiayisunx/61/base 2025-08-14T21:43:05.8920427Z * [new branch] gh/jiayisunx/61/head -> origin/gh/jiayisunx/61/head 2025-08-14T21:43:05.8920917Z * [new branch] gh/jiayisunx/61/orig -> origin/gh/jiayisunx/61/orig 2025-08-14T21:43:05.8921416Z * [new branch] gh/jiayisunx/63/base -> origin/gh/jiayisunx/63/base 2025-08-14T21:43:05.8921912Z * [new branch] gh/jiayisunx/63/head -> origin/gh/jiayisunx/63/head 2025-08-14T21:43:05.8922417Z * [new branch] gh/jiayisunx/63/orig -> origin/gh/jiayisunx/63/orig 2025-08-14T21:43:05.8922901Z * [new branch] gh/jiayisunx/64/base -> origin/gh/jiayisunx/64/base 2025-08-14T21:43:05.8923400Z * [new branch] gh/jiayisunx/64/head -> origin/gh/jiayisunx/64/head 2025-08-14T21:43:05.8924023Z * [new branch] gh/jiayisunx/64/orig -> origin/gh/jiayisunx/64/orig 2025-08-14T21:43:05.8924527Z * [new branch] gh/jiayisunx/65/base -> origin/gh/jiayisunx/65/base 2025-08-14T21:43:05.8925029Z * [new branch] gh/jiayisunx/65/head -> origin/gh/jiayisunx/65/head 2025-08-14T21:43:05.8925522Z * [new branch] gh/jiayisunx/65/orig -> origin/gh/jiayisunx/65/orig 2025-08-14T21:43:05.8926025Z * [new branch] gh/jiayisunx/66/base -> origin/gh/jiayisunx/66/base 2025-08-14T21:43:05.8926523Z * [new branch] gh/jiayisunx/66/head -> origin/gh/jiayisunx/66/head 2025-08-14T21:43:05.8927020Z * [new branch] gh/jiayisunx/66/orig -> origin/gh/jiayisunx/66/orig 2025-08-14T21:43:05.8927515Z * [new branch] gh/jiayisunx/67/base -> origin/gh/jiayisunx/67/base 2025-08-14T21:43:05.8928011Z * [new branch] gh/jiayisunx/67/head -> origin/gh/jiayisunx/67/head 2025-08-14T21:43:05.8928525Z * [new branch] gh/jiayisunx/67/orig -> origin/gh/jiayisunx/67/orig 2025-08-14T21:43:05.8929022Z * [new branch] gh/jiayisunx/68/base -> origin/gh/jiayisunx/68/base 2025-08-14T21:43:05.8929516Z * [new branch] gh/jiayisunx/68/head -> origin/gh/jiayisunx/68/head 2025-08-14T21:43:05.8930004Z * [new branch] gh/jiayisunx/68/orig -> origin/gh/jiayisunx/68/orig 2025-08-14T21:43:05.8930524Z * [new branch] gh/jjwu@meta.com/1/base -> origin/gh/jjwu@meta.com/1/base 2025-08-14T21:43:05.8931035Z * [new branch] gh/jjwu@meta.com/1/head -> origin/gh/jjwu@meta.com/1/head 2025-08-14T21:43:05.8931554Z * [new branch] gh/justinchuby/111/base -> origin/gh/justinchuby/111/base 2025-08-14T21:43:05.8932089Z * [new branch] gh/justinchuby/111/head -> origin/gh/justinchuby/111/head 2025-08-14T21:43:05.8932614Z * [new branch] gh/justinchuby/111/orig -> origin/gh/justinchuby/111/orig 2025-08-14T21:43:05.8933147Z * [new branch] gh/kurtamohler/32/base -> origin/gh/kurtamohler/32/base 2025-08-14T21:43:05.9367868Z * [new branch] gh/kurtamohler/32/head -> origin/gh/kurtamohler/32/head 2025-08-14T21:43:05.9368459Z * [new branch] gh/kurtamohler/32/orig -> origin/gh/kurtamohler/32/orig 2025-08-14T21:43:05.9369200Z * [new branch] gh/kurtamohler/33/base -> origin/gh/kurtamohler/33/base 2025-08-14T21:43:05.9369761Z * [new branch] gh/kurtamohler/33/head -> origin/gh/kurtamohler/33/head 2025-08-14T21:43:05.9370287Z * [new branch] gh/kurtamohler/33/orig -> origin/gh/kurtamohler/33/orig 2025-08-14T21:43:05.9370817Z * [new branch] gh/kurtamohler/34/base -> origin/gh/kurtamohler/34/base 2025-08-14T21:43:05.9371352Z * [new branch] gh/kurtamohler/34/head -> origin/gh/kurtamohler/34/head 2025-08-14T21:43:05.9371878Z * [new branch] gh/kurtamohler/34/orig -> origin/gh/kurtamohler/34/orig 2025-08-14T21:43:05.9372409Z * [new branch] gh/kurtamohler/40/base -> origin/gh/kurtamohler/40/base 2025-08-14T21:43:05.9372926Z * [new branch] gh/kurtamohler/40/head -> origin/gh/kurtamohler/40/head 2025-08-14T21:43:05.9373451Z * [new branch] gh/kurtamohler/40/orig -> origin/gh/kurtamohler/40/orig 2025-08-14T21:43:05.9373968Z * [new branch] gh/kurtamohler/41/base -> origin/gh/kurtamohler/41/base 2025-08-14T21:43:05.9374507Z * [new branch] gh/kurtamohler/41/head -> origin/gh/kurtamohler/41/head 2025-08-14T21:43:05.9375031Z * [new branch] gh/kurtamohler/41/orig -> origin/gh/kurtamohler/41/orig 2025-08-14T21:43:05.9375604Z * [new branch] gh/kurtamohler/42/base -> origin/gh/kurtamohler/42/base 2025-08-14T21:43:05.9376822Z * [new branch] gh/kurtamohler/42/head -> origin/gh/kurtamohler/42/head 2025-08-14T21:43:05.9377341Z * [new branch] gh/kurtamohler/42/orig -> origin/gh/kurtamohler/42/orig 2025-08-14T21:43:05.9377859Z * [new branch] gh/kurtamohler/43/base -> origin/gh/kurtamohler/43/base 2025-08-14T21:43:05.9378376Z * [new branch] gh/kurtamohler/43/head -> origin/gh/kurtamohler/43/head 2025-08-14T21:43:05.9378893Z * [new branch] gh/kurtamohler/43/orig -> origin/gh/kurtamohler/43/orig 2025-08-14T21:43:05.9379413Z * [new branch] gh/kurtamohler/44/base -> origin/gh/kurtamohler/44/base 2025-08-14T21:43:05.9379915Z * [new branch] gh/kurtamohler/44/head -> origin/gh/kurtamohler/44/head 2025-08-14T21:43:05.9380425Z * [new branch] gh/kurtamohler/44/orig -> origin/gh/kurtamohler/44/orig 2025-08-14T21:43:05.9380943Z * [new branch] gh/kurtamohler/45/base -> origin/gh/kurtamohler/45/base 2025-08-14T21:43:05.9381457Z * [new branch] gh/kurtamohler/45/head -> origin/gh/kurtamohler/45/head 2025-08-14T21:43:05.9381972Z * [new branch] gh/kurtamohler/45/orig -> origin/gh/kurtamohler/45/orig 2025-08-14T21:43:05.9382478Z * [new branch] gh/kurtamohler/46/base -> origin/gh/kurtamohler/46/base 2025-08-14T21:43:05.9382992Z * [new branch] gh/kurtamohler/46/head -> origin/gh/kurtamohler/46/head 2025-08-14T21:43:05.9383502Z * [new branch] gh/kurtamohler/46/orig -> origin/gh/kurtamohler/46/orig 2025-08-14T21:43:05.9384005Z * [new branch] gh/kwen2501/130/base -> origin/gh/kwen2501/130/base 2025-08-14T21:43:05.9384491Z * [new branch] gh/kwen2501/130/head -> origin/gh/kwen2501/130/head 2025-08-14T21:43:05.9384964Z * [new branch] gh/kwen2501/130/orig -> origin/gh/kwen2501/130/orig 2025-08-14T21:43:05.9385458Z * [new branch] gh/kwen2501/142/base -> origin/gh/kwen2501/142/base 2025-08-14T21:43:05.9385937Z * [new branch] gh/kwen2501/142/head -> origin/gh/kwen2501/142/head 2025-08-14T21:43:05.9386416Z * [new branch] gh/kwen2501/142/orig -> origin/gh/kwen2501/142/orig 2025-08-14T21:43:05.9386900Z * [new branch] gh/kwen2501/15/base -> origin/gh/kwen2501/15/base 2025-08-14T21:43:05.9387482Z * [new branch] gh/kwen2501/15/head -> origin/gh/kwen2501/15/head 2025-08-14T21:43:05.9387970Z * [new branch] gh/kwen2501/156/base -> origin/gh/kwen2501/156/base 2025-08-14T21:43:05.9388447Z * [new branch] gh/kwen2501/156/head -> origin/gh/kwen2501/156/head 2025-08-14T21:43:05.9388934Z * [new branch] gh/kwen2501/156/orig -> origin/gh/kwen2501/156/orig 2025-08-14T21:43:05.9389416Z * [new branch] gh/kwen2501/170/base -> origin/gh/kwen2501/170/base 2025-08-14T21:43:05.9389901Z * [new branch] gh/kwen2501/170/head -> origin/gh/kwen2501/170/head 2025-08-14T21:43:05.9390384Z * [new branch] gh/kwen2501/179/base -> origin/gh/kwen2501/179/base 2025-08-14T21:43:05.9390865Z * [new branch] gh/kwen2501/179/head -> origin/gh/kwen2501/179/head 2025-08-14T21:43:05.9391345Z * [new branch] gh/kwen2501/179/orig -> origin/gh/kwen2501/179/orig 2025-08-14T21:43:05.9391818Z * [new branch] gh/kwen2501/181/base -> origin/gh/kwen2501/181/base 2025-08-14T21:43:05.9859567Z * [new branch] gh/kwen2501/181/head -> origin/gh/kwen2501/181/head 2025-08-14T21:43:05.9860114Z * [new branch] gh/kwen2501/181/orig -> origin/gh/kwen2501/181/orig 2025-08-14T21:43:05.9860598Z * [new branch] gh/kwen2501/183/base -> origin/gh/kwen2501/183/base 2025-08-14T21:43:05.9861286Z * [new branch] gh/kwen2501/183/head -> origin/gh/kwen2501/183/head 2025-08-14T21:43:05.9861769Z * [new branch] gh/kwen2501/183/orig -> origin/gh/kwen2501/183/orig 2025-08-14T21:43:05.9862263Z * [new branch] gh/kwen2501/184/base -> origin/gh/kwen2501/184/base 2025-08-14T21:43:05.9862749Z * [new branch] gh/kwen2501/184/head -> origin/gh/kwen2501/184/head 2025-08-14T21:43:05.9863225Z * [new branch] gh/kwen2501/184/orig -> origin/gh/kwen2501/184/orig 2025-08-14T21:43:05.9863718Z * [new branch] gh/kwen2501/186/base -> origin/gh/kwen2501/186/base 2025-08-14T21:43:05.9864191Z * [new branch] gh/kwen2501/186/head -> origin/gh/kwen2501/186/head 2025-08-14T21:43:05.9864672Z * [new branch] gh/kwen2501/186/orig -> origin/gh/kwen2501/186/orig 2025-08-14T21:43:05.9865148Z * [new branch] gh/kwen2501/187/base -> origin/gh/kwen2501/187/base 2025-08-14T21:43:05.9865633Z * [new branch] gh/kwen2501/187/head -> origin/gh/kwen2501/187/head 2025-08-14T21:43:05.9866125Z * [new branch] gh/kwen2501/187/orig -> origin/gh/kwen2501/187/orig 2025-08-14T21:43:05.9866611Z * [new branch] gh/kwen2501/188/base -> origin/gh/kwen2501/188/base 2025-08-14T21:43:05.9867090Z * [new branch] gh/kwen2501/188/head -> origin/gh/kwen2501/188/head 2025-08-14T21:43:05.9867575Z * [new branch] gh/kwen2501/188/orig -> origin/gh/kwen2501/188/orig 2025-08-14T21:43:05.9868051Z * [new branch] gh/kwen2501/194/base -> origin/gh/kwen2501/194/base 2025-08-14T21:43:05.9868529Z * [new branch] gh/kwen2501/194/head -> origin/gh/kwen2501/194/head 2025-08-14T21:43:05.9869009Z * [new branch] gh/kwen2501/194/orig -> origin/gh/kwen2501/194/orig 2025-08-14T21:43:05.9869480Z * [new branch] gh/kwen2501/195/base -> origin/gh/kwen2501/195/base 2025-08-14T21:43:05.9869970Z * [new branch] gh/kwen2501/195/head -> origin/gh/kwen2501/195/head 2025-08-14T21:43:05.9870443Z * [new branch] gh/kwen2501/195/orig -> origin/gh/kwen2501/195/orig 2025-08-14T21:43:05.9870931Z * [new branch] gh/kwen2501/196/base -> origin/gh/kwen2501/196/base 2025-08-14T21:43:05.9871409Z * [new branch] gh/kwen2501/196/head -> origin/gh/kwen2501/196/head 2025-08-14T21:43:05.9872768Z * [new branch] gh/kwen2501/196/orig -> origin/gh/kwen2501/196/orig 2025-08-14T21:43:05.9873328Z * [new branch] gh/kwen2501/197/base -> origin/gh/kwen2501/197/base 2025-08-14T21:43:05.9873803Z * [new branch] gh/kwen2501/197/head -> origin/gh/kwen2501/197/head 2025-08-14T21:43:05.9874294Z * [new branch] gh/kwen2501/197/orig -> origin/gh/kwen2501/197/orig 2025-08-14T21:43:05.9874784Z * [new branch] gh/kwen2501/198/base -> origin/gh/kwen2501/198/base 2025-08-14T21:43:05.9875267Z * [new branch] gh/kwen2501/198/head -> origin/gh/kwen2501/198/head 2025-08-14T21:43:05.9875749Z * [new branch] gh/kwen2501/198/orig -> origin/gh/kwen2501/198/orig 2025-08-14T21:43:05.9876221Z * [new branch] gh/kwen2501/199/base -> origin/gh/kwen2501/199/base 2025-08-14T21:43:05.9876705Z * [new branch] gh/kwen2501/199/head -> origin/gh/kwen2501/199/head 2025-08-14T21:43:05.9877261Z * [new branch] gh/kwen2501/199/orig -> origin/gh/kwen2501/199/orig 2025-08-14T21:43:05.9877754Z * [new branch] gh/kwen2501/200/base -> origin/gh/kwen2501/200/base 2025-08-14T21:43:05.9878244Z * [new branch] gh/kwen2501/200/head -> origin/gh/kwen2501/200/head 2025-08-14T21:43:05.9878720Z * [new branch] gh/kwen2501/200/orig -> origin/gh/kwen2501/200/orig 2025-08-14T21:43:05.9879335Z * [new branch] gh/kwen2501/201/base -> origin/gh/kwen2501/201/base 2025-08-14T21:43:05.9879818Z * [new branch] gh/kwen2501/201/head -> origin/gh/kwen2501/201/head 2025-08-14T21:43:05.9880308Z * [new branch] gh/kwen2501/201/orig -> origin/gh/kwen2501/201/orig 2025-08-14T21:43:05.9880784Z * [new branch] gh/kwen2501/202/base -> origin/gh/kwen2501/202/base 2025-08-14T21:43:05.9881271Z * [new branch] gh/kwen2501/202/head -> origin/gh/kwen2501/202/head 2025-08-14T21:43:05.9881762Z * [new branch] gh/kwen2501/202/orig -> origin/gh/kwen2501/202/orig 2025-08-14T21:43:05.9882241Z * [new branch] gh/kwen2501/203/base -> origin/gh/kwen2501/203/base 2025-08-14T21:43:05.9882720Z * [new branch] gh/kwen2501/203/head -> origin/gh/kwen2501/203/head 2025-08-14T21:43:05.9883203Z * [new branch] gh/kwen2501/203/orig -> origin/gh/kwen2501/203/orig 2025-08-14T21:43:06.0303124Z * [new branch] gh/laithsakka/152/base -> origin/gh/laithsakka/152/base 2025-08-14T21:43:06.0303685Z * [new branch] gh/laithsakka/152/head -> origin/gh/laithsakka/152/head 2025-08-14T21:43:06.0304202Z * [new branch] gh/laithsakka/152/orig -> origin/gh/laithsakka/152/orig 2025-08-14T21:43:06.0304731Z * [new branch] gh/laithsakka/156/base -> origin/gh/laithsakka/156/base 2025-08-14T21:43:06.0305267Z * [new branch] gh/laithsakka/156/head -> origin/gh/laithsakka/156/head 2025-08-14T21:43:06.0305786Z * [new branch] gh/laithsakka/156/orig -> origin/gh/laithsakka/156/orig 2025-08-14T21:43:06.0306308Z * [new branch] gh/laithsakka/159/base -> origin/gh/laithsakka/159/base 2025-08-14T21:43:06.0306822Z * [new branch] gh/laithsakka/159/head -> origin/gh/laithsakka/159/head 2025-08-14T21:43:06.0307347Z * [new branch] gh/laithsakka/159/orig -> origin/gh/laithsakka/159/orig 2025-08-14T21:43:06.0307859Z * [new branch] gh/laithsakka/160/base -> origin/gh/laithsakka/160/base 2025-08-14T21:43:06.0308379Z * [new branch] gh/laithsakka/160/head -> origin/gh/laithsakka/160/head 2025-08-14T21:43:06.0308890Z * [new branch] gh/laithsakka/160/orig -> origin/gh/laithsakka/160/orig 2025-08-14T21:43:06.0309400Z * [new branch] gh/laithsakka/178/base -> origin/gh/laithsakka/178/base 2025-08-14T21:43:06.0310091Z * [new branch] gh/laithsakka/178/head -> origin/gh/laithsakka/178/head 2025-08-14T21:43:06.0310606Z * [new branch] gh/laithsakka/178/orig -> origin/gh/laithsakka/178/orig 2025-08-14T21:43:06.0311128Z * [new branch] gh/laithsakka/191/base -> origin/gh/laithsakka/191/base 2025-08-14T21:43:06.0311662Z * [new branch] gh/laithsakka/191/head -> origin/gh/laithsakka/191/head 2025-08-14T21:43:06.0312173Z * [new branch] gh/laithsakka/191/orig -> origin/gh/laithsakka/191/orig 2025-08-14T21:43:06.0312699Z * [new branch] gh/laithsakka/234/base -> origin/gh/laithsakka/234/base 2025-08-14T21:43:06.0313203Z * [new branch] gh/laithsakka/234/head -> origin/gh/laithsakka/234/head 2025-08-14T21:43:06.0313719Z * [new branch] gh/laithsakka/234/orig -> origin/gh/laithsakka/234/orig 2025-08-14T21:43:06.0314225Z * [new branch] gh/laithsakka/237/base -> origin/gh/laithsakka/237/base 2025-08-14T21:43:06.0314742Z * [new branch] gh/laithsakka/237/head -> origin/gh/laithsakka/237/head 2025-08-14T21:43:06.0315263Z * [new branch] gh/laithsakka/237/orig -> origin/gh/laithsakka/237/orig 2025-08-14T21:43:06.0315766Z * [new branch] gh/laithsakka/238/base -> origin/gh/laithsakka/238/base 2025-08-14T21:43:06.0316400Z * [new branch] gh/laithsakka/238/head -> origin/gh/laithsakka/238/head 2025-08-14T21:43:06.0316941Z * [new branch] gh/laithsakka/238/orig -> origin/gh/laithsakka/238/orig 2025-08-14T21:43:06.0317505Z * [new branch] gh/laithsakka/239/base -> origin/gh/laithsakka/239/base 2025-08-14T21:43:06.0318022Z * [new branch] gh/laithsakka/239/head -> origin/gh/laithsakka/239/head 2025-08-14T21:43:06.0318533Z * [new branch] gh/laithsakka/239/orig -> origin/gh/laithsakka/239/orig 2025-08-14T21:43:06.0319068Z * [new branch] gh/laithsakka/240/base -> origin/gh/laithsakka/240/base 2025-08-14T21:43:06.0319579Z * [new branch] gh/laithsakka/240/head -> origin/gh/laithsakka/240/head 2025-08-14T21:43:06.0320098Z * [new branch] gh/laithsakka/240/orig -> origin/gh/laithsakka/240/orig 2025-08-14T21:43:06.0320609Z * [new branch] gh/laithsakka/242/base -> origin/gh/laithsakka/242/base 2025-08-14T21:43:06.0321118Z * [new branch] gh/laithsakka/242/head -> origin/gh/laithsakka/242/head 2025-08-14T21:43:06.0321635Z * [new branch] gh/laithsakka/242/orig -> origin/gh/laithsakka/242/orig 2025-08-14T21:43:06.0322142Z * [new branch] gh/laithsakka/243/base -> origin/gh/laithsakka/243/base 2025-08-14T21:43:06.0322661Z * [new branch] gh/laithsakka/243/head -> origin/gh/laithsakka/243/head 2025-08-14T21:43:06.0323178Z * [new branch] gh/laithsakka/243/orig -> origin/gh/laithsakka/243/orig 2025-08-14T21:43:06.0323684Z * [new branch] gh/laithsakka/244/base -> origin/gh/laithsakka/244/base 2025-08-14T21:43:06.0324200Z * [new branch] gh/laithsakka/244/head -> origin/gh/laithsakka/244/head 2025-08-14T21:43:06.0324710Z * [new branch] gh/laithsakka/244/orig -> origin/gh/laithsakka/244/orig 2025-08-14T21:43:06.0325225Z * [new branch] gh/laithsakka/245/base -> origin/gh/laithsakka/245/base 2025-08-14T21:43:06.0325740Z * [new branch] gh/laithsakka/245/head -> origin/gh/laithsakka/245/head 2025-08-14T21:43:06.0326244Z * [new branch] gh/laithsakka/245/orig -> origin/gh/laithsakka/245/orig 2025-08-14T21:43:06.0744325Z * [new branch] gh/laithsakka/246/base -> origin/gh/laithsakka/246/base 2025-08-14T21:43:06.0744960Z * [new branch] gh/laithsakka/246/head -> origin/gh/laithsakka/246/head 2025-08-14T21:43:06.0745706Z * [new branch] gh/laithsakka/246/orig -> origin/gh/laithsakka/246/orig 2025-08-14T21:43:06.0746235Z * [new branch] gh/laithsakka/247/base -> origin/gh/laithsakka/247/base 2025-08-14T21:43:06.0746753Z * [new branch] gh/laithsakka/247/head -> origin/gh/laithsakka/247/head 2025-08-14T21:43:06.0747285Z * [new branch] gh/laithsakka/247/orig -> origin/gh/laithsakka/247/orig 2025-08-14T21:43:06.0747805Z * [new branch] gh/laithsakka/248/base -> origin/gh/laithsakka/248/base 2025-08-14T21:43:06.0748316Z * [new branch] gh/laithsakka/248/head -> origin/gh/laithsakka/248/head 2025-08-14T21:43:06.0748831Z * [new branch] gh/laithsakka/248/orig -> origin/gh/laithsakka/248/orig 2025-08-14T21:43:06.0749338Z * [new branch] gh/laithsakka/249/base -> origin/gh/laithsakka/249/base 2025-08-14T21:43:06.0749855Z * [new branch] gh/laithsakka/249/head -> origin/gh/laithsakka/249/head 2025-08-14T21:43:06.0750412Z * [new branch] gh/laithsakka/249/orig -> origin/gh/laithsakka/249/orig 2025-08-14T21:43:06.0750979Z * [new branch] gh/laithsakka/250/base -> origin/gh/laithsakka/250/base 2025-08-14T21:43:06.0751493Z * [new branch] gh/laithsakka/250/head -> origin/gh/laithsakka/250/head 2025-08-14T21:43:06.0752131Z * [new branch] gh/laithsakka/250/orig -> origin/gh/laithsakka/250/orig 2025-08-14T21:43:06.0752654Z * [new branch] gh/laithsakka/251/base -> origin/gh/laithsakka/251/base 2025-08-14T21:43:06.0753167Z * [new branch] gh/laithsakka/251/head -> origin/gh/laithsakka/251/head 2025-08-14T21:43:06.0753688Z * [new branch] gh/laithsakka/251/orig -> origin/gh/laithsakka/251/orig 2025-08-14T21:43:06.0754211Z * [new branch] gh/laithsakka/252/base -> origin/gh/laithsakka/252/base 2025-08-14T21:43:06.0754728Z * [new branch] gh/laithsakka/252/head -> origin/gh/laithsakka/252/head 2025-08-14T21:43:06.0755245Z * [new branch] gh/laithsakka/252/orig -> origin/gh/laithsakka/252/orig 2025-08-14T21:43:06.0755748Z * [new branch] gh/laithsakka/253/base -> origin/gh/laithsakka/253/base 2025-08-14T21:43:06.0756315Z * [new branch] gh/laithsakka/253/head -> origin/gh/laithsakka/253/head 2025-08-14T21:43:06.0756893Z * [new branch] gh/laithsakka/253/orig -> origin/gh/laithsakka/253/orig 2025-08-14T21:43:06.0757494Z * [new branch] gh/laithsakka/254/base -> origin/gh/laithsakka/254/base 2025-08-14T21:43:06.0758017Z * [new branch] gh/laithsakka/254/head -> origin/gh/laithsakka/254/head 2025-08-14T21:43:06.0758530Z * [new branch] gh/laithsakka/254/orig -> origin/gh/laithsakka/254/orig 2025-08-14T21:43:06.0759053Z * [new branch] gh/laithsakka/255/base -> origin/gh/laithsakka/255/base 2025-08-14T21:43:06.0759568Z * [new branch] gh/laithsakka/255/head -> origin/gh/laithsakka/255/head 2025-08-14T21:43:06.0760076Z * [new branch] gh/laithsakka/255/orig -> origin/gh/laithsakka/255/orig 2025-08-14T21:43:06.0760605Z * [new branch] gh/laithsakka/256/base -> origin/gh/laithsakka/256/base 2025-08-14T21:43:06.0761116Z * [new branch] gh/laithsakka/256/head -> origin/gh/laithsakka/256/head 2025-08-14T21:43:06.0761686Z * [new branch] gh/laithsakka/256/orig -> origin/gh/laithsakka/256/orig 2025-08-14T21:43:06.0762250Z * [new branch] gh/laithsakka/257/base -> origin/gh/laithsakka/257/base 2025-08-14T21:43:06.0762768Z * [new branch] gh/laithsakka/257/head -> origin/gh/laithsakka/257/head 2025-08-14T21:43:06.0763283Z * [new branch] gh/laithsakka/257/orig -> origin/gh/laithsakka/257/orig 2025-08-14T21:43:06.0763914Z * [new branch] gh/laithsakka/258/base -> origin/gh/laithsakka/258/base 2025-08-14T21:43:06.0764447Z * [new branch] gh/laithsakka/258/head -> origin/gh/laithsakka/258/head 2025-08-14T21:43:06.0764964Z * [new branch] gh/laithsakka/258/orig -> origin/gh/laithsakka/258/orig 2025-08-14T21:43:06.0765486Z * [new branch] gh/laithsakka/259/base -> origin/gh/laithsakka/259/base 2025-08-14T21:43:06.0766016Z * [new branch] gh/laithsakka/259/head -> origin/gh/laithsakka/259/head 2025-08-14T21:43:06.0766526Z * [new branch] gh/laithsakka/259/orig -> origin/gh/laithsakka/259/orig 2025-08-14T21:43:06.0767040Z * [new branch] gh/laithsakka/260/base -> origin/gh/laithsakka/260/base 2025-08-14T21:43:06.0767597Z * [new branch] gh/laithsakka/260/head -> origin/gh/laithsakka/260/head 2025-08-14T21:43:06.0768167Z * [new branch] gh/laithsakka/260/orig -> origin/gh/laithsakka/260/orig 2025-08-14T21:43:06.0768683Z * [new branch] gh/laithsakka/261/base -> origin/gh/laithsakka/261/base 2025-08-14T21:43:06.1209356Z * [new branch] gh/laithsakka/261/head -> origin/gh/laithsakka/261/head 2025-08-14T21:43:06.1209953Z * [new branch] gh/laithsakka/261/orig -> origin/gh/laithsakka/261/orig 2025-08-14T21:43:06.1210539Z * [new branch] gh/laithsakka/262/base -> origin/gh/laithsakka/262/base 2025-08-14T21:43:06.1211333Z * [new branch] gh/laithsakka/262/head -> origin/gh/laithsakka/262/head 2025-08-14T21:43:06.1211866Z * [new branch] gh/laithsakka/262/orig -> origin/gh/laithsakka/262/orig 2025-08-14T21:43:06.1212395Z * [new branch] gh/laithsakka/28/base -> origin/gh/laithsakka/28/base 2025-08-14T21:43:06.1212903Z * [new branch] gh/laithsakka/29/base -> origin/gh/laithsakka/29/base 2025-08-14T21:43:06.1213426Z * [new branch] gh/laithsakka/30/base -> origin/gh/laithsakka/30/base 2025-08-14T21:43:06.1213926Z * [new branch] gh/laithsakka/30/head -> origin/gh/laithsakka/30/head 2025-08-14T21:43:06.1214429Z * [new branch] gh/laithsakka/31/base -> origin/gh/laithsakka/31/base 2025-08-14T21:43:06.1214934Z * [new branch] gh/laithsakka/31/head -> origin/gh/laithsakka/31/head 2025-08-14T21:43:06.1215436Z * [new branch] gh/laithsakka/32/base -> origin/gh/laithsakka/32/base 2025-08-14T21:43:06.1215996Z * [new branch] gh/laithsakka/32/head -> origin/gh/laithsakka/32/head 2025-08-14T21:43:06.1216555Z * [new branch] gh/lucaskabela/1/base -> origin/gh/lucaskabela/1/base 2025-08-14T21:43:06.1217096Z * [new branch] gh/lucaskabela/1/head -> origin/gh/lucaskabela/1/head 2025-08-14T21:43:06.1217621Z * [new branch] gh/lucaskabela/10/base -> origin/gh/lucaskabela/10/base 2025-08-14T21:43:06.1218135Z * [new branch] gh/lucaskabela/10/head -> origin/gh/lucaskabela/10/head 2025-08-14T21:43:06.1218652Z * [new branch] gh/lucaskabela/10/orig -> origin/gh/lucaskabela/10/orig 2025-08-14T21:43:06.1219165Z * [new branch] gh/lucaskabela/11/base -> origin/gh/lucaskabela/11/base 2025-08-14T21:43:06.1219690Z * [new branch] gh/lucaskabela/11/head -> origin/gh/lucaskabela/11/head 2025-08-14T21:43:06.1220225Z * [new branch] gh/lucaskabela/11/orig -> origin/gh/lucaskabela/11/orig 2025-08-14T21:43:06.1220736Z * [new branch] gh/lucaskabela/12/base -> origin/gh/lucaskabela/12/base 2025-08-14T21:43:06.1221257Z * [new branch] gh/lucaskabela/12/head -> origin/gh/lucaskabela/12/head 2025-08-14T21:43:06.1221827Z * [new branch] gh/lucaskabela/12/orig -> origin/gh/lucaskabela/12/orig 2025-08-14T21:43:06.1222529Z * [new branch] gh/lucaskabela/13/base -> origin/gh/lucaskabela/13/base 2025-08-14T21:43:06.1223051Z * [new branch] gh/lucaskabela/13/head -> origin/gh/lucaskabela/13/head 2025-08-14T21:43:06.1223564Z * [new branch] gh/lucaskabela/13/orig -> origin/gh/lucaskabela/13/orig 2025-08-14T21:43:06.1224083Z * [new branch] gh/lucaskabela/14/base -> origin/gh/lucaskabela/14/base 2025-08-14T21:43:06.1224602Z * [new branch] gh/lucaskabela/14/head -> origin/gh/lucaskabela/14/head 2025-08-14T21:43:06.1225123Z * [new branch] gh/lucaskabela/14/orig -> origin/gh/lucaskabela/14/orig 2025-08-14T21:43:06.1225633Z * [new branch] gh/lucaskabela/15/base -> origin/gh/lucaskabela/15/base 2025-08-14T21:43:06.1226155Z * [new branch] gh/lucaskabela/15/head -> origin/gh/lucaskabela/15/head 2025-08-14T21:43:06.1226672Z * [new branch] gh/lucaskabela/15/orig -> origin/gh/lucaskabela/15/orig 2025-08-14T21:43:06.1227181Z * [new branch] gh/lucaskabela/16/base -> origin/gh/lucaskabela/16/base 2025-08-14T21:43:06.1227762Z * [new branch] gh/lucaskabela/16/head -> origin/gh/lucaskabela/16/head 2025-08-14T21:43:06.1228333Z * [new branch] gh/lucaskabela/16/orig -> origin/gh/lucaskabela/16/orig 2025-08-14T21:43:06.1228860Z * [new branch] gh/lucaskabela/17/base -> origin/gh/lucaskabela/17/base 2025-08-14T21:43:06.1229491Z * [new branch] gh/lucaskabela/17/head -> origin/gh/lucaskabela/17/head 2025-08-14T21:43:06.1230001Z * [new branch] gh/lucaskabela/17/orig -> origin/gh/lucaskabela/17/orig 2025-08-14T21:43:06.1230523Z * [new branch] gh/lucaskabela/2/base -> origin/gh/lucaskabela/2/base 2025-08-14T21:43:06.1231034Z * [new branch] gh/lucaskabela/2/head -> origin/gh/lucaskabela/2/head 2025-08-14T21:43:06.1231566Z * [new branch] gh/lucaskabela/2/orig -> origin/gh/lucaskabela/2/orig 2025-08-14T21:43:06.1232085Z * [new branch] gh/lucaskabela/3/base -> origin/gh/lucaskabela/3/base 2025-08-14T21:43:06.1232591Z * [new branch] gh/lucaskabela/3/head -> origin/gh/lucaskabela/3/head 2025-08-14T21:43:06.1233166Z * [new branch] gh/lucaskabela/3/orig -> origin/gh/lucaskabela/3/orig 2025-08-14T21:43:06.1691412Z * [new branch] gh/lucaskabela/4/base -> origin/gh/lucaskabela/4/base 2025-08-14T21:43:06.1692003Z * [new branch] gh/lucaskabela/4/head -> origin/gh/lucaskabela/4/head 2025-08-14T21:43:06.1692532Z * [new branch] gh/lucaskabela/4/orig -> origin/gh/lucaskabela/4/orig 2025-08-14T21:43:06.1693052Z * [new branch] gh/lucaskabela/5/base -> origin/gh/lucaskabela/5/base 2025-08-14T21:43:06.1693567Z * [new branch] gh/lucaskabela/5/head -> origin/gh/lucaskabela/5/head 2025-08-14T21:43:06.1694103Z * [new branch] gh/lucaskabela/5/orig -> origin/gh/lucaskabela/5/orig 2025-08-14T21:43:06.1694610Z * [new branch] gh/lucaskabela/6/base -> origin/gh/lucaskabela/6/base 2025-08-14T21:43:06.1695116Z * [new branch] gh/lucaskabela/6/head -> origin/gh/lucaskabela/6/head 2025-08-14T21:43:06.1695622Z * [new branch] gh/lucaskabela/6/orig -> origin/gh/lucaskabela/6/orig 2025-08-14T21:43:06.1696152Z * [new branch] gh/lucaskabela/7/base -> origin/gh/lucaskabela/7/base 2025-08-14T21:43:06.1696699Z * [new branch] gh/lucaskabela/7/head -> origin/gh/lucaskabela/7/head 2025-08-14T21:43:06.1697260Z * [new branch] gh/lucaskabela/7/orig -> origin/gh/lucaskabela/7/orig 2025-08-14T21:43:06.1697777Z * [new branch] gh/lucaskabela/8/base -> origin/gh/lucaskabela/8/base 2025-08-14T21:43:06.1698465Z * [new branch] gh/lucaskabela/8/head -> origin/gh/lucaskabela/8/head 2025-08-14T21:43:06.1698985Z * [new branch] gh/lucaskabela/8/orig -> origin/gh/lucaskabela/8/orig 2025-08-14T21:43:06.1699487Z * [new branch] gh/lucaskabela/9/base -> origin/gh/lucaskabela/9/base 2025-08-14T21:43:06.1700004Z * [new branch] gh/lucaskabela/9/head -> origin/gh/lucaskabela/9/head 2025-08-14T21:43:06.1700522Z * [new branch] gh/lucaskabela/9/orig -> origin/gh/lucaskabela/9/orig 2025-08-14T21:43:06.1700996Z * [new branch] gh/lw/1/base -> origin/gh/lw/1/base 2025-08-14T21:43:06.1701432Z * [new branch] gh/lw/1/head -> origin/gh/lw/1/head 2025-08-14T21:43:06.1701854Z * [new branch] gh/lw/1/orig -> origin/gh/lw/1/orig 2025-08-14T21:43:06.1702286Z * [new branch] gh/lw/2/base -> origin/gh/lw/2/base 2025-08-14T21:43:06.1702764Z * [new branch] gh/lw/2/head -> origin/gh/lw/2/head 2025-08-14T21:43:06.1703243Z * [new branch] gh/lw/2/orig -> origin/gh/lw/2/orig 2025-08-14T21:43:06.1703670Z * [new branch] gh/lw/3/base -> origin/gh/lw/3/base 2025-08-14T21:43:06.1704089Z * [new branch] gh/lw/3/head -> origin/gh/lw/3/head 2025-08-14T21:43:06.1704520Z * [new branch] gh/lw/3/orig -> origin/gh/lw/3/orig 2025-08-14T21:43:06.1705098Z * [new branch] gh/malfet/14/base -> origin/gh/malfet/14/base 2025-08-14T21:43:06.1705599Z * [new branch] gh/malfet/330/base -> origin/gh/malfet/330/base 2025-08-14T21:43:06.1706090Z * [new branch] gh/malfet/330/head -> origin/gh/malfet/330/head 2025-08-14T21:43:06.1706559Z * [new branch] gh/malfet/330/orig -> origin/gh/malfet/330/orig 2025-08-14T21:43:06.1707041Z * [new branch] gh/malfet/396/base -> origin/gh/malfet/396/base 2025-08-14T21:43:06.1707512Z * [new branch] gh/malfet/396/head -> origin/gh/malfet/396/head 2025-08-14T21:43:06.1707991Z * [new branch] gh/malfet/396/orig -> origin/gh/malfet/396/orig 2025-08-14T21:43:06.1708514Z * [new branch] gh/malfet/397/base -> origin/gh/malfet/397/base 2025-08-14T21:43:06.1709028Z * [new branch] gh/malfet/397/head -> origin/gh/malfet/397/head 2025-08-14T21:43:06.1709515Z * [new branch] gh/malfet/397/orig -> origin/gh/malfet/397/orig 2025-08-14T21:43:06.1709984Z * [new branch] gh/malfet/398/base -> origin/gh/malfet/398/base 2025-08-14T21:43:06.1710460Z * [new branch] gh/malfet/398/head -> origin/gh/malfet/398/head 2025-08-14T21:43:06.1710939Z * [new branch] gh/malfet/398/orig -> origin/gh/malfet/398/orig 2025-08-14T21:43:06.1711414Z * [new branch] gh/malfet/399/base -> origin/gh/malfet/399/base 2025-08-14T21:43:06.1711889Z * [new branch] gh/malfet/399/head -> origin/gh/malfet/399/head 2025-08-14T21:43:06.1712363Z * [new branch] gh/malfet/399/orig -> origin/gh/malfet/399/orig 2025-08-14T21:43:06.1712835Z * [new branch] gh/malfet/414/base -> origin/gh/malfet/414/base 2025-08-14T21:43:06.1713306Z * [new branch] gh/malfet/414/head -> origin/gh/malfet/414/head 2025-08-14T21:43:06.1713786Z * [new branch] gh/malfet/414/orig -> origin/gh/malfet/414/orig 2025-08-14T21:43:06.1714313Z * [new branch] gh/malfet/417/base -> origin/gh/malfet/417/base 2025-08-14T21:43:06.1714827Z * [new branch] gh/malfet/417/head -> origin/gh/malfet/417/head 2025-08-14T21:43:06.2127419Z * [new branch] gh/malfet/417/orig -> origin/gh/malfet/417/orig 2025-08-14T21:43:06.2128177Z * [new branch] gh/malfet/418/base -> origin/gh/malfet/418/base 2025-08-14T21:43:06.2128676Z * [new branch] gh/malfet/418/head -> origin/gh/malfet/418/head 2025-08-14T21:43:06.2129180Z * [new branch] gh/malfet/418/orig -> origin/gh/malfet/418/orig 2025-08-14T21:43:06.2129658Z * [new branch] gh/malfet/422/base -> origin/gh/malfet/422/base 2025-08-14T21:43:06.2130146Z * [new branch] gh/malfet/422/head -> origin/gh/malfet/422/head 2025-08-14T21:43:06.2130616Z * [new branch] gh/malfet/422/orig -> origin/gh/malfet/422/orig 2025-08-14T21:43:06.2131100Z * [new branch] gh/malfet/438/base -> origin/gh/malfet/438/base 2025-08-14T21:43:06.2131576Z * [new branch] gh/malfet/438/head -> origin/gh/malfet/438/head 2025-08-14T21:43:06.2132042Z * [new branch] gh/malfet/438/orig -> origin/gh/malfet/438/orig 2025-08-14T21:43:06.2132530Z * [new branch] gh/malfet/439/base -> origin/gh/malfet/439/base 2025-08-14T21:43:06.2133023Z * [new branch] gh/malfet/439/head -> origin/gh/malfet/439/head 2025-08-14T21:43:06.2133562Z * [new branch] gh/malfet/439/orig -> origin/gh/malfet/439/orig 2025-08-14T21:43:06.2134095Z * [new branch] gh/malfet/440/base -> origin/gh/malfet/440/base 2025-08-14T21:43:06.2134708Z * [new branch] gh/malfet/440/head -> origin/gh/malfet/440/head 2025-08-14T21:43:06.2135193Z * [new branch] gh/malfet/440/orig -> origin/gh/malfet/440/orig 2025-08-14T21:43:06.2135658Z * [new branch] gh/malfet/441/base -> origin/gh/malfet/441/base 2025-08-14T21:43:06.2136134Z * [new branch] gh/malfet/441/head -> origin/gh/malfet/441/head 2025-08-14T21:43:06.2136608Z * [new branch] gh/malfet/441/orig -> origin/gh/malfet/441/orig 2025-08-14T21:43:06.2137087Z * [new branch] gh/malfet/442/base -> origin/gh/malfet/442/base 2025-08-14T21:43:06.2137561Z * [new branch] gh/malfet/442/head -> origin/gh/malfet/442/head 2025-08-14T21:43:06.2138032Z * [new branch] gh/malfet/442/orig -> origin/gh/malfet/442/orig 2025-08-14T21:43:06.2138507Z * [new branch] gh/malfet/443/base -> origin/gh/malfet/443/base 2025-08-14T21:43:06.2138990Z * [new branch] gh/malfet/443/head -> origin/gh/malfet/443/head 2025-08-14T21:43:06.2139452Z * [new branch] gh/malfet/443/orig -> origin/gh/malfet/443/orig 2025-08-14T21:43:06.2139935Z * [new branch] gh/malfet/444/base -> origin/gh/malfet/444/base 2025-08-14T21:43:06.2140401Z * [new branch] gh/malfet/444/head -> origin/gh/malfet/444/head 2025-08-14T21:43:06.2140881Z * [new branch] gh/malfet/444/orig -> origin/gh/malfet/444/orig 2025-08-14T21:43:06.2141354Z * [new branch] gh/malfet/445/base -> origin/gh/malfet/445/base 2025-08-14T21:43:06.2141824Z * [new branch] gh/malfet/445/head -> origin/gh/malfet/445/head 2025-08-14T21:43:06.2142298Z * [new branch] gh/malfet/445/orig -> origin/gh/malfet/445/orig 2025-08-14T21:43:06.2142765Z * [new branch] gh/malfet/446/base -> origin/gh/malfet/446/base 2025-08-14T21:43:06.2143241Z * [new branch] gh/malfet/446/head -> origin/gh/malfet/446/head 2025-08-14T21:43:06.2143720Z * [new branch] gh/malfet/446/orig -> origin/gh/malfet/446/orig 2025-08-14T21:43:06.2144190Z * [new branch] gh/malfet/447/base -> origin/gh/malfet/447/base 2025-08-14T21:43:06.2144666Z * [new branch] gh/malfet/447/head -> origin/gh/malfet/447/head 2025-08-14T21:43:06.2145238Z * [new branch] gh/malfet/448/base -> origin/gh/malfet/448/base 2025-08-14T21:43:06.2145722Z * [new branch] gh/malfet/448/head -> origin/gh/malfet/448/head 2025-08-14T21:43:06.2146193Z * [new branch] gh/malfet/449/base -> origin/gh/malfet/449/base 2025-08-14T21:43:06.2146678Z * [new branch] gh/malfet/449/head -> origin/gh/malfet/449/head 2025-08-14T21:43:06.2147170Z * [new branch] gh/malfet/450/base -> origin/gh/malfet/450/base 2025-08-14T21:43:06.2147640Z * [new branch] gh/malfet/450/head -> origin/gh/malfet/450/head 2025-08-14T21:43:06.2148121Z * [new branch] gh/malfet/451/base -> origin/gh/malfet/451/base 2025-08-14T21:43:06.2148590Z * [new branch] gh/malfet/451/head -> origin/gh/malfet/451/head 2025-08-14T21:43:06.2149071Z * [new branch] gh/malfet/452/base -> origin/gh/malfet/452/base 2025-08-14T21:43:06.2149549Z * [new branch] gh/malfet/452/head -> origin/gh/malfet/452/head 2025-08-14T21:43:06.2150022Z * [new branch] gh/malfet/452/orig -> origin/gh/malfet/452/orig 2025-08-14T21:43:06.2150493Z * [new branch] gh/malfet/453/base -> origin/gh/malfet/453/base 2025-08-14T21:43:06.2556197Z * [new branch] gh/malfet/453/head -> origin/gh/malfet/453/head 2025-08-14T21:43:06.2557014Z * [new branch] gh/malfet/453/orig -> origin/gh/malfet/453/orig 2025-08-14T21:43:06.2557504Z * [new branch] gh/malfet/454/base -> origin/gh/malfet/454/base 2025-08-14T21:43:06.2557978Z * [new branch] gh/malfet/454/head -> origin/gh/malfet/454/head 2025-08-14T21:43:06.2558457Z * [new branch] gh/malfet/454/orig -> origin/gh/malfet/454/orig 2025-08-14T21:43:06.2558926Z * [new branch] gh/malfet/455/base -> origin/gh/malfet/455/base 2025-08-14T21:43:06.2559419Z * [new branch] gh/malfet/455/head -> origin/gh/malfet/455/head 2025-08-14T21:43:06.2559894Z * [new branch] gh/malfet/455/orig -> origin/gh/malfet/455/orig 2025-08-14T21:43:06.2560367Z * [new branch] gh/malfet/456/base -> origin/gh/malfet/456/base 2025-08-14T21:43:06.2560835Z * [new branch] gh/malfet/456/head -> origin/gh/malfet/456/head 2025-08-14T21:43:06.2561312Z * [new branch] gh/malfet/456/orig -> origin/gh/malfet/456/orig 2025-08-14T21:43:06.2561791Z * [new branch] gh/malfet/457/base -> origin/gh/malfet/457/base 2025-08-14T21:43:06.2562275Z * [new branch] gh/malfet/457/head -> origin/gh/malfet/457/head 2025-08-14T21:43:06.2562740Z * [new branch] gh/malfet/457/orig -> origin/gh/malfet/457/orig 2025-08-14T21:43:06.2563213Z * [new branch] gh/malfet/458/base -> origin/gh/malfet/458/base 2025-08-14T21:43:06.2563679Z * [new branch] gh/malfet/458/head -> origin/gh/malfet/458/head 2025-08-14T21:43:06.2564156Z * [new branch] gh/malfet/458/orig -> origin/gh/malfet/458/orig 2025-08-14T21:43:06.2564625Z * [new branch] gh/malfet/459/base -> origin/gh/malfet/459/base 2025-08-14T21:43:06.2565088Z * [new branch] gh/malfet/459/head -> origin/gh/malfet/459/head 2025-08-14T21:43:06.2565572Z * [new branch] gh/malfet/459/orig -> origin/gh/malfet/459/orig 2025-08-14T21:43:06.2566039Z * [new branch] gh/malfet/460/base -> origin/gh/malfet/460/base 2025-08-14T21:43:06.2566519Z * [new branch] gh/malfet/460/head -> origin/gh/malfet/460/head 2025-08-14T21:43:06.2566992Z * [new branch] gh/malfet/460/orig -> origin/gh/malfet/460/orig 2025-08-14T21:43:06.2567463Z * [new branch] gh/malfet/461/base -> origin/gh/malfet/461/base 2025-08-14T21:43:06.2568067Z * [new branch] gh/malfet/461/head -> origin/gh/malfet/461/head 2025-08-14T21:43:06.2568551Z * [new branch] gh/malfet/461/orig -> origin/gh/malfet/461/orig 2025-08-14T21:43:06.2569031Z * [new branch] gh/malfet/462/base -> origin/gh/malfet/462/base 2025-08-14T21:43:06.2569502Z * [new branch] gh/malfet/462/head -> origin/gh/malfet/462/head 2025-08-14T21:43:06.2569990Z * [new branch] gh/malfet/462/orig -> origin/gh/malfet/462/orig 2025-08-14T21:43:06.2570486Z * [new branch] gh/malfet/463/base -> origin/gh/malfet/463/base 2025-08-14T21:43:06.2570957Z * [new branch] gh/malfet/463/head -> origin/gh/malfet/463/head 2025-08-14T21:43:06.2571439Z * [new branch] gh/malfet/463/orig -> origin/gh/malfet/463/orig 2025-08-14T21:43:06.2571910Z * [new branch] gh/malfet/464/base -> origin/gh/malfet/464/base 2025-08-14T21:43:06.2572381Z * [new branch] gh/malfet/464/head -> origin/gh/malfet/464/head 2025-08-14T21:43:06.2572858Z * [new branch] gh/malfet/464/orig -> origin/gh/malfet/464/orig 2025-08-14T21:43:06.2573323Z * [new branch] gh/malfet/465/base -> origin/gh/malfet/465/base 2025-08-14T21:43:06.2573798Z * [new branch] gh/malfet/465/head -> origin/gh/malfet/465/head 2025-08-14T21:43:06.2574378Z * [new branch] gh/malfet/465/orig -> origin/gh/malfet/465/orig 2025-08-14T21:43:06.2574863Z * [new branch] gh/malfet/466/base -> origin/gh/malfet/466/base 2025-08-14T21:43:06.2575340Z * [new branch] gh/malfet/466/head -> origin/gh/malfet/466/head 2025-08-14T21:43:06.2575818Z * [new branch] gh/malfet/466/orig -> origin/gh/malfet/466/orig 2025-08-14T21:43:06.2576301Z * [new branch] gh/malfet/467/base -> origin/gh/malfet/467/base 2025-08-14T21:43:06.2576773Z * [new branch] gh/malfet/467/head -> origin/gh/malfet/467/head 2025-08-14T21:43:06.2577248Z * [new branch] gh/malfet/467/orig -> origin/gh/malfet/467/orig 2025-08-14T21:43:06.2577714Z * [new branch] gh/malfet/468/base -> origin/gh/malfet/468/base 2025-08-14T21:43:06.2578192Z * [new branch] gh/malfet/468/head -> origin/gh/malfet/468/head 2025-08-14T21:43:06.2578677Z * [new branch] gh/malfet/468/orig -> origin/gh/malfet/468/orig 2025-08-14T21:43:06.3010908Z * [new branch] gh/malfet/469/base -> origin/gh/malfet/469/base 2025-08-14T21:43:06.3011463Z * [new branch] gh/malfet/469/head -> origin/gh/malfet/469/head 2025-08-14T21:43:06.3011953Z * [new branch] gh/malfet/469/orig -> origin/gh/malfet/469/orig 2025-08-14T21:43:06.3012463Z * [new branch] gh/malfet/470/base -> origin/gh/malfet/470/base 2025-08-14T21:43:06.3012941Z * [new branch] gh/malfet/470/head -> origin/gh/malfet/470/head 2025-08-14T21:43:06.3013414Z * [new branch] gh/malfet/470/orig -> origin/gh/malfet/470/orig 2025-08-14T21:43:06.3013891Z * [new branch] gh/malfet/471/base -> origin/gh/malfet/471/base 2025-08-14T21:43:06.3014379Z * [new branch] gh/malfet/471/head -> origin/gh/malfet/471/head 2025-08-14T21:43:06.3014857Z * [new branch] gh/malfet/471/orig -> origin/gh/malfet/471/orig 2025-08-14T21:43:06.3015331Z * [new branch] gh/malfet/472/base -> origin/gh/malfet/472/base 2025-08-14T21:43:06.3015800Z * [new branch] gh/malfet/472/head -> origin/gh/malfet/472/head 2025-08-14T21:43:06.3016291Z * [new branch] gh/malfet/472/orig -> origin/gh/malfet/472/orig 2025-08-14T21:43:06.3016942Z * [new branch] gh/malfet/473/base -> origin/gh/malfet/473/base 2025-08-14T21:43:06.3017431Z * [new branch] gh/malfet/473/head -> origin/gh/malfet/473/head 2025-08-14T21:43:06.3017912Z * [new branch] gh/malfet/473/orig -> origin/gh/malfet/473/orig 2025-08-14T21:43:06.3018390Z * [new branch] gh/malfet/474/base -> origin/gh/malfet/474/base 2025-08-14T21:43:06.3018875Z * [new branch] gh/malfet/474/head -> origin/gh/malfet/474/head 2025-08-14T21:43:06.3019341Z * [new branch] gh/malfet/474/orig -> origin/gh/malfet/474/orig 2025-08-14T21:43:06.3019831Z * [new branch] gh/malfet/475/base -> origin/gh/malfet/475/base 2025-08-14T21:43:06.3020306Z * [new branch] gh/malfet/475/head -> origin/gh/malfet/475/head 2025-08-14T21:43:06.3020769Z * [new branch] gh/malfet/475/orig -> origin/gh/malfet/475/orig 2025-08-14T21:43:06.3021249Z * [new branch] gh/malfet/476/base -> origin/gh/malfet/476/base 2025-08-14T21:43:06.3021714Z * [new branch] gh/malfet/476/head -> origin/gh/malfet/476/head 2025-08-14T21:43:06.3022196Z * [new branch] gh/malfet/476/orig -> origin/gh/malfet/476/orig 2025-08-14T21:43:06.3022669Z * [new branch] gh/malfet/477/base -> origin/gh/malfet/477/base 2025-08-14T21:43:06.3023251Z * [new branch] gh/malfet/477/head -> origin/gh/malfet/477/head 2025-08-14T21:43:06.3023750Z * [new branch] gh/malfet/477/orig -> origin/gh/malfet/477/orig 2025-08-14T21:43:06.3024222Z * [new branch] gh/malfet/478/base -> origin/gh/malfet/478/base 2025-08-14T21:43:06.3024706Z * [new branch] gh/malfet/478/head -> origin/gh/malfet/478/head 2025-08-14T21:43:06.3025190Z * [new branch] gh/malfet/478/orig -> origin/gh/malfet/478/orig 2025-08-14T21:43:06.3025664Z * [new branch] gh/malfet/479/base -> origin/gh/malfet/479/base 2025-08-14T21:43:06.3026146Z * [new branch] gh/malfet/479/head -> origin/gh/malfet/479/head 2025-08-14T21:43:06.3026610Z * [new branch] gh/malfet/479/orig -> origin/gh/malfet/479/orig 2025-08-14T21:43:06.3027086Z * [new branch] gh/malfet/480/base -> origin/gh/malfet/480/base 2025-08-14T21:43:06.3027560Z * [new branch] gh/malfet/480/head -> origin/gh/malfet/480/head 2025-08-14T21:43:06.3028032Z * [new branch] gh/malfet/480/orig -> origin/gh/malfet/480/orig 2025-08-14T21:43:06.3028512Z * [new branch] gh/malfet/481/base -> origin/gh/malfet/481/base 2025-08-14T21:43:06.3028982Z * [new branch] gh/malfet/481/head -> origin/gh/malfet/481/head 2025-08-14T21:43:06.3029458Z * [new branch] gh/malfet/481/orig -> origin/gh/malfet/481/orig 2025-08-14T21:43:06.3029924Z * [new branch] gh/malfet/482/base -> origin/gh/malfet/482/base 2025-08-14T21:43:06.3030394Z * [new branch] gh/malfet/482/head -> origin/gh/malfet/482/head 2025-08-14T21:43:06.3030863Z * [new branch] gh/malfet/482/orig -> origin/gh/malfet/482/orig 2025-08-14T21:43:06.3031342Z * [new branch] gh/malfet/483/base -> origin/gh/malfet/483/base 2025-08-14T21:43:06.3031823Z * [new branch] gh/malfet/483/head -> origin/gh/malfet/483/head 2025-08-14T21:43:06.3032290Z * [new branch] gh/malfet/483/orig -> origin/gh/malfet/483/orig 2025-08-14T21:43:06.3032764Z * [new branch] gh/malfet/484/base -> origin/gh/malfet/484/base 2025-08-14T21:43:06.3033243Z * [new branch] gh/malfet/484/head -> origin/gh/malfet/484/head 2025-08-14T21:43:06.3033807Z * [new branch] gh/malfet/484/orig -> origin/gh/malfet/484/orig 2025-08-14T21:43:06.3470609Z * [new branch] gh/malfet/485/base -> origin/gh/malfet/485/base 2025-08-14T21:43:06.3471140Z * [new branch] gh/malfet/485/head -> origin/gh/malfet/485/head 2025-08-14T21:43:06.3471640Z * [new branch] gh/malfet/485/orig -> origin/gh/malfet/485/orig 2025-08-14T21:43:06.3472147Z * [new branch] gh/malfet/486/base -> origin/gh/malfet/486/base 2025-08-14T21:43:06.3472642Z * [new branch] gh/malfet/486/head -> origin/gh/malfet/486/head 2025-08-14T21:43:06.3473130Z * [new branch] gh/malfet/486/orig -> origin/gh/malfet/486/orig 2025-08-14T21:43:06.3473602Z * [new branch] gh/malfet/487/base -> origin/gh/malfet/487/base 2025-08-14T21:43:06.3474075Z * [new branch] gh/malfet/487/head -> origin/gh/malfet/487/head 2025-08-14T21:43:06.3474566Z * [new branch] gh/malfet/487/orig -> origin/gh/malfet/487/orig 2025-08-14T21:43:06.3475028Z * [new branch] gh/malfet/488/base -> origin/gh/malfet/488/base 2025-08-14T21:43:06.3475514Z * [new branch] gh/malfet/488/head -> origin/gh/malfet/488/head 2025-08-14T21:43:06.3475977Z * [new branch] gh/malfet/488/orig -> origin/gh/malfet/488/orig 2025-08-14T21:43:06.3476644Z * [new branch] gh/malfet/489/base -> origin/gh/malfet/489/base 2025-08-14T21:43:06.3477165Z * [new branch] gh/malfet/489/head -> origin/gh/malfet/489/head 2025-08-14T21:43:06.3477636Z * [new branch] gh/malfet/489/orig -> origin/gh/malfet/489/orig 2025-08-14T21:43:06.3478119Z * [new branch] gh/malfet/490/base -> origin/gh/malfet/490/base 2025-08-14T21:43:06.3478597Z * [new branch] gh/malfet/490/head -> origin/gh/malfet/490/head 2025-08-14T21:43:06.3479076Z * [new branch] gh/malfet/490/orig -> origin/gh/malfet/490/orig 2025-08-14T21:43:06.3479560Z * [new branch] gh/malfet/64/base -> origin/gh/malfet/64/base 2025-08-14T21:43:06.3480025Z * [new branch] gh/malfet/64/head -> origin/gh/malfet/64/head 2025-08-14T21:43:06.3480545Z * [new branch] gh/manuelcandales/10/base -> origin/gh/manuelcandales/10/base 2025-08-14T21:43:06.3481102Z * [new branch] gh/manuelcandales/10/head -> origin/gh/manuelcandales/10/head 2025-08-14T21:43:06.3481659Z * [new branch] gh/manuelcandales/10/orig -> origin/gh/manuelcandales/10/orig 2025-08-14T21:43:06.3482219Z * [new branch] gh/manuelcandales/9/base -> origin/gh/manuelcandales/9/base 2025-08-14T21:43:06.3482767Z * [new branch] gh/manuelcandales/9/head -> origin/gh/manuelcandales/9/head 2025-08-14T21:43:06.3483322Z * [new branch] gh/manuelcandales/9/orig -> origin/gh/manuelcandales/9/orig 2025-08-14T21:43:06.3483823Z * [new branch] gh/markkm/1/base -> origin/gh/markkm/1/base 2025-08-14T21:43:06.3484317Z * [new branch] gh/masnesral/204/base -> origin/gh/masnesral/204/base 2025-08-14T21:43:06.3484816Z * [new branch] gh/masnesral/204/head -> origin/gh/masnesral/204/head 2025-08-14T21:43:06.3485323Z * [new branch] gh/masnesral/204/orig -> origin/gh/masnesral/204/orig 2025-08-14T21:43:06.3485831Z * [new branch] gh/masnesral/223/base -> origin/gh/masnesral/223/base 2025-08-14T21:43:06.3486324Z * [new branch] gh/masnesral/223/head -> origin/gh/masnesral/223/head 2025-08-14T21:43:06.3486827Z * [new branch] gh/masnesral/223/orig -> origin/gh/masnesral/223/orig 2025-08-14T21:43:06.3487328Z * [new branch] gh/masnesral/224/base -> origin/gh/masnesral/224/base 2025-08-14T21:43:06.3488061Z * [new branch] gh/masnesral/224/head -> origin/gh/masnesral/224/head 2025-08-14T21:43:06.3488686Z * [new branch] gh/masnesral/224/orig -> origin/gh/masnesral/224/orig 2025-08-14T21:43:06.3489239Z * [new branch] gh/masnesral/225/base -> origin/gh/masnesral/225/base 2025-08-14T21:43:06.3489742Z * [new branch] gh/masnesral/225/head -> origin/gh/masnesral/225/head 2025-08-14T21:43:06.3490245Z * [new branch] gh/masnesral/225/orig -> origin/gh/masnesral/225/orig 2025-08-14T21:43:06.3490752Z * [new branch] gh/masnesral/226/base -> origin/gh/masnesral/226/base 2025-08-14T21:43:06.3491255Z * [new branch] gh/masnesral/226/head -> origin/gh/masnesral/226/head 2025-08-14T21:43:06.3491753Z * [new branch] gh/masnesral/226/orig -> origin/gh/masnesral/226/orig 2025-08-14T21:43:06.3492256Z * [new branch] gh/masnesral/227/base -> origin/gh/masnesral/227/base 2025-08-14T21:43:06.3492755Z * [new branch] gh/masnesral/227/head -> origin/gh/masnesral/227/head 2025-08-14T21:43:06.3493256Z * [new branch] gh/masnesral/227/orig -> origin/gh/masnesral/227/orig 2025-08-14T21:43:06.3493751Z * [new branch] gh/masnesral/228/base -> origin/gh/masnesral/228/base 2025-08-14T21:43:06.3494258Z * [new branch] gh/masnesral/228/head -> origin/gh/masnesral/228/head 2025-08-14T21:43:06.3924045Z * [new branch] gh/masnesral/228/orig -> origin/gh/masnesral/228/orig 2025-08-14T21:43:06.3924604Z * [new branch] gh/masnesral/229/base -> origin/gh/masnesral/229/base 2025-08-14T21:43:06.3925125Z * [new branch] gh/masnesral/229/head -> origin/gh/masnesral/229/head 2025-08-14T21:43:06.3925631Z * [new branch] gh/masnesral/229/orig -> origin/gh/masnesral/229/orig 2025-08-14T21:43:06.3926186Z * [new branch] gh/masnesral/230/base -> origin/gh/masnesral/230/base 2025-08-14T21:43:06.3926691Z * [new branch] gh/masnesral/230/head -> origin/gh/masnesral/230/head 2025-08-14T21:43:06.3927197Z * [new branch] gh/masnesral/230/orig -> origin/gh/masnesral/230/orig 2025-08-14T21:43:06.3927715Z * [new branch] gh/masnesral/231/base -> origin/gh/masnesral/231/base 2025-08-14T21:43:06.3928222Z * [new branch] gh/masnesral/231/head -> origin/gh/masnesral/231/head 2025-08-14T21:43:06.3928733Z * [new branch] gh/masnesral/231/orig -> origin/gh/masnesral/231/orig 2025-08-14T21:43:06.3929240Z * [new branch] gh/masnesral/232/base -> origin/gh/masnesral/232/base 2025-08-14T21:43:06.3929738Z * [new branch] gh/masnesral/232/head -> origin/gh/masnesral/232/head 2025-08-14T21:43:06.3930243Z * [new branch] gh/masnesral/232/orig -> origin/gh/masnesral/232/orig 2025-08-14T21:43:06.3930749Z * [new branch] gh/masnesral/233/base -> origin/gh/masnesral/233/base 2025-08-14T21:43:06.3931241Z * [new branch] gh/masnesral/233/head -> origin/gh/masnesral/233/head 2025-08-14T21:43:06.3931748Z * [new branch] gh/masnesral/233/orig -> origin/gh/masnesral/233/orig 2025-08-14T21:43:06.3932248Z * [new branch] gh/masnesral/234/base -> origin/gh/masnesral/234/base 2025-08-14T21:43:06.3932754Z * [new branch] gh/masnesral/234/head -> origin/gh/masnesral/234/head 2025-08-14T21:43:06.3933254Z * [new branch] gh/masnesral/234/orig -> origin/gh/masnesral/234/orig 2025-08-14T21:43:06.3933745Z * [new branch] gh/masnesral/235/base -> origin/gh/masnesral/235/base 2025-08-14T21:43:06.3934248Z * [new branch] gh/masnesral/235/head -> origin/gh/masnesral/235/head 2025-08-14T21:43:06.3934909Z * [new branch] gh/masnesral/235/orig -> origin/gh/masnesral/235/orig 2025-08-14T21:43:06.3935419Z * [new branch] gh/masnesral/236/base -> origin/gh/masnesral/236/base 2025-08-14T21:43:06.3935912Z * [new branch] gh/masnesral/236/head -> origin/gh/masnesral/236/head 2025-08-14T21:43:06.3936420Z * [new branch] gh/masnesral/236/orig -> origin/gh/masnesral/236/orig 2025-08-14T21:43:06.3936924Z * [new branch] gh/masnesral/34/base -> origin/gh/masnesral/34/base 2025-08-14T21:43:06.3937431Z * [new branch] gh/mhorowitz/0/base -> origin/gh/mhorowitz/0/base 2025-08-14T21:43:06.3937924Z * [new branch] gh/mhorowitz/0/head -> origin/gh/mhorowitz/0/head 2025-08-14T21:43:06.3952690Z * [new branch] gh/mhorowitz/1/base -> origin/gh/mhorowitz/1/base 2025-08-14T21:43:06.3953217Z * [new branch] gh/mhorowitz/1/head -> origin/gh/mhorowitz/1/head 2025-08-14T21:43:06.3953741Z * [new branch] gh/mhorowitz/2/base -> origin/gh/mhorowitz/2/base 2025-08-14T21:43:06.3954244Z * [new branch] gh/mhorowitz/2/head -> origin/gh/mhorowitz/2/head 2025-08-14T21:43:06.3954729Z * [new branch] gh/mhorowitz/3/base -> origin/gh/mhorowitz/3/base 2025-08-14T21:43:06.3955225Z * [new branch] gh/mhorowitz/3/head -> origin/gh/mhorowitz/3/head 2025-08-14T21:43:06.3955888Z * [new branch] gh/mhorowitz/4/base -> origin/gh/mhorowitz/4/base 2025-08-14T21:43:06.3956386Z * [new branch] gh/mhorowitz/4/head -> origin/gh/mhorowitz/4/head 2025-08-14T21:43:06.3956870Z * [new branch] gh/mhorowitz/5/base -> origin/gh/mhorowitz/5/base 2025-08-14T21:43:06.3957441Z * [new branch] gh/mhorowitz/5/head -> origin/gh/mhorowitz/5/head 2025-08-14T21:43:06.3957947Z * [new branch] gh/mhorowitz/6/base -> origin/gh/mhorowitz/6/base 2025-08-14T21:43:06.3958445Z * [new branch] gh/mhorowitz/6/head -> origin/gh/mhorowitz/6/head 2025-08-14T21:43:06.3959004Z * [new branch] gh/mikaylagawarecki/234/base -> origin/gh/mikaylagawarecki/234/base 2025-08-14T21:43:06.3959608Z * [new branch] gh/mikaylagawarecki/234/head -> origin/gh/mikaylagawarecki/234/head 2025-08-14T21:43:06.3960213Z * [new branch] gh/mikaylagawarecki/235/base -> origin/gh/mikaylagawarecki/235/base 2025-08-14T21:43:06.3960821Z * [new branch] gh/mikaylagawarecki/235/head -> origin/gh/mikaylagawarecki/235/head 2025-08-14T21:43:06.3961408Z * [new branch] gh/mikaylagawarecki/236/base -> origin/gh/mikaylagawarecki/236/base 2025-08-14T21:43:06.4362682Z * [new branch] gh/mikaylagawarecki/236/head -> origin/gh/mikaylagawarecki/236/head 2025-08-14T21:43:06.4363337Z * [new branch] gh/mikaylagawarecki/237/base -> origin/gh/mikaylagawarecki/237/base 2025-08-14T21:43:06.4363978Z * [new branch] gh/mikaylagawarecki/237/head -> origin/gh/mikaylagawarecki/237/head 2025-08-14T21:43:06.4364583Z * [new branch] gh/mikaylagawarecki/238/base -> origin/gh/mikaylagawarecki/238/base 2025-08-14T21:43:06.4365174Z * [new branch] gh/mikaylagawarecki/238/head -> origin/gh/mikaylagawarecki/238/head 2025-08-14T21:43:06.4365829Z * [new branch] gh/mikaylagawarecki/313/base -> origin/gh/mikaylagawarecki/313/base 2025-08-14T21:43:06.4366488Z * [new branch] gh/mikaylagawarecki/313/head -> origin/gh/mikaylagawarecki/313/head 2025-08-14T21:43:06.4367161Z * [new branch] gh/mikaylagawarecki/313/orig -> origin/gh/mikaylagawarecki/313/orig 2025-08-14T21:43:06.4367767Z * [new branch] gh/mikaylagawarecki/317/base -> origin/gh/mikaylagawarecki/317/base 2025-08-14T21:43:06.4368357Z * [new branch] gh/mikaylagawarecki/317/head -> origin/gh/mikaylagawarecki/317/head 2025-08-14T21:43:06.4369127Z * [new branch] gh/mikaylagawarecki/317/orig -> origin/gh/mikaylagawarecki/317/orig 2025-08-14T21:43:06.4369724Z * [new branch] gh/mikaylagawarecki/318/base -> origin/gh/mikaylagawarecki/318/base 2025-08-14T21:43:06.4370332Z * [new branch] gh/mikaylagawarecki/318/head -> origin/gh/mikaylagawarecki/318/head 2025-08-14T21:43:06.4370938Z * [new branch] gh/mikaylagawarecki/318/orig -> origin/gh/mikaylagawarecki/318/orig 2025-08-14T21:43:06.4371538Z * [new branch] gh/mikaylagawarecki/319/base -> origin/gh/mikaylagawarecki/319/base 2025-08-14T21:43:06.4372225Z * [new branch] gh/mikaylagawarecki/319/head -> origin/gh/mikaylagawarecki/319/head 2025-08-14T21:43:06.4372900Z * [new branch] gh/mikaylagawarecki/319/orig -> origin/gh/mikaylagawarecki/319/orig 2025-08-14T21:43:06.4373495Z * [new branch] gh/mikaylagawarecki/320/base -> origin/gh/mikaylagawarecki/320/base 2025-08-14T21:43:06.4374091Z * [new branch] gh/mikaylagawarecki/320/head -> origin/gh/mikaylagawarecki/320/head 2025-08-14T21:43:06.4374676Z * [new branch] gh/mikaylagawarecki/320/orig -> origin/gh/mikaylagawarecki/320/orig 2025-08-14T21:43:06.4375268Z * [new branch] gh/mikaylagawarecki/321/base -> origin/gh/mikaylagawarecki/321/base 2025-08-14T21:43:06.4375872Z * [new branch] gh/mikaylagawarecki/321/head -> origin/gh/mikaylagawarecki/321/head 2025-08-14T21:43:06.4376581Z * [new branch] gh/mikaylagawarecki/321/orig -> origin/gh/mikaylagawarecki/321/orig 2025-08-14T21:43:06.4377183Z * [new branch] gh/mikaylagawarecki/322/base -> origin/gh/mikaylagawarecki/322/base 2025-08-14T21:43:06.4377778Z * [new branch] gh/mikaylagawarecki/322/head -> origin/gh/mikaylagawarecki/322/head 2025-08-14T21:43:06.4378501Z * [new branch] gh/mikaylagawarecki/322/orig -> origin/gh/mikaylagawarecki/322/orig 2025-08-14T21:43:06.4379156Z * [new branch] gh/mikaylagawarecki/323/base -> origin/gh/mikaylagawarecki/323/base 2025-08-14T21:43:06.4379744Z * [new branch] gh/mikaylagawarecki/323/head -> origin/gh/mikaylagawarecki/323/head 2025-08-14T21:43:06.4380336Z * [new branch] gh/mikaylagawarecki/323/orig -> origin/gh/mikaylagawarecki/323/orig 2025-08-14T21:43:06.4380920Z * [new branch] gh/mikaylagawarecki/324/base -> origin/gh/mikaylagawarecki/324/base 2025-08-14T21:43:06.4381520Z * [new branch] gh/mikaylagawarecki/324/head -> origin/gh/mikaylagawarecki/324/head 2025-08-14T21:43:06.4382107Z * [new branch] gh/mikaylagawarecki/324/orig -> origin/gh/mikaylagawarecki/324/orig 2025-08-14T21:43:06.4382702Z * [new branch] gh/mikaylagawarecki/325/base -> origin/gh/mikaylagawarecki/325/base 2025-08-14T21:43:06.4383305Z * [new branch] gh/mikaylagawarecki/325/head -> origin/gh/mikaylagawarecki/325/head 2025-08-14T21:43:06.4383950Z * [new branch] gh/mikaylagawarecki/325/orig -> origin/gh/mikaylagawarecki/325/orig 2025-08-14T21:43:06.4384596Z * [new branch] gh/mikaylagawarecki/326/base -> origin/gh/mikaylagawarecki/326/base 2025-08-14T21:43:06.4385240Z * [new branch] gh/mikaylagawarecki/326/head -> origin/gh/mikaylagawarecki/326/head 2025-08-14T21:43:06.4385841Z * [new branch] gh/mikaylagawarecki/326/orig -> origin/gh/mikaylagawarecki/326/orig 2025-08-14T21:43:06.4386443Z * [new branch] gh/mikaylagawarecki/327/base -> origin/gh/mikaylagawarecki/327/base 2025-08-14T21:43:06.4387041Z * [new branch] gh/mikaylagawarecki/327/head -> origin/gh/mikaylagawarecki/327/head 2025-08-14T21:43:06.4387645Z * [new branch] gh/mikaylagawarecki/327/orig -> origin/gh/mikaylagawarecki/327/orig 2025-08-14T21:43:06.4388243Z * [new branch] gh/mikaylagawarecki/328/base -> origin/gh/mikaylagawarecki/328/base 2025-08-14T21:43:06.4388957Z * [new branch] gh/mikaylagawarecki/328/head -> origin/gh/mikaylagawarecki/328/head 2025-08-14T21:43:06.4781522Z * [new branch] gh/mikaylagawarecki/328/orig -> origin/gh/mikaylagawarecki/328/orig 2025-08-14T21:43:06.4782542Z * [new branch] gh/mikaylagawarecki/329/base -> origin/gh/mikaylagawarecki/329/base 2025-08-14T21:43:06.4783506Z * [new branch] gh/mikaylagawarecki/329/head -> origin/gh/mikaylagawarecki/329/head 2025-08-14T21:43:06.4784369Z * [new branch] gh/mikaylagawarecki/329/orig -> origin/gh/mikaylagawarecki/329/orig 2025-08-14T21:43:06.4785025Z * [new branch] gh/mikaylagawarecki/330/base -> origin/gh/mikaylagawarecki/330/base 2025-08-14T21:43:06.4785688Z * [new branch] gh/mikaylagawarecki/330/head -> origin/gh/mikaylagawarecki/330/head 2025-08-14T21:43:06.4786280Z * [new branch] gh/mikaylagawarecki/330/orig -> origin/gh/mikaylagawarecki/330/orig 2025-08-14T21:43:06.4786900Z * [new branch] gh/mikaylagawarecki/331/base -> origin/gh/mikaylagawarecki/331/base 2025-08-14T21:43:06.4787494Z * [new branch] gh/mikaylagawarecki/331/head -> origin/gh/mikaylagawarecki/331/head 2025-08-14T21:43:06.4788097Z * [new branch] gh/mikaylagawarecki/331/orig -> origin/gh/mikaylagawarecki/331/orig 2025-08-14T21:43:06.4788690Z * [new branch] gh/mikaylagawarecki/332/base -> origin/gh/mikaylagawarecki/332/base 2025-08-14T21:43:06.4790073Z * [new branch] gh/mikaylagawarecki/332/head -> origin/gh/mikaylagawarecki/332/head 2025-08-14T21:43:06.4790729Z * [new branch] gh/mikaylagawarecki/332/orig -> origin/gh/mikaylagawarecki/332/orig 2025-08-14T21:43:06.4791408Z * [new branch] gh/mikaylagawarecki/333/base -> origin/gh/mikaylagawarecki/333/base 2025-08-14T21:43:06.4792008Z * [new branch] gh/mikaylagawarecki/333/head -> origin/gh/mikaylagawarecki/333/head 2025-08-14T21:43:06.4792605Z * [new branch] gh/mikaylagawarecki/333/orig -> origin/gh/mikaylagawarecki/333/orig 2025-08-14T21:43:06.4793201Z * [new branch] gh/mikaylagawarecki/334/base -> origin/gh/mikaylagawarecki/334/base 2025-08-14T21:43:06.4793789Z * [new branch] gh/mikaylagawarecki/334/head -> origin/gh/mikaylagawarecki/334/head 2025-08-14T21:43:06.4794380Z * [new branch] gh/mikaylagawarecki/334/orig -> origin/gh/mikaylagawarecki/334/orig 2025-08-14T21:43:06.4794920Z * [new branch] gh/mlazos/1/base -> origin/gh/mlazos/1/base 2025-08-14T21:43:06.4795389Z * [new branch] gh/mlazos/1/head -> origin/gh/mlazos/1/head 2025-08-14T21:43:06.4795855Z * [new branch] gh/mlazos/1/orig -> origin/gh/mlazos/1/orig 2025-08-14T21:43:06.4796373Z * [new branch] gh/mlazos/10/base -> origin/gh/mlazos/10/base 2025-08-14T21:43:06.4796903Z * [new branch] gh/mlazos/10/head -> origin/gh/mlazos/10/head 2025-08-14T21:43:06.4797448Z * [new branch] gh/mlazos/10/orig -> origin/gh/mlazos/10/orig 2025-08-14T21:43:06.4797925Z * [new branch] gh/mlazos/11/base -> origin/gh/mlazos/11/base 2025-08-14T21:43:06.4798403Z * [new branch] gh/mlazos/11/head -> origin/gh/mlazos/11/head 2025-08-14T21:43:06.4798872Z * [new branch] gh/mlazos/11/orig -> origin/gh/mlazos/11/orig 2025-08-14T21:43:06.4799356Z * [new branch] gh/mlazos/12/base -> origin/gh/mlazos/12/base 2025-08-14T21:43:06.4799820Z * [new branch] gh/mlazos/12/head -> origin/gh/mlazos/12/head 2025-08-14T21:43:06.4800294Z * [new branch] gh/mlazos/12/orig -> origin/gh/mlazos/12/orig 2025-08-14T21:43:06.4800764Z * [new branch] gh/mlazos/13/base -> origin/gh/mlazos/13/base 2025-08-14T21:43:06.4801227Z * [new branch] gh/mlazos/13/head -> origin/gh/mlazos/13/head 2025-08-14T21:43:06.4801867Z * [new branch] gh/mlazos/13/orig -> origin/gh/mlazos/13/orig 2025-08-14T21:43:06.4802402Z * [new branch] gh/mlazos/2/base -> origin/gh/mlazos/2/base 2025-08-14T21:43:06.4802883Z * [new branch] gh/mlazos/2/head -> origin/gh/mlazos/2/head 2025-08-14T21:43:06.4803343Z * [new branch] gh/mlazos/2/orig -> origin/gh/mlazos/2/orig 2025-08-14T21:43:06.4803811Z * [new branch] gh/mlazos/3/base -> origin/gh/mlazos/3/base 2025-08-14T21:43:06.4804270Z * [new branch] gh/mlazos/3/head -> origin/gh/mlazos/3/head 2025-08-14T21:43:06.4804724Z * [new branch] gh/mlazos/3/orig -> origin/gh/mlazos/3/orig 2025-08-14T21:43:06.4805183Z * [new branch] gh/mlazos/4/base -> origin/gh/mlazos/4/base 2025-08-14T21:43:06.4805633Z * [new branch] gh/mlazos/4/head -> origin/gh/mlazos/4/head 2025-08-14T21:43:06.4806093Z * [new branch] gh/mlazos/4/orig -> origin/gh/mlazos/4/orig 2025-08-14T21:43:06.4806550Z * [new branch] gh/mlazos/5/base -> origin/gh/mlazos/5/base 2025-08-14T21:43:06.4807008Z * [new branch] gh/mlazos/5/head -> origin/gh/mlazos/5/head 2025-08-14T21:43:06.5230503Z * [new branch] gh/mlazos/5/orig -> origin/gh/mlazos/5/orig 2025-08-14T21:43:06.5231201Z * [new branch] gh/mlazos/6/base -> origin/gh/mlazos/6/base 2025-08-14T21:43:06.5231672Z * [new branch] gh/mlazos/6/head -> origin/gh/mlazos/6/head 2025-08-14T21:43:06.5232136Z * [new branch] gh/mlazos/6/orig -> origin/gh/mlazos/6/orig 2025-08-14T21:43:06.5232659Z * [new branch] gh/mlazos/7/base -> origin/gh/mlazos/7/base 2025-08-14T21:43:06.5233120Z * [new branch] gh/mlazos/7/head -> origin/gh/mlazos/7/head 2025-08-14T21:43:06.5233636Z * [new branch] gh/mlazos/7/orig -> origin/gh/mlazos/7/orig 2025-08-14T21:43:06.5234105Z * [new branch] gh/mlazos/8/base -> origin/gh/mlazos/8/base 2025-08-14T21:43:06.5234559Z * [new branch] gh/mlazos/8/head -> origin/gh/mlazos/8/head 2025-08-14T21:43:06.5235018Z * [new branch] gh/mlazos/8/orig -> origin/gh/mlazos/8/orig 2025-08-14T21:43:06.5235485Z * [new branch] gh/mlazos/9/base -> origin/gh/mlazos/9/base 2025-08-14T21:43:06.5235937Z * [new branch] gh/mlazos/9/head -> origin/gh/mlazos/9/head 2025-08-14T21:43:06.5236399Z * [new branch] gh/mlazos/9/orig -> origin/gh/mlazos/9/orig 2025-08-14T21:43:06.5236880Z * [new branch] gh/mrmiywj/1/base -> origin/gh/mrmiywj/1/base 2025-08-14T21:43:06.5237407Z * [new branch] gh/mrmiywj/1/head -> origin/gh/mrmiywj/1/head 2025-08-14T21:43:06.5237911Z * [new branch] gh/muchulee8/62/base -> origin/gh/muchulee8/62/base 2025-08-14T21:43:06.5238408Z * [new branch] gh/muchulee8/62/head -> origin/gh/muchulee8/62/head 2025-08-14T21:43:06.5238958Z * [new branch] gh/muchulee8/62/orig -> origin/gh/muchulee8/62/orig 2025-08-14T21:43:06.5239495Z * [new branch] gh/muchulee8/63/base -> origin/gh/muchulee8/63/base 2025-08-14T21:43:06.5240000Z * [new branch] gh/muchulee8/63/head -> origin/gh/muchulee8/63/head 2025-08-14T21:43:06.5240494Z * [new branch] gh/muchulee8/63/orig -> origin/gh/muchulee8/63/orig 2025-08-14T21:43:06.5240994Z * [new branch] gh/muchulee8/64/base -> origin/gh/muchulee8/64/base 2025-08-14T21:43:06.5241486Z * [new branch] gh/muchulee8/64/head -> origin/gh/muchulee8/64/head 2025-08-14T21:43:06.5241972Z * [new branch] gh/muchulee8/64/orig -> origin/gh/muchulee8/64/orig 2025-08-14T21:43:06.5243175Z * [new branch] gh/muchulee8/65/base -> origin/gh/muchulee8/65/base 2025-08-14T21:43:06.5243686Z * [new branch] gh/muchulee8/65/head -> origin/gh/muchulee8/65/head 2025-08-14T21:43:06.5244187Z * [new branch] gh/muchulee8/65/orig -> origin/gh/muchulee8/65/orig 2025-08-14T21:43:06.5244740Z * [new branch] gh/oulgen/35/base -> origin/gh/oulgen/35/base 2025-08-14T21:43:06.5245263Z * [new branch] gh/oulgen/35/head -> origin/gh/oulgen/35/head 2025-08-14T21:43:06.5245745Z * [new branch] gh/oulgen/35/orig -> origin/gh/oulgen/35/orig 2025-08-14T21:43:06.5246208Z * [new branch] gh/oulgen/44/base -> origin/gh/oulgen/44/base 2025-08-14T21:43:06.5246682Z * [new branch] gh/oulgen/44/head -> origin/gh/oulgen/44/head 2025-08-14T21:43:06.5247154Z * [new branch] gh/oulgen/44/orig -> origin/gh/oulgen/44/orig 2025-08-14T21:43:06.5247625Z * [new branch] gh/oulgen/45/base -> origin/gh/oulgen/45/base 2025-08-14T21:43:06.5248093Z * [new branch] gh/oulgen/45/head -> origin/gh/oulgen/45/head 2025-08-14T21:43:06.5248553Z * [new branch] gh/oulgen/45/orig -> origin/gh/oulgen/45/orig 2025-08-14T21:43:06.5249028Z * [new branch] gh/oulgen/46/base -> origin/gh/oulgen/46/base 2025-08-14T21:43:06.5249601Z * [new branch] gh/oulgen/46/head -> origin/gh/oulgen/46/head 2025-08-14T21:43:06.5250084Z * [new branch] gh/oulgen/46/orig -> origin/gh/oulgen/46/orig 2025-08-14T21:43:06.5250623Z * [new branch] gh/oulgen/47/base -> origin/gh/oulgen/47/base 2025-08-14T21:43:06.5251140Z * [new branch] gh/oulgen/47/head -> origin/gh/oulgen/47/head 2025-08-14T21:43:06.5251616Z * [new branch] gh/oulgen/47/orig -> origin/gh/oulgen/47/orig 2025-08-14T21:43:06.5252088Z * [new branch] gh/pearu/108/base -> origin/gh/pearu/108/base 2025-08-14T21:43:06.5252571Z * [new branch] gh/pearu/108/head -> origin/gh/pearu/108/head 2025-08-14T21:43:06.5253047Z * [new branch] gh/pearu/108/orig -> origin/gh/pearu/108/orig 2025-08-14T21:43:06.5253509Z * [new branch] gh/pearu/56/base -> origin/gh/pearu/56/base 2025-08-14T21:43:06.5253994Z * [new branch] gh/pearu/56/head -> origin/gh/pearu/56/head 2025-08-14T21:43:06.5254471Z * [new branch] gh/pearu/56/orig -> origin/gh/pearu/56/orig 2025-08-14T21:43:06.5733288Z * [new branch] gh/pearu/97/base -> origin/gh/pearu/97/base 2025-08-14T21:43:06.5733879Z * [new branch] gh/pearu/97/head -> origin/gh/pearu/97/head 2025-08-14T21:43:06.5734434Z * [new branch] gh/pearu/97/orig -> origin/gh/pearu/97/orig 2025-08-14T21:43:06.5734906Z * [new branch] gh/qqaatw/29/base -> origin/gh/qqaatw/29/base 2025-08-14T21:43:06.5735431Z * [new branch] gh/qqaatw/29/head -> origin/gh/qqaatw/29/head 2025-08-14T21:43:06.5735898Z * [new branch] gh/qqaatw/29/orig -> origin/gh/qqaatw/29/orig 2025-08-14T21:43:06.5736476Z * [new branch] gh/raymo/cleanup-dynamo-logging -> origin/gh/raymo/cleanup-dynamo-logging 2025-08-14T21:43:06.5737110Z * [new branch] gh/raymo/refresh-script -> origin/gh/raymo/refresh-script 2025-08-14T21:43:06.5737612Z * [new branch] gh/rec/141/base -> origin/gh/rec/141/base 2025-08-14T21:43:06.5738078Z * [new branch] gh/rec/141/head -> origin/gh/rec/141/head 2025-08-14T21:43:06.5738519Z * [new branch] gh/rec/153/base -> origin/gh/rec/153/base 2025-08-14T21:43:06.5739136Z * [new branch] gh/rec/153/head -> origin/gh/rec/153/head 2025-08-14T21:43:06.5739598Z * [new branch] gh/rec/153/orig -> origin/gh/rec/153/orig 2025-08-14T21:43:06.5740044Z * [new branch] gh/rec/154/base -> origin/gh/rec/154/base 2025-08-14T21:43:06.5740549Z * [new branch] gh/rec/154/head -> origin/gh/rec/154/head 2025-08-14T21:43:06.5741040Z * [new branch] gh/rec/154/orig -> origin/gh/rec/154/orig 2025-08-14T21:43:06.5741493Z * [new branch] gh/rec/156/base -> origin/gh/rec/156/base 2025-08-14T21:43:06.5741928Z * [new branch] gh/rec/156/head -> origin/gh/rec/156/head 2025-08-14T21:43:06.5742385Z * [new branch] gh/rec/156/orig -> origin/gh/rec/156/orig 2025-08-14T21:43:06.5742824Z * [new branch] gh/rec/158/base -> origin/gh/rec/158/base 2025-08-14T21:43:06.5743265Z * [new branch] gh/rec/158/head -> origin/gh/rec/158/head 2025-08-14T21:43:06.5743710Z * [new branch] gh/rec/158/orig -> origin/gh/rec/158/orig 2025-08-14T21:43:06.5744147Z * [new branch] gh/rec/159/base -> origin/gh/rec/159/base 2025-08-14T21:43:06.5744592Z * [new branch] gh/rec/159/head -> origin/gh/rec/159/head 2025-08-14T21:43:06.5745041Z * [new branch] gh/rec/160/base -> origin/gh/rec/160/base 2025-08-14T21:43:06.5745617Z * [new branch] gh/rec/160/head -> origin/gh/rec/160/head 2025-08-14T21:43:06.5746060Z * [new branch] gh/rec/160/orig -> origin/gh/rec/160/orig 2025-08-14T21:43:06.5746559Z * [new branch] gh/rec/161/base -> origin/gh/rec/161/base 2025-08-14T21:43:06.5747062Z * [new branch] gh/rec/161/head -> origin/gh/rec/161/head 2025-08-14T21:43:06.5747512Z * [new branch] gh/rec/161/orig -> origin/gh/rec/161/orig 2025-08-14T21:43:06.5747949Z * [new branch] gh/rec/162/base -> origin/gh/rec/162/base 2025-08-14T21:43:06.5748405Z * [new branch] gh/rec/162/head -> origin/gh/rec/162/head 2025-08-14T21:43:06.5748848Z * [new branch] gh/rec/162/orig -> origin/gh/rec/162/orig 2025-08-14T21:43:06.5749300Z * [new branch] gh/rec/163/base -> origin/gh/rec/163/base 2025-08-14T21:43:06.5749742Z * [new branch] gh/rec/163/head -> origin/gh/rec/163/head 2025-08-14T21:43:06.5750198Z * [new branch] gh/rec/163/orig -> origin/gh/rec/163/orig 2025-08-14T21:43:06.5750646Z * [new branch] gh/rec/164/base -> origin/gh/rec/164/base 2025-08-14T21:43:06.5751090Z * [new branch] gh/rec/164/head -> origin/gh/rec/164/head 2025-08-14T21:43:06.5751542Z * [new branch] gh/rec/164/orig -> origin/gh/rec/164/orig 2025-08-14T21:43:06.5752048Z * [new branch] gh/robert-hardwick/1/base -> origin/gh/robert-hardwick/1/base 2025-08-14T21:43:06.5752669Z * [new branch] gh/robert-hardwick/1/head -> origin/gh/robert-hardwick/1/head 2025-08-14T21:43:06.5753271Z * [new branch] gh/robert-hardwick/1/orig -> origin/gh/robert-hardwick/1/orig 2025-08-14T21:43:06.5753814Z * [new branch] gh/robert-hardwick/2/base -> origin/gh/robert-hardwick/2/base 2025-08-14T21:43:06.5754359Z * [new branch] gh/robert-hardwick/2/head -> origin/gh/robert-hardwick/2/head 2025-08-14T21:43:06.5754899Z * [new branch] gh/robert-hardwick/2/orig -> origin/gh/robert-hardwick/2/orig 2025-08-14T21:43:06.5755448Z * [new branch] gh/robert-hardwick/3/base -> origin/gh/robert-hardwick/3/base 2025-08-14T21:43:06.5755989Z * [new branch] gh/robert-hardwick/3/head -> origin/gh/robert-hardwick/3/head 2025-08-14T21:43:06.5756641Z * [new branch] gh/robert-hardwick/3/orig -> origin/gh/robert-hardwick/3/orig 2025-08-14T21:43:06.6184846Z * [new branch] gh/robert-hardwick/4/base -> origin/gh/robert-hardwick/4/base 2025-08-14T21:43:06.6185446Z * [new branch] gh/robert-hardwick/4/head -> origin/gh/robert-hardwick/4/head 2025-08-14T21:43:06.6186013Z * [new branch] gh/robert-hardwick/4/orig -> origin/gh/robert-hardwick/4/orig 2025-08-14T21:43:06.6186562Z * [new branch] gh/rtimpe/1/base -> origin/gh/rtimpe/1/base 2025-08-14T21:43:06.6187037Z * [new branch] gh/rtimpe/1/head -> origin/gh/rtimpe/1/head 2025-08-14T21:43:06.6187514Z * [new branch] gh/rtimpe/10/base -> origin/gh/rtimpe/10/base 2025-08-14T21:43:06.6187989Z * [new branch] gh/rtimpe/10/head -> origin/gh/rtimpe/10/head 2025-08-14T21:43:06.6188537Z * [new branch] gh/rtimpe/10/orig -> origin/gh/rtimpe/10/orig 2025-08-14T21:43:06.6189063Z * [new branch] gh/rtimpe/11/base -> origin/gh/rtimpe/11/base 2025-08-14T21:43:06.6189527Z * [new branch] gh/rtimpe/11/head -> origin/gh/rtimpe/11/head 2025-08-14T21:43:06.6189996Z * [new branch] gh/rtimpe/11/orig -> origin/gh/rtimpe/11/orig 2025-08-14T21:43:06.6190458Z * [new branch] gh/rtimpe/12/base -> origin/gh/rtimpe/12/base 2025-08-14T21:43:06.6191117Z * [new branch] gh/rtimpe/12/head -> origin/gh/rtimpe/12/head 2025-08-14T21:43:06.6191603Z * [new branch] gh/rtimpe/12/orig -> origin/gh/rtimpe/12/orig 2025-08-14T21:43:06.6192067Z * [new branch] gh/rtimpe/2/base -> origin/gh/rtimpe/2/base 2025-08-14T21:43:06.6192539Z * [new branch] gh/rtimpe/2/head -> origin/gh/rtimpe/2/head 2025-08-14T21:43:06.6193015Z * [new branch] gh/rtimpe/3/base -> origin/gh/rtimpe/3/base 2025-08-14T21:43:06.6193479Z * [new branch] gh/rtimpe/3/head -> origin/gh/rtimpe/3/head 2025-08-14T21:43:06.6193941Z * [new branch] gh/rtimpe/4/base -> origin/gh/rtimpe/4/base 2025-08-14T21:43:06.6194458Z * [new branch] gh/rtimpe/4/head -> origin/gh/rtimpe/4/head 2025-08-14T21:43:06.6194974Z * [new branch] gh/rtimpe/5/base -> origin/gh/rtimpe/5/base 2025-08-14T21:43:06.6195435Z * [new branch] gh/rtimpe/5/head -> origin/gh/rtimpe/5/head 2025-08-14T21:43:06.6195893Z * [new branch] gh/rtimpe/5/orig -> origin/gh/rtimpe/5/orig 2025-08-14T21:43:06.6196367Z * [new branch] gh/rtimpe/6/base -> origin/gh/rtimpe/6/base 2025-08-14T21:43:06.6196834Z * [new branch] gh/rtimpe/6/head -> origin/gh/rtimpe/6/head 2025-08-14T21:43:06.6197355Z * [new branch] gh/rtimpe/6/orig -> origin/gh/rtimpe/6/orig 2025-08-14T21:43:06.6197812Z * [new branch] gh/rtimpe/7/base -> origin/gh/rtimpe/7/base 2025-08-14T21:43:06.6198276Z * [new branch] gh/rtimpe/7/head -> origin/gh/rtimpe/7/head 2025-08-14T21:43:06.6198730Z * [new branch] gh/rtimpe/7/orig -> origin/gh/rtimpe/7/orig 2025-08-14T21:43:06.6199200Z * [new branch] gh/rtimpe/8/base -> origin/gh/rtimpe/8/base 2025-08-14T21:43:06.6199667Z * [new branch] gh/rtimpe/8/head -> origin/gh/rtimpe/8/head 2025-08-14T21:43:06.6200171Z * [new branch] gh/rtimpe/8/orig -> origin/gh/rtimpe/8/orig 2025-08-14T21:43:06.6200688Z * [new branch] gh/rtimpe/9/base -> origin/gh/rtimpe/9/base 2025-08-14T21:43:06.6201147Z * [new branch] gh/rtimpe/9/head -> origin/gh/rtimpe/9/head 2025-08-14T21:43:06.6201744Z * [new branch] gh/rtimpe/9/orig -> origin/gh/rtimpe/9/orig 2025-08-14T21:43:06.6202255Z * [new branch] gh/ruisizhang123/1/base -> origin/gh/ruisizhang123/1/base 2025-08-14T21:43:06.6202788Z * [new branch] gh/ruisizhang123/1/head -> origin/gh/ruisizhang123/1/head 2025-08-14T21:43:06.6203325Z * [new branch] gh/ruisizhang123/1/orig -> origin/gh/ruisizhang123/1/orig 2025-08-14T21:43:06.6203858Z * [new branch] gh/ruisizhang123/4/base -> origin/gh/ruisizhang123/4/base 2025-08-14T21:43:06.6204392Z * [new branch] gh/ruisizhang123/4/head -> origin/gh/ruisizhang123/4/head 2025-08-14T21:43:06.6204911Z * [new branch] gh/ruisizhang123/4/orig -> origin/gh/ruisizhang123/4/orig 2025-08-14T21:43:06.6205438Z * [new branch] gh/ruisizhang123/5/base -> origin/gh/ruisizhang123/5/base 2025-08-14T21:43:06.6206052Z * [new branch] gh/ruisizhang123/5/head -> origin/gh/ruisizhang123/5/head 2025-08-14T21:43:06.6206634Z * [new branch] gh/ruisizhang123/5/orig -> origin/gh/ruisizhang123/5/orig 2025-08-14T21:43:06.6207173Z * [new branch] gh/ruisizhang123/6/base -> origin/gh/ruisizhang123/6/base 2025-08-14T21:43:06.6207699Z * [new branch] gh/ruisizhang123/6/head -> origin/gh/ruisizhang123/6/head 2025-08-14T21:43:06.6208236Z * [new branch] gh/ruisizhang123/6/orig -> origin/gh/ruisizhang123/6/orig 2025-08-14T21:43:06.6620830Z * [new branch] gh/ruisizhang123/7/base -> origin/gh/ruisizhang123/7/base 2025-08-14T21:43:06.6621373Z * [new branch] gh/ruisizhang123/7/head -> origin/gh/ruisizhang123/7/head 2025-08-14T21:43:06.6621918Z * [new branch] gh/ruisizhang123/7/orig -> origin/gh/ruisizhang123/7/orig 2025-08-14T21:43:06.6622444Z * [new branch] gh/ruisizhang123/8/base -> origin/gh/ruisizhang123/8/base 2025-08-14T21:43:06.6623015Z * [new branch] gh/ruisizhang123/8/head -> origin/gh/ruisizhang123/8/head 2025-08-14T21:43:06.6623546Z * [new branch] gh/ruisizhang123/8/orig -> origin/gh/ruisizhang123/8/orig 2025-08-14T21:43:06.6624039Z * [new branch] gh/sarckk/2/base -> origin/gh/sarckk/2/base 2025-08-14T21:43:06.6624506Z * [new branch] gh/sarckk/2/head -> origin/gh/sarckk/2/head 2025-08-14T21:43:06.6624985Z * [new branch] gh/sarckk/2/orig -> origin/gh/sarckk/2/orig 2025-08-14T21:43:06.6625471Z * [new branch] gh/seemethere/23/head -> origin/gh/seemethere/23/head 2025-08-14T21:43:06.6625983Z * [new branch] gh/seemethere/24/base -> origin/gh/seemethere/24/base 2025-08-14T21:43:06.6626495Z * [new branch] gh/seemethere/24/head -> origin/gh/seemethere/24/head 2025-08-14T21:43:06.6626999Z * [new branch] gh/seemethere/24/orig -> origin/gh/seemethere/24/orig 2025-08-14T21:43:06.6627508Z * [new branch] gh/seemethere/30/base -> origin/gh/seemethere/30/base 2025-08-14T21:43:06.6628013Z * [new branch] gh/seemethere/30/head -> origin/gh/seemethere/30/head 2025-08-14T21:43:06.6628525Z * [new branch] gh/seemethere/30/orig -> origin/gh/seemethere/30/orig 2025-08-14T21:43:06.6629024Z * [new branch] gh/seemethere/32/base -> origin/gh/seemethere/32/base 2025-08-14T21:43:06.6629539Z * [new branch] gh/seemethere/32/head -> origin/gh/seemethere/32/head 2025-08-14T21:43:06.6630044Z * [new branch] gh/seemethere/32/orig -> origin/gh/seemethere/32/orig 2025-08-14T21:43:06.6630553Z * [new branch] gh/seemethere/33/base -> origin/gh/seemethere/33/base 2025-08-14T21:43:06.6631055Z * [new branch] gh/seemethere/33/head -> origin/gh/seemethere/33/head 2025-08-14T21:43:06.6631723Z * [new branch] gh/seemethere/33/orig -> origin/gh/seemethere/33/orig 2025-08-14T21:43:06.6632233Z * [new branch] gh/seemethere/34/base -> origin/gh/seemethere/34/base 2025-08-14T21:43:06.6632731Z * [new branch] gh/seemethere/34/head -> origin/gh/seemethere/34/head 2025-08-14T21:43:06.6633244Z * [new branch] gh/seemethere/34/orig -> origin/gh/seemethere/34/orig 2025-08-14T21:43:06.6633751Z * [new branch] gh/seemethere/35/base -> origin/gh/seemethere/35/base 2025-08-14T21:43:06.6634254Z * [new branch] gh/seemethere/35/head -> origin/gh/seemethere/35/head 2025-08-14T21:43:06.6634764Z * [new branch] gh/seemethere/35/orig -> origin/gh/seemethere/35/orig 2025-08-14T21:43:06.6635263Z * [new branch] gh/seemethere/37/base -> origin/gh/seemethere/37/base 2025-08-14T21:43:06.6635783Z * [new branch] gh/seemethere/37/head -> origin/gh/seemethere/37/head 2025-08-14T21:43:06.6636307Z * [new branch] gh/seemethere/37/orig -> origin/gh/seemethere/37/orig 2025-08-14T21:43:06.6636810Z * [new branch] gh/seemethere/39/base -> origin/gh/seemethere/39/base 2025-08-14T21:43:06.6637378Z * [new branch] gh/seemethere/39/head -> origin/gh/seemethere/39/head 2025-08-14T21:43:06.6637877Z * [new branch] gh/seemethere/39/orig -> origin/gh/seemethere/39/orig 2025-08-14T21:43:06.6638503Z * [new branch] gh/seemethere/40/base -> origin/gh/seemethere/40/base 2025-08-14T21:43:06.6639017Z * [new branch] gh/seemethere/40/head -> origin/gh/seemethere/40/head 2025-08-14T21:43:06.6639520Z * [new branch] gh/seemethere/40/orig -> origin/gh/seemethere/40/orig 2025-08-14T21:43:06.6640035Z * [new branch] gh/seemethere/41/base -> origin/gh/seemethere/41/base 2025-08-14T21:43:06.6640533Z * [new branch] gh/seemethere/41/head -> origin/gh/seemethere/41/head 2025-08-14T21:43:06.6641046Z * [new branch] gh/seemethere/41/orig -> origin/gh/seemethere/41/orig 2025-08-14T21:43:06.6641551Z * [new branch] gh/seemethere/42/base -> origin/gh/seemethere/42/base 2025-08-14T21:43:06.6642056Z * [new branch] gh/seemethere/42/head -> origin/gh/seemethere/42/head 2025-08-14T21:43:06.6642564Z * [new branch] gh/seemethere/42/orig -> origin/gh/seemethere/42/orig 2025-08-14T21:43:06.6643069Z * [new branch] gh/seemethere/43/base -> origin/gh/seemethere/43/base 2025-08-14T21:43:06.6643580Z * [new branch] gh/seemethere/43/head -> origin/gh/seemethere/43/head 2025-08-14T21:43:06.6644080Z * [new branch] gh/seemethere/43/orig -> origin/gh/seemethere/43/orig 2025-08-14T21:43:06.7035027Z * [new branch] gh/seemethere/44/base -> origin/gh/seemethere/44/base 2025-08-14T21:43:06.7035626Z * [new branch] gh/seemethere/44/head -> origin/gh/seemethere/44/head 2025-08-14T21:43:06.7036134Z * [new branch] gh/seemethere/44/orig -> origin/gh/seemethere/44/orig 2025-08-14T21:43:06.7036646Z * [new branch] gh/seemethere/45/base -> origin/gh/seemethere/45/base 2025-08-14T21:43:06.7037194Z * [new branch] gh/seemethere/45/head -> origin/gh/seemethere/45/head 2025-08-14T21:43:06.7037735Z * [new branch] gh/seemethere/45/orig -> origin/gh/seemethere/45/orig 2025-08-14T21:43:06.7038255Z * [new branch] gh/seemethere/46/base -> origin/gh/seemethere/46/base 2025-08-14T21:43:06.7038755Z * [new branch] gh/seemethere/46/head -> origin/gh/seemethere/46/head 2025-08-14T21:43:06.7039264Z * [new branch] gh/seemethere/46/orig -> origin/gh/seemethere/46/orig 2025-08-14T21:43:06.7039770Z * [new branch] gh/seemethere/47/base -> origin/gh/seemethere/47/base 2025-08-14T21:43:06.7040465Z * [new branch] gh/seemethere/47/head -> origin/gh/seemethere/47/head 2025-08-14T21:43:06.7040985Z * [new branch] gh/seemethere/47/orig -> origin/gh/seemethere/47/orig 2025-08-14T21:43:06.7041482Z * [new branch] gh/seemethere/48/base -> origin/gh/seemethere/48/base 2025-08-14T21:43:06.7041987Z * [new branch] gh/seemethere/48/head -> origin/gh/seemethere/48/head 2025-08-14T21:43:06.7042497Z * [new branch] gh/seemethere/48/orig -> origin/gh/seemethere/48/orig 2025-08-14T21:43:06.7043009Z * [new branch] gh/seemethere/49/base -> origin/gh/seemethere/49/base 2025-08-14T21:43:06.7043512Z * [new branch] gh/seemethere/49/head -> origin/gh/seemethere/49/head 2025-08-14T21:43:06.7044008Z * [new branch] gh/seemethere/49/orig -> origin/gh/seemethere/49/orig 2025-08-14T21:43:06.7044523Z * [new branch] gh/seemethere/50/base -> origin/gh/seemethere/50/base 2025-08-14T21:43:06.7045019Z * [new branch] gh/seemethere/50/head -> origin/gh/seemethere/50/head 2025-08-14T21:43:06.7045528Z * [new branch] gh/seemethere/50/orig -> origin/gh/seemethere/50/orig 2025-08-14T21:43:06.7046036Z * [new branch] gh/seemethere/51/base -> origin/gh/seemethere/51/base 2025-08-14T21:43:06.7046538Z * [new branch] gh/seemethere/51/head -> origin/gh/seemethere/51/head 2025-08-14T21:43:06.7047176Z * [new branch] gh/seemethere/51/orig -> origin/gh/seemethere/51/orig 2025-08-14T21:43:06.7047679Z * [new branch] gh/seemethere/52/base -> origin/gh/seemethere/52/base 2025-08-14T21:43:06.7048194Z * [new branch] gh/seemethere/52/head -> origin/gh/seemethere/52/head 2025-08-14T21:43:06.7048706Z * [new branch] gh/seemethere/52/orig -> origin/gh/seemethere/52/orig 2025-08-14T21:43:06.7049215Z * [new branch] gh/seemethere/53/base -> origin/gh/seemethere/53/base 2025-08-14T21:43:06.7049727Z * [new branch] gh/seemethere/53/head -> origin/gh/seemethere/53/head 2025-08-14T21:43:06.7050227Z * [new branch] gh/seemethere/53/orig -> origin/gh/seemethere/53/orig 2025-08-14T21:43:06.7050733Z * [new branch] gh/seemethere/54/base -> origin/gh/seemethere/54/base 2025-08-14T21:43:06.7051243Z * [new branch] gh/seemethere/54/head -> origin/gh/seemethere/54/head 2025-08-14T21:43:06.7051744Z * [new branch] gh/seemethere/54/orig -> origin/gh/seemethere/54/orig 2025-08-14T21:43:06.7052250Z * [new branch] gh/seemethere/55/base -> origin/gh/seemethere/55/base 2025-08-14T21:43:06.7052750Z * [new branch] gh/seemethere/55/head -> origin/gh/seemethere/55/head 2025-08-14T21:43:06.7053256Z * [new branch] gh/seemethere/55/orig -> origin/gh/seemethere/55/orig 2025-08-14T21:43:06.7053760Z * [new branch] gh/seemethere/56/base -> origin/gh/seemethere/56/base 2025-08-14T21:43:06.7054266Z * [new branch] gh/seemethere/56/head -> origin/gh/seemethere/56/head 2025-08-14T21:43:06.7054779Z * [new branch] gh/seemethere/56/orig -> origin/gh/seemethere/56/orig 2025-08-14T21:43:06.7055280Z * [new branch] gh/seemethere/57/base -> origin/gh/seemethere/57/base 2025-08-14T21:43:06.7055793Z * [new branch] gh/seemethere/57/head -> origin/gh/seemethere/57/head 2025-08-14T21:43:06.7056298Z * [new branch] gh/seemethere/57/orig -> origin/gh/seemethere/57/orig 2025-08-14T21:43:06.7056814Z * [new branch] gh/seemethere/58/base -> origin/gh/seemethere/58/base 2025-08-14T21:43:06.7057325Z * [new branch] gh/seemethere/58/head -> origin/gh/seemethere/58/head 2025-08-14T21:43:06.7057929Z * [new branch] gh/seemethere/58/orig -> origin/gh/seemethere/58/orig 2025-08-14T21:43:06.7058455Z * [new branch] gh/seemethere/59/base -> origin/gh/seemethere/59/base 2025-08-14T21:43:06.7472234Z * [new branch] gh/seemethere/59/head -> origin/gh/seemethere/59/head 2025-08-14T21:43:06.7472812Z * [new branch] gh/seemethere/59/orig -> origin/gh/seemethere/59/orig 2025-08-14T21:43:06.7473362Z * [new branch] gh/seemethere/7/head -> origin/gh/seemethere/7/head 2025-08-14T21:43:06.7473896Z * [new branch] gh/shunting314/145/base -> origin/gh/shunting314/145/base 2025-08-14T21:43:06.7474418Z * [new branch] gh/shunting314/145/head -> origin/gh/shunting314/145/head 2025-08-14T21:43:06.7474965Z * [new branch] gh/shunting314/145/orig -> origin/gh/shunting314/145/orig 2025-08-14T21:43:06.7475480Z * [new branch] gh/shunting314/176/base -> origin/gh/shunting314/176/base 2025-08-14T21:43:06.7476013Z * [new branch] gh/shunting314/176/head -> origin/gh/shunting314/176/head 2025-08-14T21:43:06.7476541Z * [new branch] gh/shunting314/176/orig -> origin/gh/shunting314/176/orig 2025-08-14T21:43:06.7477129Z * [new branch] gh/shunting314/211/base -> origin/gh/shunting314/211/base 2025-08-14T21:43:06.7477668Z * [new branch] gh/shunting314/211/head -> origin/gh/shunting314/211/head 2025-08-14T21:43:06.7478385Z * [new branch] gh/shunting314/211/orig -> origin/gh/shunting314/211/orig 2025-08-14T21:43:06.7478911Z * [new branch] gh/shunting314/212/base -> origin/gh/shunting314/212/base 2025-08-14T21:43:06.7479758Z * [new branch] gh/shunting314/212/head -> origin/gh/shunting314/212/head 2025-08-14T21:43:06.7480752Z * [new branch] gh/shunting314/212/orig -> origin/gh/shunting314/212/orig 2025-08-14T21:43:06.7488962Z * [new branch] gh/shunting314/213/base -> origin/gh/shunting314/213/base 2025-08-14T21:43:06.7489978Z * [new branch] gh/shunting314/213/head -> origin/gh/shunting314/213/head 2025-08-14T21:43:06.7490911Z * [new branch] gh/shunting314/213/orig -> origin/gh/shunting314/213/orig 2025-08-14T21:43:06.7491847Z * [new branch] gh/silverguo/1/base -> origin/gh/silverguo/1/base 2025-08-14T21:43:06.7492628Z * [new branch] gh/silverguo/1/head -> origin/gh/silverguo/1/head 2025-08-14T21:43:06.7493134Z * [new branch] gh/silverguo/2/base -> origin/gh/silverguo/2/base 2025-08-14T21:43:06.7493618Z * [new branch] gh/silverguo/2/head -> origin/gh/silverguo/2/head 2025-08-14T21:43:06.7494112Z * [new branch] gh/silverguo/3/base -> origin/gh/silverguo/3/base 2025-08-14T21:43:06.7494602Z * [new branch] gh/silverguo/3/head -> origin/gh/silverguo/3/head 2025-08-14T21:43:06.7495091Z * [new branch] gh/silverguo/4/base -> origin/gh/silverguo/4/base 2025-08-14T21:43:06.7495578Z * [new branch] gh/silverguo/4/head -> origin/gh/silverguo/4/head 2025-08-14T21:43:06.7496075Z * [new branch] gh/sinhaanhsul/1/base -> origin/gh/sinhaanhsul/1/base 2025-08-14T21:43:06.7496590Z * [new branch] gh/sinhaanhsul/1/head -> origin/gh/sinhaanhsul/1/head 2025-08-14T21:43:06.7497103Z * [new branch] gh/skarjala/11/base -> origin/gh/skarjala/11/base 2025-08-14T21:43:06.7497582Z * [new branch] gh/skarjala/11/head -> origin/gh/skarjala/11/head 2025-08-14T21:43:06.7498065Z * [new branch] gh/skarjala/11/orig -> origin/gh/skarjala/11/orig 2025-08-14T21:43:06.7498545Z * [new branch] gh/skarjala/13/base -> origin/gh/skarjala/13/base 2025-08-14T21:43:06.7499024Z * [new branch] gh/skarjala/13/head -> origin/gh/skarjala/13/head 2025-08-14T21:43:06.7499697Z * [new branch] gh/skarjala/13/orig -> origin/gh/skarjala/13/orig 2025-08-14T21:43:06.7500192Z * [new branch] gh/skarjala/14/base -> origin/gh/skarjala/14/base 2025-08-14T21:43:06.7500690Z * [new branch] gh/skarjala/14/head -> origin/gh/skarjala/14/head 2025-08-14T21:43:06.7501173Z * [new branch] gh/skarjala/14/orig -> origin/gh/skarjala/14/orig 2025-08-14T21:43:06.7501670Z * [new branch] gh/skarjala/15/base -> origin/gh/skarjala/15/base 2025-08-14T21:43:06.7502156Z * [new branch] gh/skarjala/15/head -> origin/gh/skarjala/15/head 2025-08-14T21:43:06.7502643Z * [new branch] gh/skarjala/15/orig -> origin/gh/skarjala/15/orig 2025-08-14T21:43:06.7503126Z * [new branch] gh/skarjala/16/base -> origin/gh/skarjala/16/base 2025-08-14T21:43:06.7503608Z * [new branch] gh/skarjala/16/head -> origin/gh/skarjala/16/head 2025-08-14T21:43:06.7504094Z * [new branch] gh/skarjala/16/orig -> origin/gh/skarjala/16/orig 2025-08-14T21:43:06.7504573Z * [new branch] gh/skarjala/17/base -> origin/gh/skarjala/17/base 2025-08-14T21:43:06.7505065Z * [new branch] gh/skarjala/17/head -> origin/gh/skarjala/17/head 2025-08-14T21:43:06.7505553Z * [new branch] gh/skarjala/17/orig -> origin/gh/skarjala/17/orig 2025-08-14T21:43:06.7506137Z * [new branch] gh/skarjala/18/base -> origin/gh/skarjala/18/base 2025-08-14T21:43:06.7939956Z * [new branch] gh/skarjala/18/head -> origin/gh/skarjala/18/head 2025-08-14T21:43:06.7940495Z * [new branch] gh/skarjala/18/orig -> origin/gh/skarjala/18/orig 2025-08-14T21:43:06.7940998Z * [new branch] gh/skarjala/19/base -> origin/gh/skarjala/19/base 2025-08-14T21:43:06.7941516Z * [new branch] gh/skarjala/19/head -> origin/gh/skarjala/19/head 2025-08-14T21:43:06.7941994Z * [new branch] gh/skarjala/19/orig -> origin/gh/skarjala/19/orig 2025-08-14T21:43:06.7942495Z * [new branch] gh/soulitzer/269/base -> origin/gh/soulitzer/269/base 2025-08-14T21:43:06.7943005Z * [new branch] gh/soulitzer/269/head -> origin/gh/soulitzer/269/head 2025-08-14T21:43:06.7943531Z * [new branch] gh/soulitzer/269/orig -> origin/gh/soulitzer/269/orig 2025-08-14T21:43:06.7944040Z * [new branch] gh/soulitzer/276/base -> origin/gh/soulitzer/276/base 2025-08-14T21:43:06.7944534Z * [new branch] gh/soulitzer/276/head -> origin/gh/soulitzer/276/head 2025-08-14T21:43:06.7945041Z * [new branch] gh/soulitzer/276/orig -> origin/gh/soulitzer/276/orig 2025-08-14T21:43:06.7945532Z * [new branch] gh/soulitzer/287/base -> origin/gh/soulitzer/287/base 2025-08-14T21:43:06.7946039Z * [new branch] gh/soulitzer/287/head -> origin/gh/soulitzer/287/head 2025-08-14T21:43:06.7946556Z * [new branch] gh/soulitzer/287/orig -> origin/gh/soulitzer/287/orig 2025-08-14T21:43:06.7947052Z * [new branch] gh/soulitzer/296/base -> origin/gh/soulitzer/296/base 2025-08-14T21:43:06.7947552Z * [new branch] gh/soulitzer/296/head -> origin/gh/soulitzer/296/head 2025-08-14T21:43:06.7948051Z * [new branch] gh/soulitzer/296/orig -> origin/gh/soulitzer/296/orig 2025-08-14T21:43:06.7948550Z * [new branch] gh/soulitzer/299/base -> origin/gh/soulitzer/299/base 2025-08-14T21:43:06.7949052Z * [new branch] gh/soulitzer/299/head -> origin/gh/soulitzer/299/head 2025-08-14T21:43:06.7949552Z * [new branch] gh/soulitzer/299/orig -> origin/gh/soulitzer/299/orig 2025-08-14T21:43:06.7950248Z * [new branch] gh/soulitzer/300/base -> origin/gh/soulitzer/300/base 2025-08-14T21:43:06.7950756Z * [new branch] gh/soulitzer/300/head -> origin/gh/soulitzer/300/head 2025-08-14T21:43:06.7951258Z * [new branch] gh/soulitzer/300/orig -> origin/gh/soulitzer/300/orig 2025-08-14T21:43:06.7951765Z * [new branch] gh/soulitzer/301/base -> origin/gh/soulitzer/301/base 2025-08-14T21:43:06.7952268Z * [new branch] gh/soulitzer/301/head -> origin/gh/soulitzer/301/head 2025-08-14T21:43:06.7952781Z * [new branch] gh/soulitzer/301/orig -> origin/gh/soulitzer/301/orig 2025-08-14T21:43:06.7953280Z * [new branch] gh/soulitzer/313/base -> origin/gh/soulitzer/313/base 2025-08-14T21:43:06.7953781Z * [new branch] gh/soulitzer/313/head -> origin/gh/soulitzer/313/head 2025-08-14T21:43:06.7954271Z * [new branch] gh/soulitzer/313/orig -> origin/gh/soulitzer/313/orig 2025-08-14T21:43:06.7954779Z * [new branch] gh/soulitzer/319/base -> origin/gh/soulitzer/319/base 2025-08-14T21:43:06.7955290Z * [new branch] gh/soulitzer/319/head -> origin/gh/soulitzer/319/head 2025-08-14T21:43:06.7955788Z * [new branch] gh/soulitzer/319/orig -> origin/gh/soulitzer/319/orig 2025-08-14T21:43:06.7956287Z * [new branch] gh/soulitzer/320/base -> origin/gh/soulitzer/320/base 2025-08-14T21:43:06.7956958Z * [new branch] gh/soulitzer/320/head -> origin/gh/soulitzer/320/head 2025-08-14T21:43:06.7957470Z * [new branch] gh/soulitzer/320/orig -> origin/gh/soulitzer/320/orig 2025-08-14T21:43:06.7957990Z * [new branch] gh/soulitzer/336/base -> origin/gh/soulitzer/336/base 2025-08-14T21:43:06.7958495Z * [new branch] gh/soulitzer/336/head -> origin/gh/soulitzer/336/head 2025-08-14T21:43:06.7959004Z * [new branch] gh/soulitzer/336/orig -> origin/gh/soulitzer/336/orig 2025-08-14T21:43:06.7959505Z * [new branch] gh/soulitzer/347/base -> origin/gh/soulitzer/347/base 2025-08-14T21:43:06.7960017Z * [new branch] gh/soulitzer/347/head -> origin/gh/soulitzer/347/head 2025-08-14T21:43:06.7960524Z * [new branch] gh/soulitzer/347/orig -> origin/gh/soulitzer/347/orig 2025-08-14T21:43:06.7961020Z * [new branch] gh/soulitzer/349/base -> origin/gh/soulitzer/349/base 2025-08-14T21:43:06.7961536Z * [new branch] gh/soulitzer/349/head -> origin/gh/soulitzer/349/head 2025-08-14T21:43:06.7962037Z * [new branch] gh/soulitzer/349/orig -> origin/gh/soulitzer/349/orig 2025-08-14T21:43:06.7962541Z * [new branch] gh/soulitzer/350/base -> origin/gh/soulitzer/350/base 2025-08-14T21:43:06.7963058Z * [new branch] gh/soulitzer/350/head -> origin/gh/soulitzer/350/head 2025-08-14T21:43:06.8387352Z * [new branch] gh/soulitzer/350/orig -> origin/gh/soulitzer/350/orig 2025-08-14T21:43:06.8387963Z * [new branch] gh/soulitzer/351/base -> origin/gh/soulitzer/351/base 2025-08-14T21:43:06.8388513Z * [new branch] gh/soulitzer/351/head -> origin/gh/soulitzer/351/head 2025-08-14T21:43:06.8389059Z * [new branch] gh/soulitzer/351/orig -> origin/gh/soulitzer/351/orig 2025-08-14T21:43:06.8389615Z * [new branch] gh/soulitzer/353/base -> origin/gh/soulitzer/353/base 2025-08-14T21:43:06.8390158Z * [new branch] gh/soulitzer/353/head -> origin/gh/soulitzer/353/head 2025-08-14T21:43:06.8390709Z * [new branch] gh/soulitzer/353/orig -> origin/gh/soulitzer/353/orig 2025-08-14T21:43:06.8391252Z * [new branch] gh/soulitzer/358/base -> origin/gh/soulitzer/358/base 2025-08-14T21:43:06.8391838Z * [new branch] gh/soulitzer/358/head -> origin/gh/soulitzer/358/head 2025-08-14T21:43:06.8392565Z * [new branch] gh/soulitzer/358/orig -> origin/gh/soulitzer/358/orig 2025-08-14T21:43:06.8393068Z * [new branch] gh/soulitzer/359/base -> origin/gh/soulitzer/359/base 2025-08-14T21:43:06.8393577Z * [new branch] gh/soulitzer/359/head -> origin/gh/soulitzer/359/head 2025-08-14T21:43:06.8394075Z * [new branch] gh/soulitzer/359/orig -> origin/gh/soulitzer/359/orig 2025-08-14T21:43:06.8394595Z * [new branch] gh/soulitzer/362/base -> origin/gh/soulitzer/362/base 2025-08-14T21:43:06.8395093Z * [new branch] gh/soulitzer/362/head -> origin/gh/soulitzer/362/head 2025-08-14T21:43:06.8395606Z * [new branch] gh/soulitzer/362/orig -> origin/gh/soulitzer/362/orig 2025-08-14T21:43:06.8396103Z * [new branch] gh/soulitzer/372/base -> origin/gh/soulitzer/372/base 2025-08-14T21:43:06.8396600Z * [new branch] gh/soulitzer/372/head -> origin/gh/soulitzer/372/head 2025-08-14T21:43:06.8397155Z * [new branch] gh/soulitzer/372/orig -> origin/gh/soulitzer/372/orig 2025-08-14T21:43:06.8397650Z * [new branch] gh/swolchok/728/next -> origin/gh/swolchok/728/next 2025-08-14T21:43:06.8398196Z * [new branch] gh/swolchok/758/base -> origin/gh/swolchok/758/base 2025-08-14T21:43:06.8398731Z * [new branch] gh/swolchok/758/head -> origin/gh/swolchok/758/head 2025-08-14T21:43:06.8399393Z * [new branch] gh/swolchok/758/orig -> origin/gh/swolchok/758/orig 2025-08-14T21:43:06.8399892Z * [new branch] gh/swolchok/767/base -> origin/gh/swolchok/767/base 2025-08-14T21:43:06.8400381Z * [new branch] gh/swolchok/767/head -> origin/gh/swolchok/767/head 2025-08-14T21:43:06.8400881Z * [new branch] gh/swolchok/767/orig -> origin/gh/swolchok/767/orig 2025-08-14T21:43:06.8401384Z * [new branch] gh/swolchok/768/base -> origin/gh/swolchok/768/base 2025-08-14T21:43:06.8401889Z * [new branch] gh/swolchok/768/head -> origin/gh/swolchok/768/head 2025-08-14T21:43:06.8402386Z * [new branch] gh/swolchok/768/orig -> origin/gh/swolchok/768/orig 2025-08-14T21:43:06.8402864Z * [new branch] gh/swolchok/769/base -> origin/gh/swolchok/769/base 2025-08-14T21:43:06.8403361Z * [new branch] gh/swolchok/769/head -> origin/gh/swolchok/769/head 2025-08-14T21:43:06.8403854Z * [new branch] gh/swolchok/769/orig -> origin/gh/swolchok/769/orig 2025-08-14T21:43:06.8404343Z * [new branch] gh/swolchok/771/base -> origin/gh/swolchok/771/base 2025-08-14T21:43:06.8404881Z * [new branch] gh/swolchok/771/head -> origin/gh/swolchok/771/head 2025-08-14T21:43:06.8405443Z * [new branch] gh/swolchok/771/orig -> origin/gh/swolchok/771/orig 2025-08-14T21:43:06.8405955Z * [new branch] gh/swolchok/772/base -> origin/gh/swolchok/772/base 2025-08-14T21:43:06.8406442Z * [new branch] gh/swolchok/772/head -> origin/gh/swolchok/772/head 2025-08-14T21:43:06.8406924Z * [new branch] gh/swolchok/772/orig -> origin/gh/swolchok/772/orig 2025-08-14T21:43:06.8407417Z * [new branch] gh/swolchok/773/base -> origin/gh/swolchok/773/base 2025-08-14T21:43:06.8407907Z * [new branch] gh/swolchok/773/head -> origin/gh/swolchok/773/head 2025-08-14T21:43:06.8408400Z * [new branch] gh/swolchok/773/orig -> origin/gh/swolchok/773/orig 2025-08-14T21:43:06.8408889Z * [new branch] gh/swolchok/786/base -> origin/gh/swolchok/786/base 2025-08-14T21:43:06.8409375Z * [new branch] gh/swolchok/786/head -> origin/gh/swolchok/786/head 2025-08-14T21:43:06.8409983Z * [new branch] gh/swolchok/786/orig -> origin/gh/swolchok/786/orig 2025-08-14T21:43:06.8410475Z * [new branch] gh/swolchok/787/base -> origin/gh/swolchok/787/base 2025-08-14T21:43:06.8411023Z * [new branch] gh/swolchok/787/head -> origin/gh/swolchok/787/head 2025-08-14T21:43:06.8866873Z * [new branch] gh/swolchok/787/orig -> origin/gh/swolchok/787/orig 2025-08-14T21:43:06.8867417Z * [new branch] gh/syed-ahmed/2/base -> origin/gh/syed-ahmed/2/base 2025-08-14T21:43:06.8867955Z * [new branch] gh/syed-ahmed/2/head -> origin/gh/syed-ahmed/2/head 2025-08-14T21:43:06.8868467Z * [new branch] gh/syed-ahmed/2/orig -> origin/gh/syed-ahmed/2/orig 2025-08-14T21:43:06.8868963Z * [new branch] gh/syed-ahmed/3/base -> origin/gh/syed-ahmed/3/base 2025-08-14T21:43:06.8869455Z * [new branch] gh/syed-ahmed/3/head -> origin/gh/syed-ahmed/3/head 2025-08-14T21:43:06.8869958Z * [new branch] gh/syed-ahmed/3/orig -> origin/gh/syed-ahmed/3/orig 2025-08-14T21:43:06.8870455Z * [new branch] gh/syed-ahmed/4/base -> origin/gh/syed-ahmed/4/base 2025-08-14T21:43:06.8870988Z * [new branch] gh/syed-ahmed/4/head -> origin/gh/syed-ahmed/4/head 2025-08-14T21:43:06.8871524Z * [new branch] gh/syed-ahmed/4/orig -> origin/gh/syed-ahmed/4/orig 2025-08-14T21:43:06.8872278Z * [new branch] gh/teja-rao/3/base -> origin/gh/teja-rao/3/base 2025-08-14T21:43:06.8872797Z * [new branch] gh/teja-rao/3/head -> origin/gh/teja-rao/3/head 2025-08-14T21:43:06.8873316Z * [new branch] gh/teja-rao/3/orig -> origin/gh/teja-rao/3/orig 2025-08-14T21:43:06.8873836Z * [new branch] gh/tianyu-l/2/base -> origin/gh/tianyu-l/2/base 2025-08-14T21:43:06.8874358Z * [new branch] gh/tianyu-l/2/head -> origin/gh/tianyu-l/2/head 2025-08-14T21:43:06.8874892Z * [new branch] gh/tianyu-l/2/orig -> origin/gh/tianyu-l/2/orig 2025-08-14T21:43:06.8875428Z * [new branch] gh/titaiwangms/1/base -> origin/gh/titaiwangms/1/base 2025-08-14T21:43:06.8875990Z * [new branch] gh/titaiwangms/1/head -> origin/gh/titaiwangms/1/head 2025-08-14T21:43:06.8876535Z * [new branch] gh/titaiwangms/1/orig -> origin/gh/titaiwangms/1/orig 2025-08-14T21:43:06.8877145Z * [new branch] gh/titaiwangms/2/base -> origin/gh/titaiwangms/2/base 2025-08-14T21:43:06.8877689Z * [new branch] gh/titaiwangms/2/head -> origin/gh/titaiwangms/2/head 2025-08-14T21:43:06.8878246Z * [new branch] gh/titaiwangms/2/orig -> origin/gh/titaiwangms/2/orig 2025-08-14T21:43:06.8878834Z * [new branch] gh/titaiwangms/3/base -> origin/gh/titaiwangms/3/base 2025-08-14T21:43:06.8879383Z * [new branch] gh/titaiwangms/3/head -> origin/gh/titaiwangms/3/head 2025-08-14T21:43:06.8879934Z * [new branch] gh/titaiwangms/3/orig -> origin/gh/titaiwangms/3/orig 2025-08-14T21:43:06.8880488Z * [new branch] gh/titaiwangms/4/base -> origin/gh/titaiwangms/4/base 2025-08-14T21:43:06.8881043Z * [new branch] gh/titaiwangms/4/head -> origin/gh/titaiwangms/4/head 2025-08-14T21:43:06.8881606Z * [new branch] gh/titaiwangms/4/orig -> origin/gh/titaiwangms/4/orig 2025-08-14T21:43:06.8882157Z * [new branch] gh/titaiwangms/5/base -> origin/gh/titaiwangms/5/base 2025-08-14T21:43:06.8882669Z * [new branch] gh/titaiwangms/5/head -> origin/gh/titaiwangms/5/head 2025-08-14T21:43:06.8883171Z * [new branch] gh/titaiwangms/5/orig -> origin/gh/titaiwangms/5/orig 2025-08-14T21:43:06.8883687Z * [new branch] gh/titaiwangms/6/base -> origin/gh/titaiwangms/6/base 2025-08-14T21:43:06.8884329Z * [new branch] gh/titaiwangms/6/head -> origin/gh/titaiwangms/6/head 2025-08-14T21:43:06.8884844Z * [new branch] gh/titaiwangms/6/orig -> origin/gh/titaiwangms/6/orig 2025-08-14T21:43:06.8885365Z * [new branch] gh/titaiwangms/7/base -> origin/gh/titaiwangms/7/base 2025-08-14T21:43:06.8885877Z * [new branch] gh/titaiwangms/7/head -> origin/gh/titaiwangms/7/head 2025-08-14T21:43:06.8886397Z * [new branch] gh/titaiwangms/7/orig -> origin/gh/titaiwangms/7/orig 2025-08-14T21:43:06.8886919Z * [new branch] gh/titaiwangms/8/base -> origin/gh/titaiwangms/8/base 2025-08-14T21:43:06.8887461Z * [new branch] gh/titaiwangms/8/head -> origin/gh/titaiwangms/8/head 2025-08-14T21:43:06.8888019Z * [new branch] gh/titaiwangms/8/orig -> origin/gh/titaiwangms/8/orig 2025-08-14T21:43:06.8888591Z * [new branch] gh/tugsbayasgalan/1/base -> origin/gh/tugsbayasgalan/1/base 2025-08-14T21:43:06.8889155Z * [new branch] gh/tugsbayasgalan/1/head -> origin/gh/tugsbayasgalan/1/head 2025-08-14T21:43:06.8889702Z * [new branch] gh/tugsbayasgalan/1/orig -> origin/gh/tugsbayasgalan/1/orig 2025-08-14T21:43:06.8890208Z * [new branch] gh/v0i0/1/base -> origin/gh/v0i0/1/base 2025-08-14T21:43:06.8890668Z * [new branch] gh/v0i0/1/head -> origin/gh/v0i0/1/head 2025-08-14T21:43:06.8891213Z * [new branch] gh/v0i0/1/orig -> origin/gh/v0i0/1/orig 2025-08-14T21:43:06.8891670Z * [new branch] gh/v0i0/2/base -> origin/gh/v0i0/2/base 2025-08-14T21:43:06.9330841Z * [new branch] gh/v0i0/2/head -> origin/gh/v0i0/2/head 2025-08-14T21:43:06.9331353Z * [new branch] gh/v0i0/2/orig -> origin/gh/v0i0/2/orig 2025-08-14T21:43:06.9331813Z * [new branch] gh/v0i0/3/base -> origin/gh/v0i0/3/base 2025-08-14T21:43:06.9332279Z * [new branch] gh/v0i0/3/head -> origin/gh/v0i0/3/head 2025-08-14T21:43:06.9332721Z * [new branch] gh/v0i0/3/orig -> origin/gh/v0i0/3/orig 2025-08-14T21:43:06.9333161Z * [new branch] gh/v0i0/4/base -> origin/gh/v0i0/4/base 2025-08-14T21:43:06.9333600Z * [new branch] gh/v0i0/4/head -> origin/gh/v0i0/4/head 2025-08-14T21:43:06.9334117Z * [new branch] gh/v0i0/4/orig -> origin/gh/v0i0/4/orig 2025-08-14T21:43:06.9334610Z * [new branch] gh/v0i0/5/base -> origin/gh/v0i0/5/base 2025-08-14T21:43:06.9335048Z * [new branch] gh/v0i0/5/head -> origin/gh/v0i0/5/head 2025-08-14T21:43:06.9335504Z * [new branch] gh/v0i0/5/orig -> origin/gh/v0i0/5/orig 2025-08-14T21:43:06.9335938Z * [new branch] gh/v0i0/6/base -> origin/gh/v0i0/6/base 2025-08-14T21:43:06.9336384Z * [new branch] gh/v0i0/6/head -> origin/gh/v0i0/6/head 2025-08-14T21:43:06.9336831Z * [new branch] gh/v0i0/6/orig -> origin/gh/v0i0/6/orig 2025-08-14T21:43:06.9337293Z * [new branch] gh/vkuzo/1/next -> origin/gh/vkuzo/1/next 2025-08-14T21:43:06.9337744Z * [new branch] gh/vkuzo/2/next -> origin/gh/vkuzo/2/next 2025-08-14T21:43:06.9338207Z * [new branch] gh/vkuzo/3/next -> origin/gh/vkuzo/3/next 2025-08-14T21:43:06.9338689Z * [new branch] gh/wconstab/392/base -> origin/gh/wconstab/392/base 2025-08-14T21:43:06.9339190Z * [new branch] gh/wconstab/392/head -> origin/gh/wconstab/392/head 2025-08-14T21:43:06.9339735Z * [new branch] gh/wconstab/392/orig -> origin/gh/wconstab/392/orig 2025-08-14T21:43:06.9340272Z * [new branch] gh/wconstab/419/base -> origin/gh/wconstab/419/base 2025-08-14T21:43:06.9340949Z * [new branch] gh/wconstab/419/head -> origin/gh/wconstab/419/head 2025-08-14T21:43:06.9341451Z * [new branch] gh/wconstab/419/orig -> origin/gh/wconstab/419/orig 2025-08-14T21:43:06.9341935Z * [new branch] gh/wconstab/424/base -> origin/gh/wconstab/424/base 2025-08-14T21:43:06.9342429Z * [new branch] gh/wconstab/424/head -> origin/gh/wconstab/424/head 2025-08-14T21:43:06.9342925Z * [new branch] gh/wconstab/424/orig -> origin/gh/wconstab/424/orig 2025-08-14T21:43:06.9343421Z * [new branch] gh/wconstab/425/base -> origin/gh/wconstab/425/base 2025-08-14T21:43:06.9343911Z * [new branch] gh/wconstab/425/head -> origin/gh/wconstab/425/head 2025-08-14T21:43:06.9344404Z * [new branch] gh/wconstab/425/orig -> origin/gh/wconstab/425/orig 2025-08-14T21:43:06.9344895Z * [new branch] gh/wconstab/426/base -> origin/gh/wconstab/426/base 2025-08-14T21:43:06.9345440Z * [new branch] gh/wconstab/426/head -> origin/gh/wconstab/426/head 2025-08-14T21:43:06.9345985Z * [new branch] gh/wconstab/426/orig -> origin/gh/wconstab/426/orig 2025-08-14T21:43:06.9346466Z * [new branch] gh/wconstab/427/base -> origin/gh/wconstab/427/base 2025-08-14T21:43:06.9346952Z * [new branch] gh/wconstab/427/head -> origin/gh/wconstab/427/head 2025-08-14T21:43:06.9347565Z * [new branch] gh/wconstab/427/orig -> origin/gh/wconstab/427/orig 2025-08-14T21:43:06.9348052Z * [new branch] gh/wconstab/428/base -> origin/gh/wconstab/428/base 2025-08-14T21:43:06.9348545Z * [new branch] gh/wconstab/428/head -> origin/gh/wconstab/428/head 2025-08-14T21:43:06.9349031Z * [new branch] gh/wconstab/428/orig -> origin/gh/wconstab/428/orig 2025-08-14T21:43:06.9349530Z * [new branch] gh/wconstab/429/base -> origin/gh/wconstab/429/base 2025-08-14T21:43:06.9350024Z * [new branch] gh/wconstab/429/head -> origin/gh/wconstab/429/head 2025-08-14T21:43:06.9350508Z * [new branch] gh/wconstab/429/orig -> origin/gh/wconstab/429/orig 2025-08-14T21:43:06.9351044Z * [new branch] gh/wconstab/430/base -> origin/gh/wconstab/430/base 2025-08-14T21:43:06.9351589Z * [new branch] gh/wconstab/430/head -> origin/gh/wconstab/430/head 2025-08-14T21:43:06.9352082Z * [new branch] gh/wconstab/430/orig -> origin/gh/wconstab/430/orig 2025-08-14T21:43:06.9352568Z * [new branch] gh/wconstab/431/base -> origin/gh/wconstab/431/base 2025-08-14T21:43:06.9353055Z * [new branch] gh/wconstab/431/head -> origin/gh/wconstab/431/head 2025-08-14T21:43:06.9353547Z * [new branch] gh/wconstab/431/orig -> origin/gh/wconstab/431/orig 2025-08-14T21:43:07.1002915Z * [new branch] gh/wconstab/432/base -> origin/gh/wconstab/432/base 2025-08-14T21:43:07.1003480Z * [new branch] gh/wconstab/432/head -> origin/gh/wconstab/432/head 2025-08-14T21:43:07.1003974Z * [new branch] gh/wconstab/432/orig -> origin/gh/wconstab/432/orig 2025-08-14T21:43:07.1004476Z * [new branch] gh/wconstab/433/base -> origin/gh/wconstab/433/base 2025-08-14T21:43:07.1005011Z * [new branch] gh/wconstab/433/head -> origin/gh/wconstab/433/head 2025-08-14T21:43:07.1005496Z * [new branch] gh/wconstab/433/orig -> origin/gh/wconstab/433/orig 2025-08-14T21:43:07.1005986Z * [new branch] gh/wconstab/434/base -> origin/gh/wconstab/434/base 2025-08-14T21:43:07.1006470Z * [new branch] gh/wconstab/434/head -> origin/gh/wconstab/434/head 2025-08-14T21:43:07.1007152Z * [new branch] gh/wconstab/434/orig -> origin/gh/wconstab/434/orig 2025-08-14T21:43:07.1007661Z * [new branch] gh/wconstab/435/base -> origin/gh/wconstab/435/base 2025-08-14T21:43:07.1008156Z * [new branch] gh/wconstab/435/head -> origin/gh/wconstab/435/head 2025-08-14T21:43:07.1008661Z * [new branch] gh/wconstab/435/orig -> origin/gh/wconstab/435/orig 2025-08-14T21:43:07.1009151Z * [new branch] gh/wconstab/436/base -> origin/gh/wconstab/436/base 2025-08-14T21:43:07.1009651Z * [new branch] gh/wconstab/436/head -> origin/gh/wconstab/436/head 2025-08-14T21:43:07.1010139Z * [new branch] gh/wconstab/436/orig -> origin/gh/wconstab/436/orig 2025-08-14T21:43:07.1010641Z * [new branch] gh/wconstab/437/base -> origin/gh/wconstab/437/base 2025-08-14T21:43:07.1011139Z * [new branch] gh/wconstab/437/head -> origin/gh/wconstab/437/head 2025-08-14T21:43:07.1011623Z * [new branch] gh/wconstab/437/orig -> origin/gh/wconstab/437/orig 2025-08-14T21:43:07.1012127Z * [new branch] gh/wconstab/438/base -> origin/gh/wconstab/438/base 2025-08-14T21:43:07.1012612Z * [new branch] gh/wconstab/438/head -> origin/gh/wconstab/438/head 2025-08-14T21:43:07.1013103Z * [new branch] gh/wconstab/438/orig -> origin/gh/wconstab/438/orig 2025-08-14T21:43:07.1013728Z * [new branch] gh/wconstab/439/base -> origin/gh/wconstab/439/base 2025-08-14T21:43:07.1014222Z * [new branch] gh/wconstab/439/head -> origin/gh/wconstab/439/head 2025-08-14T21:43:07.1014719Z * [new branch] gh/wconstab/439/orig -> origin/gh/wconstab/439/orig 2025-08-14T21:43:07.1015206Z * [new branch] gh/wconstab/440/base -> origin/gh/wconstab/440/base 2025-08-14T21:43:07.1015713Z * [new branch] gh/wconstab/440/head -> origin/gh/wconstab/440/head 2025-08-14T21:43:07.1016223Z * [new branch] gh/wconstab/440/orig -> origin/gh/wconstab/440/orig 2025-08-14T21:43:07.1016716Z * [new branch] gh/wconstab/441/base -> origin/gh/wconstab/441/base 2025-08-14T21:43:07.1017208Z * [new branch] gh/wconstab/441/head -> origin/gh/wconstab/441/head 2025-08-14T21:43:07.1017696Z * [new branch] gh/wconstab/441/orig -> origin/gh/wconstab/441/orig 2025-08-14T21:43:07.1018197Z * [new branch] gh/wconstab/442/base -> origin/gh/wconstab/442/base 2025-08-14T21:43:07.1018693Z * [new branch] gh/wconstab/442/head -> origin/gh/wconstab/442/head 2025-08-14T21:43:07.1019178Z * [new branch] gh/wconstab/442/orig -> origin/gh/wconstab/442/orig 2025-08-14T21:43:07.1019683Z * [new branch] gh/weifengpy/27/base -> origin/gh/weifengpy/27/base 2025-08-14T21:43:07.1020192Z * [new branch] gh/weifengpy/27/head -> origin/gh/weifengpy/27/head 2025-08-14T21:43:07.1020698Z * [new branch] gh/weifengpy/27/orig -> origin/gh/weifengpy/27/orig 2025-08-14T21:43:07.1021191Z * [new branch] gh/weifengpy/30/base -> origin/gh/weifengpy/30/base 2025-08-14T21:43:07.1021689Z * [new branch] gh/weifengpy/30/head -> origin/gh/weifengpy/30/head 2025-08-14T21:43:07.1022183Z * [new branch] gh/weifengpy/30/orig -> origin/gh/weifengpy/30/orig 2025-08-14T21:43:07.1022685Z * [new branch] gh/weifengpy/31/base -> origin/gh/weifengpy/31/base 2025-08-14T21:43:07.1023190Z * [new branch] gh/weifengpy/31/head -> origin/gh/weifengpy/31/head 2025-08-14T21:43:07.1023683Z * [new branch] gh/weifengpy/31/orig -> origin/gh/weifengpy/31/orig 2025-08-14T21:43:07.1024182Z * [new branch] gh/weifengpy/32/base -> origin/gh/weifengpy/32/base 2025-08-14T21:43:07.1024781Z * [new branch] gh/weifengpy/32/head -> origin/gh/weifengpy/32/head 2025-08-14T21:43:07.1025288Z * [new branch] gh/weifengpy/32/orig -> origin/gh/weifengpy/32/orig 2025-08-14T21:43:07.1025793Z * [new branch] gh/weifengpy/33/base -> origin/gh/weifengpy/33/base 2025-08-14T21:43:07.1026289Z * [new branch] gh/weifengpy/33/head -> origin/gh/weifengpy/33/head 2025-08-14T21:43:07.1449509Z * [new branch] gh/weifengpy/33/orig -> origin/gh/weifengpy/33/orig 2025-08-14T21:43:07.1450131Z * [new branch] gh/williamwen42/196/base -> origin/gh/williamwen42/196/base 2025-08-14T21:43:07.1450751Z * [new branch] gh/williamwen42/196/head -> origin/gh/williamwen42/196/head 2025-08-14T21:43:07.1451289Z * [new branch] gh/williamwen42/196/orig -> origin/gh/williamwen42/196/orig 2025-08-14T21:43:07.1451825Z * [new branch] gh/williamwen42/209/base -> origin/gh/williamwen42/209/base 2025-08-14T21:43:07.1452361Z * [new branch] gh/williamwen42/209/head -> origin/gh/williamwen42/209/head 2025-08-14T21:43:07.1452894Z * [new branch] gh/williamwen42/209/orig -> origin/gh/williamwen42/209/orig 2025-08-14T21:43:07.1453422Z * [new branch] gh/williamwen42/250/base -> origin/gh/williamwen42/250/base 2025-08-14T21:43:07.1453958Z * [new branch] gh/williamwen42/250/head -> origin/gh/williamwen42/250/head 2025-08-14T21:43:07.1455235Z * [new branch] gh/williamwen42/250/orig -> origin/gh/williamwen42/250/orig 2025-08-14T21:43:07.1455776Z * [new branch] gh/williamwen42/252/base -> origin/gh/williamwen42/252/base 2025-08-14T21:43:07.1456404Z * [new branch] gh/williamwen42/252/head -> origin/gh/williamwen42/252/head 2025-08-14T21:43:07.1456975Z * [new branch] gh/williamwen42/252/orig -> origin/gh/williamwen42/252/orig 2025-08-14T21:43:07.1457518Z * [new branch] gh/williamwen42/256/base -> origin/gh/williamwen42/256/base 2025-08-14T21:43:07.1458045Z * [new branch] gh/williamwen42/256/head -> origin/gh/williamwen42/256/head 2025-08-14T21:43:07.1458575Z * [new branch] gh/williamwen42/256/orig -> origin/gh/williamwen42/256/orig 2025-08-14T21:43:07.1459112Z * [new branch] gh/williamwen42/258/base -> origin/gh/williamwen42/258/base 2025-08-14T21:43:07.1459644Z * [new branch] gh/williamwen42/258/head -> origin/gh/williamwen42/258/head 2025-08-14T21:43:07.1460180Z * [new branch] gh/williamwen42/258/orig -> origin/gh/williamwen42/258/orig 2025-08-14T21:43:07.1460701Z * [new branch] gh/williamwen42/260/base -> origin/gh/williamwen42/260/base 2025-08-14T21:43:07.1461232Z * [new branch] gh/williamwen42/260/head -> origin/gh/williamwen42/260/head 2025-08-14T21:43:07.1461771Z * [new branch] gh/williamwen42/260/orig -> origin/gh/williamwen42/260/orig 2025-08-14T21:43:07.1462386Z * [new branch] gh/williamwen42/261/base -> origin/gh/williamwen42/261/base 2025-08-14T21:43:07.1462967Z * [new branch] gh/williamwen42/261/head -> origin/gh/williamwen42/261/head 2025-08-14T21:43:07.1463494Z * [new branch] gh/williamwen42/261/orig -> origin/gh/williamwen42/261/orig 2025-08-14T21:43:07.1464031Z * [new branch] gh/williamwen42/262/base -> origin/gh/williamwen42/262/base 2025-08-14T21:43:07.1464577Z * [new branch] gh/williamwen42/262/head -> origin/gh/williamwen42/262/head 2025-08-14T21:43:07.1465102Z * [new branch] gh/williamwen42/262/orig -> origin/gh/williamwen42/262/orig 2025-08-14T21:43:07.1465638Z * [new branch] gh/williamwen42/263/base -> origin/gh/williamwen42/263/base 2025-08-14T21:43:07.1466162Z * [new branch] gh/williamwen42/263/head -> origin/gh/williamwen42/263/head 2025-08-14T21:43:07.1466812Z * [new branch] gh/williamwen42/263/orig -> origin/gh/williamwen42/263/orig 2025-08-14T21:43:07.1467353Z * [new branch] gh/williamwen42/264/base -> origin/gh/williamwen42/264/base 2025-08-14T21:43:07.1467913Z * [new branch] gh/williamwen42/264/head -> origin/gh/williamwen42/264/head 2025-08-14T21:43:07.1468498Z * [new branch] gh/williamwen42/264/orig -> origin/gh/williamwen42/264/orig 2025-08-14T21:43:07.1469071Z * [new branch] gh/williamwen42/265/base -> origin/gh/williamwen42/265/base 2025-08-14T21:43:07.1469614Z * [new branch] gh/williamwen42/265/head -> origin/gh/williamwen42/265/head 2025-08-14T21:43:07.1470152Z * [new branch] gh/williamwen42/265/orig -> origin/gh/williamwen42/265/orig 2025-08-14T21:43:07.1470682Z * [new branch] gh/williamwen42/266/base -> origin/gh/williamwen42/266/base 2025-08-14T21:43:07.1471223Z * [new branch] gh/williamwen42/266/head -> origin/gh/williamwen42/266/head 2025-08-14T21:43:07.1471751Z * [new branch] gh/williamwen42/266/orig -> origin/gh/williamwen42/266/orig 2025-08-14T21:43:07.1472282Z * [new branch] gh/williamwen42/267/base -> origin/gh/williamwen42/267/base 2025-08-14T21:43:07.1472804Z * [new branch] gh/williamwen42/267/head -> origin/gh/williamwen42/267/head 2025-08-14T21:43:07.1473704Z * [new branch] gh/williamwen42/267/orig -> origin/gh/williamwen42/267/orig 2025-08-14T21:43:07.1474292Z * [new branch] gh/williamwen42/268/base -> origin/gh/williamwen42/268/base 2025-08-14T21:43:07.1474903Z * [new branch] gh/williamwen42/268/head -> origin/gh/williamwen42/268/head 2025-08-14T21:43:07.1878072Z * [new branch] gh/williamwen42/268/orig -> origin/gh/williamwen42/268/orig 2025-08-14T21:43:07.1878676Z * [new branch] gh/williamwen42/269/base -> origin/gh/williamwen42/269/base 2025-08-14T21:43:07.1879255Z * [new branch] gh/williamwen42/269/head -> origin/gh/williamwen42/269/head 2025-08-14T21:43:07.1879793Z * [new branch] gh/williamwen42/269/orig -> origin/gh/williamwen42/269/orig 2025-08-14T21:43:07.1880332Z * [new branch] gh/williamwen42/270/base -> origin/gh/williamwen42/270/base 2025-08-14T21:43:07.1880964Z * [new branch] gh/williamwen42/270/head -> origin/gh/williamwen42/270/head 2025-08-14T21:43:07.1881517Z * [new branch] gh/williamwen42/270/orig -> origin/gh/williamwen42/270/orig 2025-08-14T21:43:07.1882046Z * [new branch] gh/williamwen42/271/base -> origin/gh/williamwen42/271/base 2025-08-14T21:43:07.1882575Z * [new branch] gh/williamwen42/271/head -> origin/gh/williamwen42/271/head 2025-08-14T21:43:07.1883097Z * [new branch] gh/williamwen42/271/orig -> origin/gh/williamwen42/271/orig 2025-08-14T21:43:07.1883641Z * [new branch] gh/williamwen42/272/base -> origin/gh/williamwen42/272/base 2025-08-14T21:43:07.1884165Z * [new branch] gh/williamwen42/272/head -> origin/gh/williamwen42/272/head 2025-08-14T21:43:07.1884687Z * [new branch] gh/williamwen42/272/orig -> origin/gh/williamwen42/272/orig 2025-08-14T21:43:07.1885221Z * [new branch] gh/williamwen42/273/base -> origin/gh/williamwen42/273/base 2025-08-14T21:43:07.1885748Z * [new branch] gh/williamwen42/273/head -> origin/gh/williamwen42/273/head 2025-08-14T21:43:07.1886329Z * [new branch] gh/williamwen42/273/orig -> origin/gh/williamwen42/273/orig 2025-08-14T21:43:07.1886954Z * [new branch] gh/williamwen42/274/base -> origin/gh/williamwen42/274/base 2025-08-14T21:43:07.1887482Z * [new branch] gh/williamwen42/274/head -> origin/gh/williamwen42/274/head 2025-08-14T21:43:07.1888733Z * [new branch] gh/williamwen42/274/orig -> origin/gh/williamwen42/274/orig 2025-08-14T21:43:07.1889293Z * [new branch] gh/williamwen42/275/base -> origin/gh/williamwen42/275/base 2025-08-14T21:43:07.1889833Z * [new branch] gh/williamwen42/275/head -> origin/gh/williamwen42/275/head 2025-08-14T21:43:07.1890357Z * [new branch] gh/williamwen42/276/base -> origin/gh/williamwen42/276/base 2025-08-14T21:43:07.1890887Z * [new branch] gh/williamwen42/276/head -> origin/gh/williamwen42/276/head 2025-08-14T21:43:07.1891427Z * [new branch] gh/williamwen42/276/orig -> origin/gh/williamwen42/276/orig 2025-08-14T21:43:07.1891951Z * [new branch] gh/williamwen42/277/base -> origin/gh/williamwen42/277/base 2025-08-14T21:43:07.1892572Z * [new branch] gh/williamwen42/277/head -> origin/gh/williamwen42/277/head 2025-08-14T21:43:07.1893155Z * [new branch] gh/williamwen42/277/orig -> origin/gh/williamwen42/277/orig 2025-08-14T21:43:07.1893696Z * [new branch] gh/williamwen42/278/base -> origin/gh/williamwen42/278/base 2025-08-14T21:43:07.1894234Z * [new branch] gh/williamwen42/278/head -> origin/gh/williamwen42/278/head 2025-08-14T21:43:07.1894760Z * [new branch] gh/williamwen42/278/orig -> origin/gh/williamwen42/278/orig 2025-08-14T21:43:07.1895301Z * [new branch] gh/williamwen42/279/base -> origin/gh/williamwen42/279/base 2025-08-14T21:43:07.1896181Z * [new branch] gh/williamwen42/279/head -> origin/gh/williamwen42/279/head 2025-08-14T21:43:07.1896725Z * [new branch] gh/williamwen42/279/orig -> origin/gh/williamwen42/279/orig 2025-08-14T21:43:07.1897238Z * [new branch] gh/xmfan/169/base -> origin/gh/xmfan/169/base 2025-08-14T21:43:07.1897715Z * [new branch] gh/xmfan/169/head -> origin/gh/xmfan/169/head 2025-08-14T21:43:07.1898244Z * [new branch] gh/xmfan/170/base -> origin/gh/xmfan/170/base 2025-08-14T21:43:07.1898752Z * [new branch] gh/xmfan/170/head -> origin/gh/xmfan/170/head 2025-08-14T21:43:07.1899279Z * [new branch] gh/xmfan/18/base -> origin/gh/xmfan/18/base 2025-08-14T21:43:07.1899743Z * [new branch] gh/xmfan/18/head -> origin/gh/xmfan/18/head 2025-08-14T21:43:07.1900197Z * [new branch] gh/xmfan/228/base -> origin/gh/xmfan/228/base 2025-08-14T21:43:07.1900671Z * [new branch] gh/xmfan/228/head -> origin/gh/xmfan/228/head 2025-08-14T21:43:07.1901145Z * [new branch] gh/xmfan/228/orig -> origin/gh/xmfan/228/orig 2025-08-14T21:43:07.1901611Z * [new branch] gh/xmfan/229/base -> origin/gh/xmfan/229/base 2025-08-14T21:43:07.1902079Z * [new branch] gh/xmfan/229/head -> origin/gh/xmfan/229/head 2025-08-14T21:43:07.1902540Z * [new branch] gh/xmfan/229/orig -> origin/gh/xmfan/229/orig 2025-08-14T21:43:07.2350024Z * [new branch] gh/xmfan/237/base -> origin/gh/xmfan/237/base 2025-08-14T21:43:07.2350633Z * [new branch] gh/xmfan/237/head -> origin/gh/xmfan/237/head 2025-08-14T21:43:07.2351106Z * [new branch] gh/xmfan/237/orig -> origin/gh/xmfan/237/orig 2025-08-14T21:43:07.2351584Z * [new branch] gh/xmfan/244/base -> origin/gh/xmfan/244/base 2025-08-14T21:43:07.2352076Z * [new branch] gh/xmfan/244/head -> origin/gh/xmfan/244/head 2025-08-14T21:43:07.2352555Z * [new branch] gh/xmfan/244/orig -> origin/gh/xmfan/244/orig 2025-08-14T21:43:07.2353041Z * [new branch] gh/xmfan/246/base -> origin/gh/xmfan/246/base 2025-08-14T21:43:07.2353511Z * [new branch] gh/xmfan/246/head -> origin/gh/xmfan/246/head 2025-08-14T21:43:07.2354174Z * [new branch] gh/xmfan/246/orig -> origin/gh/xmfan/246/orig 2025-08-14T21:43:07.2354648Z * [new branch] gh/xmfan/253/base -> origin/gh/xmfan/253/base 2025-08-14T21:43:07.2355116Z * [new branch] gh/xmfan/253/head -> origin/gh/xmfan/253/head 2025-08-14T21:43:07.2355639Z * [new branch] gh/xmfan/253/orig -> origin/gh/xmfan/253/orig 2025-08-14T21:43:07.2356144Z * [new branch] gh/xmfan/254/base -> origin/gh/xmfan/254/base 2025-08-14T21:43:07.2356615Z * [new branch] gh/xmfan/254/head -> origin/gh/xmfan/254/head 2025-08-14T21:43:07.2357140Z * [new branch] gh/xmfan/254/orig -> origin/gh/xmfan/254/orig 2025-08-14T21:43:07.2357603Z * [new branch] gh/xmfan/260/base -> origin/gh/xmfan/260/base 2025-08-14T21:43:07.2358077Z * [new branch] gh/xmfan/260/head -> origin/gh/xmfan/260/head 2025-08-14T21:43:07.2358546Z * [new branch] gh/xmfan/260/orig -> origin/gh/xmfan/260/orig 2025-08-14T21:43:07.2359020Z * [new branch] gh/xmfan/262/base -> origin/gh/xmfan/262/base 2025-08-14T21:43:07.2359483Z * [new branch] gh/xmfan/262/head -> origin/gh/xmfan/262/head 2025-08-14T21:43:07.2359951Z * [new branch] gh/xmfan/262/orig -> origin/gh/xmfan/262/orig 2025-08-14T21:43:07.2360945Z * [new branch] gh/xmfan/263/base -> origin/gh/xmfan/263/base 2025-08-14T21:43:07.2361456Z * [new branch] gh/xmfan/263/head -> origin/gh/xmfan/263/head 2025-08-14T21:43:07.2361967Z * [new branch] gh/xmfan/263/orig -> origin/gh/xmfan/263/orig 2025-08-14T21:43:07.2362424Z * [new branch] gh/xmfan/264/base -> origin/gh/xmfan/264/base 2025-08-14T21:43:07.2362888Z * [new branch] gh/xmfan/264/head -> origin/gh/xmfan/264/head 2025-08-14T21:43:07.2363362Z * [new branch] gh/xmfan/264/orig -> origin/gh/xmfan/264/orig 2025-08-14T21:43:07.2363815Z * [new branch] gh/xmfan/268/base -> origin/gh/xmfan/268/base 2025-08-14T21:43:07.2364279Z * [new branch] gh/xmfan/268/head -> origin/gh/xmfan/268/head 2025-08-14T21:43:07.2364741Z * [new branch] gh/xmfan/268/orig -> origin/gh/xmfan/268/orig 2025-08-14T21:43:07.2365211Z * [new branch] gh/xmfan/269/base -> origin/gh/xmfan/269/base 2025-08-14T21:43:07.2365678Z * [new branch] gh/xmfan/269/head -> origin/gh/xmfan/269/head 2025-08-14T21:43:07.2366135Z * [new branch] gh/xmfan/269/orig -> origin/gh/xmfan/269/orig 2025-08-14T21:43:07.2366597Z * [new branch] gh/xmfan/270/base -> origin/gh/xmfan/270/base 2025-08-14T21:43:07.2367057Z * [new branch] gh/xmfan/270/head -> origin/gh/xmfan/270/head 2025-08-14T21:43:07.2367576Z * [new branch] gh/xmfan/270/orig -> origin/gh/xmfan/270/orig 2025-08-14T21:43:07.2368084Z * [new branch] gh/xmfan/271/base -> origin/gh/xmfan/271/base 2025-08-14T21:43:07.2368556Z * [new branch] gh/xmfan/271/head -> origin/gh/xmfan/271/head 2025-08-14T21:43:07.2369022Z * [new branch] gh/xmfan/271/orig -> origin/gh/xmfan/271/orig 2025-08-14T21:43:07.2369492Z * [new branch] gh/xmfan/272/base -> origin/gh/xmfan/272/base 2025-08-14T21:43:07.2369958Z * [new branch] gh/xmfan/272/head -> origin/gh/xmfan/272/head 2025-08-14T21:43:07.2370431Z * [new branch] gh/xmfan/272/orig -> origin/gh/xmfan/272/orig 2025-08-14T21:43:07.2370899Z * [new branch] gh/xmfan/273/base -> origin/gh/xmfan/273/base 2025-08-14T21:43:07.2371372Z * [new branch] gh/xmfan/273/head -> origin/gh/xmfan/273/head 2025-08-14T21:43:07.2371940Z * [new branch] gh/xmfan/273/orig -> origin/gh/xmfan/273/orig 2025-08-14T21:43:07.2372412Z * [new branch] gh/xmfan/274/base -> origin/gh/xmfan/274/base 2025-08-14T21:43:07.2372877Z * [new branch] gh/xmfan/274/head -> origin/gh/xmfan/274/head 2025-08-14T21:43:07.2373388Z * [new branch] gh/xmfan/274/orig -> origin/gh/xmfan/274/orig 2025-08-14T21:43:07.2824070Z * [new branch] gh/xmfan/275/base -> origin/gh/xmfan/275/base 2025-08-14T21:43:07.2824581Z * [new branch] gh/xmfan/275/head -> origin/gh/xmfan/275/head 2025-08-14T21:43:07.2825065Z * [new branch] gh/xmfan/275/orig -> origin/gh/xmfan/275/orig 2025-08-14T21:43:07.2825524Z * [new branch] gh/xmfan/276/base -> origin/gh/xmfan/276/base 2025-08-14T21:43:07.2825995Z * [new branch] gh/xmfan/276/head -> origin/gh/xmfan/276/head 2025-08-14T21:43:07.2826474Z * [new branch] gh/xmfan/276/orig -> origin/gh/xmfan/276/orig 2025-08-14T21:43:07.2826932Z * [new branch] gh/xmfan/277/base -> origin/gh/xmfan/277/base 2025-08-14T21:43:07.2827407Z * [new branch] gh/xmfan/277/head -> origin/gh/xmfan/277/head 2025-08-14T21:43:07.2827913Z * [new branch] gh/xmfan/277/orig -> origin/gh/xmfan/277/orig 2025-08-14T21:43:07.2829026Z * [new branch] gh/xuanzhang816/12/base -> origin/gh/xuanzhang816/12/base 2025-08-14T21:43:07.2829569Z * [new branch] gh/xuanzhang816/12/head -> origin/gh/xuanzhang816/12/head 2025-08-14T21:43:07.2830092Z * [new branch] gh/xuanzhang816/12/orig -> origin/gh/xuanzhang816/12/orig 2025-08-14T21:43:07.2830621Z * [new branch] gh/xuanzhang816/14/base -> origin/gh/xuanzhang816/14/base 2025-08-14T21:43:07.2831148Z * [new branch] gh/xuanzhang816/14/head -> origin/gh/xuanzhang816/14/head 2025-08-14T21:43:07.2831666Z * [new branch] gh/xuanzhang816/14/orig -> origin/gh/xuanzhang816/14/orig 2025-08-14T21:43:07.2832191Z * [new branch] gh/xuanzhang816/18/base -> origin/gh/xuanzhang816/18/base 2025-08-14T21:43:07.2832708Z * [new branch] gh/xuanzhang816/18/head -> origin/gh/xuanzhang816/18/head 2025-08-14T21:43:07.2833227Z * [new branch] gh/xuanzhang816/18/orig -> origin/gh/xuanzhang816/18/orig 2025-08-14T21:43:07.2833749Z * [new branch] gh/xuanzhang816/19/base -> origin/gh/xuanzhang816/19/base 2025-08-14T21:43:07.2834272Z * [new branch] gh/xuanzhang816/19/head -> origin/gh/xuanzhang816/19/head 2025-08-14T21:43:07.2834798Z * [new branch] gh/xuanzhang816/19/orig -> origin/gh/xuanzhang816/19/orig 2025-08-14T21:43:07.2835316Z * [new branch] gh/xuanzhang816/20/base -> origin/gh/xuanzhang816/20/base 2025-08-14T21:43:07.2835843Z * [new branch] gh/xuanzhang816/20/head -> origin/gh/xuanzhang816/20/head 2025-08-14T21:43:07.2836360Z * [new branch] gh/xuanzhang816/20/orig -> origin/gh/xuanzhang816/20/orig 2025-08-14T21:43:07.2836969Z * [new branch] gh/xuanzhang816/21/base -> origin/gh/xuanzhang816/21/base 2025-08-14T21:43:07.2837486Z * [new branch] gh/xuanzhang816/21/head -> origin/gh/xuanzhang816/21/head 2025-08-14T21:43:07.2838019Z * [new branch] gh/xuanzhang816/21/orig -> origin/gh/xuanzhang816/21/orig 2025-08-14T21:43:07.2838554Z * [new branch] gh/xuanzhang816/22/base -> origin/gh/xuanzhang816/22/base 2025-08-14T21:43:07.2839078Z * [new branch] gh/xuanzhang816/22/head -> origin/gh/xuanzhang816/22/head 2025-08-14T21:43:07.2839605Z * [new branch] gh/xuanzhang816/22/orig -> origin/gh/xuanzhang816/22/orig 2025-08-14T21:43:07.2840224Z * [new branch] gh/xuanzhang816/23/base -> origin/gh/xuanzhang816/23/base 2025-08-14T21:43:07.2840767Z * [new branch] gh/xuanzhang816/23/head -> origin/gh/xuanzhang816/23/head 2025-08-14T21:43:07.2841299Z * [new branch] gh/xuanzhang816/23/orig -> origin/gh/xuanzhang816/23/orig 2025-08-14T21:43:07.2841818Z * [new branch] gh/xuanzhang816/24/base -> origin/gh/xuanzhang816/24/base 2025-08-14T21:43:07.2842356Z * [new branch] gh/xuanzhang816/24/head -> origin/gh/xuanzhang816/24/head 2025-08-14T21:43:07.2842870Z * [new branch] gh/xuanzhang816/24/orig -> origin/gh/xuanzhang816/24/orig 2025-08-14T21:43:07.2843391Z * [new branch] gh/yanbing-j/11/base -> origin/gh/yanbing-j/11/base 2025-08-14T21:43:07.2843951Z * [new branch] gh/yanbing-j/11/head -> origin/gh/yanbing-j/11/head 2025-08-14T21:43:07.2844523Z * [new branch] gh/yanbing-j/11/orig -> origin/gh/yanbing-j/11/orig 2025-08-14T21:43:07.2845037Z * [new branch] gh/yanbing-j/12/base -> origin/gh/yanbing-j/12/base 2025-08-14T21:43:07.2845526Z * [new branch] gh/yanbing-j/12/head -> origin/gh/yanbing-j/12/head 2025-08-14T21:43:07.2846015Z * [new branch] gh/yanbing-j/12/orig -> origin/gh/yanbing-j/12/orig 2025-08-14T21:43:07.2846506Z * [new branch] gh/yanbing-j/13/base -> origin/gh/yanbing-j/13/base 2025-08-14T21:43:07.2847364Z * [new branch] gh/yanbing-j/13/head -> origin/gh/yanbing-j/13/head 2025-08-14T21:43:07.2847858Z * [new branch] gh/yanbing-j/13/orig -> origin/gh/yanbing-j/13/orig 2025-08-14T21:43:07.2848343Z * [new branch] gh/yanbing-j/14/base -> origin/gh/yanbing-j/14/base 2025-08-14T21:43:07.3288977Z * [new branch] gh/yanbing-j/14/head -> origin/gh/yanbing-j/14/head 2025-08-14T21:43:07.3289562Z * [new branch] gh/yanbing-j/14/orig -> origin/gh/yanbing-j/14/orig 2025-08-14T21:43:07.3290062Z * [new branch] gh/yanbing-j/15/base -> origin/gh/yanbing-j/15/base 2025-08-14T21:43:07.3290573Z * [new branch] gh/yanbing-j/15/head -> origin/gh/yanbing-j/15/head 2025-08-14T21:43:07.3291144Z * [new branch] gh/yanbing-j/15/orig -> origin/gh/yanbing-j/15/orig 2025-08-14T21:43:07.3291638Z * [new branch] gh/yanbing-j/18/base -> origin/gh/yanbing-j/18/base 2025-08-14T21:43:07.3292195Z * [new branch] gh/yanbing-j/18/head -> origin/gh/yanbing-j/18/head 2025-08-14T21:43:07.3292725Z * [new branch] gh/yanbing-j/18/orig -> origin/gh/yanbing-j/18/orig 2025-08-14T21:43:07.3293218Z * [new branch] gh/yanbing-j/19/base -> origin/gh/yanbing-j/19/base 2025-08-14T21:43:07.3293708Z * [new branch] gh/yanbing-j/19/head -> origin/gh/yanbing-j/19/head 2025-08-14T21:43:07.3294212Z * [new branch] gh/yanbing-j/19/orig -> origin/gh/yanbing-j/19/orig 2025-08-14T21:43:07.3294697Z * [new branch] gh/yanbing-j/20/base -> origin/gh/yanbing-j/20/base 2025-08-14T21:43:07.3295175Z * [new branch] gh/yanbing-j/20/head -> origin/gh/yanbing-j/20/head 2025-08-14T21:43:07.3295664Z * [new branch] gh/yanbing-j/20/orig -> origin/gh/yanbing-j/20/orig 2025-08-14T21:43:07.3296155Z * [new branch] gh/yanbing-j/21/base -> origin/gh/yanbing-j/21/base 2025-08-14T21:43:07.3296645Z * [new branch] gh/yanbing-j/21/head -> origin/gh/yanbing-j/21/head 2025-08-14T21:43:07.3297133Z * [new branch] gh/yanbing-j/22/base -> origin/gh/yanbing-j/22/base 2025-08-14T21:43:07.3297611Z * [new branch] gh/yanbing-j/22/head -> origin/gh/yanbing-j/22/head 2025-08-14T21:43:07.3298141Z * [new branch] gh/yanbing-j/22/orig -> origin/gh/yanbing-j/22/orig 2025-08-14T21:43:07.3298847Z * [new branch] gh/yanbing-j/23/base -> origin/gh/yanbing-j/23/base 2025-08-14T21:43:07.3299345Z * [new branch] gh/yanbing-j/23/head -> origin/gh/yanbing-j/23/head 2025-08-14T21:43:07.3299837Z * [new branch] gh/yanbing-j/23/orig -> origin/gh/yanbing-j/23/orig 2025-08-14T21:43:07.3300318Z * [new branch] gh/yanbing-j/24/base -> origin/gh/yanbing-j/24/base 2025-08-14T21:43:07.3300812Z * [new branch] gh/yanbing-j/24/head -> origin/gh/yanbing-j/24/head 2025-08-14T21:43:07.3301298Z * [new branch] gh/yanbing-j/24/orig -> origin/gh/yanbing-j/24/orig 2025-08-14T21:43:07.3301827Z * [new branch] gh/yanbing-j/25/base -> origin/gh/yanbing-j/25/base 2025-08-14T21:43:07.3302352Z * [new branch] gh/yanbing-j/25/head -> origin/gh/yanbing-j/25/head 2025-08-14T21:43:07.3302901Z * [new branch] gh/yanbing-j/25/orig -> origin/gh/yanbing-j/25/orig 2025-08-14T21:43:07.3317305Z * [new branch] gh/yanbing-j/26/base -> origin/gh/yanbing-j/26/base 2025-08-14T21:43:07.3317838Z * [new branch] gh/yanbing-j/26/head -> origin/gh/yanbing-j/26/head 2025-08-14T21:43:07.3318356Z * [new branch] gh/yanbing-j/26/orig -> origin/gh/yanbing-j/26/orig 2025-08-14T21:43:07.3318864Z * [new branch] gh/yanbing-j/36/base -> origin/gh/yanbing-j/36/base 2025-08-14T21:43:07.3319979Z * [new branch] gh/yanbing-j/36/head -> origin/gh/yanbing-j/36/head 2025-08-14T21:43:07.3320479Z * [new branch] gh/yanbing-j/36/orig -> origin/gh/yanbing-j/36/orig 2025-08-14T21:43:07.3321020Z * [new branch] gh/yanbing-j/37/base -> origin/gh/yanbing-j/37/base 2025-08-14T21:43:07.3321566Z * [new branch] gh/yanbing-j/37/head -> origin/gh/yanbing-j/37/head 2025-08-14T21:43:07.3322081Z * [new branch] gh/yanbing-j/37/orig -> origin/gh/yanbing-j/37/orig 2025-08-14T21:43:07.3322565Z * [new branch] gh/yanbing-j/39/base -> origin/gh/yanbing-j/39/base 2025-08-14T21:43:07.3323061Z * [new branch] gh/yanbing-j/39/head -> origin/gh/yanbing-j/39/head 2025-08-14T21:43:07.3323675Z * [new branch] gh/yanbing-j/39/orig -> origin/gh/yanbing-j/39/orig 2025-08-14T21:43:07.3324422Z * [new branch] gh/yangw-dev/1/base -> origin/gh/yangw-dev/1/base 2025-08-14T21:43:07.3325096Z * [new branch] gh/yangw-dev/10/base -> origin/gh/yangw-dev/10/base 2025-08-14T21:43:07.3325719Z * [new branch] gh/yangw-dev/10/head -> origin/gh/yangw-dev/10/head 2025-08-14T21:43:07.3326363Z * [new branch] gh/yangw-dev/10/orig -> origin/gh/yangw-dev/10/orig 2025-08-14T21:43:07.3327029Z * [new branch] gh/yangw-dev/11/base -> origin/gh/yangw-dev/11/base 2025-08-14T21:43:07.3327629Z * [new branch] gh/yangw-dev/11/head -> origin/gh/yangw-dev/11/head 2025-08-14T21:43:07.3328182Z * [new branch] gh/yangw-dev/11/orig -> origin/gh/yangw-dev/11/orig 2025-08-14T21:43:07.3988956Z * [new branch] gh/yangw-dev/12/base -> origin/gh/yangw-dev/12/base 2025-08-14T21:43:07.3989512Z * [new branch] gh/yangw-dev/12/head -> origin/gh/yangw-dev/12/head 2025-08-14T21:43:07.3990034Z * [new branch] gh/yangw-dev/12/orig -> origin/gh/yangw-dev/12/orig 2025-08-14T21:43:07.3990537Z * [new branch] gh/yangw-dev/13/base -> origin/gh/yangw-dev/13/base 2025-08-14T21:43:07.3991026Z * [new branch] gh/yangw-dev/13/head -> origin/gh/yangw-dev/13/head 2025-08-14T21:43:07.3991518Z * [new branch] gh/yangw-dev/13/orig -> origin/gh/yangw-dev/13/orig 2025-08-14T21:43:07.3992003Z * [new branch] gh/yangw-dev/14/base -> origin/gh/yangw-dev/14/base 2025-08-14T21:43:07.3992692Z * [new branch] gh/yangw-dev/14/head -> origin/gh/yangw-dev/14/head 2025-08-14T21:43:07.3993190Z * [new branch] gh/yangw-dev/14/orig -> origin/gh/yangw-dev/14/orig 2025-08-14T21:43:07.3993676Z * [new branch] gh/yangw-dev/15/base -> origin/gh/yangw-dev/15/base 2025-08-14T21:43:07.3994170Z * [new branch] gh/yangw-dev/15/head -> origin/gh/yangw-dev/15/head 2025-08-14T21:43:07.3994659Z * [new branch] gh/yangw-dev/15/orig -> origin/gh/yangw-dev/15/orig 2025-08-14T21:43:07.3995152Z * [new branch] gh/yangw-dev/16/base -> origin/gh/yangw-dev/16/base 2025-08-14T21:43:07.3995653Z * [new branch] gh/yangw-dev/16/head -> origin/gh/yangw-dev/16/head 2025-08-14T21:43:07.3996153Z * [new branch] gh/yangw-dev/16/orig -> origin/gh/yangw-dev/16/orig 2025-08-14T21:43:07.3996657Z * [new branch] gh/yangw-dev/17/base -> origin/gh/yangw-dev/17/base 2025-08-14T21:43:07.3997212Z * [new branch] gh/yangw-dev/17/head -> origin/gh/yangw-dev/17/head 2025-08-14T21:43:07.3997719Z * [new branch] gh/yangw-dev/17/orig -> origin/gh/yangw-dev/17/orig 2025-08-14T21:43:07.3998268Z * [new branch] gh/yangw-dev/18/base -> origin/gh/yangw-dev/18/base 2025-08-14T21:43:07.3998833Z * [new branch] gh/yangw-dev/18/head -> origin/gh/yangw-dev/18/head 2025-08-14T21:43:07.3999921Z * [new branch] gh/yangw-dev/18/orig -> origin/gh/yangw-dev/18/orig 2025-08-14T21:43:07.4000415Z * [new branch] gh/yangw-dev/19/base -> origin/gh/yangw-dev/19/base 2025-08-14T21:43:07.4000926Z * [new branch] gh/yangw-dev/19/head -> origin/gh/yangw-dev/19/head 2025-08-14T21:43:07.4001435Z * [new branch] gh/yangw-dev/19/orig -> origin/gh/yangw-dev/19/orig 2025-08-14T21:43:07.4001938Z * [new branch] gh/yangw-dev/2/base -> origin/gh/yangw-dev/2/base 2025-08-14T21:43:07.4002443Z * [new branch] gh/yangw-dev/2/head -> origin/gh/yangw-dev/2/head 2025-08-14T21:43:07.4002927Z * [new branch] gh/yangw-dev/3/base -> origin/gh/yangw-dev/3/base 2025-08-14T21:43:07.4003419Z * [new branch] gh/yangw-dev/3/head -> origin/gh/yangw-dev/3/head 2025-08-14T21:43:07.4003910Z * [new branch] gh/yangw-dev/4/base -> origin/gh/yangw-dev/4/base 2025-08-14T21:43:07.4004402Z * [new branch] gh/yangw-dev/4/head -> origin/gh/yangw-dev/4/head 2025-08-14T21:43:07.4004887Z * [new branch] gh/yangw-dev/5/base -> origin/gh/yangw-dev/5/base 2025-08-14T21:43:07.4005366Z * [new branch] gh/yangw-dev/5/head -> origin/gh/yangw-dev/5/head 2025-08-14T21:43:07.4005852Z * [new branch] gh/yangw-dev/6/base -> origin/gh/yangw-dev/6/base 2025-08-14T21:43:07.4006336Z * [new branch] gh/yangw-dev/6/head -> origin/gh/yangw-dev/6/head 2025-08-14T21:43:07.4006826Z * [new branch] gh/yangw-dev/7/base -> origin/gh/yangw-dev/7/base 2025-08-14T21:43:07.4007308Z * [new branch] gh/yangw-dev/7/head -> origin/gh/yangw-dev/7/head 2025-08-14T21:43:07.4007789Z * [new branch] gh/yangw-dev/8/base -> origin/gh/yangw-dev/8/base 2025-08-14T21:43:07.4008275Z * [new branch] gh/yangw-dev/8/head -> origin/gh/yangw-dev/8/head 2025-08-14T21:43:07.4008760Z * [new branch] gh/yangw-dev/8/orig -> origin/gh/yangw-dev/8/orig 2025-08-14T21:43:07.4009247Z * [new branch] gh/yangw-dev/9/base -> origin/gh/yangw-dev/9/base 2025-08-14T21:43:07.4009730Z * [new branch] gh/yangw-dev/9/head -> origin/gh/yangw-dev/9/head 2025-08-14T21:43:07.4010320Z * [new branch] gh/yangw-dev/9/orig -> origin/gh/yangw-dev/9/orig 2025-08-14T21:43:07.4010820Z * [new branch] gh/ydwu4/233/base -> origin/gh/ydwu4/233/base 2025-08-14T21:43:07.4011295Z * [new branch] gh/ydwu4/233/head -> origin/gh/ydwu4/233/head 2025-08-14T21:43:07.4011770Z * [new branch] gh/ydwu4/233/orig -> origin/gh/ydwu4/233/orig 2025-08-14T21:43:07.4012240Z * [new branch] gh/ydwu4/246/base -> origin/gh/ydwu4/246/base 2025-08-14T21:43:07.4012717Z * [new branch] gh/ydwu4/246/head -> origin/gh/ydwu4/246/head 2025-08-14T21:43:07.4455256Z * [new branch] gh/ydwu4/246/orig -> origin/gh/ydwu4/246/orig 2025-08-14T21:43:07.4455775Z * [new branch] gh/ydwu4/253/base -> origin/gh/ydwu4/253/base 2025-08-14T21:43:07.4456265Z * [new branch] gh/ydwu4/253/head -> origin/gh/ydwu4/253/head 2025-08-14T21:43:07.4456754Z * [new branch] gh/ydwu4/253/orig -> origin/gh/ydwu4/253/orig 2025-08-14T21:43:07.4457240Z * [new branch] gh/ydwu4/255/base -> origin/gh/ydwu4/255/base 2025-08-14T21:43:07.4457713Z * [new branch] gh/ydwu4/255/head -> origin/gh/ydwu4/255/head 2025-08-14T21:43:07.4458180Z * [new branch] gh/ydwu4/255/orig -> origin/gh/ydwu4/255/orig 2025-08-14T21:43:07.4458639Z * [new branch] gh/ydwu4/259/base -> origin/gh/ydwu4/259/base 2025-08-14T21:43:07.4459720Z * [new branch] gh/ydwu4/259/head -> origin/gh/ydwu4/259/head 2025-08-14T21:43:07.4460181Z * [new branch] gh/ydwu4/259/orig -> origin/gh/ydwu4/259/orig 2025-08-14T21:43:07.4460650Z * [new branch] gh/ydwu4/262/base -> origin/gh/ydwu4/262/base 2025-08-14T21:43:07.4461118Z * [new branch] gh/ydwu4/262/head -> origin/gh/ydwu4/262/head 2025-08-14T21:43:07.4461747Z * [new branch] gh/ydwu4/262/orig -> origin/gh/ydwu4/262/orig 2025-08-14T21:43:07.4462239Z * [new branch] gh/ydwu4/263/base -> origin/gh/ydwu4/263/base 2025-08-14T21:43:07.4462743Z * [new branch] gh/ydwu4/263/head -> origin/gh/ydwu4/263/head 2025-08-14T21:43:07.4463283Z * [new branch] gh/ydwu4/263/orig -> origin/gh/ydwu4/263/orig 2025-08-14T21:43:07.4463752Z * [new branch] gh/ydwu4/269/base -> origin/gh/ydwu4/269/base 2025-08-14T21:43:07.4464211Z * [new branch] gh/ydwu4/269/head -> origin/gh/ydwu4/269/head 2025-08-14T21:43:07.4464680Z * [new branch] gh/ydwu4/269/orig -> origin/gh/ydwu4/269/orig 2025-08-14T21:43:07.4465135Z * [new branch] gh/ydwu4/270/base -> origin/gh/ydwu4/270/base 2025-08-14T21:43:07.4465608Z * [new branch] gh/ydwu4/270/head -> origin/gh/ydwu4/270/head 2025-08-14T21:43:07.4466068Z * [new branch] gh/ydwu4/270/orig -> origin/gh/ydwu4/270/orig 2025-08-14T21:43:07.4466534Z * [new branch] gh/ydwu4/272/base -> origin/gh/ydwu4/272/base 2025-08-14T21:43:07.4466997Z * [new branch] gh/ydwu4/272/head -> origin/gh/ydwu4/272/head 2025-08-14T21:43:07.4467450Z * [new branch] gh/ydwu4/272/orig -> origin/gh/ydwu4/272/orig 2025-08-14T21:43:07.4467918Z * [new branch] gh/ydwu4/275/base -> origin/gh/ydwu4/275/base 2025-08-14T21:43:07.4468373Z * [new branch] gh/ydwu4/275/head -> origin/gh/ydwu4/275/head 2025-08-14T21:43:07.4468844Z * [new branch] gh/ydwu4/275/orig -> origin/gh/ydwu4/275/orig 2025-08-14T21:43:07.4469308Z * [new branch] gh/ydwu4/276/base -> origin/gh/ydwu4/276/base 2025-08-14T21:43:07.4469769Z * [new branch] gh/ydwu4/276/head -> origin/gh/ydwu4/276/head 2025-08-14T21:43:07.4470389Z * [new branch] gh/ydwu4/276/orig -> origin/gh/ydwu4/276/orig 2025-08-14T21:43:07.4470853Z * [new branch] gh/ydwu4/277/base -> origin/gh/ydwu4/277/base 2025-08-14T21:43:07.4471317Z * [new branch] gh/ydwu4/277/head -> origin/gh/ydwu4/277/head 2025-08-14T21:43:07.4471773Z * [new branch] gh/ydwu4/277/orig -> origin/gh/ydwu4/277/orig 2025-08-14T21:43:07.4472245Z * [new branch] gh/ydwu4/278/base -> origin/gh/ydwu4/278/base 2025-08-14T21:43:07.4472722Z * [new branch] gh/ydwu4/278/head -> origin/gh/ydwu4/278/head 2025-08-14T21:43:07.4473180Z * [new branch] gh/ydwu4/278/orig -> origin/gh/ydwu4/278/orig 2025-08-14T21:43:07.4473651Z * [new branch] gh/ydwu4/279/base -> origin/gh/ydwu4/279/base 2025-08-14T21:43:07.4474110Z * [new branch] gh/ydwu4/279/head -> origin/gh/ydwu4/279/head 2025-08-14T21:43:07.4474589Z * [new branch] gh/ydwu4/279/orig -> origin/gh/ydwu4/279/orig 2025-08-14T21:43:07.4475052Z * [new branch] gh/ydwu4/280/base -> origin/gh/ydwu4/280/base 2025-08-14T21:43:07.4475503Z * [new branch] gh/ydwu4/280/head -> origin/gh/ydwu4/280/head 2025-08-14T21:43:07.4475966Z * [new branch] gh/ydwu4/280/orig -> origin/gh/ydwu4/280/orig 2025-08-14T21:43:07.4476801Z * [new branch] gh/ydwu4/281/base -> origin/gh/ydwu4/281/base 2025-08-14T21:43:07.4477344Z * [new branch] gh/ydwu4/281/head -> origin/gh/ydwu4/281/head 2025-08-14T21:43:07.4477815Z * [new branch] gh/ydwu4/281/orig -> origin/gh/ydwu4/281/orig 2025-08-14T21:43:07.4478274Z * [new branch] gh/ydwu4/282/base -> origin/gh/ydwu4/282/base 2025-08-14T21:43:07.4478743Z * [new branch] gh/ydwu4/282/head -> origin/gh/ydwu4/282/head 2025-08-14T21:43:07.4903220Z * [new branch] gh/ydwu4/282/orig -> origin/gh/ydwu4/282/orig 2025-08-14T21:43:07.4903770Z * [new branch] gh/ydwu4/283/base -> origin/gh/ydwu4/283/base 2025-08-14T21:43:07.4904247Z * [new branch] gh/ydwu4/283/head -> origin/gh/ydwu4/283/head 2025-08-14T21:43:07.4904709Z * [new branch] gh/ydwu4/283/orig -> origin/gh/ydwu4/283/orig 2025-08-14T21:43:07.4905186Z * [new branch] gh/ydwu4/284/base -> origin/gh/ydwu4/284/base 2025-08-14T21:43:07.4905647Z * [new branch] gh/ydwu4/284/head -> origin/gh/ydwu4/284/head 2025-08-14T21:43:07.4906113Z * [new branch] gh/ydwu4/284/orig -> origin/gh/ydwu4/284/orig 2025-08-14T21:43:07.4906576Z * [new branch] gh/ydwu4/285/base -> origin/gh/ydwu4/285/base 2025-08-14T21:43:07.4907034Z * [new branch] gh/ydwu4/285/head -> origin/gh/ydwu4/285/head 2025-08-14T21:43:07.4907499Z * [new branch] gh/ydwu4/285/orig -> origin/gh/ydwu4/285/orig 2025-08-14T21:43:07.4907952Z * [new branch] gh/ydwu4/286/base -> origin/gh/ydwu4/286/base 2025-08-14T21:43:07.4908424Z * [new branch] gh/ydwu4/286/head -> origin/gh/ydwu4/286/head 2025-08-14T21:43:07.4908877Z * [new branch] gh/ydwu4/286/orig -> origin/gh/ydwu4/286/orig 2025-08-14T21:43:07.4909355Z * [new branch] gh/ydwu4/287/base -> origin/gh/ydwu4/287/base 2025-08-14T21:43:07.4909826Z * [new branch] gh/ydwu4/287/head -> origin/gh/ydwu4/287/head 2025-08-14T21:43:07.4910279Z * [new branch] gh/ydwu4/287/orig -> origin/gh/ydwu4/287/orig 2025-08-14T21:43:07.4910750Z * [new branch] gh/ydwu4/288/base -> origin/gh/ydwu4/288/base 2025-08-14T21:43:07.4911205Z * [new branch] gh/ydwu4/288/head -> origin/gh/ydwu4/288/head 2025-08-14T21:43:07.4911876Z * [new branch] gh/ydwu4/288/orig -> origin/gh/ydwu4/288/orig 2025-08-14T21:43:07.4912350Z * [new branch] gh/ydwu4/289/base -> origin/gh/ydwu4/289/base 2025-08-14T21:43:07.4912810Z * [new branch] gh/ydwu4/289/head -> origin/gh/ydwu4/289/head 2025-08-14T21:43:07.4913279Z * [new branch] gh/ydwu4/289/orig -> origin/gh/ydwu4/289/orig 2025-08-14T21:43:07.4913748Z * [new branch] gh/ydwu4/290/base -> origin/gh/ydwu4/290/base 2025-08-14T21:43:07.4914220Z * [new branch] gh/ydwu4/290/head -> origin/gh/ydwu4/290/head 2025-08-14T21:43:07.4914679Z * [new branch] gh/ydwu4/290/orig -> origin/gh/ydwu4/290/orig 2025-08-14T21:43:07.4915166Z * [new branch] gh/ydwu4/291/base -> origin/gh/ydwu4/291/base 2025-08-14T21:43:07.4915630Z * [new branch] gh/ydwu4/291/head -> origin/gh/ydwu4/291/head 2025-08-14T21:43:07.4916102Z * [new branch] gh/ydwu4/291/orig -> origin/gh/ydwu4/291/orig 2025-08-14T21:43:07.4916567Z * [new branch] gh/ydwu4/292/base -> origin/gh/ydwu4/292/base 2025-08-14T21:43:07.4917099Z * [new branch] gh/ydwu4/292/head -> origin/gh/ydwu4/292/head 2025-08-14T21:43:07.4917563Z * [new branch] gh/ydwu4/292/orig -> origin/gh/ydwu4/292/orig 2025-08-14T21:43:07.4918528Z * [new branch] gh/ydwu4/293/base -> origin/gh/ydwu4/293/base 2025-08-14T21:43:07.4918992Z * [new branch] gh/ydwu4/293/head -> origin/gh/ydwu4/293/head 2025-08-14T21:43:07.4919463Z * [new branch] gh/ydwu4/293/orig -> origin/gh/ydwu4/293/orig 2025-08-14T21:43:07.4919930Z * [new branch] gh/ydwu4/294/base -> origin/gh/ydwu4/294/base 2025-08-14T21:43:07.4920413Z * [new branch] gh/ydwu4/294/head -> origin/gh/ydwu4/294/head 2025-08-14T21:43:07.4920883Z * [new branch] gh/ydwu4/294/orig -> origin/gh/ydwu4/294/orig 2025-08-14T21:43:07.4921343Z * [new branch] gh/ydwu4/295/base -> origin/gh/ydwu4/295/base 2025-08-14T21:43:07.4921803Z * [new branch] gh/ydwu4/295/head -> origin/gh/ydwu4/295/head 2025-08-14T21:43:07.4922272Z * [new branch] gh/ydwu4/295/orig -> origin/gh/ydwu4/295/orig 2025-08-14T21:43:07.4922744Z * [new branch] gh/ydwu4/296/base -> origin/gh/ydwu4/296/base 2025-08-14T21:43:07.4923213Z * [new branch] gh/ydwu4/296/head -> origin/gh/ydwu4/296/head 2025-08-14T21:43:07.4923671Z * [new branch] gh/ydwu4/296/orig -> origin/gh/ydwu4/296/orig 2025-08-14T21:43:07.4924135Z * [new branch] gh/ydwu4/297/base -> origin/gh/ydwu4/297/base 2025-08-14T21:43:07.4924607Z * [new branch] gh/ydwu4/297/head -> origin/gh/ydwu4/297/head 2025-08-14T21:43:07.4925077Z * [new branch] gh/ydwu4/297/orig -> origin/gh/ydwu4/297/orig 2025-08-14T21:43:07.4925551Z * [new branch] gh/ydwu4/298/base -> origin/gh/ydwu4/298/base 2025-08-14T21:43:07.4926010Z * [new branch] gh/ydwu4/298/head -> origin/gh/ydwu4/298/head 2025-08-14T21:43:07.5377937Z * [new branch] gh/ydwu4/298/orig -> origin/gh/ydwu4/298/orig 2025-08-14T21:43:07.5378519Z * [new branch] gh/ydwu4/299/base -> origin/gh/ydwu4/299/base 2025-08-14T21:43:07.5378985Z * [new branch] gh/ydwu4/299/head -> origin/gh/ydwu4/299/head 2025-08-14T21:43:07.5379451Z * [new branch] gh/ydwu4/299/orig -> origin/gh/ydwu4/299/orig 2025-08-14T21:43:07.5379927Z * [new branch] gh/ydwu4/300/base -> origin/gh/ydwu4/300/base 2025-08-14T21:43:07.5380576Z * [new branch] gh/ydwu4/300/head -> origin/gh/ydwu4/300/head 2025-08-14T21:43:07.5381048Z * [new branch] gh/ydwu4/300/orig -> origin/gh/ydwu4/300/orig 2025-08-14T21:43:07.5381510Z * [new branch] gh/ydwu4/301/base -> origin/gh/ydwu4/301/base 2025-08-14T21:43:07.5381980Z * [new branch] gh/ydwu4/301/head -> origin/gh/ydwu4/301/head 2025-08-14T21:43:07.5382439Z * [new branch] gh/ydwu4/301/orig -> origin/gh/ydwu4/301/orig 2025-08-14T21:43:07.5382907Z * [new branch] gh/ydwu4/302/base -> origin/gh/ydwu4/302/base 2025-08-14T21:43:07.5383368Z * [new branch] gh/ydwu4/302/head -> origin/gh/ydwu4/302/head 2025-08-14T21:43:07.5383864Z * [new branch] gh/ydwu4/302/orig -> origin/gh/ydwu4/302/orig 2025-08-14T21:43:07.5384371Z * [new branch] gh/ydwu4/303/base -> origin/gh/ydwu4/303/base 2025-08-14T21:43:07.5384834Z * [new branch] gh/ydwu4/303/head -> origin/gh/ydwu4/303/head 2025-08-14T21:43:07.5385300Z * [new branch] gh/ydwu4/303/orig -> origin/gh/ydwu4/303/orig 2025-08-14T21:43:07.5385754Z * [new branch] gh/ydwu4/304/base -> origin/gh/ydwu4/304/base 2025-08-14T21:43:07.5386222Z * [new branch] gh/ydwu4/304/head -> origin/gh/ydwu4/304/head 2025-08-14T21:43:07.5386682Z * [new branch] gh/ydwu4/304/orig -> origin/gh/ydwu4/304/orig 2025-08-14T21:43:07.5387270Z * [new branch] gh/ydwu4/305/base -> origin/gh/ydwu4/305/base 2025-08-14T21:43:07.5387752Z * [new branch] gh/ydwu4/305/head -> origin/gh/ydwu4/305/head 2025-08-14T21:43:07.5388208Z * [new branch] gh/ydwu4/305/orig -> origin/gh/ydwu4/305/orig 2025-08-14T21:43:07.5388675Z * [new branch] gh/ydwu4/306/base -> origin/gh/ydwu4/306/base 2025-08-14T21:43:07.5389142Z * [new branch] gh/ydwu4/306/head -> origin/gh/ydwu4/306/head 2025-08-14T21:43:07.5389639Z * [new branch] gh/ydwu4/306/orig -> origin/gh/ydwu4/306/orig 2025-08-14T21:43:07.5390145Z * [new branch] gh/ydwu4/307/base -> origin/gh/ydwu4/307/base 2025-08-14T21:43:07.5390601Z * [new branch] gh/ydwu4/307/head -> origin/gh/ydwu4/307/head 2025-08-14T21:43:07.5391068Z * [new branch] gh/ydwu4/307/orig -> origin/gh/ydwu4/307/orig 2025-08-14T21:43:07.5391540Z * [new branch] gh/ydwu4/308/base -> origin/gh/ydwu4/308/base 2025-08-14T21:43:07.5391998Z * [new branch] gh/ydwu4/308/head -> origin/gh/ydwu4/308/head 2025-08-14T21:43:07.5392570Z * [new branch] gh/ydwu4/308/orig -> origin/gh/ydwu4/308/orig 2025-08-14T21:43:07.5393028Z * [new branch] gh/ydwu4/309/base -> origin/gh/ydwu4/309/base 2025-08-14T21:43:07.5393502Z * [new branch] gh/ydwu4/309/head -> origin/gh/ydwu4/309/head 2025-08-14T21:43:07.5393959Z * [new branch] gh/ydwu4/309/orig -> origin/gh/ydwu4/309/orig 2025-08-14T21:43:07.5394426Z * [new branch] gh/ydwu4/310/base -> origin/gh/ydwu4/310/base 2025-08-14T21:43:07.5394902Z * [new branch] gh/ydwu4/310/head -> origin/gh/ydwu4/310/head 2025-08-14T21:43:07.5395406Z * [new branch] gh/ydwu4/310/orig -> origin/gh/ydwu4/310/orig 2025-08-14T21:43:07.5395918Z * [new branch] gh/ydwu4/311/base -> origin/gh/ydwu4/311/base 2025-08-14T21:43:07.5396376Z * [new branch] gh/ydwu4/311/head -> origin/gh/ydwu4/311/head 2025-08-14T21:43:07.5396906Z * [new branch] gh/ydwu4/311/orig -> origin/gh/ydwu4/311/orig 2025-08-14T21:43:07.5397374Z * [new branch] gh/yf225/133/base -> origin/gh/yf225/133/base 2025-08-14T21:43:07.5397970Z * [new branch] gh/yf225/133/head -> origin/gh/yf225/133/head 2025-08-14T21:43:07.5398439Z * [new branch] gh/yf225/171/base -> origin/gh/yf225/171/base 2025-08-14T21:43:07.5398893Z * [new branch] gh/yf225/171/head -> origin/gh/yf225/171/head 2025-08-14T21:43:07.5399373Z * [new branch] gh/yf225/171/orig -> origin/gh/yf225/171/orig 2025-08-14T21:43:07.5399836Z * [new branch] gh/yf225/172/base -> origin/gh/yf225/172/base 2025-08-14T21:43:07.5400299Z * [new branch] gh/yf225/172/head -> origin/gh/yf225/172/head 2025-08-14T21:43:07.5400754Z * [new branch] gh/yf225/172/orig -> origin/gh/yf225/172/orig 2025-08-14T21:43:07.5845430Z * [new branch] gh/yf225/93/base -> origin/gh/yf225/93/base 2025-08-14T21:43:07.5845957Z * [new branch] gh/yf225/93/head -> origin/gh/yf225/93/head 2025-08-14T21:43:07.5846474Z * [new branch] gh/yifuwang/152/base -> origin/gh/yifuwang/152/base 2025-08-14T21:43:07.5846968Z * [new branch] gh/yifuwang/152/head -> origin/gh/yifuwang/152/head 2025-08-14T21:43:07.5847471Z * [new branch] gh/yifuwang/152/orig -> origin/gh/yifuwang/152/orig 2025-08-14T21:43:07.5847968Z * [new branch] gh/yifuwang/195/base -> origin/gh/yifuwang/195/base 2025-08-14T21:43:07.5848675Z * [new branch] gh/yifuwang/195/head -> origin/gh/yifuwang/195/head 2025-08-14T21:43:07.5849180Z * [new branch] gh/yifuwang/195/orig -> origin/gh/yifuwang/195/orig 2025-08-14T21:43:07.5849673Z * [new branch] gh/yiming0416/1/base -> origin/gh/yiming0416/1/base 2025-08-14T21:43:07.5850167Z * [new branch] gh/yiming0416/1/head -> origin/gh/yiming0416/1/head 2025-08-14T21:43:07.5850659Z * [new branch] gh/yiming0416/2/base -> origin/gh/yiming0416/2/base 2025-08-14T21:43:07.5851208Z * [new branch] gh/yiming0416/2/head -> origin/gh/yiming0416/2/head 2025-08-14T21:43:07.5851753Z * [new branch] gh/ysiraichi/79/base -> origin/gh/ysiraichi/79/base 2025-08-14T21:43:07.5852242Z * [new branch] gh/ysiraichi/79/head -> origin/gh/ysiraichi/79/head 2025-08-14T21:43:07.5852740Z * [new branch] gh/ysiraichi/79/orig -> origin/gh/ysiraichi/79/orig 2025-08-14T21:43:07.5853238Z * [new branch] gh/ysiraichi/81/base -> origin/gh/ysiraichi/81/base 2025-08-14T21:43:07.5853750Z * [new branch] gh/ysiraichi/81/head -> origin/gh/ysiraichi/81/head 2025-08-14T21:43:07.5854250Z * [new branch] gh/ysiraichi/81/orig -> origin/gh/ysiraichi/81/orig 2025-08-14T21:43:07.5854740Z * [new branch] gh/ysiraichi/84/base -> origin/gh/ysiraichi/84/base 2025-08-14T21:43:07.5855248Z * [new branch] gh/ysiraichi/84/head -> origin/gh/ysiraichi/84/head 2025-08-14T21:43:07.5855738Z * [new branch] gh/ysiraichi/84/orig -> origin/gh/ysiraichi/84/orig 2025-08-14T21:43:07.5856234Z * [new branch] gh/ysiraichi/85/base -> origin/gh/ysiraichi/85/base 2025-08-14T21:43:07.5856772Z * [new branch] gh/ysiraichi/85/head -> origin/gh/ysiraichi/85/head 2025-08-14T21:43:07.5857316Z * [new branch] gh/ysiraichi/85/orig -> origin/gh/ysiraichi/85/orig 2025-08-14T21:43:07.5857825Z * [new branch] gh/ysiraichi/86/base -> origin/gh/ysiraichi/86/base 2025-08-14T21:43:07.5858312Z * [new branch] gh/ysiraichi/86/head -> origin/gh/ysiraichi/86/head 2025-08-14T21:43:07.5858808Z * [new branch] gh/ysiraichi/86/orig -> origin/gh/ysiraichi/86/orig 2025-08-14T21:43:07.5859295Z * [new branch] gh/ysiraichi/87/base -> origin/gh/ysiraichi/87/base 2025-08-14T21:43:07.5859914Z * [new branch] gh/ysiraichi/87/head -> origin/gh/ysiraichi/87/head 2025-08-14T21:43:07.5860424Z * [new branch] gh/ysiraichi/87/orig -> origin/gh/ysiraichi/87/orig 2025-08-14T21:43:07.5860920Z * [new branch] gh/ysiraichi/88/base -> origin/gh/ysiraichi/88/base 2025-08-14T21:43:07.5861421Z * [new branch] gh/ysiraichi/88/head -> origin/gh/ysiraichi/88/head 2025-08-14T21:43:07.5861917Z * [new branch] gh/ysiraichi/88/orig -> origin/gh/ysiraichi/88/orig 2025-08-14T21:43:07.5862457Z * [new branch] gh/yuguo68/1/base -> origin/gh/yuguo68/1/base 2025-08-14T21:43:07.5862981Z * [new branch] gh/yuguo68/1/head -> origin/gh/yuguo68/1/head 2025-08-14T21:43:07.5863442Z * [new branch] gh/yuguo68/1/orig -> origin/gh/yuguo68/1/orig 2025-08-14T21:43:07.5863910Z * [new branch] gh/yuguo68/2/base -> origin/gh/yuguo68/2/base 2025-08-14T21:43:07.5864372Z * [new branch] gh/yuguo68/2/head -> origin/gh/yuguo68/2/head 2025-08-14T21:43:07.5864835Z * [new branch] gh/yuguo68/2/orig -> origin/gh/yuguo68/2/orig 2025-08-14T21:43:07.5865323Z * [new branch] gh/zhxchen17/25/base -> origin/gh/zhxchen17/25/base 2025-08-14T21:43:07.5865808Z * [new branch] gh/zhxchen17/25/head -> origin/gh/zhxchen17/25/head 2025-08-14T21:43:07.5866423Z * [new branch] gh/zhxchen17/25/orig -> origin/gh/zhxchen17/25/orig 2025-08-14T21:43:07.5866913Z * [new branch] gh/zhxchen17/31/base -> origin/gh/zhxchen17/31/base 2025-08-14T21:43:07.5867403Z * [new branch] gh/zhxchen17/31/head -> origin/gh/zhxchen17/31/head 2025-08-14T21:43:07.5867891Z * [new branch] gh/zhxchen17/31/orig -> origin/gh/zhxchen17/31/orig 2025-08-14T21:43:07.5868443Z * [new branch] gh/zhxchen17/33/base -> origin/gh/zhxchen17/33/base 2025-08-14T21:43:07.5868984Z * [new branch] gh/zhxchen17/33/head -> origin/gh/zhxchen17/33/head 2025-08-14T21:43:07.6316657Z * [new branch] gh/zhxchen17/33/orig -> origin/gh/zhxchen17/33/orig 2025-08-14T21:43:07.6317284Z * [new branch] gh/zhxchen17/34/base -> origin/gh/zhxchen17/34/base 2025-08-14T21:43:07.6317796Z * [new branch] gh/zhxchen17/34/head -> origin/gh/zhxchen17/34/head 2025-08-14T21:43:07.6318314Z * [new branch] gh/zhxchen17/35/base -> origin/gh/zhxchen17/35/base 2025-08-14T21:43:07.6318819Z * [new branch] gh/zhxchen17/35/head -> origin/gh/zhxchen17/35/head 2025-08-14T21:43:07.6319306Z * [new branch] gh/zhxchen17/36/base -> origin/gh/zhxchen17/36/base 2025-08-14T21:43:07.6319847Z * [new branch] gh/zhxchen17/36/head -> origin/gh/zhxchen17/36/head 2025-08-14T21:43:07.6320388Z * [new branch] gh/zhxchen17/36/orig -> origin/gh/zhxchen17/36/orig 2025-08-14T21:43:07.6320877Z * [new branch] gh/zklaus/1/base -> origin/gh/zklaus/1/base 2025-08-14T21:43:07.6321344Z * [new branch] gh/zklaus/1/head -> origin/gh/zklaus/1/head 2025-08-14T21:43:07.6321798Z * [new branch] gh/zklaus/1/orig -> origin/gh/zklaus/1/orig 2025-08-14T21:43:07.6322279Z * [new branch] gh/zklaus/10/base -> origin/gh/zklaus/10/base 2025-08-14T21:43:07.6322762Z * [new branch] gh/zklaus/10/head -> origin/gh/zklaus/10/head 2025-08-14T21:43:07.6323226Z * [new branch] gh/zklaus/10/orig -> origin/gh/zklaus/10/orig 2025-08-14T21:43:07.6323691Z * [new branch] gh/zklaus/11/base -> origin/gh/zklaus/11/base 2025-08-14T21:43:07.6324148Z * [new branch] gh/zklaus/11/head -> origin/gh/zklaus/11/head 2025-08-14T21:43:07.6324793Z * [new branch] gh/zklaus/11/orig -> origin/gh/zklaus/11/orig 2025-08-14T21:43:07.6325261Z * [new branch] gh/zklaus/12/base -> origin/gh/zklaus/12/base 2025-08-14T21:43:07.6325783Z * [new branch] gh/zklaus/12/head -> origin/gh/zklaus/12/head 2025-08-14T21:43:07.6326302Z * [new branch] gh/zklaus/12/orig -> origin/gh/zklaus/12/orig 2025-08-14T21:43:07.6326763Z * [new branch] gh/zklaus/14/base -> origin/gh/zklaus/14/base 2025-08-14T21:43:07.6327240Z * [new branch] gh/zklaus/14/head -> origin/gh/zklaus/14/head 2025-08-14T21:43:07.6327703Z * [new branch] gh/zklaus/14/orig -> origin/gh/zklaus/14/orig 2025-08-14T21:43:07.6328168Z * [new branch] gh/zklaus/15/base -> origin/gh/zklaus/15/base 2025-08-14T21:43:07.6328644Z * [new branch] gh/zklaus/15/head -> origin/gh/zklaus/15/head 2025-08-14T21:43:07.6329104Z * [new branch] gh/zklaus/15/orig -> origin/gh/zklaus/15/orig 2025-08-14T21:43:07.6329578Z * [new branch] gh/zklaus/16/base -> origin/gh/zklaus/16/base 2025-08-14T21:43:07.6330035Z * [new branch] gh/zklaus/16/head -> origin/gh/zklaus/16/head 2025-08-14T21:43:07.6330504Z * [new branch] gh/zklaus/16/orig -> origin/gh/zklaus/16/orig 2025-08-14T21:43:07.6331093Z * [new branch] gh/zklaus/17/base -> origin/gh/zklaus/17/base 2025-08-14T21:43:07.6331605Z * [new branch] gh/zklaus/17/head -> origin/gh/zklaus/17/head 2025-08-14T21:43:07.6332115Z * [new branch] gh/zklaus/17/orig -> origin/gh/zklaus/17/orig 2025-08-14T21:43:07.6332579Z * [new branch] gh/zklaus/18/base -> origin/gh/zklaus/18/base 2025-08-14T21:43:07.6333043Z * [new branch] gh/zklaus/18/head -> origin/gh/zklaus/18/head 2025-08-14T21:43:07.6333504Z * [new branch] gh/zklaus/18/orig -> origin/gh/zklaus/18/orig 2025-08-14T21:43:07.6333980Z * [new branch] gh/zklaus/19/base -> origin/gh/zklaus/19/base 2025-08-14T21:43:07.6334456Z * [new branch] gh/zklaus/19/head -> origin/gh/zklaus/19/head 2025-08-14T21:43:07.6334918Z * [new branch] gh/zklaus/19/orig -> origin/gh/zklaus/19/orig 2025-08-14T21:43:07.6335388Z * [new branch] gh/zklaus/7/base -> origin/gh/zklaus/7/base 2025-08-14T21:43:07.6335850Z * [new branch] gh/zklaus/7/head -> origin/gh/zklaus/7/head 2025-08-14T21:43:07.6336313Z * [new branch] gh/zklaus/7/orig -> origin/gh/zklaus/7/orig 2025-08-14T21:43:07.6336776Z * [new branch] gh/zklaus/9/base -> origin/gh/zklaus/9/base 2025-08-14T21:43:07.6337272Z * [new branch] gh/zklaus/9/head -> origin/gh/zklaus/9/head 2025-08-14T21:43:07.6337786Z * [new branch] gh/zklaus/9/orig -> origin/gh/zklaus/9/orig 2025-08-14T21:43:07.6338254Z * [new branch] gh/zou3519/1175/base -> origin/gh/zou3519/1175/base 2025-08-14T21:43:07.6338747Z * [new branch] gh/zou3519/1175/head -> origin/gh/zou3519/1175/head 2025-08-14T21:43:07.6339226Z * [new branch] gh/zou3519/1175/orig -> origin/gh/zou3519/1175/orig 2025-08-14T21:43:07.6339711Z * [new branch] gh/zou3519/1177/base -> origin/gh/zou3519/1177/base 2025-08-14T21:43:07.6787842Z * [new branch] gh/zou3519/1177/head -> origin/gh/zou3519/1177/head 2025-08-14T21:43:07.6788409Z * [new branch] gh/zou3519/1177/orig -> origin/gh/zou3519/1177/orig 2025-08-14T21:43:07.6788913Z * [new branch] gh/zou3519/1187/base -> origin/gh/zou3519/1187/base 2025-08-14T21:43:07.6789616Z * [new branch] gh/zou3519/1187/head -> origin/gh/zou3519/1187/head 2025-08-14T21:43:07.6790100Z * [new branch] gh/zou3519/1187/orig -> origin/gh/zou3519/1187/orig 2025-08-14T21:43:07.6790587Z * [new branch] gh/zou3519/1188/base -> origin/gh/zou3519/1188/base 2025-08-14T21:43:07.6791066Z * [new branch] gh/zou3519/1188/head -> origin/gh/zou3519/1188/head 2025-08-14T21:43:07.6791548Z * [new branch] gh/zou3519/1188/orig -> origin/gh/zou3519/1188/orig 2025-08-14T21:43:07.6792046Z * [new branch] gh/zou3519/1189/base -> origin/gh/zou3519/1189/base 2025-08-14T21:43:07.6792519Z * [new branch] gh/zou3519/1189/head -> origin/gh/zou3519/1189/head 2025-08-14T21:43:07.6793003Z * [new branch] gh/zou3519/1189/orig -> origin/gh/zou3519/1189/orig 2025-08-14T21:43:07.6793481Z * [new branch] gh/zou3519/1190/base -> origin/gh/zou3519/1190/base 2025-08-14T21:43:07.6793961Z * [new branch] gh/zou3519/1190/head -> origin/gh/zou3519/1190/head 2025-08-14T21:43:07.6794449Z * [new branch] gh/zou3519/1190/orig -> origin/gh/zou3519/1190/orig 2025-08-14T21:43:07.6794918Z * [new branch] gh/zou3519/1191/base -> origin/gh/zou3519/1191/base 2025-08-14T21:43:07.6795402Z * [new branch] gh/zou3519/1191/head -> origin/gh/zou3519/1191/head 2025-08-14T21:43:07.6796004Z * [new branch] gh/zou3519/1191/orig -> origin/gh/zou3519/1191/orig 2025-08-14T21:43:07.6796499Z * [new branch] gh/zpcore/1/base -> origin/gh/zpcore/1/base 2025-08-14T21:43:07.6797032Z * [new branch] gh/zpcore/1/head -> origin/gh/zpcore/1/head 2025-08-14T21:43:07.6797519Z * [new branch] gh/zpcore/10/base -> origin/gh/zpcore/10/base 2025-08-14T21:43:07.6798002Z * [new branch] gh/zpcore/10/head -> origin/gh/zpcore/10/head 2025-08-14T21:43:07.6798481Z * [new branch] gh/zpcore/10/orig -> origin/gh/zpcore/10/orig 2025-08-14T21:43:07.6798953Z * [new branch] gh/zpcore/11/base -> origin/gh/zpcore/11/base 2025-08-14T21:43:07.6799422Z * [new branch] gh/zpcore/11/head -> origin/gh/zpcore/11/head 2025-08-14T21:43:07.6799889Z * [new branch] gh/zpcore/11/orig -> origin/gh/zpcore/11/orig 2025-08-14T21:43:07.6800373Z * [new branch] gh/zpcore/12/base -> origin/gh/zpcore/12/base 2025-08-14T21:43:07.6800833Z * [new branch] gh/zpcore/12/head -> origin/gh/zpcore/12/head 2025-08-14T21:43:07.6801306Z * [new branch] gh/zpcore/12/orig -> origin/gh/zpcore/12/orig 2025-08-14T21:43:07.6801767Z * [new branch] gh/zpcore/2/base -> origin/gh/zpcore/2/base 2025-08-14T21:43:07.6802233Z * [new branch] gh/zpcore/2/head -> origin/gh/zpcore/2/head 2025-08-14T21:43:07.6802713Z * [new branch] gh/zpcore/3/base -> origin/gh/zpcore/3/base 2025-08-14T21:43:07.6803165Z * [new branch] gh/zpcore/3/head -> origin/gh/zpcore/3/head 2025-08-14T21:43:07.6803624Z * [new branch] gh/zpcore/4/base -> origin/gh/zpcore/4/base 2025-08-14T21:43:07.6804086Z * [new branch] gh/zpcore/4/head -> origin/gh/zpcore/4/head 2025-08-14T21:43:07.6804552Z * [new branch] gh/zpcore/5/base -> origin/gh/zpcore/5/base 2025-08-14T21:43:07.6805011Z * [new branch] gh/zpcore/5/head -> origin/gh/zpcore/5/head 2025-08-14T21:43:07.6805475Z * [new branch] gh/zpcore/6/base -> origin/gh/zpcore/6/base 2025-08-14T21:43:07.6805935Z * [new branch] gh/zpcore/6/head -> origin/gh/zpcore/6/head 2025-08-14T21:43:07.6806387Z * [new branch] gh/zpcore/7/base -> origin/gh/zpcore/7/base 2025-08-14T21:43:07.6806955Z * [new branch] gh/zpcore/7/head -> origin/gh/zpcore/7/head 2025-08-14T21:43:07.6807414Z * [new branch] gh/zpcore/8/base -> origin/gh/zpcore/8/base 2025-08-14T21:43:07.6807881Z * [new branch] gh/zpcore/8/head -> origin/gh/zpcore/8/head 2025-08-14T21:43:07.6808351Z * [new branch] gh/zpcore/9/head -> origin/gh/zpcore/9/head 2025-08-14T21:43:07.6808811Z * [new branch] gh/zpcore/9/orig -> origin/gh/zpcore/9/orig 2025-08-14T21:43:07.6809293Z * [new branch] google-main -> origin/google-main 2025-08-14T21:43:07.6809787Z * [new branch] guangyey/external_stream -> origin/guangyey/external_stream 2025-08-14T21:43:07.6810313Z * [new branch] guangyey/host_alloc -> origin/guangyey/host_alloc 2025-08-14T21:43:07.6810794Z * [new branch] guangyey/test_2025 -> origin/guangyey/test_2025 2025-08-14T21:43:07.7221897Z * [new branch] guilhermeleobas/cherry-pick-55d87d9dfd9 -> origin/guilhermeleobas/cherry-pick-55d87d9dfd9 2025-08-14T21:43:07.7222700Z * [new branch] haozhe/bf16-dynamic-shape -> origin/haozhe/bf16-dynamic-shape 2025-08-14T21:43:07.7223199Z * [new branch] hc_baseline -> origin/hc_baseline 2025-08-14T21:43:07.7223696Z * [new branch] headeronlyScalarType -> origin/headeronlyScalarType 2025-08-14T21:43:07.7224710Z * [new branch] hf_update -> origin/hf_update 2025-08-14T21:43:07.7225157Z * [new branch] hhh_decomp_mul -> origin/hhh_decomp_mul 2025-08-14T21:43:07.7225587Z * [new branch] hhh_rand -> origin/hhh_rand 2025-08-14T21:43:07.7226010Z * [new branch] hoy/mmsplitk -> origin/hoy/mmsplitk 2025-08-14T21:43:07.7226483Z * [new branch] hoy/triton-PR3973 -> origin/hoy/triton-PR3973 2025-08-14T21:43:07.7227054Z * [new branch] hoy/triton-coalescing-baseline -> origin/hoy/triton-coalescing-baseline 2025-08-14T21:43:07.7227722Z * [new branch] hoy/triton-coalescing-min -> origin/hoy/triton-coalescing-min 2025-08-14T21:43:07.7228324Z * [new branch] hoy/triton-coalescing-new -> origin/hoy/triton-coalescing-new 2025-08-14T21:43:07.7228880Z * [new branch] hoy/triton-coalescing-vec -> origin/hoy/triton-coalescing-vec 2025-08-14T21:43:07.7229416Z * [new branch] inductordecompfix -> origin/inductordecompfix 2025-08-14T21:43:07.7229868Z * [new branch] inline -> origin/inline 2025-08-14T21:43:07.7230278Z * [new branch] inlining -> origin/inlining 2025-08-14T21:43:07.7230723Z * [new branch] inlining-ezyang -> origin/inlining-ezyang 2025-08-14T21:43:07.7231170Z * [new branch] int8_sdpa -> origin/int8_sdpa 2025-08-14T21:43:07.7231619Z * [new branch] invoke-subgraph -> origin/invoke-subgraph 2025-08-14T21:43:07.7232066Z * [new branch] issue#58739 -> origin/issue#58739 2025-08-14T21:43:07.7232494Z * [new branch] issue-154849 -> origin/issue-154849 2025-08-14T21:43:07.7233025Z * [new branch] ivanov/cherry-pick-ckpt-fixes -> origin/ivanov/cherry-pick-ckpt-fixes 2025-08-14T21:43:07.7233766Z * [new branch] jcaip/test-cusparselt-version-0.6.2 -> origin/jcaip/test-cusparselt-version-0.6.2 2025-08-14T21:43:07.7234493Z * [new branch] jcaip/update-cusparselt-0.6.2 -> origin/jcaip/update-cusparselt-0.6.2 2025-08-14T21:43:07.7235082Z * [new branch] jithunnair-amd-patch-1 -> origin/jithunnair-amd-patch-1 2025-08-14T21:43:07.7235642Z * [new branch] justinchu/attention-tests -> origin/justinchu/attention-tests 2025-08-14T21:43:07.7236344Z * [new branch] justinchu/native-qdq -> origin/justinchu/native-qdq 2025-08-14T21:43:07.7236982Z * [new branch] justinchuby/JitScalarType -> origin/justinchuby/JitScalarType 2025-08-14T21:43:07.7237546Z * [new branch] justinchuby/dynamo-true -> origin/justinchuby/dynamo-true 2025-08-14T21:43:07.7238070Z * [new branch] justinchuby/opset-20 -> origin/justinchuby/opset-20 2025-08-14T21:43:07.7238594Z * [new branch] kainan666/xlf_debug -> origin/kainan666/xlf_debug 2025-08-14T21:43:07.7239052Z * [new branch] kainan_test -> origin/kainan_test 2025-08-14T21:43:07.7239687Z * [new branch] leslie/enable_poc_reduction_fusion -> origin/leslie/enable_poc_reduction_fusion 2025-08-14T21:43:07.7240332Z * [new branch] leslie/test_group_gemm_epilogues -> origin/leslie/test_group_gemm_epilogues 2025-08-14T21:43:07.7240962Z * [new branch] lessw2020/fix_cutlass_cache_error -> origin/lessw2020/fix_cutlass_cache_error 2025-08-14T21:43:07.7241542Z * [new branch] liaoxuan/shm_all_reduce -> origin/liaoxuan/shm_all_reduce 2025-08-14T21:43:07.7242047Z * [new branch] liaoxuan/tags_issue -> origin/liaoxuan/tags_issue 2025-08-14T21:43:07.7242605Z * [new branch] liaoxuan/test_fa_disable_softmax -> origin/liaoxuan/test_fa_disable_softmax 2025-08-14T21:43:07.7243290Z * [new branch] liaoxuan/test_int8_sdpa -> origin/liaoxuan/test_int8_sdpa 2025-08-14T21:43:07.7243790Z * [new branch] lintbuilddocker -> origin/lintbuilddocker 2025-08-14T21:43:07.7244276Z * [new branch] llama4-stable -> origin/llama4-stable 2025-08-14T21:43:07.7244715Z * [new branch] logdetfix -> origin/logdetfix 2025-08-14T21:43:07.7245200Z * [new branch] lts/release/1.8 -> origin/lts/release/1.8 2025-08-14T21:43:07.7245718Z * [new branch] lucaskabela/#94773 -> origin/lucaskabela/#94773 2025-08-14T21:43:07.7246210Z * [new branch] lucaskabela/fix_157452 -> origin/lucaskabela/fix_157452 2025-08-14T21:43:07.7753964Z * [new branch] lucaskabela/fix_circular_import_158120 -> origin/lucaskabela/fix_circular_import_158120 2025-08-14T21:43:07.7754668Z * [new branch] lucaskabela/func_under_decomp -> origin/lucaskabela/func_under_decomp 2025-08-14T21:43:07.7755344Z * [new branch] lucaskabela/functional_in_dynamo -> origin/lucaskabela/functional_in_dynamo 2025-08-14T21:43:07.7756068Z * [new branch] lucaskabela/install_params_as_graph_attr -> origin/lucaskabela/install_params_as_graph_attr 2025-08-14T21:43:07.7756713Z * [new branch] lucaskabela/issue_120648 -> origin/lucaskabela/issue_120648 2025-08-14T21:43:07.7757459Z * [new branch] lucaskabela/parameters_as_graph_attr -> origin/lucaskabela/parameters_as_graph_attr 2025-08-14T21:43:07.7758086Z * [new branch] lucaskabela/registry_fix -> origin/lucaskabela/registry_fix 2025-08-14T21:43:07.7758754Z * [new branch] lucaskabela/remove_aot_dispatcher_metadata -> origin/lucaskabela/remove_aot_dispatcher_metadata 2025-08-14T21:43:07.7759425Z * [new branch] lucaskabela/type_guards -> origin/lucaskabela/type_guards 2025-08-14T21:43:07.7759973Z * [new branch] lucaskabela/typing-misc -> origin/lucaskabela/typing-misc 2025-08-14T21:43:07.7760538Z * [new branch] lucaskabela/typing_backends -> origin/lucaskabela/typing_backends 2025-08-14T21:43:07.7761266Z * [new branch] lucaskabela/typing_bytecode_analysis_transform -> origin/lucaskabela/typing_bytecode_analysis_transform 2025-08-14T21:43:07.7762009Z * [new branch] lucaskabela/typing_cache_files -> origin/lucaskabela/typing_cache_files 2025-08-14T21:43:07.7763354Z * [new branch] lucaskabela/typing_compile_autograd -> origin/lucaskabela/typing_compile_autograd 2025-08-14T21:43:07.7764056Z * [new branch] lucaskabela/typing_debug_utils.py -> origin/lucaskabela/typing_debug_utils.py 2025-08-14T21:43:07.7764715Z * [new branch] lucaskabela/typing_decorators -> origin/lucaskabela/typing_decorators 2025-08-14T21:43:07.7765322Z * [new branch] lucaskabela/typing_eval_frame -> origin/lucaskabela/typing_eval_frame 2025-08-14T21:43:07.7765932Z * [new branch] lucaskabela/typing_for_codegen -> origin/lucaskabela/typing_for_codegen 2025-08-14T21:43:07.7766556Z * [new branch] lucaskabela/typing_output_graph -> origin/lucaskabela/typing_output_graph 2025-08-14T21:43:07.7767175Z * [new branch] lucaskabela/typing_side_effects -> origin/lucaskabela/typing_side_effects 2025-08-14T21:43:07.7767794Z * [new branch] lucaskabela/typing_source_guard -> origin/lucaskabela/typing_source_guard 2025-08-14T21:43:07.7768416Z * [new branch] lucaskabela/typing_trace_rules -> origin/lucaskabela/typing_trace_rules 2025-08-14T21:43:07.7769003Z * [new branch] lucaskabela/typing_utils.py -> origin/lucaskabela/typing_utils.py 2025-08-14T21:43:07.7769657Z * [new branch] lucaskabela/typing_utils_improvements -> origin/lucaskabela/typing_utils_improvements 2025-08-14T21:43:07.7770215Z * [new branch] main -> origin/main 2025-08-14T21:43:07.7770986Z * [new branch] main-enable-b200-distributed-tests -> origin/main-enable-b200-distributed-tests 2025-08-14T21:43:07.7771665Z * [new branch] malfet-patch-1 -> origin/malfet-patch-1 2025-08-14T21:43:07.7772149Z * [new branch] malfet-patch-10 -> origin/malfet-patch-10 2025-08-14T21:43:07.7772623Z * [new branch] malfet-patch-11 -> origin/malfet-patch-11 2025-08-14T21:43:07.7773091Z * [new branch] malfet-patch-13 -> origin/malfet-patch-13 2025-08-14T21:43:07.7773561Z * [new branch] malfet-patch-14 -> origin/malfet-patch-14 2025-08-14T21:43:07.7774037Z * [new branch] malfet-patch-2 -> origin/malfet-patch-2 2025-08-14T21:43:07.7774492Z * [new branch] malfet-patch-3 -> origin/malfet-patch-3 2025-08-14T21:43:07.7774951Z * [new branch] malfet-patch-4 -> origin/malfet-patch-4 2025-08-14T21:43:07.7775404Z * [new branch] malfet-patch-5 -> origin/malfet-patch-5 2025-08-14T21:43:07.7775860Z * [new branch] malfet-patch-6 -> origin/malfet-patch-6 2025-08-14T21:43:07.7776313Z * [new branch] malfet-patch-7 -> origin/malfet-patch-7 2025-08-14T21:43:07.7776821Z * [new branch] malfet-patch-8 -> origin/malfet-patch-8 2025-08-14T21:43:07.7777331Z * [new branch] malfet-patch-9 -> origin/malfet-patch-9 2025-08-14T21:43:07.7777850Z * [new branch] malfet/delete-upsteam-cuda -> origin/malfet/delete-upsteam-cuda 2025-08-14T21:43:07.7778442Z * [new branch] malfet/mps-implement-col2im -> origin/malfet/mps-implement-col2im 2025-08-14T21:43:07.7779072Z * [new branch] manuel/fix_multidim_boolean_indexing -> origin/manuel/fix_multidim_boolean_indexing 2025-08-14T21:43:07.7779684Z * [new branch] manuel/np_empty_ellipsis -> origin/manuel/np_empty_ellipsis 2025-08-14T21:43:07.8194179Z * [new branch] manuel/test-ops-common-allow-mps -> origin/manuel/test-ops-common-allow-mps 2025-08-14T21:43:07.8194804Z * [new branch] metascroy-patch-1 -> origin/metascroy-patch-1 2025-08-14T21:43:07.8195320Z * [new branch] mlazos/S429861-debug -> origin/mlazos/S429861-debug 2025-08-14T21:43:07.8195781Z * [new branch] mlazos/aa -> origin/mlazos/aa 2025-08-14T21:43:07.8196461Z * [new branch] mlazos/arg-renames -> origin/mlazos/arg-renames 2025-08-14T21:43:07.8197048Z * [new branch] mlazos/backup-test-branch -> origin/mlazos/backup-test-branch 2025-08-14T21:43:07.8197594Z * [new branch] mlazos/bad-cudagraphs -> origin/mlazos/bad-cudagraphs 2025-08-14T21:43:07.8198092Z * [new branch] mlazos/baseline -> origin/mlazos/baseline 2025-08-14T21:43:07.8198696Z * [new branch] mlazos/baseline-graph-breaks -> origin/mlazos/baseline-graph-breaks 2025-08-14T21:43:07.8199293Z * [new branch] mlazos/beta-tensor -> origin/mlazos/beta-tensor 2025-08-14T21:43:07.8199777Z * [new branch] mlazos/buffers -> origin/mlazos/buffers 2025-08-14T21:43:07.8200230Z * [new branch] mlazos/buffers2 -> origin/mlazos/buffers2 2025-08-14T21:43:07.8200700Z * [new branch] mlazos/buffers3 -> origin/mlazos/buffers3 2025-08-14T21:43:07.8201139Z * [new branch] mlazos/ck2 -> origin/mlazos/ck2 2025-08-14T21:43:07.8201615Z * [new branch] mlazos/combokernels -> origin/mlazos/combokernels 2025-08-14T21:43:07.8202123Z * [new branch] mlazos/ctx-cleanup -> origin/mlazos/ctx-cleanup 2025-08-14T21:43:07.8202630Z * [new branch] mlazos/cudagraph-tests -> origin/mlazos/cudagraph-tests 2025-08-14T21:43:07.8203350Z * [new branch] mlazos/cudagraphs-measurement -> origin/mlazos/cudagraphs-measurement 2025-08-14T21:43:07.8203917Z * [new branch] mlazos/cutlass-test -> origin/mlazos/cutlass-test 2025-08-14T21:43:07.8204493Z * [new branch] mlazos/cutlass-topo-bug -> origin/mlazos/cutlass-topo-bug 2025-08-14T21:43:07.8205065Z * [new branch] mlazos/data-gather -> origin/mlazos/data-gather 2025-08-14T21:43:07.8205581Z * [new branch] mlazos/data-ptrs2 -> origin/mlazos/data-ptrs2 2025-08-14T21:43:07.8206059Z * [new branch] mlazos/data-ptrs3 -> origin/mlazos/data-ptrs3 2025-08-14T21:43:07.8206565Z * [new branch] mlazos/dataclass-proxy -> origin/mlazos/dataclass-proxy 2025-08-14T21:43:07.8207067Z * [new branch] mlazos/dc-attrs -> origin/mlazos/dc-attrs 2025-08-14T21:43:07.8207531Z * [new branch] mlazos/dc-helion -> origin/mlazos/dc-helion 2025-08-14T21:43:07.8207991Z * [new branch] mlazos/dict-fix -> origin/mlazos/dict-fix 2025-08-14T21:43:07.8208500Z * [new branch] mlazos/disable-closures -> origin/mlazos/disable-closures 2025-08-14T21:43:07.8209016Z * [new branch] mlazos/disable-tf -> origin/mlazos/disable-tf 2025-08-14T21:43:07.8209495Z * [new branch] mlazos/dupe-fix -> origin/mlazos/dupe-fix 2025-08-14T21:43:07.8209960Z * [new branch] mlazos/dyn-batch -> origin/mlazos/dyn-batch 2025-08-14T21:43:07.8210448Z * [new branch] mlazos/evt -> origin/mlazos/evt 2025-08-14T21:43:07.8210949Z * [new branch] mlazos/exp_disable -> origin/mlazos/exp_disable 2025-08-14T21:43:07.8211455Z * [new branch] mlazos/extract-examples -> origin/mlazos/extract-examples 2025-08-14T21:43:07.8211975Z * [new branch] mlazos/foreach-op -> origin/mlazos/foreach-op 2025-08-14T21:43:07.8212421Z * [new branch] mlazos/fp8 -> origin/mlazos/fp8 2025-08-14T21:43:07.8212869Z * [new branch] mlazos/fp8-bias -> origin/mlazos/fp8-bias 2025-08-14T21:43:07.8213373Z * [new branch] mlazos/fp8-bias-fusion -> origin/mlazos/fp8-bias-fusion 2025-08-14T21:43:07.8213864Z * [new branch] mlazos/freezing -> origin/mlazos/freezing 2025-08-14T21:43:07.8214438Z * [new branch] mlazos/h-comp -> origin/mlazos/h-comp 2025-08-14T21:43:07.8214888Z * [new branch] mlazos/h-comp2 -> origin/mlazos/h-comp2 2025-08-14T21:43:07.8215348Z * [new branch] mlazos/hash-hop -> origin/mlazos/hash-hop 2025-08-14T21:43:07.8215806Z * [new branch] mlazos/hc -> origin/mlazos/hc 2025-08-14T21:43:07.8216290Z * [new branch] mlazos/hc-cycles -> origin/mlazos/hc-cycles 2025-08-14T21:43:07.8216796Z * [new branch] mlazos/hc-fixes -> origin/mlazos/hc-fixes 2025-08-14T21:43:07.8217250Z * [new branch] mlazos/hc-fixes3 -> origin/mlazos/hc-fixes3 2025-08-14T21:43:07.8217715Z * [new branch] mlazos/hc-fixes4 -> origin/mlazos/hc-fixes4 2025-08-14T21:43:07.8218167Z * [new branch] mlazos/hc-hf -> origin/mlazos/hc-hf 2025-08-14T21:43:07.8659253Z * [new branch] mlazos/hc-mut -> origin/mlazos/hc-mut 2025-08-14T21:43:07.8659750Z * [new branch] mlazos/hc10 -> origin/mlazos/hc10 2025-08-14T21:43:07.8660194Z * [new branch] mlazos/hc11 -> origin/mlazos/hc11 2025-08-14T21:43:07.8660622Z * [new branch] mlazos/hc12 -> origin/mlazos/hc12 2025-08-14T21:43:07.8661037Z * [new branch] mlazos/hc13 -> origin/mlazos/hc13 2025-08-14T21:43:07.8661687Z * [new branch] mlazos/hc14 -> origin/mlazos/hc14 2025-08-14T21:43:07.8662112Z * [new branch] mlazos/hc15 -> origin/mlazos/hc15 2025-08-14T21:43:07.8662535Z * [new branch] mlazos/hc2 -> origin/mlazos/hc2 2025-08-14T21:43:07.8662957Z * [new branch] mlazos/hc4 -> origin/mlazos/hc4 2025-08-14T21:43:07.8663395Z * [new branch] mlazos/hc5 -> origin/mlazos/hc5 2025-08-14T21:43:07.8663811Z * [new branch] mlazos/hc6 -> origin/mlazos/hc6 2025-08-14T21:43:07.8664230Z * [new branch] mlazos/hc7 -> origin/mlazos/hc7 2025-08-14T21:43:07.8664661Z * [new branch] mlazos/hc8 -> origin/mlazos/hc8 2025-08-14T21:43:07.8665075Z * [new branch] mlazos/hc9 -> origin/mlazos/hc9 2025-08-14T21:43:07.8665526Z * [new branch] mlazos/hc_baseline2 -> origin/mlazos/hc_baseline2 2025-08-14T21:43:07.8666018Z * [new branch] mlazos/hop-modes -> origin/mlazos/hop-modes 2025-08-14T21:43:07.8666524Z * [new branch] mlazos/init-per-param -> origin/mlazos/init-per-param 2025-08-14T21:43:07.8667042Z * [new branch] mlazos/init_per_param -> origin/mlazos/init_per_param 2025-08-14T21:43:07.8667549Z * [new branch] mlazos/less-guards -> origin/mlazos/less-guards 2025-08-14T21:43:07.8668060Z * [new branch] mlazos/lr-composibility -> origin/mlazos/lr-composibility 2025-08-14T21:43:07.8668546Z * [new branch] mlazos/main -> origin/mlazos/main 2025-08-14T21:43:07.8669050Z * [new branch] mlazos/main-test-enablement -> origin/mlazos/main-test-enablement 2025-08-14T21:43:07.8669559Z * [new branch] mlazos/main2 -> origin/mlazos/main2 2025-08-14T21:43:07.8669988Z * [new branch] mlazos/mcg -> origin/mlazos/mcg 2025-08-14T21:43:07.8670417Z * [new branch] mlazos/mcg2 -> origin/mlazos/mcg2 2025-08-14T21:43:07.8670877Z * [new branch] mlazos/meta-guards -> origin/mlazos/meta-guards 2025-08-14T21:43:07.8671353Z * [new branch] mlazos/mlazos/ck2 -> origin/mlazos/mlazos/ck2 2025-08-14T21:43:07.8672040Z * [new branch] mlazos/mlazos/foreach-map-adam -> origin/mlazos/mlazos/foreach-map-adam 2025-08-14T21:43:07.8672663Z * [new branch] mlazos/mlazos/tf-mode-backup -> origin/mlazos/mlazos/tf-mode-backup 2025-08-14T21:43:07.8673202Z * [new branch] mlazos/mod-fix -> origin/mlazos/mod-fix 2025-08-14T21:43:07.8673674Z * [new branch] mlazos/mode-fix -> origin/mlazos/mode-fix 2025-08-14T21:43:07.8674147Z * [new branch] mlazos/more-tests -> origin/mlazos/more-tests 2025-08-14T21:43:07.8674639Z * [new branch] mlazos/nested-dc -> origin/mlazos/nested-dc 2025-08-14T21:43:07.8675095Z * [new branch] mlazos/no-cpp -> origin/mlazos/no-cpp 2025-08-14T21:43:07.8675631Z * [new branch] mlazos/no-init-group-handling -> origin/mlazos/no-init-group-handling 2025-08-14T21:43:07.8676259Z * [new branch] mlazos/offsets -> origin/mlazos/offsets 2025-08-14T21:43:07.8676856Z * [new branch] mlazos/opt-bench-exp2 -> origin/mlazos/opt-bench-exp2 2025-08-14T21:43:07.8677369Z * [new branch] mlazos/opt-incr -> origin/mlazos/opt-incr 2025-08-14T21:43:07.8677844Z * [new branch] mlazos/proxy-ctors -> origin/mlazos/proxy-ctors 2025-08-14T21:43:07.8678342Z * [new branch] mlazos/proxy-opt -> origin/mlazos/proxy-opt 2025-08-14T21:43:07.8678924Z * [new branch] mlazos/quant-fix -> origin/mlazos/quant-fix 2025-08-14T21:43:07.8679421Z * [new branch] mlazos/rm-buf-names -> origin/mlazos/rm-buf-names 2025-08-14T21:43:07.8679902Z * [new branch] mlazos/rm-spam -> origin/mlazos/rm-spam 2025-08-14T21:43:07.8680345Z * [new branch] mlazos/rtp -> origin/mlazos/rtp 2025-08-14T21:43:07.8680832Z * [new branch] mlazos/static-idx-dbg -> origin/mlazos/static-idx-dbg 2025-08-14T21:43:07.8681376Z * [new branch] mlazos/static-inputs-log -> origin/mlazos/static-inputs-log 2025-08-14T21:43:07.8681924Z * [new branch] mlazos/sub-param-fix -> origin/mlazos/sub-param-fix 2025-08-14T21:43:07.8682501Z * [new branch] mlazos/td-fix2 -> origin/mlazos/td-fix2 2025-08-14T21:43:07.8682991Z * [new branch] mlazos/tensor-hasattr2 -> origin/mlazos/tensor-hasattr2 2025-08-14T21:43:07.9083975Z * [new branch] mlazos/test -> origin/mlazos/test 2025-08-14T21:43:07.9084444Z * [new branch] mlazos/tf-mode -> origin/mlazos/tf-mode 2025-08-14T21:43:07.9084945Z * [new branch] mlazos/tf-mode-backup2 -> origin/mlazos/tf-mode-backup2 2025-08-14T21:43:07.9085473Z * [new branch] mlazos/tf-mode-reland -> origin/mlazos/tf-mode-reland 2025-08-14T21:43:07.9085982Z * [new branch] mlazos/tf-mode-reland2 -> origin/mlazos/tf-mode-reland2 2025-08-14T21:43:07.9086525Z * [new branch] mlazos/tf-mode-reland3 -> origin/mlazos/tf-mode-reland3 2025-08-14T21:43:07.9087009Z * [new branch] mlazos/topo-fix -> origin/mlazos/topo-fix 2025-08-14T21:43:07.9087501Z * [new branch] mlazos/triton-no-epi -> origin/mlazos/triton-no-epi 2025-08-14T21:43:07.9088000Z * [new branch] mlazos/tune-proto -> origin/mlazos/tune-proto 2025-08-14T21:43:07.9088504Z * [new branch] mlazos/tuple-fixes -> origin/mlazos/tuple-fixes 2025-08-14T21:43:07.9089000Z * [new branch] mlazos/tuple-fixes2 -> origin/mlazos/tuple-fixes2 2025-08-14T21:43:07.9089512Z * [new branch] mlazos/tuple-handling -> origin/mlazos/tuple-handling 2025-08-14T21:43:07.9090009Z * [new branch] mlazos/user-streams -> origin/mlazos/user-streams 2025-08-14T21:43:07.9090488Z * [new branch] mlazos/vary-beta -> origin/mlazos/vary-beta 2025-08-14T21:43:07.9091117Z * [new branch] mlazos/vary-beta2 -> origin/mlazos/vary-beta2 2025-08-14T21:43:07.9091605Z * [new branch] mlazos/weird-perf1 -> origin/mlazos/weird-perf1 2025-08-14T21:43:07.9092083Z * [new branch] mm_out_dtype_compile -> origin/mm_out_dtype_compile 2025-08-14T21:43:07.9092583Z * [new branch] modify-setupvllm -> origin/modify-setupvllm 2025-08-14T21:43:07.9093103Z * [new branch] move-theme-out-docker -> origin/move-theme-out-docker 2025-08-14T21:43:07.9093591Z * [new branch] mps-linear-1d -> origin/mps-linear-1d 2025-08-14T21:43:07.9094042Z * [new branch] msaroufim/be1 -> origin/msaroufim/be1 2025-08-14T21:43:07.9094497Z * [new branch] msaroufim/cn_path -> origin/msaroufim/cn_path 2025-08-14T21:43:07.9095032Z * [new branch] msaroufim/dtensorfusedadam -> origin/msaroufim/dtensorfusedadam 2025-08-14T21:43:07.9095561Z * [new branch] msaroufim/reduce -> origin/msaroufim/reduce 2025-08-14T21:43:07.9096029Z * [new branch] mtia/basic-cmake -> origin/mtia/basic-cmake 2025-08-14T21:43:07.9096468Z * [new branch] muon_dev -> origin/muon_dev 2025-08-14T21:43:07.9096933Z * [new branch] new-modifiy-setupvllm -> origin/new-modifiy-setupvllm 2025-08-14T21:43:07.9097531Z * [new branch] new-setupvllm -> origin/new-setupvllm 2025-08-14T21:43:07.9097987Z * [new branch] newtest-base -> origin/newtest-base 2025-08-14T21:43:07.9098449Z * [new branch] ngimel/cat_perf -> origin/ngimel/cat_perf 2025-08-14T21:43:07.9098948Z * [new branch] ngimel/cudamoduleload -> origin/ngimel/cudamoduleload 2025-08-14T21:43:07.9099496Z * [new branch] ngimel/fabric_driver_version -> origin/ngimel/fabric_driver_version 2025-08-14T21:43:07.9100026Z * [new branch] ngimel/fabric_symm -> origin/ngimel/fabric_symm 2025-08-14T21:43:07.9100481Z * [new branch] ngimel/gg_new -> origin/ngimel/gg_new 2025-08-14T21:43:07.9100974Z * [new branch] ngimel/grouped_mm_checks -> origin/ngimel/grouped_mm_checks 2025-08-14T21:43:07.9101489Z * [new branch] ngimel/guardfabric -> origin/ngimel/guardfabric 2025-08-14T21:43:07.9101978Z * [new branch] ngimel/index_None -> origin/ngimel/index_None 2025-08-14T21:43:07.9102448Z * [new branch] ngimel/modeguard -> origin/ngimel/modeguard 2025-08-14T21:43:07.9102924Z * [new branch] ngimel/multicast_fix -> origin/ngimel/multicast_fix 2025-08-14T21:43:07.9103446Z * [new branch] ngimel/unbind_multimem -> origin/ngimel/unbind_multimem 2025-08-14T21:43:07.9103925Z * [new branch] nightly -> origin/nightly 2025-08-14T21:43:07.9104391Z * [new branch] nmacchioni-patch-10 -> origin/nmacchioni-patch-10 2025-08-14T21:43:07.9104913Z * [new branch] nmacchioni-patch-7 -> origin/nmacchioni-patch-7 2025-08-14T21:43:07.9105420Z * [new branch] nmacchioni-patch-8 -> origin/nmacchioni-patch-8 2025-08-14T21:43:07.9105937Z * [new branch] nmacchioni-patch-9 -> origin/nmacchioni-patch-9 2025-08-14T21:43:07.9106448Z * [new branch] nullplay_fuse_matmul -> origin/nullplay_fuse_matmul 2025-08-14T21:43:07.9107091Z * [new branch] nweidia/enable-B200-inductor-nightly-ci -> origin/nweidia/enable-B200-inductor-nightly-ci 2025-08-14T21:43:07.9504314Z * [new branch] one-off -> origin/one-off 2025-08-14T21:43:07.9504863Z * [new branch] orig/release/1.10 -> origin/orig/release/1.10 2025-08-14T21:43:07.9505555Z * [new branch] orig/release/1.11 -> origin/orig/release/1.11 2025-08-14T21:43:07.9506033Z * [new branch] orig/release/1.12 -> origin/orig/release/1.12 2025-08-14T21:43:07.9506494Z * [new branch] orig/release/1.13 -> origin/orig/release/1.13 2025-08-14T21:43:07.9506961Z * [new branch] orig/release/1.6 -> origin/orig/release/1.6 2025-08-14T21:43:07.9507428Z * [new branch] orig/release/1.7 -> origin/orig/release/1.7 2025-08-14T21:43:07.9507896Z * [new branch] orig/release/1.8 -> origin/orig/release/1.8 2025-08-14T21:43:07.9508352Z * [new branch] orig/release/1.9 -> origin/orig/release/1.9 2025-08-14T21:43:07.9508801Z * [new branch] orig/release/2.0 -> origin/orig/release/2.0 2025-08-14T21:43:07.9509254Z * [new branch] orig/release/2.1 -> origin/orig/release/2.1 2025-08-14T21:43:07.9509704Z * [new branch] orig/release/2.2 -> origin/orig/release/2.2 2025-08-14T21:43:07.9510159Z * [new branch] orig/release/2.3 -> origin/orig/release/2.3 2025-08-14T21:43:07.9510661Z * [new branch] orig/release/2.4 -> origin/orig/release/2.4 2025-08-14T21:43:07.9511199Z * [new branch] orig/release/2.5 -> origin/orig/release/2.5 2025-08-14T21:43:07.9511819Z * [new branch] orig/release/2.6 -> origin/orig/release/2.6 2025-08-14T21:43:07.9512354Z * [new branch] orig/release/2.7 -> origin/orig/release/2.7 2025-08-14T21:43:07.9512823Z * [new branch] orig/release/2.8 -> origin/orig/release/2.8 2025-08-14T21:43:07.9513276Z * [new branch] oulgen/fx_graph -> origin/oulgen/fx_graph 2025-08-14T21:43:07.9513748Z * [new branch] padded-tensor -> origin/padded-tensor 2025-08-14T21:43:07.9514207Z * [new branch] parallel_cat -> origin/parallel_cat 2025-08-14T21:43:07.9514622Z * [new branch] pca2 -> origin/pca2 2025-08-14T21:43:07.9515070Z * [new branch] pianpwk-patch-1 -> origin/pianpwk-patch-1 2025-08-14T21:43:07.9515659Z * [new branch] pianpwk/backed_size_oblivious_export -> origin/pianpwk/backed_size_oblivious_export 2025-08-14T21:43:07.9516281Z * [new branch] pianpwk/dde_repeat_cat -> origin/pianpwk/dde_repeat_cat 2025-08-14T21:43:07.9516905Z * [new branch] pianpwk/draft_export_normalize -> origin/pianpwk/draft_export_normalize 2025-08-14T21:43:07.9517493Z * [new branch] pianpwk/dynamic_source_dim -> origin/pianpwk/dynamic_source_dim 2025-08-14T21:43:07.9518163Z * [new branch] pianpwk/invalidate_fake_memo -> origin/pianpwk/invalidate_fake_memo 2025-08-14T21:43:07.9518799Z * [new branch] pianpwk/lru_cache_bound_sympy -> origin/pianpwk/lru_cache_bound_sympy 2025-08-14T21:43:07.9519434Z * [new branch] pianpwk/max_1_strides -> origin/pianpwk/max_1_strides 2025-08-14T21:43:07.9519984Z * [new branch] pianpwk/nonzero_memo -> origin/pianpwk/nonzero_memo 2025-08-14T21:43:07.9520684Z * [new branch] pianpwk/oblivious_reshape_view_better -> origin/pianpwk/oblivious_reshape_view_better 2025-08-14T21:43:07.9521436Z * [new branch] pianpwk/oblivious_should_swap -> origin/pianpwk/oblivious_should_swap 2025-08-14T21:43:07.9522050Z * [new branch] pianpwk/oblivious_slice_forward -> origin/pianpwk/oblivious_slice_forward 2025-08-14T21:43:07.9522636Z * [new branch] pianpwk/oblivious_where -> origin/pianpwk/oblivious_where 2025-08-14T21:43:07.9523181Z * [new branch] pianpwk/param_static_pgo -> origin/pianpwk/param_static_pgo 2025-08-14T21:43:07.9523831Z * [new branch] pianpwk/pre_forward_hook -> origin/pianpwk/pre_forward_hook 2025-08-14T21:43:07.9524415Z * [new branch] pianpwk/remove_guard_fail_break -> origin/pianpwk/remove_guard_fail_break 2025-08-14T21:43:07.9525009Z * [new branch] pianpwk/slice_fresh_symbols -> origin/pianpwk/slice_fresh_symbols 2025-08-14T21:43:07.9525532Z * [new branch] pianpwk/sym_sym -> origin/pianpwk/sym_sym 2025-08-14T21:43:07.9526070Z * [new branch] pianpwk/test_slice_fake_impl -> origin/pianpwk/test_slice_fake_impl 2025-08-14T21:43:07.9526715Z * [new branch] pianpwk/unbacked_channels_last -> origin/pianpwk/unbacked_channels_last 2025-08-14T21:43:07.9527359Z * [new branch] pianpwk/unbacked_safe_conv1d -> origin/pianpwk/unbacked_safe_conv1d 2025-08-14T21:43:07.9528023Z * [new branch] pianpwk/unbacked_sdpa_flash -> origin/pianpwk/unbacked_sdpa_flash 2025-08-14T21:43:07.9528606Z * [new branch] pianpwk/unbacked_should_swap -> origin/pianpwk/unbacked_should_swap 2025-08-14T21:43:07.9969903Z * [new branch] pianpwk/unbacked_should_swap_2 -> origin/pianpwk/unbacked_should_swap_2 2025-08-14T21:43:07.9970568Z * [new branch] pianpwk/unbacked_slice_binding -> origin/pianpwk/unbacked_slice_binding 2025-08-14T21:43:07.9971187Z * [new branch] pianpwk/unbacked_slice_forward -> origin/pianpwk/unbacked_slice_forward 2025-08-14T21:43:07.9972014Z * [new branch] pianpwk/verbose_tensor_guards -> origin/pianpwk/verbose_tensor_guards 2025-08-14T21:43:07.9972640Z * [new branch] pianpwk/wan21_reshape -> origin/pianpwk/wan21_reshape 2025-08-14T21:43:07.9973258Z * [new branch] pianpwk/whitelist_optimizer -> origin/pianpwk/whitelist_optimizer 2025-08-14T21:43:07.9973819Z * [new branch] pin-torchao -> origin/pin-torchao 2025-08-14T21:43:07.9974312Z * [new branch] piz/fall_back_missing_0705 -> origin/piz/fall_back_missing_0705 2025-08-14T21:43:07.9974857Z * [new branch] piz/fall_back_missing_0716 -> origin/piz/fall_back_missing_0716 2025-08-14T21:43:07.9975396Z * [new branch] piz/fill_dist_cost_0702-3 -> origin/piz/fill_dist_cost_0702-3 2025-08-14T21:43:07.9975926Z * [new branch] piz/fill_dist_cost_0702-4 -> origin/piz/fill_dist_cost_0702-4 2025-08-14T21:43:07.9976431Z * [new branch] piz/fill_dist_cost_0702-5 -> origin/piz/fill_dist_cost_0702-5 2025-08-14T21:43:07.9976931Z * [new branch] piz/fix_sort_ -> origin/piz/fix_sort_ 2025-08-14T21:43:07.9977408Z * [new branch] piz/improve_scatter_0808 -> origin/piz/improve_scatter_0808 2025-08-14T21:43:07.9977911Z * [new branch] pool-separate -> origin/pool-separate 2025-08-14T21:43:07.9978347Z * [new branch] pr-156087 -> origin/pr-156087 2025-08-14T21:43:07.9978778Z * [new branch] pr/131860 -> origin/pr/131860 2025-08-14T21:43:07.9979223Z * [new branch] predispatch_to -> origin/predispatch_to 2025-08-14T21:43:07.9979670Z * [new branch] pt-opt-cuda3 -> origin/pt-opt-cuda3 2025-08-14T21:43:07.9980169Z * [new branch] pt2e-cache-model-device -> origin/pt2e-cache-model-device 2025-08-14T21:43:07.9980696Z * [new branch] pull-latest-theme -> origin/pull-latest-theme 2025-08-14T21:43:07.9981161Z * [new branch] pyobjectslot -> origin/pyobjectslot 2025-08-14T21:43:07.9981655Z * [new branch] python_compiled_autograd -> origin/python_compiled_autograd 2025-08-14T21:43:07.9982185Z * [new branch] qchip/export-D54134695 -> origin/qchip/export-D54134695 2025-08-14T21:43:07.9982665Z * [new branch] quint-bits -> origin/quint-bits 2025-08-14T21:43:07.9983227Z * [new branch] release/1.10 -> origin/release/1.10 2025-08-14T21:43:07.9983669Z * [new branch] release/1.11 -> origin/release/1.11 2025-08-14T21:43:07.9984151Z * [new branch] release/1.12 -> origin/release/1.12 2025-08-14T21:43:07.9984620Z * [new branch] release/1.13 -> origin/release/1.13 2025-08-14T21:43:07.9985052Z * [new branch] release/1.4 -> origin/release/1.4 2025-08-14T21:43:07.9985486Z * [new branch] release/1.4.1 -> origin/release/1.4.1 2025-08-14T21:43:07.9985917Z * [new branch] release/1.5 -> origin/release/1.5 2025-08-14T21:43:07.9986340Z * [new branch] release/1.6 -> origin/release/1.6 2025-08-14T21:43:07.9986753Z * [new branch] release/1.7 -> origin/release/1.7 2025-08-14T21:43:07.9987173Z * [new branch] release/1.8 -> origin/release/1.8 2025-08-14T21:43:07.9987591Z * [new branch] release/1.9 -> origin/release/1.9 2025-08-14T21:43:07.9988019Z * [new branch] release/2.0 -> origin/release/2.0 2025-08-14T21:43:07.9988451Z * [new branch] release/2.1 -> origin/release/2.1 2025-08-14T21:43:07.9988871Z * [new branch] release/2.2 -> origin/release/2.2 2025-08-14T21:43:07.9989395Z * [new branch] release/2.3 -> origin/release/2.3 2025-08-14T21:43:07.9989810Z * [new branch] release/2.4 -> origin/release/2.4 2025-08-14T21:43:07.9990237Z * [new branch] release/2.5 -> origin/release/2.5 2025-08-14T21:43:07.9990655Z * [new branch] release/2.6 -> origin/release/2.6 2025-08-14T21:43:07.9991090Z * [new branch] release/2.7 -> origin/release/2.7 2025-08-14T21:43:07.9991522Z * [new branch] release/2.8 -> origin/release/2.8 2025-08-14T21:43:07.9992108Z * [new branch] release_notes -> origin/release_notes 2025-08-14T21:43:07.9992613Z * [new branch] remove-actionable-label -> origin/remove-actionable-label 2025-08-14T21:43:07.9993111Z * [new branch] remove-ao -> origin/remove-ao 2025-08-14T21:43:07.9993710Z * [new branch] replace-pytorch-labs-20250812-195836 -> origin/replace-pytorch-labs-20250812-195836 2025-08-14T21:43:08.0382458Z * [new branch] replace-pytorch-labs-20250812-200248 -> origin/replace-pytorch-labs-20250812-200248 2025-08-14T21:43:08.0383270Z * [new branch] replace-pytorch-labs-20250812-200324 -> origin/replace-pytorch-labs-20250812-200324 2025-08-14T21:43:08.0384019Z * [new branch] replace-pytorch-labs-20250812-204020 -> origin/replace-pytorch-labs-20250812-204020 2025-08-14T21:43:08.0384788Z * [new branch] replace-pytorch-labs-20250812-204125 -> origin/replace-pytorch-labs-20250812-204125 2025-08-14T21:43:08.0385520Z * [new branch] replace-pytorch-labs-20250812-205624 -> origin/replace-pytorch-labs-20250812-205624 2025-08-14T21:43:08.0386288Z * [new branch] revert-131069-gh/krzysztofjordan/1/head -> origin/revert-131069-gh/krzysztofjordan/1/head 2025-08-14T21:43:08.0387018Z * [new branch] revert-131469-gh/andrewor14/51/head -> origin/revert-131469-gh/andrewor14/51/head 2025-08-14T21:43:08.0387705Z * [new branch] revert-156870-gh/skarjala/3/head -> origin/revert-156870-gh/skarjala/3/head 2025-08-14T21:43:08.0388535Z * [new branch] revert-157914-cherry-pick-157503-by-pytorch_bot_bot_ -> origin/revert-157914-cherry-pick-157503-by-pytorch_bot_bot_ 2025-08-14T21:43:08.0389306Z * [new branch] revert-direct-updates -> origin/revert-direct-updates 2025-08-14T21:43:08.0390017Z * [new branch] rocm-monitoring -> origin/rocm-monitoring 2025-08-14T21:43:08.0390695Z * [new branch] ryanguo99/cleanup-dynamo-expected-failures -> origin/ryanguo99/cleanup-dynamo-expected-failures 2025-08-14T21:43:08.0392811Z * [new branch] ryanguo99/fix-closure-var -> origin/ryanguo99/fix-closure-var 2025-08-14T21:43:08.0393773Z * [new branch] rzou/faketensor_bench -> origin/rzou/faketensor_bench 2025-08-14T21:43:08.0394259Z * [new branch] rzou/njt -> origin/rzou/njt 2025-08-14T21:43:08.0394721Z * [new branch] rzou/operator -> origin/rzou/operator 2025-08-14T21:43:08.0395161Z * [new branch] rzou/pca -> origin/rzou/pca 2025-08-14T21:43:08.0395616Z * [new branch] rzou/pipe_split -> origin/rzou/pipe_split 2025-08-14T21:43:08.0396090Z * [new branch] rzou/realprop -> origin/rzou/realprop 2025-08-14T21:43:08.0396561Z * [new branch] rzou/setup_context -> origin/rzou/setup_context 2025-08-14T21:43:08.0397230Z * [new branch] sanchitintel/refactor_aten_int8_woq_gemm -> origin/sanchitintel/refactor_aten_int8_woq_gemm 2025-08-14T21:43:08.0398098Z * [new branch] sanchitintel/weird_thing_with_test_cpu_select_algorithm -> origin/sanchitintel/weird_thing_with_test_cpu_select_algorithm 2025-08-14T21:43:08.0400082Z * [new branch] sapling-pr-archive-SS-JIA -> origin/sapling-pr-archive-SS-JIA 2025-08-14T21:43:08.0400583Z * [new branch] save -> origin/save 2025-08-14T21:43:08.0400987Z * [new branch] sdym/2.5.1 -> origin/sdym/2.5.1 2025-08-14T21:43:08.0401476Z * [new branch] seemethere-patch-1 -> origin/seemethere-patch-1 2025-08-14T21:43:08.0401958Z * [new branch] setup-torchci -> origin/setup-torchci 2025-08-14T21:43:08.0402414Z * [new branch] setupvllm -> origin/setupvllm 2025-08-14T21:43:08.0402862Z * [new branch] share_and_pin_fork -> origin/share_and_pin_fork 2025-08-14T21:43:08.0403365Z * [new branch] shengf/fx-xform-perf -> origin/shengf/fx-xform-perf 2025-08-14T21:43:08.0403881Z * [new branch] shikaili_fp8_allgather -> origin/shikaili_fp8_allgather 2025-08-14T21:43:08.0406241Z * [new branch] shoumikhin-patch-12 -> origin/shoumikhin-patch-12 2025-08-14T21:43:08.0406795Z * [new branch] simplify-fq-per-channel -> origin/simplify-fq-per-channel 2025-08-14T21:43:08.0407328Z * [new branch] solve-accuracy-fix -> origin/solve-accuracy-fix 2025-08-14T21:43:08.0407828Z * [new branch] sqzhang/flight4 -> origin/sqzhang/flight4 2025-08-14T21:43:08.0408329Z * [new branch] sqzhang/flight4plus -> origin/sqzhang/flight4plus 2025-08-14T21:43:08.0408873Z * [new branch] sraikund/record_funct_test -> origin/sraikund/record_funct_test 2025-08-14T21:43:08.0409392Z * [new branch] sraikund16/test -> origin/sraikund16/test 2025-08-14T21:43:08.0409920Z * [new branch] stablize-compilation-time -> origin/stablize-compilation-time 2025-08-14T21:43:08.0410483Z * [new branch] standalone-templates -> origin/standalone-templates 2025-08-14T21:43:08.0412062Z * [new branch] standalone_package_weights -> origin/standalone_package_weights 2025-08-14T21:43:08.0412594Z * [new branch] starterTaskUpdate -> origin/starterTaskUpdate 2025-08-14T21:43:08.0413085Z * [new branch] step2vllmsetup -> origin/step2vllmsetup 2025-08-14T21:43:08.0742875Z * [new branch] subgraph_fuse -> origin/subgraph_fuse 2025-08-14T21:43:08.0743422Z * [new branch] support-uv-in-collect_env -> origin/support-uv-in-collect_env 2025-08-14T21:43:08.0744195Z * [new branch] suryasub/fix-nccl-hang -> origin/suryasub/fix-nccl-hang 2025-08-14T21:43:08.0744676Z * [new branch] sve-poc -> origin/sve-poc 2025-08-14T21:43:08.0745136Z * [new branch] svekars-patch-1 -> origin/svekars-patch-1 2025-08-14T21:43:08.0746715Z * [new branch] svekars-patch-2 -> origin/svekars-patch-2 2025-08-14T21:43:08.0747189Z * [new branch] switch-bn -> origin/switch-bn 2025-08-14T21:43:08.0747690Z * [new branch] sympy-bottleneck-repro -> origin/sympy-bottleneck-repro 2025-08-14T21:43:08.0748264Z * [new branch] tenpercent/ck_inductor_gfx950 -> origin/tenpercent/ck_inductor_gfx950 2025-08-14T21:43:08.0748835Z * [new branch] tensordict_integration -> origin/tensordict_integration 2025-08-14T21:43:08.0749438Z * [new branch] test-half-migration-internally -> origin/test-half-migration-internally 2025-08-14T21:43:08.0750021Z * [new branch] test-internal-et -> origin/test-internal-et 2025-08-14T21:43:08.0750540Z * [new branch] test-move-conda-builds -> origin/test-move-conda-builds 2025-08-14T21:43:08.0751687Z * [new branch] test-myst-markdown-docstring -> origin/test-myst-markdown-docstring 2025-08-14T21:43:08.0752654Z * [new branch] test-old -> origin/test-old 2025-08-14T21:43:08.0753345Z * [new branch] test-vec-migration-internally -> origin/test-vec-migration-internally 2025-08-14T21:43:08.0753889Z * [new branch] test/bmm_heur -> origin/test/bmm_heur 2025-08-14T21:43:08.0754342Z * [new branch] test/inductor -> origin/test/inductor 2025-08-14T21:43:08.0754812Z * [new branch] tidy_performance_cyy -> origin/tidy_performance_cyy 2025-08-14T21:43:08.0755323Z * [new branch] torchtitan_ep -> origin/torchtitan_ep 2025-08-14T21:43:08.0755818Z * [new branch] trace_fsdp_torchtune_lora -> origin/trace_fsdp_torchtune_lora 2025-08-14T21:43:08.0756362Z * [new branch] traceable_fsdp_unit_tests -> origin/traceable_fsdp_unit_tests 2025-08-14T21:43:08.0757896Z * [new branch] trackMonitor -> origin/trackMonitor 2025-08-14T21:43:08.0758370Z * [new branch] tree_loop_vec_base -> origin/tree_loop_vec_base 2025-08-14T21:43:08.0758825Z * [new branch] tree_vec_base -> origin/tree_vec_base 2025-08-14T21:43:08.0759262Z * [new branch] triton-update -> origin/triton-update 2025-08-14T21:43:08.0759710Z * [new branch] triton_kernel -> origin/triton_kernel 2025-08-14T21:43:08.0760173Z * [new branch] triton_kernel_perf -> origin/triton_kernel_perf 2025-08-14T21:43:08.0760636Z * [new branch] try-runllm -> origin/try-runllm 2025-08-14T21:43:08.0761062Z * [new branch] type_dec -> origin/type_dec 2025-08-14T21:43:08.0761564Z * [new branch] udate-sphinx-dependancies -> origin/udate-sphinx-dependancies 2025-08-14T21:43:08.0762283Z * [new branch] update-audio-commit-hash/16307312222-1661-1 -> origin/update-audio-commit-hash/16307312222-1661-1 2025-08-14T21:43:08.0764075Z * [new branch] update-audio-commit-hash/16431348808-1673-1 -> origin/update-audio-commit-hash/16431348808-1673-1 2025-08-14T21:43:08.0764874Z * [new branch] update-audio-commit-hash/16510774365-1683-1 -> origin/update-audio-commit-hash/16510774365-1683-1 2025-08-14T21:43:08.0765684Z * [new branch] update-audio-commit-hash/16583472358-1693-1 -> origin/update-audio-commit-hash/16583472358-1693-1 2025-08-14T21:43:08.0766619Z * [new branch] update-audio-commit-hash/16663082088-1700-1 -> origin/update-audio-commit-hash/16663082088-1700-1 2025-08-14T21:43:08.0767422Z * [new branch] update-audio-commit-hash/16737365217-1704-1 -> origin/update-audio-commit-hash/16737365217-1704-1 2025-08-14T21:43:08.0768218Z * [new branch] update-audio-commit-hash/16791960928-1711-1 -> origin/update-audio-commit-hash/16791960928-1711-1 2025-08-14T21:43:08.0769993Z * [new branch] update-audio-commit-hash/16818882925-1712-1 -> origin/update-audio-commit-hash/16818882925-1712-1 2025-08-14T21:43:08.0770807Z * [new branch] update-audio-commit-hash/16895560422-1720-1 -> origin/update-audio-commit-hash/16895560422-1720-1 2025-08-14T21:43:08.0771597Z * [new branch] update-audio-commit-hash/16924174496-1738-1 -> origin/update-audio-commit-hash/16924174496-1738-1 2025-08-14T21:43:08.0772308Z * [new branch] update-dynamic-shapes-doc -> origin/update-dynamic-shapes-doc 2025-08-14T21:43:08.1107296Z * [new branch] update-executorch-commit-hash/15694981040-1626-1 -> origin/update-executorch-commit-hash/15694981040-1626-1 2025-08-14T21:43:08.1108201Z * [new branch] update-triton-commit-hash/13663274526-1487-2 -> origin/update-triton-commit-hash/13663274526-1487-2 2025-08-14T21:43:08.1109039Z * [new branch] update-vision-commit-hash/15336342773-1607-1 -> origin/update-vision-commit-hash/15336342773-1607-1 2025-08-14T21:43:08.1111057Z * [new branch] update-vllm-commit-hash/16431348808-1673-1 -> origin/update-vllm-commit-hash/16431348808-1673-1 2025-08-14T21:43:08.1111828Z * [new branch] update-vllm-commit-hash/16484773233-1682-1 -> origin/update-vllm-commit-hash/16484773233-1682-1 2025-08-14T21:43:08.1112608Z * [new branch] update-vllm-commit-hash/16510774365-1683-1 -> origin/update-vllm-commit-hash/16510774365-1683-1 2025-08-14T21:43:08.1113384Z * [new branch] update-vllm-commit-hash/16534031105-1684-1 -> origin/update-vllm-commit-hash/16534031105-1684-1 2025-08-14T21:43:08.1114170Z * [new branch] update-vllm-commit-hash/16545403308-1687-1 -> origin/update-vllm-commit-hash/16545403308-1687-1 2025-08-14T21:43:08.1114948Z * [new branch] update-vllm-commit-hash/16557202787-1688-1 -> origin/update-vllm-commit-hash/16557202787-1688-1 2025-08-14T21:43:08.1116701Z * [new branch] update-vllm-commit-hash/16583472358-1693-1 -> origin/update-vllm-commit-hash/16583472358-1693-1 2025-08-14T21:43:08.1117531Z * [new branch] update-vllm-commit-hash/16663082088-1700-1 -> origin/update-vllm-commit-hash/16663082088-1700-1 2025-08-14T21:43:08.1118298Z * [new branch] update-vllm-commit-hash/16737365217-1704-1 -> origin/update-vllm-commit-hash/16737365217-1704-1 2025-08-14T21:43:08.1119060Z * [new branch] update-vllm-commit-hash/16843157111-1713-1 -> origin/update-vllm-commit-hash/16843157111-1713-1 2025-08-14T21:43:08.1119836Z * [new branch] update-vllm-commit-hash/16855312394-1714-1 -> origin/update-vllm-commit-hash/16855312394-1714-1 2025-08-14T21:43:08.1120617Z * [new branch] update-vllm-commit-hash/16924174496-1738-1 -> origin/update-vllm-commit-hash/16924174496-1738-1 2025-08-14T21:43:08.1122353Z * [new branch] update-vllm-commit-hash/16952608705-1745-1 -> origin/update-vllm-commit-hash/16952608705-1745-1 2025-08-14T21:43:08.1123141Z * [new branch] update-xla-commit-hash/16260974441-194-1 -> origin/update-xla-commit-hash/16260974441-194-1 2025-08-14T21:43:08.1123889Z * [new branch] update-xla-commit-hash/16717126778-197-1 -> origin/update-xla-commit-hash/16717126778-197-1 2025-08-14T21:43:08.1124645Z * [new branch] update-xla-commit-hash/16873912760-198-1 -> origin/update-xla-commit-hash/16873912760-198-1 2025-08-14T21:43:08.1125404Z * [new branch] update_docs_torch_multinomial_issue#125388 -> origin/update_docs_torch_multinomial_issue#125388 2025-08-14T21:43:08.1126198Z * [new branch] update_executorch_pin -> origin/update_executorch_pin 2025-08-14T21:43:08.1126748Z * [new branch] update_slow_tests_1722488736 -> origin/update_slow_tests_1722488736 2025-08-14T21:43:08.1128298Z * [new branch] update_slow_tests_1722879173 -> origin/update_slow_tests_1722879173 2025-08-14T21:43:08.1128853Z * [new branch] update_slow_tests_1752478971 -> origin/update_slow_tests_1752478971 2025-08-14T21:43:08.1129408Z * [new branch] update_submodule_FBGEMM -> origin/update_submodule_FBGEMM 2025-08-14T21:43:08.1129935Z * [new branch] update_submodule_kineto -> origin/update_submodule_kineto 2025-08-14T21:43:08.1130485Z * [new branch] update_submodule_tensorpipe -> origin/update_submodule_tensorpipe 2025-08-14T21:43:08.1130973Z * [new branch] v0.1.2 -> origin/v0.1.2 2025-08-14T21:43:08.1131394Z * [new branch] v1.0.1 -> origin/v1.0.1 2025-08-14T21:43:08.1131794Z * [new branch] v1.0.3 -> origin/v1.0.3 2025-08-14T21:43:08.1132185Z * [new branch] v1.1.0 -> origin/v1.1.0 2025-08-14T21:43:08.1132578Z * [new branch] v1.2.0 -> origin/v1.2.0 2025-08-14T21:43:08.1133953Z * [new branch] v1.3.0 -> origin/v1.3.0 2025-08-14T21:43:08.1134483Z * [new branch] v1.3.1 -> origin/v1.3.1 2025-08-14T21:43:08.1134897Z * [new branch] validate_fn -> origin/validate_fn 2025-08-14T21:43:08.1135360Z * [new branch] validations_2.6 -> origin/validations_2.6 2025-08-14T21:43:08.1135846Z * [new branch] validations_2.8 -> origin/validations_2.8 2025-08-14T21:43:08.1136299Z * [new branch] viable/strict -> origin/viable/strict 2025-08-14T21:43:08.1136757Z * [new branch] vllmbuildci -> origin/vllmbuildci 2025-08-14T21:43:08.1137180Z * [new branch] vllmpin -> origin/vllmpin 2025-08-14T21:43:08.1532696Z * [new branch] vllmpintest -> origin/vllmpintest 2025-08-14T21:43:08.1533208Z * [new branch] wdvr-patch-1 -> origin/wdvr-patch-1 2025-08-14T21:43:08.1533683Z * [new branch] wdvr-patch-2 -> origin/wdvr-patch-2 2025-08-14T21:43:08.1534216Z * [new branch] wdvr/conda_devcontainer -> origin/wdvr/conda_devcontainer 2025-08-14T21:43:08.1534752Z * [new branch] wdvr/fix_logging_test -> origin/wdvr/fix_logging_test 2025-08-14T21:43:08.1536603Z * [new branch] wdvr/iss_145259 -> origin/wdvr/iss_145259 2025-08-14T21:43:08.1537103Z * [new branch] weight_sharing_cpp -> origin/weight_sharing_cpp 2025-08-14T21:43:08.1537578Z * [new branch] whc/flight -> origin/whc/flight 2025-08-14T21:43:08.1538018Z * [new branch] whc/flight4 -> origin/whc/flight4 2025-08-14T21:43:08.1538458Z * [new branch] whc/flight51 -> origin/whc/flight51 2025-08-14T21:43:08.1538903Z * [new branch] whc/flight53 -> origin/whc/flight53 2025-08-14T21:43:08.1539350Z * [new branch] whc/p2phang -> origin/whc/p2phang 2025-08-14T21:43:08.1539776Z * [new branch] whc/stage2 -> origin/whc/stage2 2025-08-14T21:43:08.1540194Z * [new branch] whc/uneven -> origin/whc/uneven 2025-08-14T21:43:08.1540645Z * [new branch] whc/uneven-merge -> origin/whc/uneven-merge 2025-08-14T21:43:08.1541096Z * [new branch] win_warnings -> origin/win_warnings 2025-08-14T21:43:08.1541732Z * [new branch] workonoldcommit -> origin/workonoldcommit 2025-08-14T21:43:08.1542278Z * [new branch] wwen/programming-model-2.8 -> origin/wwen/programming-model-2.8 2025-08-14T21:43:08.1542795Z * [new branch] xmfan/ca_0516 -> origin/xmfan/ca_0516 2025-08-14T21:43:08.1543239Z * [new branch] xmfan/ca_1051b93192 -> origin/xmfan/ca_1051b93192 2025-08-14T21:43:08.1543919Z * [new branch] xmfan/ca_1a722f62c248391fc4a542e8851a5559aa356ae8 -> origin/xmfan/ca_1a722f62c248391fc4a542e8851a5559aa356ae8 2025-08-14T21:43:08.1544600Z * [new branch] xmfan/ca_5a2be192d1 -> origin/xmfan/ca_5a2be192d1 2025-08-14T21:43:08.1545077Z * [new branch] xmfan/ca_9d59b516e9 -> origin/xmfan/ca_9d59b516e9 2025-08-14T21:43:08.1545532Z * [new branch] xmfan/ca_api -> origin/xmfan/ca_api 2025-08-14T21:43:08.1545960Z * [new branch] xmfan/ca_apr8 -> origin/xmfan/ca_apr8 2025-08-14T21:43:08.1546394Z * [new branch] xmfan/ca_base -> origin/xmfan/ca_base 2025-08-14T21:43:08.1546845Z * [new branch] xmfan/ca_cudagraphs -> origin/xmfan/ca_cudagraphs 2025-08-14T21:43:08.1547328Z * [new branch] xmfan/ca_dynamic -> origin/xmfan/ca_dynamic 2025-08-14T21:43:08.1576940Z * [new branch] xmfan/ca_fix_dyn -> origin/xmfan/ca_fix_dyn 2025-08-14T21:43:08.1577700Z * [new branch] xmfan/ca_fix_lowering -> origin/xmfan/ca_fix_lowering 2025-08-14T21:43:08.1578203Z * [new branch] xmfan/ca_fix_polyfills -> origin/xmfan/ca_fix_polyfills 2025-08-14T21:43:08.1578675Z * [new branch] xmfan/ca_jan3 -> origin/xmfan/ca_jan3 2025-08-14T21:43:08.1579106Z * [new branch] xmfan/ca_jun18 -> origin/xmfan/ca_jun18 2025-08-14T21:43:08.1579537Z * [new branch] xmfan/ca_jun24 -> origin/xmfan/ca_jun24 2025-08-14T21:43:08.1579992Z * [new branch] xmfan/ca_mem_base -> origin/xmfan/ca_mem_base 2025-08-14T21:43:08.1580441Z * [new branch] xmfan/ca_mem_fix -> origin/xmfan/ca_mem_fix 2025-08-14T21:43:08.1580903Z * [new branch] xmfan/ca_memory_fix -> origin/xmfan/ca_memory_fix 2025-08-14T21:43:08.1581403Z * [new branch] xmfan/ca_memory_fix_rebased -> origin/xmfan/ca_memory_fix_rebased 2025-08-14T21:43:08.1581959Z * [new branch] xmfan/ca_memory_fix_rebased2 -> origin/xmfan/ca_memory_fix_rebased2 2025-08-14T21:43:08.1582473Z * [new branch] xmfan/ca_move_to_cuda -> origin/xmfan/ca_move_to_cuda 2025-08-14T21:43:08.1582938Z * [new branch] xmfan/ca_nested -> origin/xmfan/ca_nested 2025-08-14T21:43:08.1583406Z * [new branch] xmfan/ca_overhead -> origin/xmfan/ca_overhead 2025-08-14T21:43:08.1583928Z * [new branch] xmfan/ca_overhead_0eba7e5451 -> origin/xmfan/ca_overhead_0eba7e5451 2025-08-14T21:43:08.1584454Z * [new branch] xmfan/ca_scalar -> origin/xmfan/ca_scalar 2025-08-14T21:43:08.1584943Z * [new branch] xmfan/ca_subclass_mem_fix -> origin/xmfan/ca_subclass_mem_fix 2025-08-14T21:43:08.1585457Z * [new branch] xmfan/ca_warm_mem -> origin/xmfan/ca_warm_mem 2025-08-14T21:43:08.1585938Z * [new branch] xmfan/ca_warm_mem_base -> origin/xmfan/ca_warm_mem_base 2025-08-14T21:43:08.1586424Z * [new branch] xmfan/cacu_jun18 -> origin/xmfan/cacu_jun18 2025-08-14T21:43:08.2028614Z * [new branch] xmfan/cacu_jun19 -> origin/xmfan/cacu_jun19 2025-08-14T21:43:08.2029139Z * [new branch] xmfan/cacu_jun4 -> origin/xmfan/cacu_jun4 2025-08-14T21:43:08.2029615Z * [new branch] xmfan/cacu_may27 -> origin/xmfan/cacu_may27 2025-08-14T21:43:08.2030317Z * [new branch] xmfan/circular_dep -> origin/xmfan/circular_dep 2025-08-14T21:43:08.2030876Z * [new branch] xmfan/compiled_autograd_feb_29 -> origin/xmfan/compiled_autograd_feb_29 2025-08-14T21:43:08.2031534Z * [new branch] xmfan/compiled_autograd_graph_breaks -> origin/xmfan/compiled_autograd_graph_breaks 2025-08-14T21:43:08.2032153Z * [new branch] xmfan/disable_duck_shape -> origin/xmfan/disable_duck_shape 2025-08-14T21:43:08.2032748Z * [new branch] xmfan/fca_cpp_node_passthrough -> origin/xmfan/fca_cpp_node_passthrough 2025-08-14T21:43:08.2033300Z * [new branch] xmfan/issue_123374 -> origin/xmfan/issue_123374 2025-08-14T21:43:08.2033993Z * [new branch] xmfan/post_3945954741e2d37023c5d6954f9483008e0892f9 -> origin/xmfan/post_3945954741e2d37023c5d6954f9483008e0892f9 2025-08-14T21:43:08.2034890Z * [new branch] xmfan/pre_3945954741e2d37023c5d6954f9483008e0892f9 -> origin/xmfan/pre_3945954741e2d37023c5d6954f9483008e0892f9 2025-08-14T21:43:08.2035573Z * [new branch] xmfan/segfault_test -> origin/xmfan/segfault_test 2025-08-14T21:43:08.2036078Z * [new branch] xmfan/single_step -> origin/xmfan/single_step 2025-08-14T21:43:08.2036546Z * [new branch] xmfan/sth_0829 -> origin/xmfan/sth_0829 2025-08-14T21:43:08.2037028Z * [new branch] xmfan/test -> origin/xmfan/test 2025-08-14T21:43:08.2037709Z * [new branch] y-do-we-have-7-build-systems -> origin/y-do-we-have-7-build-systems 2025-08-14T21:43:08.2038284Z * [new branch] yguo/debug-0226-constexpr -> origin/yguo/debug-0226-constexpr 2025-08-14T21:43:08.2038836Z * [new branch] yguo/new_latest_changes -> origin/yguo/new_latest_changes 2025-08-14T21:43:08.2039413Z * [new branch] yguo/patch_constexpr_changes -> origin/yguo/patch_constexpr_changes 2025-08-14T21:43:08.2039953Z * [new branch] yihan_quantization -> origin/yihan_quantization 2025-08-14T21:43:08.2040496Z * [new branch] yiming/add_nativert_benchmark -> origin/yiming/add_nativert_benchmark 2025-08-14T21:43:08.2041022Z * [new branch] yiming/bootcamp -> origin/yiming/bootcamp 2025-08-14T21:43:08.2041512Z * [new branch] zainr/canary-test -> origin/zainr/canary-test 2025-08-14T21:43:08.2042056Z * [new branch] zainr/cleanup-gh-runners -> origin/zainr/cleanup-gh-runners 2025-08-14T21:43:08.2042563Z * [new branch] zainr/fixlint -> origin/zainr/fixlint 2025-08-14T21:43:08.2043029Z * [new branch] zainr/git-push-v2 -> origin/zainr/git-push-v2 2025-08-14T21:43:08.2043505Z * [new branch] zainr/lint-py3.9 -> origin/zainr/lint-py3.9 2025-08-14T21:43:08.2043999Z * [new branch] zainr/mypy15-claude -> origin/zainr/mypy15-claude 2025-08-14T21:43:08.2044504Z * [new branch] zainr/pre-push-hooks -> origin/zainr/pre-push-hooks 2025-08-14T21:43:08.2045056Z * [new branch] zainr/pull-migration-c -> origin/zainr/pull-migration-c 2025-08-14T21:43:08.2045551Z * [new branch] zainr/test2 -> origin/zainr/test2 2025-08-14T21:43:08.2045996Z * [new branch] zainr/unstable -> origin/zainr/unstable 2025-08-14T21:43:08.2046481Z * [new branch] zainr/unstable-xla -> origin/zainr/unstable-xla 2025-08-14T21:43:08.2046970Z * [new branch] zainr/uv-pip-fix -> origin/zainr/uv-pip-fix 2025-08-14T21:43:08.2047442Z * [new branch] zainr/vs-aarch64 -> origin/zainr/vs-aarch64 2025-08-14T21:43:08.2047944Z * [new branch] zasdfgbnm-patch-3 -> origin/zasdfgbnm-patch-3 2025-08-14T21:43:08.2048397Z * [new branch] zb2p -> origin/zb2p 2025-08-14T21:43:08.2048957Z * [new branch] zdevito-patch-1 -> origin/zdevito-patch-1 2025-08-14T21:43:08.2049476Z * [new branch] zeros-and-scatter-part2 -> origin/zeros-and-scatter-part2 2025-08-14T21:43:08.2050022Z * [new branch] zhxchen17/nativert/0 -> origin/zhxchen17/nativert/0 2025-08-14T21:43:08.2050542Z * [new branch] zhxchen17/scratch/0 -> origin/zhxchen17/scratch/0 2025-08-14T21:43:08.2051050Z * [new branch] zhxhcen17/moodycamel -> origin/zhxhcen17/moodycamel 2025-08-14T21:43:08.2051538Z * [new branch] zxiiro/bazel -> origin/zxiiro/bazel 2025-08-14T21:43:08.2052014Z * [new branch] zxiiro/get-hardware -> origin/zxiiro/get-hardware 2025-08-14T21:43:08.2052491Z * [new branch] zxiiro/main -> origin/zxiiro/main 2025-08-14T21:43:08.2338578Z * [new branch] zxiiro/test -> origin/zxiiro/test 2025-08-14T21:43:08.2339392Z * [new tag] bc2caa7fdf006894eff7af936babde69ab5a40f8-huydhn-debug -> bc2caa7fdf006894eff7af936babde69ab5a40f8-huydhn-debug 2025-08-14T21:43:08.2340109Z * [new tag] ci/binaries/77164 -> ci/binaries/77164 2025-08-14T21:43:08.2340542Z * [new tag] ciflow/binaries/138996 -> ciflow/binaries/138996 2025-08-14T21:43:08.2341019Z * [new tag] ciflow/binaries/143959 -> ciflow/binaries/143959 2025-08-14T21:43:08.2342364Z * [new tag] ciflow/binaries/154595 -> ciflow/binaries/154595 2025-08-14T21:43:08.2342800Z * [new tag] ciflow/binaries/156049 -> ciflow/binaries/156049 2025-08-14T21:43:08.2343238Z * [new tag] ciflow/binaries/156712 -> ciflow/binaries/156712 2025-08-14T21:43:08.2343672Z * [new tag] ciflow/binaries/157432 -> ciflow/binaries/157432 2025-08-14T21:43:08.2344129Z * [new tag] ciflow/binaries/157685 -> ciflow/binaries/157685 2025-08-14T21:43:08.2344565Z * [new tag] ciflow/binaries/157689 -> ciflow/binaries/157689 2025-08-14T21:43:08.2344992Z * [new tag] ciflow/binaries/158104 -> ciflow/binaries/158104 2025-08-14T21:43:08.2345428Z * [new tag] ciflow/binaries/158623 -> ciflow/binaries/158623 2025-08-14T21:43:08.2345857Z * [new tag] ciflow/binaries/159827 -> ciflow/binaries/159827 2025-08-14T21:43:08.2346297Z * [new tag] ciflow/binaries/159869 -> ciflow/binaries/159869 2025-08-14T21:43:08.2346731Z * [new tag] ciflow/binaries/160593 -> ciflow/binaries/160593 2025-08-14T21:43:08.2347220Z * [new tag] ciflow/binaries_libtorch/143959 -> ciflow/binaries_libtorch/143959 2025-08-14T21:43:08.2347814Z * [new tag] ciflow/binaries_libtorch/156049 -> ciflow/binaries_libtorch/156049 2025-08-14T21:43:08.2348413Z * [new tag] ciflow/binaries_libtorch/157432 -> ciflow/binaries_libtorch/157432 2025-08-14T21:43:08.2348943Z * [new tag] ciflow/binaries_wheel/143959 -> ciflow/binaries_wheel/143959 2025-08-14T21:43:08.2349446Z * [new tag] ciflow/binaries_wheel/156049 -> ciflow/binaries_wheel/156049 2025-08-14T21:43:08.2349931Z * [new tag] ciflow/binaries_wheel/157432 -> ciflow/binaries_wheel/157432 2025-08-14T21:43:08.2350426Z * [new tag] ciflow/binaries_wheel/158733 -> ciflow/binaries_wheel/158733 2025-08-14T21:43:08.2350907Z * [new tag] ciflow/binaries_wheel/160301 -> ciflow/binaries_wheel/160301 2025-08-14T21:43:08.2351391Z * [new tag] ciflow/binaries_wheel/160496 -> ciflow/binaries_wheel/160496 2025-08-14T21:43:08.2351904Z * [new tag] ciflow/h100-distributed/156703 -> ciflow/h100-distributed/156703 2025-08-14T21:43:08.2352395Z * [new tag] ciflow/h100-symm-mem/151845 -> ciflow/h100-symm-mem/151845 2025-08-14T21:43:08.2353002Z * [new tag] ciflow/h100-symm-mem/155923 -> ciflow/h100-symm-mem/155923 2025-08-14T21:43:08.2353477Z * [new tag] ciflow/h100-symm-mem/157635 -> ciflow/h100-symm-mem/157635 2025-08-14T21:43:08.2354007Z * [new tag] ciflow/h100-symm-mem/159118 -> ciflow/h100-symm-mem/159118 2025-08-14T21:43:08.2354516Z * [new tag] ciflow/h100-symm-mem/159562 -> ciflow/h100-symm-mem/159562 2025-08-14T21:43:08.2354996Z * [new tag] ciflow/h100-symm-mem/159889 -> ciflow/h100-symm-mem/159889 2025-08-14T21:43:08.2355421Z * [new tag] ciflow/h100/159158 -> ciflow/h100/159158 2025-08-14T21:43:08.2355827Z * [new tag] ciflow/h100/160450 -> ciflow/h100/160450 2025-08-14T21:43:08.2356229Z * [new tag] ciflow/h100/160480 -> ciflow/h100/160480 2025-08-14T21:43:08.2356615Z * [new tag] ciflow/h100/160614 -> ciflow/h100/160614 2025-08-14T21:43:08.2357304Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/151845 -> ciflow/inductor-perf-test-nightly-rocm/151845 2025-08-14T21:43:08.2358126Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/160538 -> ciflow/inductor-perf-test-nightly-rocm/160538 2025-08-14T21:43:08.2358974Z * [new tag] ciflow/inductor-perf-test-nightly-x86-zen/156599 -> ciflow/inductor-perf-test-nightly-x86-zen/156599 2025-08-14T21:43:08.2359857Z * [new tag] ciflow/inductor-periodic/160406 -> ciflow/inductor-periodic/160406 2025-08-14T21:43:08.2360468Z * [new tag] ciflow/inductor-periodic/160538 -> ciflow/inductor-periodic/160538 2025-08-14T21:43:08.2361000Z * [new tag] ciflow/inductor-rocm/151845 -> ciflow/inductor-rocm/151845 2025-08-14T21:43:08.2361479Z * [new tag] ciflow/inductor-rocm/159158 -> ciflow/inductor-rocm/159158 2025-08-14T21:43:08.2361969Z * [new tag] ciflow/inductor-rocm/160073 -> ciflow/inductor-rocm/160073 2025-08-14T21:43:08.2362468Z * [new tag] ciflow/inductor-rocm/160538 -> ciflow/inductor-rocm/160538 2025-08-14T21:43:08.2362926Z * [new tag] ciflow/inductor/134881 -> ciflow/inductor/134881 2025-08-14T21:43:08.2698366Z * [new tag] ciflow/inductor/137400 -> ciflow/inductor/137400 2025-08-14T21:43:08.2698853Z * [new tag] ciflow/inductor/144516 -> ciflow/inductor/144516 2025-08-14T21:43:08.2699323Z * [new tag] ciflow/inductor/146506 -> ciflow/inductor/146506 2025-08-14T21:43:08.2699765Z * [new tag] ciflow/inductor/147360 -> ciflow/inductor/147360 2025-08-14T21:43:08.2700196Z * [new tag] ciflow/inductor/147990 -> ciflow/inductor/147990 2025-08-14T21:43:08.2700631Z * [new tag] ciflow/inductor/148180 -> ciflow/inductor/148180 2025-08-14T21:43:08.2701068Z * [new tag] ciflow/inductor/148328 -> ciflow/inductor/148328 2025-08-14T21:43:08.2701504Z * [new tag] ciflow/inductor/148484 -> ciflow/inductor/148484 2025-08-14T21:43:08.2701944Z * [new tag] ciflow/inductor/148492 -> ciflow/inductor/148492 2025-08-14T21:43:08.2702370Z * [new tag] ciflow/inductor/150302 -> ciflow/inductor/150302 2025-08-14T21:43:08.2702808Z * [new tag] ciflow/inductor/151845 -> ciflow/inductor/151845 2025-08-14T21:43:08.2703238Z * [new tag] ciflow/inductor/152198 -> ciflow/inductor/152198 2025-08-14T21:43:08.2703677Z * [new tag] ciflow/inductor/152624 -> ciflow/inductor/152624 2025-08-14T21:43:08.2704108Z * [new tag] ciflow/inductor/153966 -> ciflow/inductor/153966 2025-08-14T21:43:08.2704533Z * [new tag] ciflow/inductor/154193 -> ciflow/inductor/154193 2025-08-14T21:43:08.2705648Z * [new tag] ciflow/inductor/154650 -> ciflow/inductor/154650 2025-08-14T21:43:08.2706107Z * [new tag] ciflow/inductor/154694 -> ciflow/inductor/154694 2025-08-14T21:43:08.2706556Z * [new tag] ciflow/inductor/155072 -> ciflow/inductor/155072 2025-08-14T21:43:08.2707011Z * [new tag] ciflow/inductor/155152 -> ciflow/inductor/155152 2025-08-14T21:43:08.2707438Z * [new tag] ciflow/inductor/155153 -> ciflow/inductor/155153 2025-08-14T21:43:08.2707886Z * [new tag] ciflow/inductor/155154 -> ciflow/inductor/155154 2025-08-14T21:43:08.2708318Z * [new tag] ciflow/inductor/155501 -> ciflow/inductor/155501 2025-08-14T21:43:08.2708755Z * [new tag] ciflow/inductor/155502 -> ciflow/inductor/155502 2025-08-14T21:43:08.2709189Z * [new tag] ciflow/inductor/155503 -> ciflow/inductor/155503 2025-08-14T21:43:08.2709631Z * [new tag] ciflow/inductor/155504 -> ciflow/inductor/155504 2025-08-14T21:43:08.2710065Z * [new tag] ciflow/inductor/155557 -> ciflow/inductor/155557 2025-08-14T21:43:08.2710494Z * [new tag] ciflow/inductor/155608 -> ciflow/inductor/155608 2025-08-14T21:43:08.2710929Z * [new tag] ciflow/inductor/155923 -> ciflow/inductor/155923 2025-08-14T21:43:08.2711355Z * [new tag] ciflow/inductor/155928 -> ciflow/inductor/155928 2025-08-14T21:43:08.2711925Z * [new tag] ciflow/inductor/155958 -> ciflow/inductor/155958 2025-08-14T21:43:08.2712368Z * [new tag] ciflow/inductor/156049 -> ciflow/inductor/156049 2025-08-14T21:43:08.2712812Z * [new tag] ciflow/inductor/156851 -> ciflow/inductor/156851 2025-08-14T21:43:08.2713257Z * [new tag] ciflow/inductor/156967 -> ciflow/inductor/156967 2025-08-14T21:43:08.2713695Z * [new tag] ciflow/inductor/157148 -> ciflow/inductor/157148 2025-08-14T21:43:08.2714138Z * [new tag] ciflow/inductor/157149 -> ciflow/inductor/157149 2025-08-14T21:43:08.2714574Z * [new tag] ciflow/inductor/157152 -> ciflow/inductor/157152 2025-08-14T21:43:08.2715000Z * [new tag] ciflow/inductor/157542 -> ciflow/inductor/157542 2025-08-14T21:43:08.2715435Z * [new tag] ciflow/inductor/157572 -> ciflow/inductor/157572 2025-08-14T21:43:08.2715869Z * [new tag] ciflow/inductor/157635 -> ciflow/inductor/157635 2025-08-14T21:43:08.2716311Z * [new tag] ciflow/inductor/157685 -> ciflow/inductor/157685 2025-08-14T21:43:08.2716816Z * [new tag] ciflow/inductor/157686 -> ciflow/inductor/157686 2025-08-14T21:43:08.2717262Z * [new tag] ciflow/inductor/157689 -> ciflow/inductor/157689 2025-08-14T21:43:08.2717709Z * [new tag] ciflow/inductor/157699 -> ciflow/inductor/157699 2025-08-14T21:43:08.2718153Z * [new tag] ciflow/inductor/157743 -> ciflow/inductor/157743 2025-08-14T21:43:08.2718592Z * [new tag] ciflow/inductor/157944 -> ciflow/inductor/157944 2025-08-14T21:43:08.2719025Z * [new tag] ciflow/inductor/157971 -> ciflow/inductor/157971 2025-08-14T21:43:08.2719464Z * [new tag] ciflow/inductor/157994 -> ciflow/inductor/157994 2025-08-14T21:43:08.2719913Z * [new tag] ciflow/inductor/158061 -> ciflow/inductor/158061 2025-08-14T21:43:08.2720347Z * [new tag] ciflow/inductor/158091 -> ciflow/inductor/158091 2025-08-14T21:43:08.3076042Z * [new tag] ciflow/inductor/158097 -> ciflow/inductor/158097 2025-08-14T21:43:08.3076543Z * [new tag] ciflow/inductor/158098 -> ciflow/inductor/158098 2025-08-14T21:43:08.3077018Z * [new tag] ciflow/inductor/158104 -> ciflow/inductor/158104 2025-08-14T21:43:08.3077653Z * [new tag] ciflow/inductor/158168 -> ciflow/inductor/158168 2025-08-14T21:43:08.3078092Z * [new tag] ciflow/inductor/158250 -> ciflow/inductor/158250 2025-08-14T21:43:08.3078542Z * [new tag] ciflow/inductor/158321 -> ciflow/inductor/158321 2025-08-14T21:43:08.3078972Z * [new tag] ciflow/inductor/158609 -> ciflow/inductor/158609 2025-08-14T21:43:08.3079431Z * [new tag] ciflow/inductor/158647 -> ciflow/inductor/158647 2025-08-14T21:43:08.3079865Z * [new tag] ciflow/inductor/158914 -> ciflow/inductor/158914 2025-08-14T21:43:08.3080289Z * [new tag] ciflow/inductor/158932 -> ciflow/inductor/158932 2025-08-14T21:43:08.3080721Z * [new tag] ciflow/inductor/158987 -> ciflow/inductor/158987 2025-08-14T21:43:08.3091350Z * [new tag] ciflow/inductor/159009 -> ciflow/inductor/159009 2025-08-14T21:43:08.3091822Z * [new tag] ciflow/inductor/159010 -> ciflow/inductor/159010 2025-08-14T21:43:08.3092256Z * [new tag] ciflow/inductor/159093 -> ciflow/inductor/159093 2025-08-14T21:43:08.3092681Z * [new tag] ciflow/inductor/159158 -> ciflow/inductor/159158 2025-08-14T21:43:08.3093121Z * [new tag] ciflow/inductor/159197 -> ciflow/inductor/159197 2025-08-14T21:43:08.3093700Z * [new tag] ciflow/inductor/159274 -> ciflow/inductor/159274 2025-08-14T21:43:08.3094147Z * [new tag] ciflow/inductor/159281 -> ciflow/inductor/159281 2025-08-14T21:43:08.3094595Z * [new tag] ciflow/inductor/159329 -> ciflow/inductor/159329 2025-08-14T21:43:08.3095030Z * [new tag] ciflow/inductor/159361 -> ciflow/inductor/159361 2025-08-14T21:43:08.3095475Z * [new tag] ciflow/inductor/159365 -> ciflow/inductor/159365 2025-08-14T21:43:08.3097835Z * [new tag] ciflow/inductor/159366 -> ciflow/inductor/159366 2025-08-14T21:43:08.3098299Z * [new tag] ciflow/inductor/159367 -> ciflow/inductor/159367 2025-08-14T21:43:08.3098738Z * [new tag] ciflow/inductor/159368 -> ciflow/inductor/159368 2025-08-14T21:43:08.3099188Z * [new tag] ciflow/inductor/159473 -> ciflow/inductor/159473 2025-08-14T21:43:08.3099630Z * [new tag] ciflow/inductor/159483 -> ciflow/inductor/159483 2025-08-14T21:43:08.3100067Z * [new tag] ciflow/inductor/159508 -> ciflow/inductor/159508 2025-08-14T21:43:08.3100579Z * [new tag] ciflow/inductor/159523 -> ciflow/inductor/159523 2025-08-14T21:43:08.3101013Z * [new tag] ciflow/inductor/159678 -> ciflow/inductor/159678 2025-08-14T21:43:08.3101447Z * [new tag] ciflow/inductor/159691 -> ciflow/inductor/159691 2025-08-14T21:43:08.3101887Z * [new tag] ciflow/inductor/159778 -> ciflow/inductor/159778 2025-08-14T21:43:08.3102319Z * [new tag] ciflow/inductor/159786 -> ciflow/inductor/159786 2025-08-14T21:43:08.3103792Z * [new tag] ciflow/inductor/159817 -> ciflow/inductor/159817 2025-08-14T21:43:08.3104253Z * [new tag] ciflow/inductor/159842 -> ciflow/inductor/159842 2025-08-14T21:43:08.3104707Z * [new tag] ciflow/inductor/159864 -> ciflow/inductor/159864 2025-08-14T21:43:08.3105140Z * [new tag] ciflow/inductor/159865 -> ciflow/inductor/159865 2025-08-14T21:43:08.3105563Z * [new tag] ciflow/inductor/159869 -> ciflow/inductor/159869 2025-08-14T21:43:08.3106005Z * [new tag] ciflow/inductor/159875 -> ciflow/inductor/159875 2025-08-14T21:43:08.3106437Z * [new tag] ciflow/inductor/159889 -> ciflow/inductor/159889 2025-08-14T21:43:08.3107014Z * [new tag] ciflow/inductor/159902 -> ciflow/inductor/159902 2025-08-14T21:43:08.3107460Z * [new tag] ciflow/inductor/159923 -> ciflow/inductor/159923 2025-08-14T21:43:08.3107889Z * [new tag] ciflow/inductor/159944 -> ciflow/inductor/159944 2025-08-14T21:43:08.3109316Z * [new tag] ciflow/inductor/160004 -> ciflow/inductor/160004 2025-08-14T21:43:08.3109782Z * [new tag] ciflow/inductor/160080 -> ciflow/inductor/160080 2025-08-14T21:43:08.3110209Z * [new tag] ciflow/inductor/160108 -> ciflow/inductor/160108 2025-08-14T21:43:08.3110653Z * [new tag] ciflow/inductor/160109 -> ciflow/inductor/160109 2025-08-14T21:43:08.3111079Z * [new tag] ciflow/inductor/160111 -> ciflow/inductor/160111 2025-08-14T21:43:08.3111516Z * [new tag] ciflow/inductor/160113 -> ciflow/inductor/160113 2025-08-14T21:43:08.3111958Z * [new tag] ciflow/inductor/160127 -> ciflow/inductor/160127 2025-08-14T21:43:08.3412882Z * [new tag] ciflow/inductor/160131 -> ciflow/inductor/160131 2025-08-14T21:43:08.3413387Z * [new tag] ciflow/inductor/160132 -> ciflow/inductor/160132 2025-08-14T21:43:08.3413823Z * [new tag] ciflow/inductor/160136 -> ciflow/inductor/160136 2025-08-14T21:43:08.3414468Z * [new tag] ciflow/inductor/160138 -> ciflow/inductor/160138 2025-08-14T21:43:08.3414897Z * [new tag] ciflow/inductor/160151 -> ciflow/inductor/160151 2025-08-14T21:43:08.3415350Z * [new tag] ciflow/inductor/160152 -> ciflow/inductor/160152 2025-08-14T21:43:08.3415796Z * [new tag] ciflow/inductor/160154 -> ciflow/inductor/160154 2025-08-14T21:43:08.3416222Z * [new tag] ciflow/inductor/160156 -> ciflow/inductor/160156 2025-08-14T21:43:08.3416666Z * [new tag] ciflow/inductor/160161 -> ciflow/inductor/160161 2025-08-14T21:43:08.3417115Z * [new tag] ciflow/inductor/160166 -> ciflow/inductor/160166 2025-08-14T21:43:08.3417545Z * [new tag] ciflow/inductor/160168 -> ciflow/inductor/160168 2025-08-14T21:43:08.3417989Z * [new tag] ciflow/inductor/160174 -> ciflow/inductor/160174 2025-08-14T21:43:08.3418417Z * [new tag] ciflow/inductor/160181 -> ciflow/inductor/160181 2025-08-14T21:43:08.3418856Z * [new tag] ciflow/inductor/160183 -> ciflow/inductor/160183 2025-08-14T21:43:08.3419306Z * [new tag] ciflow/inductor/160190 -> ciflow/inductor/160190 2025-08-14T21:43:08.3419738Z * [new tag] ciflow/inductor/160198 -> ciflow/inductor/160198 2025-08-14T21:43:08.3420169Z * [new tag] ciflow/inductor/160201 -> ciflow/inductor/160201 2025-08-14T21:43:08.3420599Z * [new tag] ciflow/inductor/160209 -> ciflow/inductor/160209 2025-08-14T21:43:08.3421034Z * [new tag] ciflow/inductor/160218 -> ciflow/inductor/160218 2025-08-14T21:43:08.3421459Z * [new tag] ciflow/inductor/160239 -> ciflow/inductor/160239 2025-08-14T21:43:08.3421903Z * [new tag] ciflow/inductor/160250 -> ciflow/inductor/160250 2025-08-14T21:43:08.3422338Z * [new tag] ciflow/inductor/160253 -> ciflow/inductor/160253 2025-08-14T21:43:08.3422766Z * [new tag] ciflow/inductor/160266 -> ciflow/inductor/160266 2025-08-14T21:43:08.3423207Z * [new tag] ciflow/inductor/160282 -> ciflow/inductor/160282 2025-08-14T21:43:08.3424752Z * [new tag] ciflow/inductor/160298 -> ciflow/inductor/160298 2025-08-14T21:43:08.3425197Z * [new tag] ciflow/inductor/160301 -> ciflow/inductor/160301 2025-08-14T21:43:08.3425795Z * [new tag] ciflow/inductor/160310 -> ciflow/inductor/160310 2025-08-14T21:43:08.3426230Z * [new tag] ciflow/inductor/160323 -> ciflow/inductor/160323 2025-08-14T21:43:08.3426682Z * [new tag] ciflow/inductor/160324 -> ciflow/inductor/160324 2025-08-14T21:43:08.3427115Z * [new tag] ciflow/inductor/160325 -> ciflow/inductor/160325 2025-08-14T21:43:08.3427560Z * [new tag] ciflow/inductor/160326 -> ciflow/inductor/160326 2025-08-14T21:43:08.3427994Z * [new tag] ciflow/inductor/160327 -> ciflow/inductor/160327 2025-08-14T21:43:08.3428435Z * [new tag] ciflow/inductor/160328 -> ciflow/inductor/160328 2025-08-14T21:43:08.3428869Z * [new tag] ciflow/inductor/160329 -> ciflow/inductor/160329 2025-08-14T21:43:08.3429295Z * [new tag] ciflow/inductor/160351 -> ciflow/inductor/160351 2025-08-14T21:43:08.3429729Z * [new tag] ciflow/inductor/160353 -> ciflow/inductor/160353 2025-08-14T21:43:08.3430162Z * [new tag] ciflow/inductor/160362 -> ciflow/inductor/160362 2025-08-14T21:43:08.3430595Z * [new tag] ciflow/inductor/160363 -> ciflow/inductor/160363 2025-08-14T21:43:08.3431026Z * [new tag] ciflow/inductor/160364 -> ciflow/inductor/160364 2025-08-14T21:43:08.3431453Z * [new tag] ciflow/inductor/160365 -> ciflow/inductor/160365 2025-08-14T21:43:08.3431992Z * [new tag] ciflow/inductor/160366 -> ciflow/inductor/160366 2025-08-14T21:43:08.3432427Z * [new tag] ciflow/inductor/160367 -> ciflow/inductor/160367 2025-08-14T21:43:08.3432868Z * [new tag] ciflow/inductor/160368 -> ciflow/inductor/160368 2025-08-14T21:43:08.3433311Z * [new tag] ciflow/inductor/160369 -> ciflow/inductor/160369 2025-08-14T21:43:08.3433750Z * [new tag] ciflow/inductor/160371 -> ciflow/inductor/160371 2025-08-14T21:43:08.3434192Z * [new tag] ciflow/inductor/160374 -> ciflow/inductor/160374 2025-08-14T21:43:08.3434618Z * [new tag] ciflow/inductor/160375 -> ciflow/inductor/160375 2025-08-14T21:43:08.3435055Z * [new tag] ciflow/inductor/160377 -> ciflow/inductor/160377 2025-08-14T21:43:08.3435483Z * [new tag] ciflow/inductor/160380 -> ciflow/inductor/160380 2025-08-14T21:43:08.3435928Z * [new tag] ciflow/inductor/160381 -> ciflow/inductor/160381 2025-08-14T21:43:08.3729562Z * [new tag] ciflow/inductor/160383 -> ciflow/inductor/160383 2025-08-14T21:43:08.3730059Z * [new tag] ciflow/inductor/160394 -> ciflow/inductor/160394 2025-08-14T21:43:08.3730510Z * [new tag] ciflow/inductor/160401 -> ciflow/inductor/160401 2025-08-14T21:43:08.3730982Z * [new tag] ciflow/inductor/160402 -> ciflow/inductor/160402 2025-08-14T21:43:08.3731414Z * [new tag] ciflow/inductor/160403 -> ciflow/inductor/160403 2025-08-14T21:43:08.3731857Z * [new tag] ciflow/inductor/160424 -> ciflow/inductor/160424 2025-08-14T21:43:08.3732286Z * [new tag] ciflow/inductor/160426 -> ciflow/inductor/160426 2025-08-14T21:43:08.3732721Z * [new tag] ciflow/inductor/160431 -> ciflow/inductor/160431 2025-08-14T21:43:08.3734177Z * [new tag] ciflow/inductor/160448 -> ciflow/inductor/160448 2025-08-14T21:43:08.3734623Z * [new tag] ciflow/inductor/160450 -> ciflow/inductor/160450 2025-08-14T21:43:08.3735065Z * [new tag] ciflow/inductor/160455 -> ciflow/inductor/160455 2025-08-14T21:43:08.3735498Z * [new tag] ciflow/inductor/160456 -> ciflow/inductor/160456 2025-08-14T21:43:08.3736139Z * [new tag] ciflow/inductor/160461 -> ciflow/inductor/160461 2025-08-14T21:43:08.3736576Z * [new tag] ciflow/inductor/160462 -> ciflow/inductor/160462 2025-08-14T21:43:08.3737017Z * [new tag] ciflow/inductor/160467 -> ciflow/inductor/160467 2025-08-14T21:43:08.3737459Z * [new tag] ciflow/inductor/160470 -> ciflow/inductor/160470 2025-08-14T21:43:08.3737890Z * [new tag] ciflow/inductor/160473 -> ciflow/inductor/160473 2025-08-14T21:43:08.3738330Z * [new tag] ciflow/inductor/160476 -> ciflow/inductor/160476 2025-08-14T21:43:08.3739778Z * [new tag] ciflow/inductor/160480 -> ciflow/inductor/160480 2025-08-14T21:43:08.3740227Z * [new tag] ciflow/inductor/160481 -> ciflow/inductor/160481 2025-08-14T21:43:08.3740670Z * [new tag] ciflow/inductor/160482 -> ciflow/inductor/160482 2025-08-14T21:43:08.3741111Z * [new tag] ciflow/inductor/160483 -> ciflow/inductor/160483 2025-08-14T21:43:08.3741547Z * [new tag] ciflow/inductor/160485 -> ciflow/inductor/160485 2025-08-14T21:43:08.3741974Z * [new tag] ciflow/inductor/160486 -> ciflow/inductor/160486 2025-08-14T21:43:08.3742405Z * [new tag] ciflow/inductor/160503 -> ciflow/inductor/160503 2025-08-14T21:43:08.3742834Z * [new tag] ciflow/inductor/160510 -> ciflow/inductor/160510 2025-08-14T21:43:08.3743432Z * [new tag] ciflow/inductor/160527 -> ciflow/inductor/160527 2025-08-14T21:43:08.3743867Z * [new tag] ciflow/inductor/160530 -> ciflow/inductor/160530 2025-08-14T21:43:08.3744296Z * [new tag] ciflow/inductor/160531 -> ciflow/inductor/160531 2025-08-14T21:43:08.3745743Z * [new tag] ciflow/inductor/160538 -> ciflow/inductor/160538 2025-08-14T21:43:08.3746187Z * [new tag] ciflow/inductor/160539 -> ciflow/inductor/160539 2025-08-14T21:43:08.3746628Z * [new tag] ciflow/inductor/160540 -> ciflow/inductor/160540 2025-08-14T21:43:08.3747063Z * [new tag] ciflow/inductor/160548 -> ciflow/inductor/160548 2025-08-14T21:43:08.3747489Z * [new tag] ciflow/inductor/160552 -> ciflow/inductor/160552 2025-08-14T21:43:08.3747922Z * [new tag] ciflow/inductor/160561 -> ciflow/inductor/160561 2025-08-14T21:43:08.3748353Z * [new tag] ciflow/inductor/160576 -> ciflow/inductor/160576 2025-08-14T21:43:08.3748794Z * [new tag] ciflow/inductor/160578 -> ciflow/inductor/160578 2025-08-14T21:43:08.3749230Z * [new tag] ciflow/inductor/160580 -> ciflow/inductor/160580 2025-08-14T21:43:08.3749661Z * [new tag] ciflow/inductor/160583 -> ciflow/inductor/160583 2025-08-14T21:43:08.3750097Z * [new tag] ciflow/inductor/160589 -> ciflow/inductor/160589 2025-08-14T21:43:08.3751496Z * [new tag] ciflow/inductor/160590 -> ciflow/inductor/160590 2025-08-14T21:43:08.3751933Z * [new tag] ciflow/inductor/160592 -> ciflow/inductor/160592 2025-08-14T21:43:08.3752369Z * [new tag] ciflow/inductor/160596 -> ciflow/inductor/160596 2025-08-14T21:43:08.3752796Z * [new tag] ciflow/inductor/160601 -> ciflow/inductor/160601 2025-08-14T21:43:08.3753234Z * [new tag] ciflow/inductor/160607 -> ciflow/inductor/160607 2025-08-14T21:43:08.3753663Z * [new tag] ciflow/inductor/160608 -> ciflow/inductor/160608 2025-08-14T21:43:08.3754103Z * [new tag] ciflow/inductor/160611 -> ciflow/inductor/160611 2025-08-14T21:43:08.3754528Z * [new tag] ciflow/inductor/160614 -> ciflow/inductor/160614 2025-08-14T21:43:08.3754969Z * [new tag] ciflow/inductor/160616 -> ciflow/inductor/160616 2025-08-14T21:43:08.4037466Z * [new tag] ciflow/inductor/160619 -> ciflow/inductor/160619 2025-08-14T21:43:08.4037934Z * [new tag] ciflow/inductor/160625 -> ciflow/inductor/160625 2025-08-14T21:43:08.4038389Z * [new tag] ciflow/inductor/160635 -> ciflow/inductor/160635 2025-08-14T21:43:08.4038844Z * [new tag] ciflow/inductor/160649 -> ciflow/inductor/160649 2025-08-14T21:43:08.4039284Z * [new tag] ciflow/inductor/160658 -> ciflow/inductor/160658 2025-08-14T21:43:08.4039724Z * [new tag] ciflow/inductor/160662 -> ciflow/inductor/160662 2025-08-14T21:43:08.4040150Z * [new tag] ciflow/inductor/160668 -> ciflow/inductor/160668 2025-08-14T21:43:08.4040583Z * [new tag] ciflow/inductor/160669 -> ciflow/inductor/160669 2025-08-14T21:43:08.4041024Z * [new tag] ciflow/inductor/160670 -> ciflow/inductor/160670 2025-08-14T21:43:08.4041612Z * [new tag] ciflow/inductor/160671 -> ciflow/inductor/160671 2025-08-14T21:43:08.4042053Z * [new tag] ciflow/inductor/160677 -> ciflow/inductor/160677 2025-08-14T21:43:08.4042489Z * [new tag] ciflow/inductor/160679 -> ciflow/inductor/160679 2025-08-14T21:43:08.4042936Z * [new tag] ciflow/inductor/3b9a386 -> ciflow/inductor/3b9a386 2025-08-14T21:43:08.4043499Z * [new tag] ciflow/inductor/3d4b92b -> ciflow/inductor/3d4b92b 2025-08-14T21:43:08.4043950Z * [new tag] ciflow/inductor/d224ac7 -> ciflow/inductor/d224ac7 2025-08-14T21:43:08.4044425Z * [new tag] ciflow/linux-aarch64/147855 -> ciflow/linux-aarch64/147855 2025-08-14T21:43:08.4044902Z * [new tag] ciflow/linux-aarch64/157994 -> ciflow/linux-aarch64/157994 2025-08-14T21:43:08.4045376Z * [new tag] ciflow/linux-aarch64/159737 -> ciflow/linux-aarch64/159737 2025-08-14T21:43:08.4045855Z * [new tag] ciflow/linux-aarch64/160078 -> ciflow/linux-aarch64/160078 2025-08-14T21:43:08.4046335Z * [new tag] ciflow/linux-aarch64/160299 -> ciflow/linux-aarch64/160299 2025-08-14T21:43:08.4046813Z * [new tag] ciflow/linux-aarch64/160301 -> ciflow/linux-aarch64/160301 2025-08-14T21:43:08.4047249Z * [new tag] ciflow/mps/155923 -> ciflow/mps/155923 2025-08-14T21:43:08.4047659Z * [new tag] ciflow/mps/157553 -> ciflow/mps/157553 2025-08-14T21:43:08.4048055Z * [new tag] ciflow/mps/157635 -> ciflow/mps/157635 2025-08-14T21:43:08.4048456Z * [new tag] ciflow/mps/160541 -> ciflow/mps/160541 2025-08-14T21:43:08.4048876Z * [new tag] ciflow/nightly/156049 -> ciflow/nightly/156049 2025-08-14T21:43:08.4049308Z * [new tag] ciflow/nightly/158104 -> ciflow/nightly/158104 2025-08-14T21:43:08.4049774Z * [new tag] ciflow/op-benchmark/157994 -> ciflow/op-benchmark/157994 2025-08-14T21:43:08.4050311Z * [new tag] ciflow/periodic-rocm-mi300/139971 -> ciflow/periodic-rocm-mi300/139971 2025-08-14T21:43:08.4050901Z * [new tag] ciflow/periodic-rocm-mi300/160073 -> ciflow/periodic-rocm-mi300/160073 2025-08-14T21:43:08.4051474Z * [new tag] ciflow/periodic-rocm-mi300/160538 -> ciflow/periodic-rocm-mi300/160538 2025-08-14T21:43:08.4052001Z * [new tag] ciflow/periodic/054a2fd -> ciflow/periodic/054a2fd 2025-08-14T21:43:08.4052455Z * [new tag] ciflow/periodic/131296 -> ciflow/periodic/131296 2025-08-14T21:43:08.4052890Z * [new tag] ciflow/periodic/139971 -> ciflow/periodic/139971 2025-08-14T21:43:08.4053326Z * [new tag] ciflow/periodic/143959 -> ciflow/periodic/143959 2025-08-14T21:43:08.4053863Z * [new tag] ciflow/periodic/154595 -> ciflow/periodic/154595 2025-08-14T21:43:08.4054310Z * [new tag] ciflow/periodic/156703 -> ciflow/periodic/156703 2025-08-14T21:43:08.4054756Z * [new tag] ciflow/periodic/160201 -> ciflow/periodic/160201 2025-08-14T21:43:08.4055195Z * [new tag] ciflow/periodic/160424 -> ciflow/periodic/160424 2025-08-14T21:43:08.4055634Z * [new tag] ciflow/periodic/160538 -> ciflow/periodic/160538 2025-08-14T21:43:08.4056386Z * [new tag] ciflow/periodic/1febab2a89302464f6c7d69cfbef7a24c421ea65 -> ciflow/periodic/1febab2a89302464f6c7d69cfbef7a24c421ea65 2025-08-14T21:43:08.4057139Z * [new tag] ciflow/periodic/2a6d37d -> ciflow/periodic/2a6d37d 2025-08-14T21:43:08.4057867Z * [new tag] ciflow/periodic/2ee22e435131369a7e4f8cc4732579acc29a941b -> ciflow/periodic/2ee22e435131369a7e4f8cc4732579acc29a941b 2025-08-14T21:43:08.4058586Z * [new tag] ciflow/periodic/317eeb8 -> ciflow/periodic/317eeb8 2025-08-14T21:43:08.4059047Z * [new tag] ciflow/periodic/3c32 -> ciflow/periodic/3c32 2025-08-14T21:43:08.4059484Z * [new tag] ciflow/periodic/3e98831 -> ciflow/periodic/3e98831 2025-08-14T21:43:08.4351464Z * [new tag] ciflow/periodic/4a773e1e867f28a8ff0b15203e5cd9548f74fcee -> ciflow/periodic/4a773e1e867f28a8ff0b15203e5cd9548f74fcee 2025-08-14T21:43:08.4352671Z * [new tag] ciflow/periodic/5f5f508aa836a46dfe88857fb223049616b94e93 -> ciflow/periodic/5f5f508aa836a46dfe88857fb223049616b94e93 2025-08-14T21:43:08.4353415Z * [new tag] ciflow/periodic/94512-point -> ciflow/periodic/94512-point 2025-08-14T21:43:08.4353939Z * [new tag] ciflow/periodic/csl/test87519 -> ciflow/periodic/csl/test87519 2025-08-14T21:43:08.4354459Z * [new tag] ciflow/periodic/csltest88275 -> ciflow/periodic/csltest88275 2025-08-14T21:43:08.4355006Z * [new tag] ciflow/periodic/csltest88761 -> ciflow/periodic/csltest88761 2025-08-14T21:43:08.4355774Z * [new tag] ciflow/periodic/d7114f05b10de8e6de81ffc567d63944c3117d51 -> ciflow/periodic/d7114f05b10de8e6de81ffc567d63944c3117d51 2025-08-14T21:43:08.4356526Z * [new tag] ciflow/periodic/release_1.12 -> ciflow/periodic/release_1.12 2025-08-14T21:43:08.4357104Z * [new tag] ciflow/periodic/release_1.12.0 -> ciflow/periodic/release_1.12.0 2025-08-14T21:43:08.4357636Z * [new tag] ciflow/periodic/sha-ec5b83 -> ciflow/periodic/sha-ec5b83 2025-08-14T21:43:08.4358101Z * [new tag] ciflow/rocm-mi300/151360 -> ciflow/rocm-mi300/151360 2025-08-14T21:43:08.4358546Z * [new tag] ciflow/rocm-mi300/159158 -> ciflow/rocm-mi300/159158 2025-08-14T21:43:08.4358985Z * [new tag] ciflow/rocm-mi300/160073 -> ciflow/rocm-mi300/160073 2025-08-14T21:43:08.4359431Z * [new tag] ciflow/rocm-mi300/160468 -> ciflow/rocm-mi300/160468 2025-08-14T21:43:08.4359875Z * [new tag] ciflow/rocm-mi300/160538 -> ciflow/rocm-mi300/160538 2025-08-14T21:43:08.4360306Z * [new tag] ciflow/rocm-mi355/160215 -> ciflow/rocm-mi355/160215 2025-08-14T21:43:08.4360734Z * [new tag] ciflow/rocm/148492 -> ciflow/rocm/148492 2025-08-14T21:43:08.4361134Z * [new tag] ciflow/rocm/151360 -> ciflow/rocm/151360 2025-08-14T21:43:08.4361546Z * [new tag] ciflow/rocm/151845 -> ciflow/rocm/151845 2025-08-14T21:43:08.4361941Z * [new tag] ciflow/rocm/154864 -> ciflow/rocm/154864 2025-08-14T21:43:08.4362333Z * [new tag] ciflow/rocm/156491 -> ciflow/rocm/156491 2025-08-14T21:43:08.4362731Z * [new tag] ciflow/rocm/158219 -> ciflow/rocm/158219 2025-08-14T21:43:08.4363242Z * [new tag] ciflow/rocm/158220 -> ciflow/rocm/158220 2025-08-14T21:43:08.4363650Z * [new tag] ciflow/rocm/158224 -> ciflow/rocm/158224 2025-08-14T21:43:08.4364044Z * [new tag] ciflow/rocm/159158 -> ciflow/rocm/159158 2025-08-14T21:43:08.4364450Z * [new tag] ciflow/rocm/160215 -> ciflow/rocm/160215 2025-08-14T21:43:08.4364860Z * [new tag] ciflow/rocm/160468 -> ciflow/rocm/160468 2025-08-14T21:43:08.4365260Z * [new tag] ciflow/rocm/160538 -> ciflow/rocm/160538 2025-08-14T21:43:08.4365673Z * [new tag] ciflow/s390/143959 -> ciflow/s390/143959 2025-08-14T21:43:08.4366079Z * [new tag] ciflow/slow/01c7106 -> ciflow/slow/01c7106 2025-08-14T21:43:08.4366488Z * [new tag] ciflow/slow/0577043 -> ciflow/slow/0577043 2025-08-14T21:43:08.4367235Z * [new tag] ciflow/slow/0d5b74da0cab798fbfdb9caa53fad816999c8386-sdym -> ciflow/slow/0d5b74da0cab798fbfdb9caa53fad816999c8386-sdym 2025-08-14T21:43:08.4369172Z * [new tag] ciflow/slow/0e81104 -> ciflow/slow/0e81104 2025-08-14T21:43:08.4369615Z * [new tag] ciflow/slow/154595 -> ciflow/slow/154595 2025-08-14T21:43:08.4370017Z * [new tag] ciflow/slow/1732077 -> ciflow/slow/1732077 2025-08-14T21:43:08.4370430Z * [new tag] ciflow/slow/187eb7c -> ciflow/slow/187eb7c 2025-08-14T21:43:08.4370978Z * [new tag] ciflow/slow/1faef89 -> ciflow/slow/1faef89 2025-08-14T21:43:08.4371386Z * [new tag] ciflow/slow/3920ec1 -> ciflow/slow/3920ec1 2025-08-14T21:43:08.4371795Z * [new tag] ciflow/slow/3b7c6b2 -> ciflow/slow/3b7c6b2 2025-08-14T21:43:08.4372198Z * [new tag] ciflow/slow/59a3759 -> ciflow/slow/59a3759 2025-08-14T21:43:08.4372623Z * [new tag] ciflow/slow/70ef0bb -> ciflow/slow/70ef0bb 2025-08-14T21:43:08.4373026Z * [new tag] ciflow/slow/788ff06 -> ciflow/slow/788ff06 2025-08-14T21:43:08.4373721Z * [new tag] ciflow/slow/8751002215790a3a88750faa8f4366933e296693-sdym -> ciflow/slow/8751002215790a3a88750faa8f4366933e296693-sdym 2025-08-14T21:43:08.4375436Z * [new tag] ciflow/slow/9d85864 -> ciflow/slow/9d85864 2025-08-14T21:43:08.4375855Z * [new tag] ciflow/slow/9ffad5b -> ciflow/slow/9ffad5b 2025-08-14T21:43:08.4376269Z * [new tag] ciflow/slow/a206e8b -> ciflow/slow/a206e8b 2025-08-14T21:43:08.4376667Z * [new tag] ciflow/slow/a837609 -> ciflow/slow/a837609 2025-08-14T21:43:08.4683599Z * [new tag] ciflow/slow/af841f3 -> ciflow/slow/af841f3 2025-08-14T21:43:08.4684410Z * [new tag] ciflow/slow/da3aba1e46157c4df504b067477cdf2b3c96b194-sdym -> ciflow/slow/da3aba1e46157c4df504b067477cdf2b3c96b194-sdym 2025-08-14T21:43:08.4685136Z * [new tag] ciflow/trunk/131296 -> ciflow/trunk/131296 2025-08-14T21:43:08.4685551Z * [new tag] ciflow/trunk/137400 -> ciflow/trunk/137400 2025-08-14T21:43:08.4685960Z * [new tag] ciflow/trunk/138996 -> ciflow/trunk/138996 2025-08-14T21:43:08.4686364Z * [new tag] ciflow/trunk/139971 -> ciflow/trunk/139971 2025-08-14T21:43:08.4686780Z * [new tag] ciflow/trunk/147360 -> ciflow/trunk/147360 2025-08-14T21:43:08.4687177Z * [new tag] ciflow/trunk/147855 -> ciflow/trunk/147855 2025-08-14T21:43:08.4687586Z * [new tag] ciflow/trunk/148180 -> ciflow/trunk/148180 2025-08-14T21:43:08.4688014Z * [new tag] ciflow/trunk/148328 -> ciflow/trunk/148328 2025-08-14T21:43:08.4688410Z * [new tag] ciflow/trunk/148492 -> ciflow/trunk/148492 2025-08-14T21:43:08.4688998Z * [new tag] ciflow/trunk/150282 -> ciflow/trunk/150282 2025-08-14T21:43:08.4689398Z * [new tag] ciflow/trunk/150302 -> ciflow/trunk/150302 2025-08-14T21:43:08.4689814Z * [new tag] ciflow/trunk/151845 -> ciflow/trunk/151845 2025-08-14T21:43:08.4690212Z * [new tag] ciflow/trunk/152624 -> ciflow/trunk/152624 2025-08-14T21:43:08.4690631Z * [new tag] ciflow/trunk/154193 -> ciflow/trunk/154193 2025-08-14T21:43:08.4691042Z * [new tag] ciflow/trunk/154595 -> ciflow/trunk/154595 2025-08-14T21:43:08.4691441Z * [new tag] ciflow/trunk/154650 -> ciflow/trunk/154650 2025-08-14T21:43:08.4691855Z * [new tag] ciflow/trunk/154694 -> ciflow/trunk/154694 2025-08-14T21:43:08.4692260Z * [new tag] ciflow/trunk/155958 -> ciflow/trunk/155958 2025-08-14T21:43:08.4692666Z * [new tag] ciflow/trunk/156049 -> ciflow/trunk/156049 2025-08-14T21:43:08.4693078Z * [new tag] ciflow/trunk/156703 -> ciflow/trunk/156703 2025-08-14T21:43:08.4693475Z * [new tag] ciflow/trunk/156851 -> ciflow/trunk/156851 2025-08-14T21:43:08.4693882Z * [new tag] ciflow/trunk/157148 -> ciflow/trunk/157148 2025-08-14T21:43:08.4694286Z * [new tag] ciflow/trunk/157152 -> ciflow/trunk/157152 2025-08-14T21:43:08.4694807Z * [new tag] ciflow/trunk/157432 -> ciflow/trunk/157432 2025-08-14T21:43:08.4695205Z * [new tag] ciflow/trunk/157685 -> ciflow/trunk/157685 2025-08-14T21:43:08.4695625Z * [new tag] ciflow/trunk/157689 -> ciflow/trunk/157689 2025-08-14T21:43:08.4696043Z * [new tag] ciflow/trunk/157699 -> ciflow/trunk/157699 2025-08-14T21:43:08.4696444Z * [new tag] ciflow/trunk/157813 -> ciflow/trunk/157813 2025-08-14T21:43:08.4696855Z * [new tag] ciflow/trunk/157994 -> ciflow/trunk/157994 2025-08-14T21:43:08.4697250Z * [new tag] ciflow/trunk/158091 -> ciflow/trunk/158091 2025-08-14T21:43:08.4697651Z * [new tag] ciflow/trunk/158104 -> ciflow/trunk/158104 2025-08-14T21:43:08.4698056Z * [new tag] ciflow/trunk/158219 -> ciflow/trunk/158219 2025-08-14T21:43:08.4698456Z * [new tag] ciflow/trunk/158220 -> ciflow/trunk/158220 2025-08-14T21:43:08.4698873Z * [new tag] ciflow/trunk/158224 -> ciflow/trunk/158224 2025-08-14T21:43:08.4699271Z * [new tag] ciflow/trunk/158529 -> ciflow/trunk/158529 2025-08-14T21:43:08.4699678Z * [new tag] ciflow/trunk/158647 -> ciflow/trunk/158647 2025-08-14T21:43:08.4700076Z * [new tag] ciflow/trunk/158810 -> ciflow/trunk/158810 2025-08-14T21:43:08.4700482Z * [new tag] ciflow/trunk/158812 -> ciflow/trunk/158812 2025-08-14T21:43:08.4700887Z * [new tag] ciflow/trunk/158863 -> ciflow/trunk/158863 2025-08-14T21:43:08.4701283Z * [new tag] ciflow/trunk/158864 -> ciflow/trunk/158864 2025-08-14T21:43:08.4701687Z * [new tag] ciflow/trunk/158883 -> ciflow/trunk/158883 2025-08-14T21:43:08.4702084Z * [new tag] ciflow/trunk/158914 -> ciflow/trunk/158914 2025-08-14T21:43:08.4702486Z * [new tag] ciflow/trunk/158965 -> ciflow/trunk/158965 2025-08-14T21:43:08.4702896Z * [new tag] ciflow/trunk/158987 -> ciflow/trunk/158987 2025-08-14T21:43:08.4703291Z * [new tag] ciflow/trunk/159033 -> ciflow/trunk/159033 2025-08-14T21:43:08.4703709Z * [new tag] ciflow/trunk/159140 -> ciflow/trunk/159140 2025-08-14T21:43:08.4704202Z * [new tag] ciflow/trunk/159158 -> ciflow/trunk/159158 2025-08-14T21:43:08.4704618Z * [new tag] ciflow/trunk/159553 -> ciflow/trunk/159553 2025-08-14T21:43:08.4705026Z * [new tag] ciflow/trunk/159562 -> ciflow/trunk/159562 2025-08-14T21:43:08.5023735Z * [new tag] ciflow/trunk/159682 -> ciflow/trunk/159682 2025-08-14T21:43:08.5024219Z * [new tag] ciflow/trunk/159691 -> ciflow/trunk/159691 2025-08-14T21:43:08.5024653Z * [new tag] ciflow/trunk/159842 -> ciflow/trunk/159842 2025-08-14T21:43:08.5025096Z * [new tag] ciflow/trunk/159889 -> ciflow/trunk/159889 2025-08-14T21:43:08.5025516Z * [new tag] ciflow/trunk/159923 -> ciflow/trunk/159923 2025-08-14T21:43:08.5025920Z * [new tag] ciflow/trunk/160004 -> ciflow/trunk/160004 2025-08-14T21:43:08.5026350Z * [new tag] ciflow/trunk/160113 -> ciflow/trunk/160113 2025-08-14T21:43:08.5026751Z * [new tag] ciflow/trunk/160161 -> ciflow/trunk/160161 2025-08-14T21:43:08.5027155Z * [new tag] ciflow/trunk/160168 -> ciflow/trunk/160168 2025-08-14T21:43:08.5027569Z * [new tag] ciflow/trunk/160181 -> ciflow/trunk/160181 2025-08-14T21:43:08.5027971Z * [new tag] ciflow/trunk/160183 -> ciflow/trunk/160183 2025-08-14T21:43:08.5028583Z * [new tag] ciflow/trunk/160190 -> ciflow/trunk/160190 2025-08-14T21:43:08.5028990Z * [new tag] ciflow/trunk/160198 -> ciflow/trunk/160198 2025-08-14T21:43:08.5029408Z * [new tag] ciflow/trunk/160205 -> ciflow/trunk/160205 2025-08-14T21:43:08.5029810Z * [new tag] ciflow/trunk/160219 -> ciflow/trunk/160219 2025-08-14T21:43:08.5030230Z * [new tag] ciflow/trunk/160224 -> ciflow/trunk/160224 2025-08-14T21:43:08.5030644Z * [new tag] ciflow/trunk/160250 -> ciflow/trunk/160250 2025-08-14T21:43:08.5031051Z * [new tag] ciflow/trunk/160253 -> ciflow/trunk/160253 2025-08-14T21:43:08.5031469Z * [new tag] ciflow/trunk/160335 -> ciflow/trunk/160335 2025-08-14T21:43:08.5031876Z * [new tag] ciflow/trunk/160338 -> ciflow/trunk/160338 2025-08-14T21:43:08.5032395Z * [new tag] ciflow/trunk/160383 -> ciflow/trunk/160383 2025-08-14T21:43:08.5032857Z * [new tag] ciflow/trunk/160401 -> ciflow/trunk/160401 2025-08-14T21:43:08.5033260Z * [new tag] ciflow/trunk/160403 -> ciflow/trunk/160403 2025-08-14T21:43:08.5033667Z * [new tag] ciflow/trunk/160430 -> ciflow/trunk/160430 2025-08-14T21:43:08.5034067Z * [new tag] ciflow/trunk/160431 -> ciflow/trunk/160431 2025-08-14T21:43:08.5034484Z * [new tag] ciflow/trunk/160439 -> ciflow/trunk/160439 2025-08-14T21:43:08.5034889Z * [new tag] ciflow/trunk/160449 -> ciflow/trunk/160449 2025-08-14T21:43:08.5035306Z * [new tag] ciflow/trunk/160454 -> ciflow/trunk/160454 2025-08-14T21:43:08.5035714Z * [new tag] ciflow/trunk/160455 -> ciflow/trunk/160455 2025-08-14T21:43:08.5036124Z * [new tag] ciflow/trunk/160468 -> ciflow/trunk/160468 2025-08-14T21:43:08.5036540Z * [new tag] ciflow/trunk/160481 -> ciflow/trunk/160481 2025-08-14T21:43:08.5037043Z * [new tag] ciflow/trunk/160485 -> ciflow/trunk/160485 2025-08-14T21:43:08.5037462Z * [new tag] ciflow/trunk/160519 -> ciflow/trunk/160519 2025-08-14T21:43:08.5037871Z * [new tag] ciflow/trunk/160527 -> ciflow/trunk/160527 2025-08-14T21:43:08.5038414Z * [new tag] ciflow/trunk/160552 -> ciflow/trunk/160552 2025-08-14T21:43:08.5038829Z * [new tag] ciflow/trunk/160560 -> ciflow/trunk/160560 2025-08-14T21:43:08.5039232Z * [new tag] ciflow/trunk/160578 -> ciflow/trunk/160578 2025-08-14T21:43:08.5039646Z * [new tag] ciflow/trunk/160589 -> ciflow/trunk/160589 2025-08-14T21:43:08.5040048Z * [new tag] ciflow/trunk/160592 -> ciflow/trunk/160592 2025-08-14T21:43:08.5040470Z * [new tag] ciflow/trunk/160649 -> ciflow/trunk/160649 2025-08-14T21:43:08.5040875Z * [new tag] ciflow/trunk/160656 -> ciflow/trunk/160656 2025-08-14T21:43:08.5041275Z * [new tag] ciflow/trunk/160672 -> ciflow/trunk/160672 2025-08-14T21:43:08.5041681Z * [new tag] ciflow/trunk/160675 -> ciflow/trunk/160675 2025-08-14T21:43:08.5042084Z * [new tag] ciflow/unstable/123 -> ciflow/unstable/123 2025-08-14T21:43:08.5042498Z * [new tag] ciflow/vllm/160116 -> ciflow/vllm/160116 2025-08-14T21:43:08.5042899Z * [new tag] ciflow/vllm/160583 -> ciflow/vllm/160583 2025-08-14T21:43:08.5043297Z * [new tag] ciflow/vllm/160619 -> ciflow/vllm/160619 2025-08-14T21:43:08.5043705Z * [new tag] ciflow/vllm/160625 -> ciflow/vllm/160625 2025-08-14T21:43:08.5044225Z * [new tag] ciflow/vllm/160627 -> ciflow/vllm/160627 2025-08-14T21:43:08.5044665Z * [new tag] ciflow/win-arm64/156049 -> ciflow/win-arm64/156049 2025-08-14T21:43:08.5045114Z * [new tag] ciflow/win-arm64/158104 -> ciflow/win-arm64/158104 2025-08-14T21:43:08.5769237Z * [new tag] ciflow/win-arm64/159553 -> ciflow/win-arm64/159553 2025-08-14T21:43:08.5769770Z * [new tag] ciflow/win-arm64/159562 -> ciflow/win-arm64/159562 2025-08-14T21:43:08.5770244Z * [new tag] ciflow/win-arm64/159777 -> ciflow/win-arm64/159777 2025-08-14T21:43:08.5770672Z * [new tag] ciflow/win-arm64/159780 -> ciflow/win-arm64/159780 2025-08-14T21:43:08.5771110Z * [new tag] ciflow/win-arm64/159842 -> ciflow/win-arm64/159842 2025-08-14T21:43:08.5771540Z * [new tag] ciflow/win-arm64/160250 -> ciflow/win-arm64/160250 2025-08-14T21:43:08.5771972Z * [new tag] ciflow/win-arm64/160253 -> ciflow/win-arm64/160253 2025-08-14T21:43:08.5772411Z * [new tag] ciflow/win-arm64/160454 -> ciflow/win-arm64/160454 2025-08-14T21:43:08.5772834Z * [new tag] ciflow/win-arm64/160560 -> ciflow/win-arm64/160560 2025-08-14T21:43:08.5773265Z * [new tag] ciflow/xpu/138996 -> ciflow/xpu/138996 2025-08-14T21:43:08.5773666Z * [new tag] ciflow/xpu/139971 -> ciflow/xpu/139971 2025-08-14T21:43:08.5774065Z * [new tag] ciflow/xpu/140972 -> ciflow/xpu/140972 2025-08-14T21:43:08.5774471Z * [new tag] ciflow/xpu/143553 -> ciflow/xpu/143553 2025-08-14T21:43:08.5774917Z * [new tag] ciflow/xpu/156272 -> ciflow/xpu/156272 2025-08-14T21:43:08.5775356Z * [new tag] ciflow/xpu/156812 -> ciflow/xpu/156812 2025-08-14T21:43:08.5775760Z * [new tag] ciflow/xpu/157699 -> ciflow/xpu/157699 2025-08-14T21:43:08.5776147Z * [new tag] ciflow/xpu/157994 -> ciflow/xpu/157994 2025-08-14T21:43:08.5776541Z * [new tag] ciflow/xpu/158336 -> ciflow/xpu/158336 2025-08-14T21:43:08.5776931Z * [new tag] ciflow/xpu/158733 -> ciflow/xpu/158733 2025-08-14T21:43:08.5777324Z * [new tag] ciflow/xpu/159033 -> ciflow/xpu/159033 2025-08-14T21:43:08.5777900Z * [new tag] ciflow/xpu/159118 -> ciflow/xpu/159118 2025-08-14T21:43:08.5778299Z * [new tag] ciflow/xpu/159140 -> ciflow/xpu/159140 2025-08-14T21:43:08.5778704Z * [new tag] ciflow/xpu/159241 -> ciflow/xpu/159241 2025-08-14T21:43:08.5779094Z * [new tag] ciflow/xpu/159473 -> ciflow/xpu/159473 2025-08-14T21:43:08.5779497Z * [new tag] ciflow/xpu/159474 -> ciflow/xpu/159474 2025-08-14T21:43:08.5779897Z * [new tag] ciflow/xpu/159553 -> ciflow/xpu/159553 2025-08-14T21:43:08.5780304Z * [new tag] ciflow/xpu/159944 -> ciflow/xpu/159944 2025-08-14T21:43:08.5780735Z * [new tag] ciflow/xpu/160062 -> ciflow/xpu/160062 2025-08-14T21:43:08.5781166Z * [new tag] ciflow/xpu/160067 -> ciflow/xpu/160067 2025-08-14T21:43:08.5781562Z * [new tag] ciflow/xpu/160158 -> ciflow/xpu/160158 2025-08-14T21:43:08.5781960Z * [new tag] ciflow/xpu/160173 -> ciflow/xpu/160173 2025-08-14T21:43:08.5782362Z * [new tag] ciflow/xpu/160183 -> ciflow/xpu/160183 2025-08-14T21:43:08.5782747Z * [new tag] ciflow/xpu/160301 -> ciflow/xpu/160301 2025-08-14T21:43:08.5783146Z * [new tag] ciflow/xpu/160403 -> ciflow/xpu/160403 2025-08-14T21:43:08.5783675Z * [new tag] ciflow/xpu/160606 -> ciflow/xpu/160606 2025-08-14T21:43:08.5784056Z * [new tag] cslpull75 -> cslpull75 2025-08-14T21:43:08.5784432Z * [new tag] cslpull76 -> cslpull76 2025-08-14T21:43:08.5784793Z * [new tag] cslpull77 -> cslpull77 2025-08-14T21:43:08.5785162Z * [new tag] cslpull78 -> cslpull78 2025-08-14T21:43:08.5785520Z * [new tag] cslpull79 -> cslpull79 2025-08-14T21:43:08.5785882Z * [new tag] cslpull80 -> cslpull80 2025-08-14T21:43:08.5786285Z * [new tag] cslpull81 -> cslpull81 2025-08-14T21:43:08.5786688Z * [new tag] cslpull82 -> cslpull82 2025-08-14T21:43:08.5787050Z * [new tag] cslpull83 -> cslpull83 2025-08-14T21:43:08.5787399Z * [new tag] cslpull84 -> cslpull84 2025-08-14T21:43:08.5787764Z * [new tag] cslpull85 -> cslpull85 2025-08-14T21:43:08.5788132Z * [new tag] cslpull86 -> cslpull86 2025-08-14T21:43:08.5788485Z * [new tag] cslpull87 -> cslpull87 2025-08-14T21:43:08.5788852Z * [new tag] cslpull88 -> cslpull88 2025-08-14T21:43:08.5789204Z * [new tag] cslpull89 -> cslpull89 2025-08-14T21:43:08.5789573Z * [new tag] cslpull90 -> cslpull90 2025-08-14T21:43:08.5789929Z * [new tag] cslpull91 -> cslpull91 2025-08-14T21:43:08.5790292Z * [new tag] cslpull92 -> cslpull92 2025-08-14T21:43:08.6025638Z * [new tag] flight_5 -> flight_5 2025-08-14T21:43:08.6026058Z * [new tag] flight_5.1 -> flight_5.1 2025-08-14T21:43:08.6026463Z * [new tag] flight_5.2 -> flight_5.2 2025-08-14T21:43:08.6026821Z * [new tag] flight_5.3 -> flight_5.3 2025-08-14T21:43:08.6027190Z * [new tag] forpull1 -> forpull1 2025-08-14T21:43:08.6027596Z * [new tag] malfet/tag-2ef5611 -> malfet/tag-2ef5611 2025-08-14T21:43:08.6028014Z * [new tag] malfet/tag-317b1a0 -> malfet/tag-317b1a0 2025-08-14T21:43:08.6028613Z * [new tag] malfet/tag-ec6f767 -> malfet/tag-ec6f767 2025-08-14T21:43:08.6029049Z * [new tag] nightly-binary -> nightly-binary 2025-08-14T21:43:08.6029475Z * [new tag] sqzhang_flight4_plus -> sqzhang_flight4_plus 2025-08-14T21:43:08.6029890Z * [new tag] sqzhang_flight_3 -> sqzhang_flight_3 2025-08-14T21:43:08.6030501Z * [new tag] trunk/01584d2a7d029c9749eb73678cf1dc313cc35df6 -> trunk/01584d2a7d029c9749eb73678cf1dc313cc35df6 2025-08-14T21:43:08.6031357Z * [new tag] trunk/017259f9c65b6fad55fb9597d7077e2543eaae46 -> trunk/017259f9c65b6fad55fb9597d7077e2543eaae46 2025-08-14T21:43:08.6032265Z * [new tag] trunk/01bcf9a40dea937637d2cdd530bed2652510943d -> trunk/01bcf9a40dea937637d2cdd530bed2652510943d 2025-08-14T21:43:08.6033069Z * [new tag] trunk/01f66d08d93365015f4af005a252f439c4d4013a -> trunk/01f66d08d93365015f4af005a252f439c4d4013a 2025-08-14T21:43:08.6033857Z * [new tag] trunk/03b254e49f2d4c092e6ca712e5702cf2895aa47e -> trunk/03b254e49f2d4c092e6ca712e5702cf2895aa47e 2025-08-14T21:43:08.6034660Z * [new tag] trunk/05029ad1c30865d3f7e7fd13384db9d826e563eb -> trunk/05029ad1c30865d3f7e7fd13384db9d826e563eb 2025-08-14T21:43:08.6035471Z * [new tag] trunk/05c19d1acecc01b0d2512364183058a6885b9869 -> trunk/05c19d1acecc01b0d2512364183058a6885b9869 2025-08-14T21:43:08.6036397Z * [new tag] trunk/05c417715f791875fbf28cfc3fc86142de1a3206 -> trunk/05c417715f791875fbf28cfc3fc86142de1a3206 2025-08-14T21:43:08.6037262Z * [new tag] trunk/06824f3c7268bb807a422b663047cd0900ddd126 -> trunk/06824f3c7268bb807a422b663047cd0900ddd126 2025-08-14T21:43:08.6038059Z * [new tag] trunk/077cb389746a7d61cfc018aad2ba29a8aa195610 -> trunk/077cb389746a7d61cfc018aad2ba29a8aa195610 2025-08-14T21:43:08.6038891Z * [new tag] trunk/089c4a1ba007ed4abb3e5e0eafd97b7584566057 -> trunk/089c4a1ba007ed4abb3e5e0eafd97b7584566057 2025-08-14T21:43:08.6039727Z * [new tag] trunk/09381f5dacda7bbbfa361f5df76bde5cd309adc1 -> trunk/09381f5dacda7bbbfa361f5df76bde5cd309adc1 2025-08-14T21:43:08.6040566Z * [new tag] trunk/0bd3af4fb87445f4de3a1f9b823e399c8b3cefde -> trunk/0bd3af4fb87445f4de3a1f9b823e399c8b3cefde 2025-08-14T21:43:08.6041386Z * [new tag] trunk/0d3461bac0fb5177e35152d980b301ea3a0aa2c4 -> trunk/0d3461bac0fb5177e35152d980b301ea3a0aa2c4 2025-08-14T21:43:08.6042192Z * [new tag] trunk/0d40ff3b496e68193bc16d5391fa2e3623709f81 -> trunk/0d40ff3b496e68193bc16d5391fa2e3623709f81 2025-08-14T21:43:08.6043004Z * [new tag] trunk/0d71ca2c46753bb268bfdcf815c14415c122a289 -> trunk/0d71ca2c46753bb268bfdcf815c14415c122a289 2025-08-14T21:43:08.6043811Z * [new tag] trunk/0d88593dd826544c9e7bd4aa615ef86847a78d2b -> trunk/0d88593dd826544c9e7bd4aa615ef86847a78d2b 2025-08-14T21:43:08.6044616Z * [new tag] trunk/0e3e377bd5126cfcc69d70c4d77b352d3404cc11 -> trunk/0e3e377bd5126cfcc69d70c4d77b352d3404cc11 2025-08-14T21:43:08.6045431Z * [new tag] trunk/0f3b10b8eebe68e3c75d473d499b87dfe14a2eca -> trunk/0f3b10b8eebe68e3c75d473d499b87dfe14a2eca 2025-08-14T21:43:08.6046247Z * [new tag] trunk/101276f81b4d2a8c31bfd6796b986d4c1bfdf483 -> trunk/101276f81b4d2a8c31bfd6796b986d4c1bfdf483 2025-08-14T21:43:08.6047035Z * [new tag] trunk/1028c5e2d50e121865bf98307e7c035f549a24b2 -> trunk/1028c5e2d50e121865bf98307e7c035f549a24b2 2025-08-14T21:43:08.6047841Z * [new tag] trunk/10bc36fe840cb3510fab84d2ea22663b76702f1e -> trunk/10bc36fe840cb3510fab84d2ea22663b76702f1e 2025-08-14T21:43:08.6048631Z * [new tag] trunk/10e3514c962b58cbbee994257872a626ff76d51b -> trunk/10e3514c962b58cbbee994257872a626ff76d51b 2025-08-14T21:43:08.6049524Z * [new tag] trunk/1128f4c2a822cbe34a9d966306af15097179ffe1 -> trunk/1128f4c2a822cbe34a9d966306af15097179ffe1 2025-08-14T21:43:08.6050343Z * [new tag] trunk/114a6c40434bfb9cfa5abc30e9e34d81300d743e -> trunk/114a6c40434bfb9cfa5abc30e9e34d81300d743e 2025-08-14T21:43:08.6051149Z * [new tag] trunk/118bc97b14c24ac88a4b0c0750a9e7bf93154c76 -> trunk/118bc97b14c24ac88a4b0c0750a9e7bf93154c76 2025-08-14T21:43:08.6273165Z * [new tag] trunk/1196bb1c2e4d5a7edc09f2260e3034132f0c6c91 -> trunk/1196bb1c2e4d5a7edc09f2260e3034132f0c6c91 2025-08-14T21:43:08.6274041Z * [new tag] trunk/11a3565f1872bbad9c253a127e8d4ce7a1b40ec8 -> trunk/11a3565f1872bbad9c253a127e8d4ce7a1b40ec8 2025-08-14T21:43:08.6274849Z * [new tag] trunk/15e49f61643e4c0eef420f0981609709ef55b848 -> trunk/15e49f61643e4c0eef420f0981609709ef55b848 2025-08-14T21:43:08.6275691Z * [new tag] trunk/16d15445f8bd8740095b23de4af89d757af793ca -> trunk/16d15445f8bd8740095b23de4af89d757af793ca 2025-08-14T21:43:08.6276536Z * [new tag] trunk/178515d0ff6833c8e9221482b2a650ab31e00019 -> trunk/178515d0ff6833c8e9221482b2a650ab31e00019 2025-08-14T21:43:08.6277397Z * [new tag] trunk/182efe31dbe43376e7eef7338356aaf94d5bcabe -> trunk/182efe31dbe43376e7eef7338356aaf94d5bcabe 2025-08-14T21:43:08.6278226Z * [new tag] trunk/194fcfcfbdad0add1a1b695321e31a576058f4cf -> trunk/194fcfcfbdad0add1a1b695321e31a576058f4cf 2025-08-14T21:43:08.6279238Z * [new tag] trunk/195b5c2e27eb8f21cbc8ad1e90f42db5a8cfccca -> trunk/195b5c2e27eb8f21cbc8ad1e90f42db5a8cfccca 2025-08-14T21:43:08.6280067Z * [new tag] trunk/198b5fd2d47fa3d5110ceba6827a3b18e0064014 -> trunk/198b5fd2d47fa3d5110ceba6827a3b18e0064014 2025-08-14T21:43:08.6280891Z * [new tag] trunk/199e9abb6a366bbd27c39d1da7c3123b4eea9b5a -> trunk/199e9abb6a366bbd27c39d1da7c3123b4eea9b5a 2025-08-14T21:43:08.6281779Z * [new tag] trunk/19b4283884b2d9b3a0eb364da10b1540d14ab7a7 -> trunk/19b4283884b2d9b3a0eb364da10b1540d14ab7a7 2025-08-14T21:43:08.6282589Z * [new tag] trunk/1c2587119152cec3905647a47c65d3d26619c5a8 -> trunk/1c2587119152cec3905647a47c65d3d26619c5a8 2025-08-14T21:43:08.6283374Z * [new tag] trunk/1c26c53851c212a7c90a325549a72f0571613a8c -> trunk/1c26c53851c212a7c90a325549a72f0571613a8c 2025-08-14T21:43:08.6284191Z * [new tag] trunk/1c2cba17eab2b09d87142883da2bdbdbcf018613 -> trunk/1c2cba17eab2b09d87142883da2bdbdbcf018613 2025-08-14T21:43:08.6285010Z * [new tag] trunk/1d80d697a269234b47ec7ede192faf3bb9b159e3 -> trunk/1d80d697a269234b47ec7ede192faf3bb9b159e3 2025-08-14T21:43:08.6285808Z * [new tag] trunk/1ea688f9a2602fbcde32c0302b822526ca4219dc -> trunk/1ea688f9a2602fbcde32c0302b822526ca4219dc 2025-08-14T21:43:08.6286616Z * [new tag] trunk/1f4057c11ac941fb324386ca594d0a6882185aad -> trunk/1f4057c11ac941fb324386ca594d0a6882185aad 2025-08-14T21:43:08.6287456Z * [new tag] trunk/1fc683cf17c8c673044538d10266c00f92987be2 -> trunk/1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T21:43:08.6288314Z * [new tag] trunk/1febab2a89302464f6c7d69cfbef7a24c421ea65 -> trunk/1febab2a89302464f6c7d69cfbef7a24c421ea65 2025-08-14T21:43:08.6289122Z * [new tag] trunk/206c1eef6571f906c2792d899a09136b3fce9673 -> trunk/206c1eef6571f906c2792d899a09136b3fce9673 2025-08-14T21:43:08.6289920Z * [new tag] trunk/20bdabbb3c5d6b118a94b2e045c777662563d5bb -> trunk/20bdabbb3c5d6b118a94b2e045c777662563d5bb 2025-08-14T21:43:08.6290724Z * [new tag] trunk/21392c0e06ac2b2621950455975ca6332f0bf641 -> trunk/21392c0e06ac2b2621950455975ca6332f0bf641 2025-08-14T21:43:08.6291525Z * [new tag] trunk/2247aa6d1d43e256255f5c74a781c3190a4387b6 -> trunk/2247aa6d1d43e256255f5c74a781c3190a4387b6 2025-08-14T21:43:08.6292318Z * [new tag] trunk/2259dbed4e0d3f2a8174b5847fd0741aed42451d -> trunk/2259dbed4e0d3f2a8174b5847fd0741aed42451d 2025-08-14T21:43:08.6293314Z * [new tag] trunk/231c72240d80091f099c95e326d3600cba866eee -> trunk/231c72240d80091f099c95e326d3600cba866eee 2025-08-14T21:43:08.6294111Z * [new tag] trunk/24257f5bfaa37795f74d9f64c1b43584128d4b8c -> trunk/24257f5bfaa37795f74d9f64c1b43584128d4b8c 2025-08-14T21:43:08.6294913Z * [new tag] trunk/24f43d0da7ad9c6e95a09a2fee610387728cc1cd -> trunk/24f43d0da7ad9c6e95a09a2fee610387728cc1cd 2025-08-14T21:43:08.6295741Z * [new tag] trunk/2898d3f965e5cd9d02fc2ecdab7c580fd457fea9 -> trunk/2898d3f965e5cd9d02fc2ecdab7c580fd457fea9 2025-08-14T21:43:08.6296549Z * [new tag] trunk/28ccc9e7247798980fe00a11bcd64a8016b5f227 -> trunk/28ccc9e7247798980fe00a11bcd64a8016b5f227 2025-08-14T21:43:08.6297356Z * [new tag] trunk/29712314dd5cf500a8ea3d1c69483a3cb768ca72 -> trunk/29712314dd5cf500a8ea3d1c69483a3cb768ca72 2025-08-14T21:43:08.6298166Z * [new tag] trunk/29d20d49f0b7f4e362e1cefdcdc4b5659969312c -> trunk/29d20d49f0b7f4e362e1cefdcdc4b5659969312c 2025-08-14T21:43:08.6299076Z * [new tag] trunk/2c5e10a5fceb208b11c3d569ae02e348b5893b31 -> trunk/2c5e10a5fceb208b11c3d569ae02e348b5893b31 2025-08-14T21:43:08.6299919Z * [new tag] trunk/2d0cdee394bccadcd0abe19dd4623ed978a331ad -> trunk/2d0cdee394bccadcd0abe19dd4623ed978a331ad 2025-08-14T21:43:08.6505448Z * [new tag] trunk/2e4e5ab4be9e0aeffd9c49b5b2f9f820bd0895b1 -> trunk/2e4e5ab4be9e0aeffd9c49b5b2f9f820bd0895b1 2025-08-14T21:43:08.6507348Z * [new tag] trunk/2ea40fba841b3af8103f332ba62e54f350ba9a51 -> trunk/2ea40fba841b3af8103f332ba62e54f350ba9a51 2025-08-14T21:43:08.6508176Z * [new tag] trunk/2ee22e435131369a7e4f8cc4732579acc29a941b -> trunk/2ee22e435131369a7e4f8cc4732579acc29a941b 2025-08-14T21:43:08.6508959Z * [new tag] trunk/2f4c2226175512af787725c4d5ad7313c60d4db1 -> trunk/2f4c2226175512af787725c4d5ad7313c60d4db1 2025-08-14T21:43:08.6509787Z * [new tag] trunk/3008d985a8fc155eb89374afff50cb33a6bd10d5 -> trunk/3008d985a8fc155eb89374afff50cb33a6bd10d5 2025-08-14T21:43:08.6510600Z * [new tag] trunk/3028fa6ce9d9c96671722ab8213a1a30670d7cf2 -> trunk/3028fa6ce9d9c96671722ab8213a1a30670d7cf2 2025-08-14T21:43:08.6511396Z * [new tag] trunk/303c614f3df95ae2b659c5f6c1838b14e4776ce6 -> trunk/303c614f3df95ae2b659c5f6c1838b14e4776ce6 2025-08-14T21:43:08.6512205Z * [new tag] trunk/305fa2239365ad17ac9c534a68bba8a149c42d67 -> trunk/305fa2239365ad17ac9c534a68bba8a149c42d67 2025-08-14T21:43:08.6513019Z * [new tag] trunk/31c9ac4319c0cc2ed8c6be701c6ccf73f6cb4706 -> trunk/31c9ac4319c0cc2ed8c6be701c6ccf73f6cb4706 2025-08-14T21:43:08.6513819Z * [new tag] trunk/32099961d588fc19ead8afe805d6b5108de75669 -> trunk/32099961d588fc19ead8afe805d6b5108de75669 2025-08-14T21:43:08.6514623Z * [new tag] trunk/32e5e2f596d55bb9441d5d53f3c58bcb55828047 -> trunk/32e5e2f596d55bb9441d5d53f3c58bcb55828047 2025-08-14T21:43:08.6515423Z * [new tag] trunk/334b38ccc4427b1d14981c48a3a0b92180d58225 -> trunk/334b38ccc4427b1d14981c48a3a0b92180d58225 2025-08-14T21:43:08.6516231Z * [new tag] trunk/334ecbd4ffe11858cae7d23d1190ddb4777c2513 -> trunk/334ecbd4ffe11858cae7d23d1190ddb4777c2513 2025-08-14T21:43:08.6517186Z * [new tag] trunk/33d94018668951611b318b7515ae96f04e48eac0 -> trunk/33d94018668951611b318b7515ae96f04e48eac0 2025-08-14T21:43:08.6518008Z * [new tag] trunk/34358f335d95213d96b6cca6a83e7bf3af6a9fcb -> trunk/34358f335d95213d96b6cca6a83e7bf3af6a9fcb 2025-08-14T21:43:08.6518821Z * [new tag] trunk/34ec5ed275f8aa875c80daa97b3e82af0b06f673 -> trunk/34ec5ed275f8aa875c80daa97b3e82af0b06f673 2025-08-14T21:43:08.6519633Z * [new tag] trunk/355462e1278d818deb9ef4a184073d5b66074816 -> trunk/355462e1278d818deb9ef4a184073d5b66074816 2025-08-14T21:43:08.6520552Z * [new tag] trunk/3626ba711b34397d1fbf0a9b1979f85cbf68b919 -> trunk/3626ba711b34397d1fbf0a9b1979f85cbf68b919 2025-08-14T21:43:08.6521365Z * [new tag] trunk/36f46d082a4954921cb8493223f000f2aab79ed7 -> trunk/36f46d082a4954921cb8493223f000f2aab79ed7 2025-08-14T21:43:08.6522148Z * [new tag] trunk/39aa3d1471549b7829c207d634dfdc1d26e346a2 -> trunk/39aa3d1471549b7829c207d634dfdc1d26e346a2 2025-08-14T21:43:08.6522951Z * [new tag] trunk/3a562374401113187ce2566b87e3f1d87d7c53aa -> trunk/3a562374401113187ce2566b87e3f1d87d7c53aa 2025-08-14T21:43:08.6523752Z * [new tag] trunk/3ac86e728dfaa7383ff7f865e9e7d33486188dae -> trunk/3ac86e728dfaa7383ff7f865e9e7d33486188dae 2025-08-14T21:43:08.6524555Z * [new tag] trunk/3be70dc30e893b552fc0f23ca06cd8f7949b6d08 -> trunk/3be70dc30e893b552fc0f23ca06cd8f7949b6d08 2025-08-14T21:43:08.6525386Z * [new tag] trunk/3cec82a7e9aea040a34dd7a2587ae6d3bd65dba0 -> trunk/3cec82a7e9aea040a34dd7a2587ae6d3bd65dba0 2025-08-14T21:43:08.6526207Z * [new tag] trunk/3cf7b4024ef83e44e9ae223dbff7c7ab68240cb2 -> trunk/3cf7b4024ef83e44e9ae223dbff7c7ab68240cb2 2025-08-14T21:43:08.6527034Z * [new tag] trunk/3ef2e1ef769582a82c6ddf150e9d11bf4bf1c44f -> trunk/3ef2e1ef769582a82c6ddf150e9d11bf4bf1c44f 2025-08-14T21:43:08.6527870Z * [new tag] trunk/3f1636ebef9b45e8a3cb0eb20d327ee6acb74be0 -> trunk/3f1636ebef9b45e8a3cb0eb20d327ee6acb74be0 2025-08-14T21:43:08.6528775Z * [new tag] trunk/3faee0a6318afcbbbb48687009a459214910d820 -> trunk/3faee0a6318afcbbbb48687009a459214910d820 2025-08-14T21:43:08.6529591Z * [new tag] trunk/3fcd79e023da7156ac584992ebab29205d3b7881 -> trunk/3fcd79e023da7156ac584992ebab29205d3b7881 2025-08-14T21:43:08.6530416Z * [new tag] trunk/3fe19a7a0af3f4d692af30476c320be18c7e8ae6 -> trunk/3fe19a7a0af3f4d692af30476c320be18c7e8ae6 2025-08-14T21:43:08.6531231Z * [new tag] trunk/41673110cd7c5960824cc74a6fcaeda1a8bc7a23 -> trunk/41673110cd7c5960824cc74a6fcaeda1a8bc7a23 2025-08-14T21:43:08.6532042Z * [new tag] trunk/4183d4ff3dcc1d87400326a9a7998c3f9e966f60 -> trunk/4183d4ff3dcc1d87400326a9a7998c3f9e966f60 2025-08-14T21:43:08.6730666Z * [new tag] trunk/422bd6808bb98cbbac31d157d9c82ad11ba9732d -> trunk/422bd6808bb98cbbac31d157d9c82ad11ba9732d 2025-08-14T21:43:08.6731572Z * [new tag] trunk/42e51cd4b3973a053fcfa80878a3f346fd158e9f -> trunk/42e51cd4b3973a053fcfa80878a3f346fd158e9f 2025-08-14T21:43:08.6732379Z * [new tag] trunk/4416433c7c625127b7f975c92f8ec98ea4c67fd3 -> trunk/4416433c7c625127b7f975c92f8ec98ea4c67fd3 2025-08-14T21:43:08.6733183Z * [new tag] trunk/45ba7ecda876685b083cbbe932450560c566826b -> trunk/45ba7ecda876685b083cbbe932450560c566826b 2025-08-14T21:43:08.6734609Z * [new tag] trunk/47a1db823dfcdacdb99f317428fc3791a18c5812 -> trunk/47a1db823dfcdacdb99f317428fc3791a18c5812 2025-08-14T21:43:08.6735866Z * [new tag] trunk/4a773e1e867f28a8ff0b15203e5cd9548f74fcee -> trunk/4a773e1e867f28a8ff0b15203e5cd9548f74fcee 2025-08-14T21:43:08.6736674Z * [new tag] trunk/4a90dc0c1f68d1f98832b169f792ed1bb195a0f3 -> trunk/4a90dc0c1f68d1f98832b169f792ed1bb195a0f3 2025-08-14T21:43:08.6737507Z * [new tag] trunk/4cde0acc0e4e795e1a12cbdd9b93c8c04c1fa05d -> trunk/4cde0acc0e4e795e1a12cbdd9b93c8c04c1fa05d 2025-08-14T21:43:08.6738334Z * [new tag] trunk/4d419a74610c32b1372f8802dcc61893740a23cf -> trunk/4d419a74610c32b1372f8802dcc61893740a23cf 2025-08-14T21:43:08.6739134Z * [new tag] trunk/4d5b3f2d5af7c8e4f41da4ffca53fafe8bb86235 -> trunk/4d5b3f2d5af7c8e4f41da4ffca53fafe8bb86235 2025-08-14T21:43:08.6740942Z * [new tag] trunk/4e2ddb5db67617f9f5309c8bba0c17adc84cadbc -> trunk/4e2ddb5db67617f9f5309c8bba0c17adc84cadbc 2025-08-14T21:43:08.6742474Z * [new tag] trunk/50a8c118754a6c5a46968f5c8e215ccba6831d42 -> trunk/50a8c118754a6c5a46968f5c8e215ccba6831d42 2025-08-14T21:43:08.6743310Z * [new tag] trunk/50f23ff6f883db5021dd6bab4c146434f98dd15d -> trunk/50f23ff6f883db5021dd6bab4c146434f98dd15d 2025-08-14T21:43:08.6744130Z * [new tag] trunk/515cb70367e84fcbad23fcc5b39eb1d7706df2aa -> trunk/515cb70367e84fcbad23fcc5b39eb1d7706df2aa 2025-08-14T21:43:08.6744917Z * [new tag] trunk/53e39494958b7e2278cc8176f63636e812e8945f -> trunk/53e39494958b7e2278cc8176f63636e812e8945f 2025-08-14T21:43:08.6746809Z * [new tag] trunk/556e2a73f4f0643f7c2aeb5c7dddda43388a40ce -> trunk/556e2a73f4f0643f7c2aeb5c7dddda43388a40ce 2025-08-14T21:43:08.6747632Z * [new tag] trunk/5665dc9ab76b84d7c90d845ffb0f6349b3621919 -> trunk/5665dc9ab76b84d7c90d845ffb0f6349b3621919 2025-08-14T21:43:08.6748450Z * [new tag] trunk/566c6d52ef1411c8262d7b9cf85e2044fdfbe1a3 -> trunk/566c6d52ef1411c8262d7b9cf85e2044fdfbe1a3 2025-08-14T21:43:08.6749267Z * [new tag] trunk/56c828bef93eada0e18d2cc013207831ca80cc99 -> trunk/56c828bef93eada0e18d2cc013207831ca80cc99 2025-08-14T21:43:08.6750045Z * [new tag] trunk/5737372862253a0ac0292407a5844796f02380ad -> trunk/5737372862253a0ac0292407a5844796f02380ad 2025-08-14T21:43:08.6750832Z * [new tag] trunk/57f738b6357cc8fcdde479a0948e723809a1a44d -> trunk/57f738b6357cc8fcdde479a0948e723809a1a44d 2025-08-14T21:43:08.6752773Z * [new tag] trunk/5a40c5784482255b9baf14086cc4b9349fc6d512 -> trunk/5a40c5784482255b9baf14086cc4b9349fc6d512 2025-08-14T21:43:08.6753589Z * [new tag] trunk/5a9c4cfce42b9eb87da0de40c5633f083115c307 -> trunk/5a9c4cfce42b9eb87da0de40c5633f083115c307 2025-08-14T21:43:08.6754415Z * [new tag] trunk/5ace061254af71aa83d1baae81aa1864c9746add -> trunk/5ace061254af71aa83d1baae81aa1864c9746add 2025-08-14T21:43:08.6755249Z * [new tag] trunk/5dddcd5b07c6644efca8d613f4eca1dc95daa87f -> trunk/5dddcd5b07c6644efca8d613f4eca1dc95daa87f 2025-08-14T21:43:08.6756081Z * [new tag] trunk/5ed4f9177907fe403ec4c4499d0d0e9be6b68fcf -> trunk/5ed4f9177907fe403ec4c4499d0d0e9be6b68fcf 2025-08-14T21:43:08.6756937Z * [new tag] trunk/5f1010fbb3850d99c8fdf9a9de2f79260cdc586a -> trunk/5f1010fbb3850d99c8fdf9a9de2f79260cdc586a 2025-08-14T21:43:08.6758734Z * [new tag] trunk/5f5f508aa836a46dfe88857fb223049616b94e93 -> trunk/5f5f508aa836a46dfe88857fb223049616b94e93 2025-08-14T21:43:08.6759551Z * [new tag] trunk/62bac0798100e0e06a86b7a4cee1788413e3d0ca -> trunk/62bac0798100e0e06a86b7a4cee1788413e3d0ca 2025-08-14T21:43:08.6760351Z * [new tag] trunk/63654ba4c5178fd12220cfc9d1c878af2fdd07cc -> trunk/63654ba4c5178fd12220cfc9d1c878af2fdd07cc 2025-08-14T21:43:08.6761159Z * [new tag] trunk/639778b3ee3b80e0894367fdc4442b58ae1b3a62 -> trunk/639778b3ee3b80e0894367fdc4442b58ae1b3a62 2025-08-14T21:43:08.6761947Z * [new tag] trunk/641ee7478150f26969968f49d8b358e199679a8a -> trunk/641ee7478150f26969968f49d8b358e199679a8a 2025-08-14T21:43:08.6762729Z * [new tag] trunk/65053c03a3d209060cb239d20a229dac37cf9dd1 -> trunk/65053c03a3d209060cb239d20a229dac37cf9dd1 2025-08-14T21:43:08.6951786Z * [new tag] trunk/652a6f5954d039d61dc6e6575ccf89d385d74537 -> trunk/652a6f5954d039d61dc6e6575ccf89d385d74537 2025-08-14T21:43:08.6952673Z * [new tag] trunk/685f15dbea66e8ffa8564752f81ad2f6cb447a14 -> trunk/685f15dbea66e8ffa8564752f81ad2f6cb447a14 2025-08-14T21:43:08.6953489Z * [new tag] trunk/68a4b4b2e336cfd4451ce6546d900568e5ddf96c -> trunk/68a4b4b2e336cfd4451ce6546d900568e5ddf96c 2025-08-14T21:43:08.6954395Z * [new tag] trunk/69a0a9aa7f5e320a02e97fa789d2f72baff1554f -> trunk/69a0a9aa7f5e320a02e97fa789d2f72baff1554f 2025-08-14T21:43:08.6955412Z * [new tag] trunk/6be6d06295c870c77a6eb69f96b3170d983520d5 -> trunk/6be6d06295c870c77a6eb69f96b3170d983520d5 2025-08-14T21:43:08.6956231Z * [new tag] trunk/6c05ea6475beaf3acc05e1bda0f3f8fe3bdc1d49 -> trunk/6c05ea6475beaf3acc05e1bda0f3f8fe3bdc1d49 2025-08-14T21:43:08.6957109Z * [new tag] trunk/6da11d9aafc0d84dc7f66030c181608ff2614f66 -> trunk/6da11d9aafc0d84dc7f66030c181608ff2614f66 2025-08-14T21:43:08.6957919Z * [new tag] trunk/6e8865fbc161270e2ffc52817e6c667df417a3f7 -> trunk/6e8865fbc161270e2ffc52817e6c667df417a3f7 2025-08-14T21:43:08.6958739Z * [new tag] trunk/6ea8376f84232048d6be0f7b2edf82aec1b61d58 -> trunk/6ea8376f84232048d6be0f7b2edf82aec1b61d58 2025-08-14T21:43:08.6959541Z * [new tag] trunk/6ee175195ac7853734d64704171993cc6265eb38 -> trunk/6ee175195ac7853734d64704171993cc6265eb38 2025-08-14T21:43:08.6960320Z * [new tag] trunk/6f0f4e0c3eacd479864319127915f869f64e1935 -> trunk/6f0f4e0c3eacd479864319127915f869f64e1935 2025-08-14T21:43:08.6961131Z * [new tag] trunk/70ccdec44b89e355a2cb03ba14a634284f7750f8 -> trunk/70ccdec44b89e355a2cb03ba14a634284f7750f8 2025-08-14T21:43:08.6961934Z * [new tag] trunk/72009ec6bebca7714f99c18449183787f202af4d -> trunk/72009ec6bebca7714f99c18449183787f202af4d 2025-08-14T21:43:08.6962734Z * [new tag] trunk/731ee31f7b6ba19307daab323f6196172b71aaf8 -> trunk/731ee31f7b6ba19307daab323f6196172b71aaf8 2025-08-14T21:43:08.6963656Z * [new tag] trunk/76a0609b6bddb2bc40f1eb4ade12885023653d59 -> trunk/76a0609b6bddb2bc40f1eb4ade12885023653d59 2025-08-14T21:43:08.6964449Z * [new tag] trunk/781e9a7724c47496e3d38a81e6dd6194cf098c41 -> trunk/781e9a7724c47496e3d38a81e6dd6194cf098c41 2025-08-14T21:43:08.6965276Z * [new tag] trunk/78a2fe1d42edeaa2ef7020b0fa0ac82ee4a640e4 -> trunk/78a2fe1d42edeaa2ef7020b0fa0ac82ee4a640e4 2025-08-14T21:43:08.6966128Z * [new tag] trunk/7a974a88f2c529a614baeabe4debd00fc8a3b299 -> trunk/7a974a88f2c529a614baeabe4debd00fc8a3b299 2025-08-14T21:43:08.6966937Z * [new tag] trunk/7ae0629d64b404e0ef5d9c931433ad25e65d6114 -> trunk/7ae0629d64b404e0ef5d9c931433ad25e65d6114 2025-08-14T21:43:08.6967745Z * [new tag] trunk/7d2ec704e47f4b740cdecda5534b305e8e1875ef -> trunk/7d2ec704e47f4b740cdecda5534b305e8e1875ef 2025-08-14T21:43:08.6968548Z * [new tag] trunk/7d87e358ac8440f666fabbfd99058bb5342be6ac -> trunk/7d87e358ac8440f666fabbfd99058bb5342be6ac 2025-08-14T21:43:08.6969352Z * [new tag] trunk/7e27347fd353928c99620495c8c531a5eba7d56b -> trunk/7e27347fd353928c99620495c8c531a5eba7d56b 2025-08-14T21:43:08.6970219Z * [new tag] trunk/7e91394955721c77645fcdb75a5d47a255d65020 -> trunk/7e91394955721c77645fcdb75a5d47a255d65020 2025-08-14T21:43:08.6971004Z * [new tag] trunk/7f4cb4a3e018a621add2a37a3a2f67b982d51001 -> trunk/7f4cb4a3e018a621add2a37a3a2f67b982d51001 2025-08-14T21:43:08.6971810Z * [new tag] trunk/7fbc22855c17741ae016992803b2e147a13aa22d -> trunk/7fbc22855c17741ae016992803b2e147a13aa22d 2025-08-14T21:43:08.6972603Z * [new tag] trunk/8047421fbb607d70ede13b9cd5a60b7b8bdfe348 -> trunk/8047421fbb607d70ede13b9cd5a60b7b8bdfe348 2025-08-14T21:43:08.6973404Z * [new tag] trunk/8088cfa592504a2897b4c78f8a46fe658ab5c2c2 -> trunk/8088cfa592504a2897b4c78f8a46fe658ab5c2c2 2025-08-14T21:43:08.6974189Z * [new tag] trunk/80cca8307943ba64168208b54028f55b2c71daff -> trunk/80cca8307943ba64168208b54028f55b2c71daff 2025-08-14T21:43:08.6974979Z * [new tag] trunk/8147370733bbdcd034cad54e9212e51885a11892 -> trunk/8147370733bbdcd034cad54e9212e51885a11892 2025-08-14T21:43:08.6975772Z * [new tag] trunk/83875cdb5594ccb3c9206b8eb5745fe1d011cf26 -> trunk/83875cdb5594ccb3c9206b8eb5745fe1d011cf26 2025-08-14T21:43:08.6976577Z * [new tag] trunk/8399cf88ce8399d2be93355f29d4cb69f51c0654 -> trunk/8399cf88ce8399d2be93355f29d4cb69f51c0654 2025-08-14T21:43:08.6977486Z * [new tag] trunk/842cc77ab9aafd518593c2fce077d6abb42a5b7f -> trunk/842cc77ab9aafd518593c2fce077d6abb42a5b7f 2025-08-14T21:43:08.7183824Z * [new tag] trunk/85db508af533649d0b3447ff3f0d5fe083150c84 -> trunk/85db508af533649d0b3447ff3f0d5fe083150c84 2025-08-14T21:43:08.7184694Z * [new tag] trunk/86eb65f7f06016bcd5d7951dc9d74bc3993a827a -> trunk/86eb65f7f06016bcd5d7951dc9d74bc3993a827a 2025-08-14T21:43:08.7185539Z * [new tag] trunk/87e6c4079d8ec7d04aff00ed82096b39836a8367 -> trunk/87e6c4079d8ec7d04aff00ed82096b39836a8367 2025-08-14T21:43:08.7186365Z * [new tag] trunk/89654db1abccf7e5f261989a150db4d1619ea2aa -> trunk/89654db1abccf7e5f261989a150db4d1619ea2aa 2025-08-14T21:43:08.7187170Z * [new tag] trunk/8a37f0c90392a2c38b7c5955471fa49edcaf5cb1 -> trunk/8a37f0c90392a2c38b7c5955471fa49edcaf5cb1 2025-08-14T21:43:08.7187977Z * [new tag] trunk/8ab5868a2199fe485c2d66533b9244ccb97e487d -> trunk/8ab5868a2199fe485c2d66533b9244ccb97e487d 2025-08-14T21:43:08.7188878Z * [new tag] trunk/8ae4d2652f64b8444b3d5314b9232bd2119bcde6 -> trunk/8ae4d2652f64b8444b3d5314b9232bd2119bcde6 2025-08-14T21:43:08.7189672Z * [new tag] trunk/8c41cb800ae0411f02ea5da34bd5ccc3790633b0 -> trunk/8c41cb800ae0411f02ea5da34bd5ccc3790633b0 2025-08-14T21:43:08.7190479Z * [new tag] trunk/8cb91e20bc205b1416648d0ffd98d1ba1f3a6fc4 -> trunk/8cb91e20bc205b1416648d0ffd98d1ba1f3a6fc4 2025-08-14T21:43:08.7191505Z * [new tag] trunk/8cfaf51d4e29c9bd9f49ecc98d955ed53df1a13d -> trunk/8cfaf51d4e29c9bd9f49ecc98d955ed53df1a13d 2025-08-14T21:43:08.7192329Z * [new tag] trunk/8d1cf529229dce7cd5ea04abb0faac83b87ca6d1 -> trunk/8d1cf529229dce7cd5ea04abb0faac83b87ca6d1 2025-08-14T21:43:08.7193152Z * [new tag] trunk/8d3d1c844303cb1d46123a1caa76d4cf83973347 -> trunk/8d3d1c844303cb1d46123a1caa76d4cf83973347 2025-08-14T21:43:08.7193955Z * [new tag] trunk/8d6d3246316e1767a57d5e855acd6208da753b75 -> trunk/8d6d3246316e1767a57d5e855acd6208da753b75 2025-08-14T21:43:08.7194753Z * [new tag] trunk/8e6a3138581152ab827a0997f34c470271399f5e -> trunk/8e6a3138581152ab827a0997f34c470271399f5e 2025-08-14T21:43:08.7195551Z * [new tag] trunk/8eee08d2279b98af2522debb6512d37e837e89e3 -> trunk/8eee08d2279b98af2522debb6512d37e837e89e3 2025-08-14T21:43:08.7196349Z * [new tag] trunk/90b78ee50f73b5c963996076a3d54b74b1b965be -> trunk/90b78ee50f73b5c963996076a3d54b74b1b965be 2025-08-14T21:43:08.7197188Z * [new tag] trunk/94b91a876327820a4bb6f5d39d156f13f2553ab6 -> trunk/94b91a876327820a4bb6f5d39d156f13f2553ab6 2025-08-14T21:43:08.7197977Z * [new tag] trunk/95210cc409dd578988c7116b47725c304dea54c7 -> trunk/95210cc409dd578988c7116b47725c304dea54c7 2025-08-14T21:43:08.7198762Z * [new tag] trunk/96bd33b2de79598566df395f32e27c4d33673f05 -> trunk/96bd33b2de79598566df395f32e27c4d33673f05 2025-08-14T21:43:08.7199557Z * [new tag] trunk/9708fcf92db88b80b9010c68662d634434da3106 -> trunk/9708fcf92db88b80b9010c68662d634434da3106 2025-08-14T21:43:08.7200353Z * [new tag] trunk/97c8c98f8dcb9c5c188b691d156e0043dba6c7f8 -> trunk/97c8c98f8dcb9c5c188b691d156e0043dba6c7f8 2025-08-14T21:43:08.7201168Z * [new tag] trunk/9903ca4f70bdc1653016256f5b4fd74fdfc609f8 -> trunk/9903ca4f70bdc1653016256f5b4fd74fdfc609f8 2025-08-14T21:43:08.7201981Z * [new tag] trunk/99bc2f94c1955657e950ebdad5f77e518785ccbd -> trunk/99bc2f94c1955657e950ebdad5f77e518785ccbd 2025-08-14T21:43:08.7202788Z * [new tag] trunk/9a06e6d0310da9d8a59ae05e8ec9c0201b55cacd -> trunk/9a06e6d0310da9d8a59ae05e8ec9c0201b55cacd 2025-08-14T21:43:08.7203590Z * [new tag] trunk/9a0f7a3bb01b235ea04581ee540970a098071b72 -> trunk/9a0f7a3bb01b235ea04581ee540970a098071b72 2025-08-14T21:43:08.7204520Z * [new tag] trunk/9b803cdbe298009f08340c1aaccb25aafbca95d8 -> trunk/9b803cdbe298009f08340c1aaccb25aafbca95d8 2025-08-14T21:43:08.7205355Z * [new tag] trunk/9ccd0f5e31ea54fcf42101dfbaacc103494e34df -> trunk/9ccd0f5e31ea54fcf42101dfbaacc103494e34df 2025-08-14T21:43:08.7206187Z * [new tag] trunk/9d37c960a4fc44d5ac334ca8bf775f85b95d76fc -> trunk/9d37c960a4fc44d5ac334ca8bf775f85b95d76fc 2025-08-14T21:43:08.7206996Z * [new tag] trunk/9e07673deb212c87b1c6fea23799a97474c476ed -> trunk/9e07673deb212c87b1c6fea23799a97474c476ed 2025-08-14T21:43:08.7207808Z * [new tag] trunk/9eedd2a20b64302d0d116ea2802b50948d2ebb09 -> trunk/9eedd2a20b64302d0d116ea2802b50948d2ebb09 2025-08-14T21:43:08.7208618Z * [new tag] trunk/9fa8ce26cf638504469852cbc3e7d04579fc8674 -> trunk/9fa8ce26cf638504469852cbc3e7d04579fc8674 2025-08-14T21:43:08.7209431Z * [new tag] trunk/a06ec54d40013c97fbffc174ea8f524ea5a95715 -> trunk/a06ec54d40013c97fbffc174ea8f524ea5a95715 2025-08-14T21:43:08.7210269Z * [new tag] trunk/a288b15ea9f87ddd665f249d492e0fb0861f5a69 -> trunk/a288b15ea9f87ddd665f249d492e0fb0861f5a69 2025-08-14T21:43:08.7401769Z * [new tag] trunk/a2fd106d670bb4990cebfd00f25ecbae4145e76c -> trunk/a2fd106d670bb4990cebfd00f25ecbae4145e76c 2025-08-14T21:43:08.7402631Z * [new tag] trunk/a354fa91e26b376d96385a2206c5ff5b42aa4600 -> trunk/a354fa91e26b376d96385a2206c5ff5b42aa4600 2025-08-14T21:43:08.7403660Z * [new tag] trunk/a4f69a5da08eace1c1e6469dec6a18aa842da73b -> trunk/a4f69a5da08eace1c1e6469dec6a18aa842da73b 2025-08-14T21:43:08.7404493Z * [new tag] trunk/a53d14d5f846ac44f6c205abb1c5bc4d2f3126ae -> trunk/a53d14d5f846ac44f6c205abb1c5bc4d2f3126ae 2025-08-14T21:43:08.7405322Z * [new tag] trunk/a5652407e4f3d772fc44486ac2abf756decf0861 -> trunk/a5652407e4f3d772fc44486ac2abf756decf0861 2025-08-14T21:43:08.7406167Z * [new tag] trunk/a7abf57aabec0ce686092e2d66e53ba185dbc56b -> trunk/a7abf57aabec0ce686092e2d66e53ba185dbc56b 2025-08-14T21:43:08.7407048Z * [new tag] trunk/a84b60c0c4016785fd93b7b8a0c04f2d0770d332 -> trunk/a84b60c0c4016785fd93b7b8a0c04f2d0770d332 2025-08-14T21:43:08.7407927Z * [new tag] trunk/aa75e917bdb0f95bb6dee81853c2d3c4ab3e1883 -> trunk/aa75e917bdb0f95bb6dee81853c2d3c4ab3e1883 2025-08-14T21:43:08.7408774Z * [new tag] trunk/adcca7d9a1c053495e99012de801b2ea237faad0 -> trunk/adcca7d9a1c053495e99012de801b2ea237faad0 2025-08-14T21:43:08.7409595Z * [new tag] trunk/af10f1f86cc4effc93142a447693d8be55966615 -> trunk/af10f1f86cc4effc93142a447693d8be55966615 2025-08-14T21:43:08.7410432Z * [new tag] trunk/af3cabc55d5699f4da528e1ca39d83338f84ae8c -> trunk/af3cabc55d5699f4da528e1ca39d83338f84ae8c 2025-08-14T21:43:08.7411245Z * [new tag] trunk/b0df7715e8c590c0001d1f9cdb97057be80c9107 -> trunk/b0df7715e8c590c0001d1f9cdb97057be80c9107 2025-08-14T21:43:08.7412077Z * [new tag] trunk/b149c7204c218e7c4d6594a89dd74f72bd480ec5 -> trunk/b149c7204c218e7c4d6594a89dd74f72bd480ec5 2025-08-14T21:43:08.7412921Z * [new tag] trunk/b1a602762e6a6674b406a3137e7e7a678885a97b -> trunk/b1a602762e6a6674b406a3137e7e7a678885a97b 2025-08-14T21:43:08.7413778Z * [new tag] trunk/b1f43548cad8fc0e30bda250f6e196310fa7a4bc -> trunk/b1f43548cad8fc0e30bda250f6e196310fa7a4bc 2025-08-14T21:43:08.7414605Z * [new tag] trunk/b219ca2a00a305753c4f1ea4c9c5d23243d54753 -> trunk/b219ca2a00a305753c4f1ea4c9c5d23243d54753 2025-08-14T21:43:08.7415401Z * [new tag] trunk/b4596895b9d85a686c2cb978938b0a7797b3690a -> trunk/b4596895b9d85a686c2cb978938b0a7797b3690a 2025-08-14T21:43:08.7416232Z * [new tag] trunk/b5fd7223b1bf44720dc9183bda7dfcf7aeccff02 -> trunk/b5fd7223b1bf44720dc9183bda7dfcf7aeccff02 2025-08-14T21:43:08.7417184Z * [new tag] trunk/b602ea9cab7d43a7ee7b4051227090f23fbd3dbf -> trunk/b602ea9cab7d43a7ee7b4051227090f23fbd3dbf 2025-08-14T21:43:08.7418021Z * [new tag] trunk/b6b74aed604bd2e96389ff99aaaf39abc64fdc64 -> trunk/b6b74aed604bd2e96389ff99aaaf39abc64fdc64 2025-08-14T21:43:08.7418915Z * [new tag] trunk/b7db86600a2614adc71c92ca42d359a7ac534d78 -> trunk/b7db86600a2614adc71c92ca42d359a7ac534d78 2025-08-14T21:43:08.7419769Z * [new tag] trunk/b9003ed3d87699e81e436719625a21996a6654e5 -> trunk/b9003ed3d87699e81e436719625a21996a6654e5 2025-08-14T21:43:08.7420591Z * [new tag] trunk/b90feeac86bda00afc2789321bcd706015ff44e3 -> trunk/b90feeac86bda00afc2789321bcd706015ff44e3 2025-08-14T21:43:08.7421439Z * [new tag] trunk/b9d7de3a094598c3dc0dd52e57bce30eb684c9d8 -> trunk/b9d7de3a094598c3dc0dd52e57bce30eb684c9d8 2025-08-14T21:43:08.7422258Z * [new tag] trunk/ba47821f524eee50a214ed39fa2e7765d54aabf4 -> trunk/ba47821f524eee50a214ed39fa2e7765d54aabf4 2025-08-14T21:43:08.7423099Z * [new tag] trunk/ba4ccf5d67e3d237f435eacc2bce3c6025f08491 -> trunk/ba4ccf5d67e3d237f435eacc2bce3c6025f08491 2025-08-14T21:43:08.7423937Z * [new tag] trunk/bcf23ecc476df2bd7479f142567213e2623308ee -> trunk/bcf23ecc476df2bd7479f142567213e2623308ee 2025-08-14T21:43:08.7424842Z * [new tag] trunk/be53f609aaf6f01e2863f490975ea9eaac3ee9ff -> trunk/be53f609aaf6f01e2863f490975ea9eaac3ee9ff 2025-08-14T21:43:08.7425785Z * [new tag] trunk/beb4d7816dedc67a5de1f82e5a45b5910f407941 -> trunk/beb4d7816dedc67a5de1f82e5a45b5910f407941 2025-08-14T21:43:08.7426612Z * [new tag] trunk/bfc873d02ec413344717493e4175a902921359fd -> trunk/bfc873d02ec413344717493e4175a902921359fd 2025-08-14T21:43:08.7427417Z * [new tag] trunk/c184cb3852f0ff2d16a489d61abc3739c309e6ca -> trunk/c184cb3852f0ff2d16a489d61abc3739c309e6ca 2025-08-14T21:43:08.7428253Z * [new tag] trunk/c24ca7f4bf79f62fd623d76346ca27e53f731431 -> trunk/c24ca7f4bf79f62fd623d76346ca27e53f731431 2025-08-14T21:43:08.7634116Z * [new tag] trunk/c3dc8dc4122977893004c49d10e4676cd0a97da4 -> trunk/c3dc8dc4122977893004c49d10e4676cd0a97da4 2025-08-14T21:43:08.7634971Z * [new tag] trunk/c5ec5458a547f7a774468ea0eb2258d3de596492 -> trunk/c5ec5458a547f7a774468ea0eb2258d3de596492 2025-08-14T21:43:08.7635799Z * [new tag] trunk/c5efc5c8a66eca84865015058b3221013ebfe685 -> trunk/c5efc5c8a66eca84865015058b3221013ebfe685 2025-08-14T21:43:08.7636618Z * [new tag] trunk/c6563341208003f64c131854a9cf029555f786d2 -> trunk/c6563341208003f64c131854a9cf029555f786d2 2025-08-14T21:43:08.7637484Z * [new tag] trunk/c6d78d4dbda53837d298d23a5fbc09af90a42d9e -> trunk/c6d78d4dbda53837d298d23a5fbc09af90a42d9e 2025-08-14T21:43:08.7638323Z * [new tag] trunk/c8205cb35435f39d2c26f6c94b45e4adeb6dcb23 -> trunk/c8205cb35435f39d2c26f6c94b45e4adeb6dcb23 2025-08-14T21:43:08.7639148Z * [new tag] trunk/c859ba7114b1fcb49527e090745fa17091d1f8d5 -> trunk/c859ba7114b1fcb49527e090745fa17091d1f8d5 2025-08-14T21:43:08.7639948Z * [new tag] trunk/c86040a8e68f754b90a84099187d3624954c7f36 -> trunk/c86040a8e68f754b90a84099187d3624954c7f36 2025-08-14T21:43:08.7640753Z * [new tag] trunk/c9671dc865aa0fc1cb86df754e355b44d8e02bb4 -> trunk/c9671dc865aa0fc1cb86df754e355b44d8e02bb4 2025-08-14T21:43:08.7641581Z * [new tag] trunk/ca7315c17162ea21b1ca5ba23f4bf6168766c7b9 -> trunk/ca7315c17162ea21b1ca5ba23f4bf6168766c7b9 2025-08-14T21:43:08.7642415Z * [new tag] trunk/cae2b5e3d223829bdc553fc8601df4b1c1554cff -> trunk/cae2b5e3d223829bdc553fc8601df4b1c1554cff 2025-08-14T21:43:08.7643231Z * [new tag] trunk/cbffde774557752cf20447d42d99ec6102673c31 -> trunk/cbffde774557752cf20447d42d99ec6102673c31 2025-08-14T21:43:08.7644260Z * [new tag] trunk/cd8d8c18f5bafdc1c73d5ac0129e7b4d76ab45bc -> trunk/cd8d8c18f5bafdc1c73d5ac0129e7b4d76ab45bc 2025-08-14T21:43:08.7645144Z * [new tag] trunk/cf0a0dcb0afa5e84b95461cc542f862b51ca96bf -> trunk/cf0a0dcb0afa5e84b95461cc542f862b51ca96bf 2025-08-14T21:43:08.7645981Z * [new tag] trunk/cf4964be68fa9f4ffc334f01cce42d7424b1cc81 -> trunk/cf4964be68fa9f4ffc334f01cce42d7424b1cc81 2025-08-14T21:43:08.7646818Z * [new tag] trunk/d0e2240f680ea2a553f7ee8188f52482e130bfd0 -> trunk/d0e2240f680ea2a553f7ee8188f52482e130bfd0 2025-08-14T21:43:08.7647659Z * [new tag] trunk/d1950d4bb5cba8fb6b23e4d283eea5b9801737e2 -> trunk/d1950d4bb5cba8fb6b23e4d283eea5b9801737e2 2025-08-14T21:43:08.7648488Z * [new tag] trunk/d20c4c20e61adecf00335c4d8c22eb1ace472cd3 -> trunk/d20c4c20e61adecf00335c4d8c22eb1ace472cd3 2025-08-14T21:43:08.7649319Z * [new tag] trunk/d25c4f954d599ea512e2f70cd6df101c21479d4c -> trunk/d25c4f954d599ea512e2f70cd6df101c21479d4c 2025-08-14T21:43:08.7650131Z * [new tag] trunk/d3d359dbafa89173a371e2637f22b47398e94a24 -> trunk/d3d359dbafa89173a371e2637f22b47398e94a24 2025-08-14T21:43:08.7650952Z * [new tag] trunk/d46768db04499d07a5b0db984112a6d1b7d3b0c1 -> trunk/d46768db04499d07a5b0db984112a6d1b7d3b0c1 2025-08-14T21:43:08.7651765Z * [new tag] trunk/d4c1a08c89f37d249a0146ff511c82ecc5c53b8f -> trunk/d4c1a08c89f37d249a0146ff511c82ecc5c53b8f 2025-08-14T21:43:08.7652682Z * [new tag] trunk/d556586448f3caab85673c7da0978fe31c7748f7 -> trunk/d556586448f3caab85673c7da0978fe31c7748f7 2025-08-14T21:43:08.7653482Z * [new tag] trunk/d670304001429a1a833255a918ed788d7ec4989a -> trunk/d670304001429a1a833255a918ed788d7ec4989a 2025-08-14T21:43:08.7654269Z * [new tag] trunk/d6786741a77aba200c78002646cc069b7a1799b0 -> trunk/d6786741a77aba200c78002646cc069b7a1799b0 2025-08-14T21:43:08.7655080Z * [new tag] trunk/d68c323692dedcbb74e670801e3502944fd790ff -> trunk/d68c323692dedcbb74e670801e3502944fd790ff 2025-08-14T21:43:08.7655911Z * [new tag] trunk/d8cb3db5339b45e4b745b2b883ef3ecde9843e2c -> trunk/d8cb3db5339b45e4b745b2b883ef3ecde9843e2c 2025-08-14T21:43:08.7656724Z * [new tag] trunk/da1f608ca33f3062535d0a4866d95db19e72fcbd -> trunk/da1f608ca33f3062535d0a4866d95db19e72fcbd 2025-08-14T21:43:08.7657551Z * [new tag] trunk/db0b7f1cc9bb3fe71aaf8b964a644147ae8e1c35 -> trunk/db0b7f1cc9bb3fe71aaf8b964a644147ae8e1c35 2025-08-14T21:43:08.7658396Z * [new tag] trunk/db32b60662b2f2bdcad980127d5dc4b66b02a7e4 -> trunk/db32b60662b2f2bdcad980127d5dc4b66b02a7e4 2025-08-14T21:43:08.7659202Z * [new tag] trunk/db763b17175553ba09637362eb9773a91997a7ad -> trunk/db763b17175553ba09637362eb9773a91997a7ad 2025-08-14T21:43:08.7660019Z * [new tag] trunk/db78943a1ca13a32a3d6045eb15e2b719ee13a2f -> trunk/db78943a1ca13a32a3d6045eb15e2b719ee13a2f 2025-08-14T21:43:08.7660841Z * [new tag] trunk/dc0d18e023d9b7e314ebba0f234b6cb1579dbcfd -> trunk/dc0d18e023d9b7e314ebba0f234b6cb1579dbcfd 2025-08-14T21:43:08.7850556Z * [new tag] trunk/dd21c8a578038ab2841a7ba809a06921093ac9d8 -> trunk/dd21c8a578038ab2841a7ba809a06921093ac9d8 2025-08-14T21:43:08.7851442Z * [new tag] trunk/deea71a90e05eb320c04bebfead5317746637f0d -> trunk/deea71a90e05eb320c04bebfead5317746637f0d 2025-08-14T21:43:08.7852278Z * [new tag] trunk/df55ec7d4b35f6d21691e9dd41c82f27de762948 -> trunk/df55ec7d4b35f6d21691e9dd41c82f27de762948 2025-08-14T21:43:08.7853159Z * [new tag] trunk/e1cf0d496ea85d1807c8c740f296e77bf7bdc1df -> trunk/e1cf0d496ea85d1807c8c740f296e77bf7bdc1df 2025-08-14T21:43:08.7853985Z * [new tag] trunk/e248719ac03c103767ab72034f6b9fd56855bf98 -> trunk/e248719ac03c103767ab72034f6b9fd56855bf98 2025-08-14T21:43:08.7854836Z * [new tag] trunk/e49762026070f66be41bfa6537fbcf9bfc24e558 -> trunk/e49762026070f66be41bfa6537fbcf9bfc24e558 2025-08-14T21:43:08.7855890Z * [new tag] trunk/e4de93f6a3e342bab34d3757cf90ec0ccc87e168 -> trunk/e4de93f6a3e342bab34d3757cf90ec0ccc87e168 2025-08-14T21:43:08.7856738Z * [new tag] trunk/e619c6bb90b9dedaccd3cbeed86a288993a4e33f -> trunk/e619c6bb90b9dedaccd3cbeed86a288993a4e33f 2025-08-14T21:43:08.7857592Z * [new tag] trunk/e63c2b21c186a7d2ab8a8953b8aa1535f2e96e58 -> trunk/e63c2b21c186a7d2ab8a8953b8aa1535f2e96e58 2025-08-14T21:43:08.7858432Z * [new tag] trunk/e7152ff8a6a929a0db7f3f4a72a5b6d471769cd3 -> trunk/e7152ff8a6a929a0db7f3f4a72a5b6d471769cd3 2025-08-14T21:43:08.7859268Z * [new tag] trunk/e96c7c4bb0f6aeae2ab3b6f040f7d67edbec199a -> trunk/e96c7c4bb0f6aeae2ab3b6f040f7d67edbec199a 2025-08-14T21:43:08.7860105Z * [new tag] trunk/e9eb2096a59a79e7a94c3e28a0715e040369f34c -> trunk/e9eb2096a59a79e7a94c3e28a0715e040369f34c 2025-08-14T21:43:08.7861026Z * [new tag] trunk/eac2d9d695a32dd456050f45cac35134ec3809f4 -> trunk/eac2d9d695a32dd456050f45cac35134ec3809f4 2025-08-14T21:43:08.7861841Z * [new tag] trunk/ecde76c764752540edf9ef62a97936c86d984b17 -> trunk/ecde76c764752540edf9ef62a97936c86d984b17 2025-08-14T21:43:08.7862671Z * [new tag] trunk/ecea81117b2fdc52907c97b3c32d779e07b5d55b -> trunk/ecea81117b2fdc52907c97b3c32d779e07b5d55b 2025-08-14T21:43:08.7863499Z * [new tag] trunk/edaa151d0d5a4e75fbec9843f49cc78770eb61fb -> trunk/edaa151d0d5a4e75fbec9843f49cc78770eb61fb 2025-08-14T21:43:08.7864463Z * [new tag] trunk/ee1b0412b919dfb358d5a697b3be49621497fbc2 -> trunk/ee1b0412b919dfb358d5a697b3be49621497fbc2 2025-08-14T21:43:08.7865289Z * [new tag] trunk/ee1fb43450c2e985657f95a91b68328d6f20f24e -> trunk/ee1fb43450c2e985657f95a91b68328d6f20f24e 2025-08-14T21:43:08.7866149Z * [new tag] trunk/ee89cc7a0acd69de25f98fe4ef828546db7b444c -> trunk/ee89cc7a0acd69de25f98fe4ef828546db7b444c 2025-08-14T21:43:08.7867040Z * [new tag] trunk/ee9f8ba11d664b871a9e0c7933fdc8571635b78c -> trunk/ee9f8ba11d664b871a9e0c7933fdc8571635b78c 2025-08-14T21:43:08.7867888Z * [new tag] trunk/eed9dbf70f43ee529fec78ac00ed9a4fd74c6e76 -> trunk/eed9dbf70f43ee529fec78ac00ed9a4fd74c6e76 2025-08-14T21:43:08.7868720Z * [new tag] trunk/f077c2402e4eb5b0ed562b4ee5b7a0503f26ef94 -> trunk/f077c2402e4eb5b0ed562b4ee5b7a0503f26ef94 2025-08-14T21:43:08.7869547Z * [new tag] trunk/f0980fc0bbd656d6c02d23ad97e945353b314f35 -> trunk/f0980fc0bbd656d6c02d23ad97e945353b314f35 2025-08-14T21:43:08.7870376Z * [new tag] trunk/f15ada5c6fad97a7dcbfa4673f067b6942dda640 -> trunk/f15ada5c6fad97a7dcbfa4673f067b6942dda640 2025-08-14T21:43:08.7883406Z * [new tag] trunk/f27232a2134150cb5e55d26a74d8c36c6a961ca5 -> trunk/f27232a2134150cb5e55d26a74d8c36c6a961ca5 2025-08-14T21:43:08.7884448Z * [new tag] trunk/f33ce40bc062a281e1a1f57e8c1926d0a7d155cc -> trunk/f33ce40bc062a281e1a1f57e8c1926d0a7d155cc 2025-08-14T21:43:08.7885286Z * [new tag] trunk/f341077ce4710172da20cfad916ee37159bfe9fe -> trunk/f341077ce4710172da20cfad916ee37159bfe9fe 2025-08-14T21:43:08.7886106Z * [new tag] trunk/f3a4d742ece08de4cb0e59dcc62e0093a7d0b0c7 -> trunk/f3a4d742ece08de4cb0e59dcc62e0093a7d0b0c7 2025-08-14T21:43:08.7886928Z * [new tag] trunk/f3f159ff8c4bad2edec99c68a941c628e983d04c -> trunk/f3f159ff8c4bad2edec99c68a941c628e983d04c 2025-08-14T21:43:08.7887772Z * [new tag] trunk/f60454cce8b93e5bbf67f2f3c88c8ac01ed65457 -> trunk/f60454cce8b93e5bbf67f2f3c88c8ac01ed65457 2025-08-14T21:43:08.7888598Z * [new tag] trunk/f7b2f3314cf7aede67d5fa5c75e4243208484344 -> trunk/f7b2f3314cf7aede67d5fa5c75e4243208484344 2025-08-14T21:43:08.7889484Z * [new tag] trunk/f8f0414a5983ff481a2188e0c18594150430c8c5 -> trunk/f8f0414a5983ff481a2188e0c18594150430c8c5 2025-08-14T21:43:08.8197736Z * [new tag] trunk/f95b58c2844b3444cd8446fed8570729dc4216eb -> trunk/f95b58c2844b3444cd8446fed8570729dc4216eb 2025-08-14T21:43:08.8198620Z * [new tag] trunk/f990490a23815ea6ee27e487c70ba2cf513ba43d -> trunk/f990490a23815ea6ee27e487c70ba2cf513ba43d 2025-08-14T21:43:08.8199431Z * [new tag] trunk/fb887c3bb588cfe782615e67f6c26db636b8539b -> trunk/fb887c3bb588cfe782615e67f6c26db636b8539b 2025-08-14T21:43:08.8200268Z * [new tag] trunk/fc25c68f20f772290927a7031b998b92615259cf -> trunk/fc25c68f20f772290927a7031b998b92615259cf 2025-08-14T21:43:08.8201075Z * [new tag] trunk/fc80f6859e0ccf66513a40f04b9e735e759d4ddb -> trunk/fc80f6859e0ccf66513a40f04b9e735e759d4ddb 2025-08-14T21:43:08.8201887Z * [new tag] trunk/fdfd69bb05488d76123db9cc1cdd90ac4137bbfb -> trunk/fdfd69bb05488d76123db9cc1cdd90ac4137bbfb 2025-08-14T21:43:08.8202825Z * [new tag] trunk/fe3f5fe4ea2ff6f56406dc5d954636ebb08d0a08 -> trunk/fe3f5fe4ea2ff6f56406dc5d954636ebb08d0a08 2025-08-14T21:43:08.8203646Z * [new tag] trunk/fea7e9dd37c02c334b130f6624af6163fde6b2ab -> trunk/fea7e9dd37c02c334b130f6624af6163fde6b2ab 2025-08-14T21:43:08.8204470Z * [new tag] trunk/ff0d56d03592aa03f3ced8359241d21df1783393 -> trunk/ff0d56d03592aa03f3ced8359241d21df1783393 2025-08-14T21:43:08.8205068Z * [new tag] v0.1.1 -> v0.1.1 2025-08-14T21:43:08.8205546Z * [new tag] v0.1.10 -> v0.1.10 2025-08-14T21:43:08.8205915Z * [new tag] v0.1.11 -> v0.1.11 2025-08-14T21:43:08.8206257Z * [new tag] v0.1.12 -> v0.1.12 2025-08-14T21:43:08.8206615Z * [new tag] v0.1.2 -> v0.1.2 2025-08-14T21:43:08.8206954Z * [new tag] v0.1.3 -> v0.1.3 2025-08-14T21:43:08.8207300Z * [new tag] v0.1.4 -> v0.1.4 2025-08-14T21:43:08.8207648Z * [new tag] v0.1.5 -> v0.1.5 2025-08-14T21:43:08.8208023Z * [new tag] v0.1.6 -> v0.1.6 2025-08-14T21:43:08.8208362Z * [new tag] v0.1.7 -> v0.1.7 2025-08-14T21:43:08.8208746Z * [new tag] v0.1.8 -> v0.1.8 2025-08-14T21:43:08.8209084Z * [new tag] v0.1.9 -> v0.1.9 2025-08-14T21:43:08.8209420Z * [new tag] v0.2.0 -> v0.2.0 2025-08-14T21:43:08.8209763Z * [new tag] v0.3.0 -> v0.3.0 2025-08-14T21:43:08.8210103Z * [new tag] v0.3.1 -> v0.3.1 2025-08-14T21:43:08.8210430Z * [new tag] v0.4.0 -> v0.4.0 2025-08-14T21:43:08.8210774Z * [new tag] v0.4.1 -> v0.4.1 2025-08-14T21:43:08.8211112Z * [new tag] v1.0.0 -> v1.0.0 2025-08-14T21:43:08.8211464Z * [new tag] v1.0.0a0 -> v1.0.0a0 2025-08-14T21:43:08.8211825Z * [new tag] v1.0.1 -> v1.0.1 2025-08-14T21:43:08.8212164Z * [new tag] v1.0rc0 -> v1.0rc0 2025-08-14T21:43:08.8212511Z * [new tag] v1.0rc1 -> v1.0rc1 2025-08-14T21:43:08.8212852Z * [new tag] v1.1.0 -> v1.1.0 2025-08-14T21:43:08.8213204Z * [new tag] v1.1.0a0 -> v1.1.0a0 2025-08-14T21:43:08.8213544Z * [new tag] v1.10.0 -> v1.10.0 2025-08-14T21:43:08.8213952Z * [new tag] v1.10.0-rc1 -> v1.10.0-rc1 2025-08-14T21:43:08.8214364Z * [new tag] v1.10.0-rc2 -> v1.10.0-rc2 2025-08-14T21:43:08.8214719Z * [new tag] v1.10.0-rc3 -> v1.10.0-rc3 2025-08-14T21:43:08.8215194Z * [new tag] v1.10.1 -> v1.10.1 2025-08-14T21:43:08.8215545Z * [new tag] v1.10.1-rc1 -> v1.10.1-rc1 2025-08-14T21:43:08.8215907Z * [new tag] v1.10.2 -> v1.10.2 2025-08-14T21:43:08.8216261Z * [new tag] v1.10.2-rc1 -> v1.10.2-rc1 2025-08-14T21:43:08.8216636Z * [new tag] v1.11.0 -> v1.11.0 2025-08-14T21:43:08.8217000Z * [new tag] v1.11.0-rc1 -> v1.11.0-rc1 2025-08-14T21:43:08.8217363Z * [new tag] v1.11.0-rc2 -> v1.11.0-rc2 2025-08-14T21:43:08.8217727Z * [new tag] v1.11.0-rc3 -> v1.11.0-rc3 2025-08-14T21:43:08.8218087Z * [new tag] v1.11.0-rc4 -> v1.11.0-rc4 2025-08-14T21:43:08.8218454Z * [new tag] v1.11.0-rc5 -> v1.11.0-rc5 2025-08-14T21:43:08.8218813Z * [new tag] v1.11.0-rc6 -> v1.11.0-rc6 2025-08-14T21:43:08.8219181Z * [new tag] v1.11.0-rc7 -> v1.11.0-rc7 2025-08-14T21:43:08.8219588Z * [new tag] v1.12.0 -> v1.12.0 2025-08-14T21:43:08.8219986Z * [new tag] v1.12.0-rc1 -> v1.12.0-rc1 2025-08-14T21:43:08.8220360Z * [new tag] v1.12.0-rc2 -> v1.12.0-rc2 2025-08-14T21:43:08.8568632Z * [new tag] v1.12.0-rc3 -> v1.12.0-rc3 2025-08-14T21:43:08.8569069Z * [new tag] v1.12.0-rc4 -> v1.12.0-rc4 2025-08-14T21:43:08.8569461Z * [new tag] v1.12.0-rc5 -> v1.12.0-rc5 2025-08-14T21:43:08.8569919Z * [new tag] v1.12.0-rc6 -> v1.12.0-rc6 2025-08-14T21:43:08.8570275Z * [new tag] v1.12.0-rc7 -> v1.12.0-rc7 2025-08-14T21:43:08.8570660Z * [new tag] v1.12.0-rc8 -> v1.12.0-rc8 2025-08-14T21:43:08.8571014Z * [new tag] v1.12.1 -> v1.12.1 2025-08-14T21:43:08.8571371Z * [new tag] v1.12.1-rc1 -> v1.12.1-rc1 2025-08-14T21:43:08.8571726Z * [new tag] v1.12.1-rc2 -> v1.12.1-rc2 2025-08-14T21:43:08.8572101Z * [new tag] v1.12.1-rc3 -> v1.12.1-rc3 2025-08-14T21:43:08.8572474Z * [new tag] v1.12.1-rc4 -> v1.12.1-rc4 2025-08-14T21:43:08.8572825Z * [new tag] v1.12.1-rc5 -> v1.12.1-rc5 2025-08-14T21:43:08.8573211Z * [new tag] v1.13.0 -> v1.13.0 2025-08-14T21:43:08.8573566Z * [new tag] v1.13.0-rc1 -> v1.13.0-rc1 2025-08-14T21:43:08.8573915Z * [new tag] v1.13.0-rc2 -> v1.13.0-rc2 2025-08-14T21:43:08.8574278Z * [new tag] v1.13.0-rc3 -> v1.13.0-rc3 2025-08-14T21:43:08.8574629Z * [new tag] v1.13.0-rc4 -> v1.13.0-rc4 2025-08-14T21:43:08.8574990Z * [new tag] v1.13.0-rc5 -> v1.13.0-rc5 2025-08-14T21:43:08.8575345Z * [new tag] v1.13.0-rc6 -> v1.13.0-rc6 2025-08-14T21:43:08.8575700Z * [new tag] v1.13.1 -> v1.13.1 2025-08-14T21:43:08.8576056Z * [new tag] v1.13.1-rc1 -> v1.13.1-rc1 2025-08-14T21:43:08.8576405Z * [new tag] v1.2.0 -> v1.2.0 2025-08-14T21:43:08.8576756Z * [new tag] v1.2.0a0 -> v1.2.0a0 2025-08-14T21:43:08.8577096Z * [new tag] v1.3.0 -> v1.3.0 2025-08-14T21:43:08.8577453Z * [new tag] v1.3.0a0 -> v1.3.0a0 2025-08-14T21:43:08.8577998Z * [new tag] v1.3.1 -> v1.3.1 2025-08-14T21:43:08.8578348Z * [new tag] v1.4.0 -> v1.4.0 2025-08-14T21:43:08.8578701Z * [new tag] v1.4.0a0 -> v1.4.0a0 2025-08-14T21:43:08.8579039Z * [new tag] v1.4.1 -> v1.4.1 2025-08-14T21:43:08.8579395Z * [new tag] v1.5.0 -> v1.5.0 2025-08-14T21:43:08.8579750Z * [new tag] v1.5.0-rc1 -> v1.5.0-rc1 2025-08-14T21:43:08.8580120Z * [new tag] v1.5.0-rc2 -> v1.5.0-rc2 2025-08-14T21:43:08.8580535Z * [new tag] v1.5.0-rc3 -> v1.5.0-rc3 2025-08-14T21:43:08.8580897Z * [new tag] v1.5.0-rc4 -> v1.5.0-rc4 2025-08-14T21:43:08.8581249Z * [new tag] v1.5.0-rc5 -> v1.5.0-rc5 2025-08-14T21:43:08.8581606Z * [new tag] v1.5.1 -> v1.5.1 2025-08-14T21:43:08.8581965Z * [new tag] v1.5.1-rc1 -> v1.5.1-rc1 2025-08-14T21:43:08.8582305Z * [new tag] v1.6.0 -> v1.6.0 2025-08-14T21:43:08.8582654Z * [new tag] v1.6.0-rc1 -> v1.6.0-rc1 2025-08-14T21:43:08.8582999Z * [new tag] v1.6.0-rc2 -> v1.6.0-rc2 2025-08-14T21:43:08.8583479Z * [new tag] v1.6.0-rc3 -> v1.6.0-rc3 2025-08-14T21:43:08.8583833Z * [new tag] v1.6.0-rc4 -> v1.6.0-rc4 2025-08-14T21:43:08.8584187Z * [new tag] v1.6.0-rc5 -> v1.6.0-rc5 2025-08-14T21:43:08.8584542Z * [new tag] v1.6.0-rc6 -> v1.6.0-rc6 2025-08-14T21:43:08.8584891Z * [new tag] v1.6.0-rc7 -> v1.6.0-rc7 2025-08-14T21:43:08.8585247Z * [new tag] v1.7.0 -> v1.7.0 2025-08-14T21:43:08.8585595Z * [new tag] v1.7.0-rc1 -> v1.7.0-rc1 2025-08-14T21:43:08.8585956Z * [new tag] v1.7.0-rc2 -> v1.7.0-rc2 2025-08-14T21:43:08.8586307Z * [new tag] v1.7.0-rc3 -> v1.7.0-rc3 2025-08-14T21:43:08.8586667Z * [new tag] v1.7.0-rc4 -> v1.7.0-rc4 2025-08-14T21:43:08.8587019Z * [new tag] v1.7.1 -> v1.7.1 2025-08-14T21:43:08.8587361Z * [new tag] v1.7.1-rc1 -> v1.7.1-rc1 2025-08-14T21:43:08.8587714Z * [new tag] v1.7.1-rc2 -> v1.7.1-rc2 2025-08-14T21:43:08.8588058Z * [new tag] v1.7.1-rc3 -> v1.7.1-rc3 2025-08-14T21:43:08.8588403Z * [new tag] v1.8.0 -> v1.8.0 2025-08-14T21:43:08.8588744Z * [new tag] v1.8.0-rc1 -> v1.8.0-rc1 2025-08-14T21:43:08.8589104Z * [new tag] v1.8.0-rc2 -> v1.8.0-rc2 2025-08-14T21:43:08.8589458Z * [new tag] v1.8.0-rc3 -> v1.8.0-rc3 2025-08-14T21:43:08.8589806Z * [new tag] v1.8.0-rc4 -> v1.8.0-rc4 2025-08-14T21:43:08.8933684Z * [new tag] v1.8.0-rc5 -> v1.8.0-rc5 2025-08-14T21:43:08.8934093Z * [new tag] v1.8.1 -> v1.8.1 2025-08-14T21:43:08.8934464Z * [new tag] v1.8.1-rc1 -> v1.8.1-rc1 2025-08-14T21:43:08.8934823Z * [new tag] v1.8.1-rc2 -> v1.8.1-rc2 2025-08-14T21:43:08.8935171Z * [new tag] v1.8.1-rc3 -> v1.8.1-rc3 2025-08-14T21:43:08.8935521Z * [new tag] v1.8.2 -> v1.8.2 2025-08-14T21:43:08.8935865Z * [new tag] v1.8.2-rc1 -> v1.8.2-rc1 2025-08-14T21:43:08.8936418Z * [new tag] v1.9.0 -> v1.9.0 2025-08-14T21:43:08.8936779Z * [new tag] v1.9.0-rc1 -> v1.9.0-rc1 2025-08-14T21:43:08.8937127Z * [new tag] v1.9.0-rc2 -> v1.9.0-rc2 2025-08-14T21:43:08.8937482Z * [new tag] v1.9.0-rc3 -> v1.9.0-rc3 2025-08-14T21:43:08.8937829Z * [new tag] v1.9.0-rc4 -> v1.9.0-rc4 2025-08-14T21:43:08.8938186Z * [new tag] v1.9.1 -> v1.9.1 2025-08-14T21:43:08.8938529Z * [new tag] v1.9.1-rc1 -> v1.9.1-rc1 2025-08-14T21:43:08.8938882Z * [new tag] v1.9.1-rc2 -> v1.9.1-rc2 2025-08-14T21:43:08.8939236Z * [new tag] v2.0.0 -> v2.0.0 2025-08-14T21:43:08.8939575Z * [new tag] v2.0.0-rc1 -> v2.0.0-rc1 2025-08-14T21:43:08.8939936Z * [new tag] v2.0.0-rc2 -> v2.0.0-rc2 2025-08-14T21:43:08.8940282Z * [new tag] v2.0.0-rc3 -> v2.0.0-rc3 2025-08-14T21:43:08.8940631Z * [new tag] v2.0.0-rc4 -> v2.0.0-rc4 2025-08-14T21:43:08.8940990Z * [new tag] v2.0.0-rc5 -> v2.0.0-rc5 2025-08-14T21:43:08.8941335Z * [new tag] v2.0.0-rc6 -> v2.0.0-rc6 2025-08-14T21:43:08.8941818Z * [new tag] v2.0.1 -> v2.0.1 2025-08-14T21:43:08.8942157Z * [new tag] v2.0.1-rc1 -> v2.0.1-rc1 2025-08-14T21:43:08.8942509Z * [new tag] v2.0.1-rc2 -> v2.0.1-rc2 2025-08-14T21:43:08.8942860Z * [new tag] v2.0.1-rc3 -> v2.0.1-rc3 2025-08-14T21:43:08.8943215Z * [new tag] v2.0.1-rc4 -> v2.0.1-rc4 2025-08-14T21:43:08.8943569Z * [new tag] v2.1.0 -> v2.1.0 2025-08-14T21:43:08.8943917Z * [new tag] v2.1.0-rc1 -> v2.1.0-rc1 2025-08-14T21:43:08.8944269Z * [new tag] v2.1.0-rc2 -> v2.1.0-rc2 2025-08-14T21:43:08.8944610Z * [new tag] v2.1.0-rc3 -> v2.1.0-rc3 2025-08-14T21:43:08.8944959Z * [new tag] v2.1.0-rc4 -> v2.1.0-rc4 2025-08-14T21:43:08.8945305Z * [new tag] v2.1.0-rc5 -> v2.1.0-rc5 2025-08-14T21:43:08.8945664Z * [new tag] v2.1.0-rc6 -> v2.1.0-rc6 2025-08-14T21:43:08.8946009Z * [new tag] v2.1.1 -> v2.1.1 2025-08-14T21:43:08.8946375Z * [new tag] v2.1.1-rc1 -> v2.1.1-rc1 2025-08-14T21:43:08.8946723Z * [new tag] v2.1.1-rc2 -> v2.1.1-rc2 2025-08-14T21:43:08.8947065Z * [new tag] v2.1.1-rc3 -> v2.1.1-rc3 2025-08-14T21:43:08.8947426Z * [new tag] v2.1.1-rc4 -> v2.1.1-rc4 2025-08-14T21:43:08.8947788Z * [new tag] v2.1.1-rc5 -> v2.1.1-rc5 2025-08-14T21:43:08.8948142Z * [new tag] v2.1.1-rc6 -> v2.1.1-rc6 2025-08-14T21:43:08.8948492Z * [new tag] v2.1.2 -> v2.1.2 2025-08-14T21:43:08.8948836Z * [new tag] v2.1.2-rc1 -> v2.1.2-rc1 2025-08-14T21:43:08.8949191Z * [new tag] v2.1.2-rc2 -> v2.1.2-rc2 2025-08-14T21:43:08.8949545Z * [new tag] v2.1.2-rc3 -> v2.1.2-rc3 2025-08-14T21:43:08.8949888Z * [new tag] v2.2.0 -> v2.2.0 2025-08-14T21:43:08.8950236Z * [new tag] v2.2.0-rc1 -> v2.2.0-rc1 2025-08-14T21:43:08.8950582Z * [new tag] v2.2.0-rc2 -> v2.2.0-rc2 2025-08-14T21:43:08.8951042Z * [new tag] v2.2.0-rc3 -> v2.2.0-rc3 2025-08-14T21:43:08.8951404Z * [new tag] v2.2.0-rc4 -> v2.2.0-rc4 2025-08-14T21:43:08.8951762Z * [new tag] v2.2.0-rc5 -> v2.2.0-rc5 2025-08-14T21:43:08.8952123Z * [new tag] v2.2.0-rc6 -> v2.2.0-rc6 2025-08-14T21:43:08.8952471Z * [new tag] v2.2.0-rc7 -> v2.2.0-rc7 2025-08-14T21:43:08.8952838Z * [new tag] v2.2.0-rc8 -> v2.2.0-rc8 2025-08-14T21:43:08.8953180Z * [new tag] v2.2.1 -> v2.2.1 2025-08-14T21:43:08.8953530Z * [new tag] v2.2.1-rc1 -> v2.2.1-rc1 2025-08-14T21:43:08.8953883Z * [new tag] v2.2.1-rc2 -> v2.2.1-rc2 2025-08-14T21:43:08.8954234Z * [new tag] v2.2.1-rc3 -> v2.2.1-rc3 2025-08-14T21:43:08.9303634Z * [new tag] v2.2.2 -> v2.2.2 2025-08-14T21:43:08.9304051Z * [new tag] v2.2.2-rc1 -> v2.2.2-rc1 2025-08-14T21:43:08.9304427Z * [new tag] v2.2.2-rc2 -> v2.2.2-rc2 2025-08-14T21:43:08.9304822Z * [new tag] v2.2.2-rc3 -> v2.2.2-rc3 2025-08-14T21:43:08.9305170Z * [new tag] v2.3.0 -> v2.3.0 2025-08-14T21:43:08.9305719Z * [new tag] v2.3.0-rc1 -> v2.3.0-rc1 2025-08-14T21:43:08.9306110Z * [new tag] v2.3.0-rc10 -> v2.3.0-rc10 2025-08-14T21:43:08.9306504Z * [new tag] v2.3.0-rc11 -> v2.3.0-rc11 2025-08-14T21:43:08.9306911Z * [new tag] v2.3.0-rc12 -> v2.3.0-rc12 2025-08-14T21:43:08.9307281Z * [new tag] v2.3.0-rc2 -> v2.3.0-rc2 2025-08-14T21:43:08.9307668Z * [new tag] v2.3.0-rc3 -> v2.3.0-rc3 2025-08-14T21:43:08.9308013Z * [new tag] v2.3.0-rc4 -> v2.3.0-rc4 2025-08-14T21:43:08.9308368Z * [new tag] v2.3.0-rc5 -> v2.3.0-rc5 2025-08-14T21:43:08.9308719Z * [new tag] v2.3.0-rc6 -> v2.3.0-rc6 2025-08-14T21:43:08.9309070Z * [new tag] v2.3.0-rc7 -> v2.3.0-rc7 2025-08-14T21:43:08.9309420Z * [new tag] v2.3.0-rc8 -> v2.3.0-rc8 2025-08-14T21:43:08.9309771Z * [new tag] v2.3.0-rc9 -> v2.3.0-rc9 2025-08-14T21:43:08.9310125Z * [new tag] v2.3.1 -> v2.3.1 2025-08-14T21:43:08.9310467Z * [new tag] v2.3.1-rc1 -> v2.3.1-rc1 2025-08-14T21:43:08.9310823Z * [new tag] v2.3.1-rc2 -> v2.3.1-rc2 2025-08-14T21:43:08.9311178Z * [new tag] v2.3.1-rc3 -> v2.3.1-rc3 2025-08-14T21:43:08.9311528Z * [new tag] v2.4.0 -> v2.4.0 2025-08-14T21:43:08.9311878Z * [new tag] v2.4.0-rc1 -> v2.4.0-rc1 2025-08-14T21:43:08.9312277Z * [new tag] v2.4.0-rc2 -> v2.4.0-rc2 2025-08-14T21:43:08.9312678Z * [new tag] v2.4.0-rc3 -> v2.4.0-rc3 2025-08-14T21:43:08.9313035Z * [new tag] v2.4.0-rc4 -> v2.4.0-rc4 2025-08-14T21:43:08.9313384Z * [new tag] v2.4.0-rc5 -> v2.4.0-rc5 2025-08-14T21:43:08.9313742Z * [new tag] v2.4.0-rc6 -> v2.4.0-rc6 2025-08-14T21:43:08.9314087Z * [new tag] v2.4.0-rc7 -> v2.4.0-rc7 2025-08-14T21:43:08.9314441Z * [new tag] v2.4.0-rc8 -> v2.4.0-rc8 2025-08-14T21:43:08.9314789Z * [new tag] v2.4.0-rc9 -> v2.4.0-rc9 2025-08-14T21:43:08.9315259Z * [new tag] v2.4.1 -> v2.4.1 2025-08-14T21:43:08.9315608Z * [new tag] v2.4.1-rc1 -> v2.4.1-rc1 2025-08-14T21:43:08.9315955Z * [new tag] v2.4.1-rc2 -> v2.4.1-rc2 2025-08-14T21:43:08.9316309Z * [new tag] v2.4.1-rc3 -> v2.4.1-rc3 2025-08-14T21:43:08.9316725Z * [new tag] v2.5.0 -> v2.5.0 2025-08-14T21:43:08.9317090Z * [new tag] v2.5.0-rc1 -> v2.5.0-rc1 2025-08-14T21:43:08.9317450Z * [new tag] v2.5.0-rc10 -> v2.5.0-rc10 2025-08-14T21:43:08.9317819Z * [new tag] v2.5.0-rc2 -> v2.5.0-rc2 2025-08-14T21:43:08.9318227Z * [new tag] v2.5.0-rc3 -> v2.5.0-rc3 2025-08-14T21:43:08.9318621Z * [new tag] v2.5.0-rc4 -> v2.5.0-rc4 2025-08-14T21:43:08.9318981Z * [new tag] v2.5.0-rc5 -> v2.5.0-rc5 2025-08-14T21:43:08.9319330Z * [new tag] v2.5.0-rc6 -> v2.5.0-rc6 2025-08-14T21:43:08.9319687Z * [new tag] v2.5.0-rc7 -> v2.5.0-rc7 2025-08-14T21:43:08.9320048Z * [new tag] v2.5.0-rc8 -> v2.5.0-rc8 2025-08-14T21:43:08.9320395Z * [new tag] v2.5.0-rc9 -> v2.5.0-rc9 2025-08-14T21:43:08.9320861Z * [new tag] v2.5.1 -> v2.5.1 2025-08-14T21:43:08.9321201Z * [new tag] v2.5.1-rc1 -> v2.5.1-rc1 2025-08-14T21:43:08.9321553Z * [new tag] v2.6.0 -> v2.6.0 2025-08-14T21:43:08.9321896Z * [new tag] v2.6.0-rc1 -> v2.6.0-rc1 2025-08-14T21:43:08.9322260Z * [new tag] v2.6.0-rc2 -> v2.6.0-rc2 2025-08-14T21:43:08.9322628Z * [new tag] v2.6.0-rc3 -> v2.6.0-rc3 2025-08-14T21:43:08.9322973Z * [new tag] v2.6.0-rc4 -> v2.6.0-rc4 2025-08-14T21:43:08.9323322Z * [new tag] v2.6.0-rc5 -> v2.6.0-rc5 2025-08-14T21:43:08.9323671Z * [new tag] v2.6.0-rc6 -> v2.6.0-rc6 2025-08-14T21:43:08.9324084Z * [new tag] v2.6.0-rc7 -> v2.6.0-rc7 2025-08-14T21:43:08.9324490Z * [new tag] v2.6.0-rc8 -> v2.6.0-rc8 2025-08-14T21:43:08.9324849Z * [new tag] v2.6.0-rc9 -> v2.6.0-rc9 2025-08-14T21:43:09.3494968Z * [new tag] v2.7.0 -> v2.7.0 2025-08-14T21:43:09.3495385Z * [new tag] v2.7.0-rc1 -> v2.7.0-rc1 2025-08-14T21:43:09.3495764Z * [new tag] v2.7.0-rc10 -> v2.7.0-rc10 2025-08-14T21:43:09.3496156Z * [new tag] v2.7.0-rc2 -> v2.7.0-rc2 2025-08-14T21:43:09.3496511Z * [new tag] v2.7.0-rc3 -> v2.7.0-rc3 2025-08-14T21:43:09.3496870Z * [new tag] v2.7.0-rc4 -> v2.7.0-rc4 2025-08-14T21:43:09.3497235Z * [new tag] v2.7.0-rc5 -> v2.7.0-rc5 2025-08-14T21:43:09.3497606Z * [new tag] v2.7.0-rc6 -> v2.7.0-rc6 2025-08-14T21:43:09.3497960Z * [new tag] v2.7.0-rc7 -> v2.7.0-rc7 2025-08-14T21:43:09.3498317Z * [new tag] v2.7.0-rc8 -> v2.7.0-rc8 2025-08-14T21:43:09.3498681Z * [new tag] v2.7.0-rc9 -> v2.7.0-rc9 2025-08-14T21:43:09.3499026Z * [new tag] v2.7.1 -> v2.7.1 2025-08-14T21:43:09.3499378Z * [new tag] v2.7.1-rc1 -> v2.7.1-rc1 2025-08-14T21:43:09.3499726Z * [new tag] v2.7.1-rc2 -> v2.7.1-rc2 2025-08-14T21:43:09.3500319Z * [new tag] v2.7.1-rc3 -> v2.7.1-rc3 2025-08-14T21:43:09.3500724Z * [new tag] v2.7.1-rc4 -> v2.7.1-rc4 2025-08-14T21:43:09.3501127Z * [new tag] v2.7.1-rc5 -> v2.7.1-rc5 2025-08-14T21:43:09.3501479Z * [new tag] v2.8.0 -> v2.8.0 2025-08-14T21:43:09.3501832Z * [new tag] v2.8.0-rc1 -> v2.8.0-rc1 2025-08-14T21:43:09.3502195Z * [new tag] v2.8.0-rc2 -> v2.8.0-rc2 2025-08-14T21:43:09.3502542Z * [new tag] v2.8.0-rc3 -> v2.8.0-rc3 2025-08-14T21:43:09.3502896Z * [new tag] v2.8.0-rc4 -> v2.8.0-rc4 2025-08-14T21:43:09.3503247Z * [new tag] v2.8.0-rc5 -> v2.8.0-rc5 2025-08-14T21:43:09.3503602Z * [new tag] v2.8.0-rc6 -> v2.8.0-rc6 2025-08-14T21:43:09.3503957Z * [new tag] v2.8.0-rc7 -> v2.8.0-rc7 2025-08-14T21:43:09.3504303Z * [new tag] v2.8.0-rc8 -> v2.8.0-rc8 2025-08-14T21:43:09.3504674Z * [new tag] whc_flight_1 -> whc_flight_1 2025-08-14T21:43:09.3505036Z * [new tag] whc_flight_2 -> whc_flight_2 2025-08-14T21:43:09.3505499Z * [new tag] whc_flight_4 -> whc_flight_4 2025-08-14T21:43:09.3698079Z [command]"C:\Program Files\Git\cmd\git.exe" rev-parse --verify --quiet 1fc683cf17c8c673044538d10266c00f92987be2^{object} 2025-08-14T21:43:09.3903539Z 1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T21:43:09.3938775Z ##[endgroup] 2025-08-14T21:43:09.3939209Z ##[group]Determining the checkout info 2025-08-14T21:43:09.3940771Z ##[endgroup] 2025-08-14T21:43:09.3951865Z [command]"C:\Program Files\Git\cmd\git.exe" sparse-checkout disable 2025-08-14T21:43:09.4247465Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all extensions.worktreeConfig 2025-08-14T21:43:09.4491215Z ##[group]Checking out the ref 2025-08-14T21:43:09.4506147Z [command]"C:\Program Files\Git\cmd\git.exe" checkout --progress --force 1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T21:43:10.5662472Z Updating files: 11% (2159/19474) 2025-08-14T21:43:10.6287825Z Updating files: 12% (2337/19474) 2025-08-14T21:43:10.6851481Z Updating files: 13% (2532/19474) 2025-08-14T21:43:10.7489248Z Updating files: 14% (2727/19474) 2025-08-14T21:43:10.8007364Z Updating files: 15% (2922/19474) 2025-08-14T21:43:10.8576558Z Updating files: 16% (3116/19474) 2025-08-14T21:43:10.9210183Z Updating files: 17% (3311/19474) 2025-08-14T21:43:10.9803775Z Updating files: 18% (3506/19474) 2025-08-14T21:43:11.3149522Z Updating files: 19% (3701/19474) 2025-08-14T21:43:11.4297708Z Updating files: 20% (3895/19474) 2025-08-14T21:43:11.4914905Z Updating files: 21% (4090/19474) 2025-08-14T21:43:11.5007460Z Updating files: 22% (4285/19474) 2025-08-14T21:43:11.6592960Z Updating files: 22% (4311/19474) 2025-08-14T21:43:11.7348030Z Updating files: 23% (4480/19474) 2025-08-14T21:43:11.8074729Z Updating files: 24% (4674/19474) 2025-08-14T21:43:11.9536879Z Updating files: 25% (4869/19474) 2025-08-14T21:43:12.0660189Z Updating files: 26% (5064/19474) 2025-08-14T21:43:12.1610280Z Updating files: 27% (5258/19474) 2025-08-14T21:43:12.1978889Z Updating files: 28% (5453/19474) 2025-08-14T21:43:12.2324475Z Updating files: 29% (5648/19474) 2025-08-14T21:43:12.2985105Z Updating files: 30% (5843/19474) 2025-08-14T21:43:12.4432533Z Updating files: 31% (6037/19474) 2025-08-14T21:43:12.5050910Z Updating files: 32% (6232/19474) 2025-08-14T21:43:12.5625066Z Updating files: 32% (6343/19474) 2025-08-14T21:43:12.7364659Z Updating files: 33% (6427/19474) 2025-08-14T21:43:12.9321443Z Updating files: 34% (6622/19474) 2025-08-14T21:43:13.0742524Z Updating files: 35% (6816/19474) 2025-08-14T21:43:13.1629201Z Updating files: 36% (7011/19474) 2025-08-14T21:43:13.2374452Z Updating files: 37% (7206/19474) 2025-08-14T21:43:13.3604618Z Updating files: 38% (7401/19474) 2025-08-14T21:43:13.5129120Z Updating files: 39% (7595/19474) 2025-08-14T21:43:13.5178213Z Updating files: 39% (7773/19474) 2025-08-14T21:43:13.5936110Z Updating files: 40% (7790/19474) 2025-08-14T21:43:13.7038524Z Updating files: 41% (7985/19474) 2025-08-14T21:43:13.7762347Z Updating files: 42% (8180/19474) 2025-08-14T21:43:13.9027317Z Updating files: 43% (8374/19474) 2025-08-14T21:43:13.9934444Z Updating files: 44% (8569/19474) 2025-08-14T21:43:14.0851951Z Updating files: 45% (8764/19474) 2025-08-14T21:43:14.2712884Z Updating files: 46% (8959/19474) 2025-08-14T21:43:14.3521040Z Updating files: 47% (9153/19474) 2025-08-14T21:43:14.4482714Z Updating files: 48% (9348/19474) 2025-08-14T21:43:14.5182705Z Updating files: 49% (9543/19474) 2025-08-14T21:43:14.5382868Z Updating files: 49% (9690/19474) 2025-08-14T21:43:14.6695550Z Updating files: 50% (9737/19474) 2025-08-14T21:43:14.8621503Z Updating files: 51% (9932/19474) 2025-08-14T21:43:15.0031940Z Updating files: 52% (10127/19474) 2025-08-14T21:43:15.2327050Z Updating files: 53% (10322/19474) 2025-08-14T21:43:15.3730393Z Updating files: 54% (10516/19474) 2025-08-14T21:43:15.4675576Z Updating files: 55% (10711/19474) 2025-08-14T21:43:15.5749445Z Updating files: 56% (10906/19474) 2025-08-14T21:43:15.6642575Z Updating files: 56% (10986/19474) 2025-08-14T21:43:15.7693488Z Updating files: 57% (11101/19474) 2025-08-14T21:43:15.8844220Z Updating files: 58% (11295/19474) 2025-08-14T21:43:16.0636124Z Updating files: 59% (11490/19474) 2025-08-14T21:43:16.1547339Z Updating files: 60% (11685/19474) 2025-08-14T21:43:16.2893763Z Updating files: 61% (11880/19474) 2025-08-14T21:43:16.3611041Z Updating files: 62% (12074/19474) 2025-08-14T21:43:16.5460740Z Updating files: 63% (12269/19474) 2025-08-14T21:43:16.5533434Z Updating files: 63% (12443/19474) 2025-08-14T21:43:16.6804214Z Updating files: 64% (12464/19474) 2025-08-14T21:43:16.7574597Z Updating files: 65% (12659/19474) 2025-08-14T21:43:16.8472035Z Updating files: 66% (12853/19474) 2025-08-14T21:43:16.9613088Z Updating files: 67% (13048/19474) 2025-08-14T21:43:17.0395911Z Updating files: 68% (13243/19474) 2025-08-14T21:43:17.1709345Z Updating files: 69% (13438/19474) 2025-08-14T21:43:17.3389280Z Updating files: 70% (13632/19474) 2025-08-14T21:43:17.4653282Z Updating files: 71% (13827/19474) 2025-08-14T21:43:17.5874899Z Updating files: 72% (14022/19474) 2025-08-14T21:43:17.6643369Z Updating files: 72% (14090/19474) 2025-08-14T21:43:17.8007986Z Updating files: 73% (14217/19474) 2025-08-14T21:43:18.0089775Z Updating files: 74% (14411/19474) 2025-08-14T21:43:18.3667683Z Updating files: 75% (14606/19474) 2025-08-14T21:43:18.5204855Z Updating files: 76% (14801/19474) 2025-08-14T21:43:18.5411001Z Updating files: 77% (14995/19474) 2025-08-14T21:43:18.6905865Z Updating files: 77% (15016/19474) 2025-08-14T21:43:18.8063744Z Updating files: 78% (15190/19474) 2025-08-14T21:43:19.0637216Z Updating files: 79% (15385/19474) 2025-08-14T21:43:19.2074634Z Updating files: 80% (15580/19474) 2025-08-14T21:43:19.4369278Z Updating files: 81% (15774/19474) 2025-08-14T21:43:19.5499828Z Updating files: 82% (15969/19474) 2025-08-14T21:43:19.6300280Z Updating files: 82% (16074/19474) 2025-08-14T21:43:19.7712944Z Updating files: 83% (16164/19474) 2025-08-14T21:43:19.9529475Z Updating files: 84% (16359/19474) 2025-08-14T21:43:20.0952118Z Updating files: 85% (16553/19474) 2025-08-14T21:43:20.3022157Z Updating files: 86% (16748/19474) 2025-08-14T21:43:20.4419790Z Updating files: 87% (16943/19474) 2025-08-14T21:43:20.5487198Z Updating files: 88% (17138/19474) 2025-08-14T21:43:20.6115039Z Updating files: 88% (17310/19474) 2025-08-14T21:43:20.7457021Z Updating files: 89% (17332/19474) 2025-08-14T21:43:20.8802070Z Updating files: 90% (17527/19474) 2025-08-14T21:43:21.0972649Z Updating files: 91% (17722/19474) 2025-08-14T21:43:21.2812493Z Updating files: 92% (17917/19474) 2025-08-14T21:43:21.5643675Z Updating files: 93% (18111/19474) 2025-08-14T21:43:22.5640121Z Updating files: 93% (18255/19474) 2025-08-14T21:43:22.5744192Z Updating files: 94% (18306/19474) 2025-08-14T21:43:22.8739939Z Updating files: 94% (18308/19474) 2025-08-14T21:43:23.0588565Z Updating files: 95% (18501/19474) 2025-08-14T21:43:23.3795597Z Updating files: 96% (18696/19474) 2025-08-14T21:43:23.5589126Z Updating files: 97% (18890/19474) 2025-08-14T21:43:23.6271616Z Updating files: 98% (19085/19474) 2025-08-14T21:43:23.8923766Z Updating files: 98% (19086/19474) 2025-08-14T21:43:24.0999349Z Updating files: 99% (19280/19474) 2025-08-14T21:43:24.0999689Z Updating files: 100% (19474/19474) 2025-08-14T21:43:24.0999972Z Updating files: 100% (19474/19474), done. 2025-08-14T21:43:24.1505213Z Note: switching to '1fc683cf17c8c673044538d10266c00f92987be2'. 2025-08-14T21:43:24.1505528Z 2025-08-14T21:43:24.1505764Z You are in 'detached HEAD' state. You can look around, make experimental 2025-08-14T21:43:24.1506277Z changes and commit them, and you can discard any commits you make in this 2025-08-14T21:43:24.1506771Z state without impacting any branches by switching back to a branch. 2025-08-14T21:43:24.1507071Z 2025-08-14T21:43:24.1507254Z If you want to create a new branch to retain commits you create, you may 2025-08-14T21:43:24.1509131Z do so (now or later) by using -c with the switch command. Example: 2025-08-14T21:43:24.1509611Z 2025-08-14T21:43:24.1509714Z git switch -c 2025-08-14T21:43:24.1509900Z 2025-08-14T21:43:24.1510015Z Or undo this operation with: 2025-08-14T21:43:24.1510189Z 2025-08-14T21:43:24.1510271Z git switch - 2025-08-14T21:43:24.1510390Z 2025-08-14T21:43:24.1510604Z Turn off this advice by setting config variable advice.detachedHead to false 2025-08-14T21:43:24.1510923Z 2025-08-14T21:43:24.1511310Z HEAD is now at 1fc683cf17c [Inductor] Allow indexing a flexible layout for extract_input_node_reduction_ranges (#160645) 2025-08-14T21:43:24.1693870Z ##[endgroup] 2025-08-14T21:43:24.1694277Z ##[group]Setting up auth for fetching submodules 2025-08-14T21:43:24.1705421Z [command]"C:\Program Files\Git\cmd\git.exe" config --global http.https://github.com/.extraheader "AUTHORIZATION: basic ***" 2025-08-14T21:43:24.1965401Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --unset-all url.https://github.com/.insteadOf 2025-08-14T21:43:24.2211380Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add url.https://github.com/.insteadOf git@github.com: 2025-08-14T21:43:24.2459030Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-08-14T21:43:24.2705662Z ##[endgroup] 2025-08-14T21:43:24.2706053Z ##[group]Fetching submodules 2025-08-14T21:43:24.2716452Z [command]"C:\Program Files\Git\cmd\git.exe" submodule sync --recursive 2025-08-14T21:43:24.6449823Z [command]"C:\Program Files\Git\cmd\git.exe" -c protocol.version=2 submodule update --init --force --recursive 2025-08-14T21:43:25.6228879Z Submodule 'android/libs/fbjni' (https://github.com/facebookincubator/fbjni.git) registered for path 'android/libs/fbjni' 2025-08-14T21:43:25.6229841Z Submodule 'third_party/NNPACK_deps/FP16' (https://github.com/Maratyszcza/FP16.git) registered for path 'third_party/FP16' 2025-08-14T21:43:25.6230753Z Submodule 'third_party/NNPACK_deps/FXdiv' (https://github.com/Maratyszcza/FXdiv.git) registered for path 'third_party/FXdiv' 2025-08-14T21:43:25.6231680Z Submodule 'third_party/NNPACK' (https://github.com/Maratyszcza/NNPACK.git) registered for path 'third_party/NNPACK' 2025-08-14T21:43:25.6232479Z Submodule 'third_party/NVTX' (https://github.com/NVIDIA/NVTX.git) registered for path 'third_party/NVTX' 2025-08-14T21:43:25.6233574Z Submodule 'third_party/VulkanMemoryAllocator' (https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git) registered for path 'third_party/VulkanMemoryAllocator' 2025-08-14T21:43:25.6235603Z Submodule 'third_party/XNNPACK' (https://github.com/google/XNNPACK.git) registered for path 'third_party/XNNPACK' 2025-08-14T21:43:25.6236433Z Submodule 'third_party/aiter' (https://github.com/ROCm/aiter.git) registered for path 'third_party/aiter' 2025-08-14T21:43:25.6237267Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/benchmark' 2025-08-14T21:43:25.6238260Z Submodule 'third_party/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/composable_kernel' 2025-08-14T21:43:25.6239255Z Submodule 'third_party/cpp-httplib' (https://github.com/yhirose/cpp-httplib.git) registered for path 'third_party/cpp-httplib' 2025-08-14T21:43:25.6240155Z Submodule 'third_party/cpuinfo' (https://github.com/pytorch/cpuinfo.git) registered for path 'third_party/cpuinfo' 2025-08-14T21:43:25.6241081Z Submodule 'third_party/cudnn_frontend' (https://github.com/NVIDIA/cudnn-frontend.git) registered for path 'third_party/cudnn_frontend' 2025-08-14T21:43:25.6241999Z Submodule 'third_party/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/cutlass' 2025-08-14T21:43:25.6242805Z Submodule 'third_party/fbgemm' (https://github.com/pytorch/fbgemm) registered for path 'third_party/fbgemm' 2025-08-14T21:43:25.6243720Z Submodule 'third_party/flash-attention' (https://github.com/Dao-AILab/flash-attention.git) registered for path 'third_party/flash-attention' 2025-08-14T21:43:25.6244964Z Submodule 'third_party/flatbuffers' (https://github.com/google/flatbuffers.git) registered for path 'third_party/flatbuffers' 2025-08-14T21:43:25.6245806Z Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/fmt' 2025-08-14T21:43:25.6246692Z Submodule 'third_party/gemmlowp/gemmlowp' (https://github.com/google/gemmlowp.git) registered for path 'third_party/gemmlowp/gemmlowp' 2025-08-14T21:43:25.6247588Z Submodule 'third_party/gloo' (https://github.com/pytorch/gloo) registered for path 'third_party/gloo' 2025-08-14T21:43:25.6248416Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/googletest' 2025-08-14T21:43:25.6249259Z Submodule 'third_party/ideep' (https://github.com/intel/ideep) registered for path 'third_party/ideep' 2025-08-14T21:43:25.6250036Z Submodule 'third_party/ittapi' (https://github.com/intel/ittapi.git) registered for path 'third_party/ittapi' 2025-08-14T21:43:25.6250835Z Submodule 'third_party/kineto' (https://github.com/pytorch/kineto) registered for path 'third_party/kineto' 2025-08-14T21:43:25.6251682Z Submodule 'third_party/kleidiai' (https://github.com/ARM-software/kleidiai.git) registered for path 'third_party/kleidiai' 2025-08-14T21:43:25.6252596Z Submodule 'third_party/mimalloc' (https://github.com/microsoft/mimalloc.git) registered for path 'third_party/mimalloc' 2025-08-14T21:43:25.6253557Z Submodule 'third_party/nlohmann' (https://github.com/nlohmann/json.git) registered for path 'third_party/nlohmann' 2025-08-14T21:43:25.6254349Z Submodule 'third_party/onnx' (https://github.com/onnx/onnx.git) registered for path 'third_party/onnx' 2025-08-14T21:43:25.6255303Z Submodule 'third_party/opentelemetry-cpp' (https://github.com/open-telemetry/opentelemetry-cpp.git) registered for path 'third_party/opentelemetry-cpp' 2025-08-14T21:43:25.6256345Z Submodule 'third_party/pocketfft' (https://github.com/mreineck/pocketfft) registered for path 'third_party/pocketfft' 2025-08-14T21:43:25.6257256Z Submodule 'third_party/protobuf' (https://github.com/protocolbuffers/protobuf.git) registered for path 'third_party/protobuf' 2025-08-14T21:43:25.6258206Z Submodule 'third_party/NNPACK_deps/psimd' (https://github.com/Maratyszcza/psimd.git) registered for path 'third_party/psimd' 2025-08-14T21:43:25.6259233Z Submodule 'third_party/NNPACK_deps/pthreadpool' (https://github.com/Maratyszcza/pthreadpool.git) registered for path 'third_party/pthreadpool' 2025-08-14T21:43:25.6303399Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/pybind11' 2025-08-14T21:43:25.6304374Z Submodule 'third_party/python-peachpy' (https://github.com/malfet/PeachPy.git) registered for path 'third_party/python-peachpy' 2025-08-14T21:43:25.6305254Z Submodule 'third_party/sleef' (https://github.com/shibatch/sleef) registered for path 'third_party/sleef' 2025-08-14T21:43:25.6306108Z Submodule 'third_party/tensorpipe' (https://github.com/pytorch/tensorpipe.git) registered for path 'third_party/tensorpipe' 2025-08-14T21:43:26.5889842Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/android/libs/fbjni'... 2025-08-14T21:43:26.6067635Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/FXdiv'... 2025-08-14T21:43:26.6412886Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/FP16'... 2025-08-14T21:43:27.3105252Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flatbuffers'... 2025-08-14T21:43:35.1426809Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/NNPACK'... 2025-08-14T21:43:35.1427918Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/NVTX'... 2025-08-14T21:43:35.1428937Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/benchmark'... 2025-08-14T21:43:35.1430000Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cpp-httplib'... 2025-08-14T21:43:35.1433031Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/gloo'... 2025-08-14T21:43:35.1434311Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention'... 2025-08-14T21:43:35.1435469Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/gemmlowp/gemmlowp'... 2025-08-14T21:43:35.1436561Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cpuinfo'... 2025-08-14T21:43:35.1437546Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ideep'... 2025-08-14T21:43:35.1438559Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ittapi'... 2025-08-14T21:43:35.1439550Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kleidiai'... 2025-08-14T21:43:35.1440534Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fmt'... 2025-08-14T21:43:35.1441632Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/VulkanMemoryAllocator'... 2025-08-14T21:43:35.1443028Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/googletest'... 2025-08-14T21:43:35.1444142Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cudnn_frontend'... 2025-08-14T21:43:35.7720401Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto'... 2025-08-14T21:43:53.8861983Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/mimalloc'... 2025-08-14T21:43:53.8862595Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/aiter'... 2025-08-14T21:43:53.8863124Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/psimd'... 2025-08-14T21:43:53.8863696Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pocketfft'... 2025-08-14T21:43:53.8864265Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pthreadpool'... 2025-08-14T21:43:53.8864812Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm'... 2025-08-14T21:43:53.8865375Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/python-peachpy'... 2025-08-14T21:43:53.8865958Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/XNNPACK'... 2025-08-14T21:43:53.8867473Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pybind11'... 2025-08-14T21:43:53.8868015Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/sleef'... 2025-08-14T21:43:53.8868554Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe'... 2025-08-14T21:43:53.8869158Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/composable_kernel'... 2025-08-14T21:43:53.8869955Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cutlass'... 2025-08-14T21:43:53.8870499Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/onnx'... 2025-08-14T21:43:53.8871081Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/nlohmann'... 2025-08-14T21:43:53.8871658Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp'... 2025-08-14T21:43:53.8873273Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf'... 2025-08-14T21:43:54.0280788Z Submodule path 'android/libs/fbjni': checked out '7e1e1fe3858c63c251c637ae41a20de425dde96f' 2025-08-14T21:43:54.1665331Z Submodule path 'third_party/FP16': checked out '4dfe081cf6bcd15db339cf2680b9281b8451eeb3' 2025-08-14T21:43:54.2488246Z Submodule path 'third_party/FXdiv': checked out 'b408327ac2a15ec3e43352421954f5b1967701d1' 2025-08-14T21:43:54.5184355Z Submodule path 'third_party/NNPACK': checked out 'c07e3a0400713d546e0dea2d5466dd22ea389c73' 2025-08-14T21:43:55.0236163Z Submodule path 'third_party/NVTX': checked out '2942f167cc30c5e3a44a2aecd5b0d9c07ff61a07' 2025-08-14T21:43:55.3696677Z Submodule path 'third_party/VulkanMemoryAllocator': checked out '1d8f600fd424278486eade7ed3e877c99f0846b1' 2025-08-14T21:44:05.3815966Z Submodule path 'third_party/XNNPACK': checked out '51a0103656eff6fc9bfd39a4597923c4b542c883' 2025-08-14T21:44:06.6867237Z Submodule path 'third_party/aiter': checked out '01aae101b9e5e94d6c16a9514c9fb8df99c93150' 2025-08-14T21:44:06.6981200Z Submodule '3rdparty/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/aiter/3rdparty/composable_kernel' 2025-08-14T21:44:10.0945352Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/aiter/3rdparty/composable_kernel'... 2025-08-14T21:44:14.1260597Z Submodule path 'third_party/aiter/3rdparty/composable_kernel': checked out 'cffe8fa2a442ac8e80dd236a1a5d24fe3d7e0cbf' 2025-08-14T21:44:14.4076648Z Submodule path 'third_party/benchmark': checked out '299e5928955cc62af9968370293b916f5130916f' 2025-08-14T21:44:19.0604648Z Submodule path 'third_party/composable_kernel': checked out '7fe50dc3da2069d6645d9deb8c017a876472a977' 2025-08-14T21:44:19.2716358Z Submodule path 'third_party/cpp-httplib': checked out '3af7f2c16147f3fbc6e4d717032daf505dc1652c' 2025-08-14T21:44:19.9666908Z Submodule path 'third_party/cpuinfo': checked out '5e3d2445e6a84d9599bee2bf78edbb4d80865e1d' 2025-08-14T21:44:20.2444918Z Submodule path 'third_party/cudnn_frontend': checked out 'f937055efc6d414d11f4c6577e3977fe74f35fb6' 2025-08-14T21:44:28.2754355Z Submodule path 'third_party/cutlass': checked out 'e51efbfe18fe4f4cbb66ab814c55bf4aa0185491' 2025-08-14T21:44:30.1290406Z Submodule path 'third_party/fbgemm': checked out '21c7d30c526c0f1ad873ecc632dca6cfa8a69067' 2025-08-14T21:44:30.2194148Z Submodule 'external/asmjit' (https://github.com/asmjit/asmjit.git) registered for path 'third_party/fbgemm/external/asmjit' 2025-08-14T21:44:30.2195282Z Submodule 'external/composable_kernel' (https://github.com/jwfromm/composable_kernel.git) registered for path 'third_party/fbgemm/external/composable_kernel' 2025-08-14T21:44:30.2196338Z Submodule 'external/cpuinfo' (https://github.com/pytorch/cpuinfo) registered for path 'third_party/fbgemm/external/cpuinfo' 2025-08-14T21:44:30.2197249Z Submodule 'external/cutlass' (https://github.com/jwfromm/cutlass) registered for path 'third_party/fbgemm/external/cutlass' 2025-08-14T21:44:30.2198310Z Submodule 'external/googletest' (https://github.com/google/googletest) registered for path 'third_party/fbgemm/external/googletest' 2025-08-14T21:44:30.2199400Z Submodule 'external/hipify_torch' (https://github.com/ROCmSoftwarePlatform/hipify_torch.git) registered for path 'third_party/fbgemm/external/hipify_torch' 2025-08-14T21:44:30.2200434Z Submodule 'external/json' (https://github.com/nlohmann/json.git) registered for path 'third_party/fbgemm/external/json' 2025-08-14T21:44:39.1032255Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/asmjit'... 2025-08-14T21:44:39.1033010Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/hipify_torch'... 2025-08-14T21:44:39.1033707Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/cpuinfo'... 2025-08-14T21:44:39.1034434Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/composable_kernel'... 2025-08-14T21:44:39.1035157Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/googletest'... 2025-08-14T21:44:39.1035834Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/cutlass'... 2025-08-14T21:44:39.1036486Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/json'... 2025-08-14T21:44:39.3853317Z Submodule path 'third_party/fbgemm/external/asmjit': checked out 'a3199e8857792cd10b7589ff5d58343d2c9008ea' 2025-08-14T21:44:43.3747687Z Submodule path 'third_party/fbgemm/external/composable_kernel': checked out 'b1281b8b08d973a7064f864f47eeb30f3e2596e9' 2025-08-14T21:44:43.8951594Z Submodule path 'third_party/fbgemm/external/cpuinfo': checked out '6543fec09b2f04ac4a666882998b534afc9c1349' 2025-08-14T21:44:48.4214761Z Submodule path 'third_party/fbgemm/external/cutlass': checked out 'b40777404c174b9694a870bff5c13ce6b7f656ad' 2025-08-14T21:44:48.7020595Z Submodule path 'third_party/fbgemm/external/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' 2025-08-14T21:44:48.7871222Z Submodule path 'third_party/fbgemm/external/hipify_torch': checked out 'a4337c69fe0e2552a7b7b0669178926beeed828c' 2025-08-14T21:44:49.7640832Z Submodule path 'third_party/fbgemm/external/json': checked out '9cca280a4d0ccf0c08f47a99aa71d1b0e52f8d03' 2025-08-14T21:44:50.4176423Z Submodule path 'third_party/flash-attention': checked out '979702c87a8713a8e0a5e9fee122b90d2ef13be5' 2025-08-14T21:44:50.4273709Z Submodule 'csrc/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/flash-attention/csrc/composable_kernel' 2025-08-14T21:44:50.4274794Z Submodule 'csrc/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/flash-attention/csrc/cutlass' 2025-08-14T21:44:54.5883572Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention/csrc/composable_kernel'... 2025-08-14T21:44:54.5884392Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention/csrc/cutlass'... 2025-08-14T21:44:58.2421906Z Submodule path 'third_party/flash-attention/csrc/composable_kernel': checked out '888317e698e9803c62bd38568abc9e05d7709f33' 2025-08-14T21:45:02.7823203Z Submodule path 'third_party/flash-attention/csrc/cutlass': checked out 'c506e16788cb08416a4a57e11a9067beeee29420' 2025-08-14T21:45:04.6489155Z Submodule path 'third_party/flatbuffers': checked out 'a2cd1ea3b6d3fee220106b5fed3f7ce8da9eb757' 2025-08-14T21:45:04.9977839Z Submodule path 'third_party/fmt': checked out '40626af88bd7df9a5fb80be7b25ac85b122d6c21' 2025-08-14T21:45:05.2050617Z Submodule path 'third_party/gemmlowp/gemmlowp': checked out '3fb5c176c17c765a3492cd2f0321b0dab712f350' 2025-08-14T21:45:05.4193469Z Submodule path 'third_party/gloo': checked out 'c7b7b022c124d9643957d9bd55f57ac59fce8fa2' 2025-08-14T21:45:05.6841120Z Submodule path 'third_party/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' 2025-08-14T21:45:05.7766320Z Submodule path 'third_party/ideep': checked out '719d8e6cd7f7a0e01b155657526d693acf97c2b3' 2025-08-14T21:45:05.7876566Z Submodule 'mkl-dnn' (https://github.com/intel/mkl-dnn.git) registered for path 'third_party/ideep/mkl-dnn' 2025-08-14T21:45:17.4088926Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ideep/mkl-dnn'... 2025-08-14T21:45:22.0267717Z Submodule path 'third_party/ideep/mkl-dnn': checked out '8d263e693366ef8db40acc569cc7d8edf644556d' 2025-08-14T21:45:22.2594188Z Submodule path 'third_party/ittapi': checked out 'dec1d23ca65ab069d225dfe40dea14f455170959' 2025-08-14T21:45:22.6526059Z Submodule path 'third_party/kineto': checked out '5e7501833f1021ce6f618572d3baf657b6319658' 2025-08-14T21:45:22.6685778Z Submodule 'libkineto/third_party/dynolog' (https://github.com/facebookincubator/dynolog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-14T21:45:22.6686965Z Submodule 'libkineto/third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/fmt' 2025-08-14T21:45:22.6688127Z Submodule 'libkineto/third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/googletest' 2025-08-14T21:45:24.5469383Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog'... 2025-08-14T21:45:24.5470206Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/fmt'... 2025-08-14T21:45:24.5471035Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/googletest'... 2025-08-14T21:45:24.8911320Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog': checked out '7d04a0053a845370ae06ce317a22a48e9edcc74e' 2025-08-14T21:45:24.9155405Z 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-14T21:45:24.9156671Z 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-14T21:45:24.9158407Z 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-14T21:45:24.9159556Z 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-14T21:45:24.9160732Z 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-14T21:45:24.9161985Z 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-14T21:45:24.9163256Z 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-14T21:45:24.9164406Z 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-14T21:45:24.9971695Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM'... 2025-08-14T21:45:32.9116929Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags'... 2025-08-14T21:45:32.9117964Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/cpr'... 2025-08-14T21:45:32.9119016Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/pfs'... 2025-08-14T21:45:32.9119936Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/glog'... 2025-08-14T21:45:32.9120907Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/googletest'... 2025-08-14T21:45:32.9121844Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/fmt'... 2025-08-14T21:45:32.9122750Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/json'... 2025-08-14T21:45:33.8594238Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM': checked out 'ffde4e54bc7249a6039a5e6b45b395141e1217f9' 2025-08-14T21:45:34.0002677Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr': checked out '871ed52d350214a034f6ef8a3b8f51c5ce1bd400' 2025-08-14T21:45:34.1999546Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt': checked out 'cd4af11efc9c622896a3e4cb599fa28668ca3d05' 2025-08-14T21:45:34.2972412Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags': checked out 'e171aa2d15ed9eb17054558e0b3a6a413bb01067' 2025-08-14T21:45:34.3083483Z Submodule 'doc' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-14T21:45:34.7069975Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc'... 2025-08-14T21:45:34.7646661Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc': checked out '8411df715cf522606e3b1aca386ddfc0b63d34b4' 2025-08-14T21:45:34.8920807Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog': checked out 'b33e3bad4c46c8a6345525fd822af355e5ef9446' 2025-08-14T21:45:35.1140385Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest': checked out '58d77fa8070e8cec2dc1ed015d66b454c8d78850' 2025-08-14T21:45:35.7767010Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json': checked out '4f8fba14066156b73f1189a2b8bd568bde5284c5' 2025-08-14T21:45:35.8736738Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs': checked out 'f68a2fa8ea36c783bdd760371411fcb495aa3150' 2025-08-14T21:45:36.0271864Z Submodule path 'third_party/kineto/libkineto/third_party/fmt': checked out '0041a40c1350ba702d475b9c4ad62da77caea164' 2025-08-14T21:45:36.2387318Z Submodule path 'third_party/kineto/libkineto/third_party/googletest': checked out '7aca84427f224eeed3144123d5230d5871e93347' 2025-08-14T21:45:36.4945226Z Submodule path 'third_party/kleidiai': checked out 'cca02c2f69dd18e1f12647c1c0bdc8cf90e680c7' 2025-08-14T21:45:36.6867581Z Submodule path 'third_party/mimalloc': checked out 'fbd8b99c2b828428947d70fdc046bb55609be93e' 2025-08-14T21:45:37.2440891Z Submodule path 'third_party/nlohmann': checked out '55f93686c01528224f448c19128836e7df245f72' 2025-08-14T21:45:40.8427608Z Submodule path 'third_party/onnx': checked out 'e709452ef2bbc1d113faf678c24e6d3467696e83' 2025-08-14T21:45:40.8575912Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/onnx/third_party/pybind11' 2025-08-14T21:45:42.0140160Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/onnx/third_party/pybind11'... 2025-08-14T21:45:42.1984527Z Submodule path 'third_party/onnx/third_party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-08-14T21:45:42.6970851Z Submodule path 'third_party/opentelemetry-cpp': checked out 'a799f4aed9c94b765dcdaabaeab7d5e7e2310878' 2025-08-14T21:45:42.7203956Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark) registered for path 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-14T21:45:42.7205253Z Submodule 'third_party/googletest' (https://github.com/google/googletest) registered for path 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-14T21:45:42.7206472Z Submodule 'third_party/ms-gsl' (https://github.com/microsoft/GSL) registered for path 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-14T21:45:42.7207689Z Submodule 'third_party/nlohmann-json' (https://github.com/nlohmann/json) registered for path 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-14T21:45:42.7209162Z 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-14T21:45:42.7210976Z 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-14T21:45:42.7212464Z Submodule 'third_party/prometheus-cpp' (https://github.com/jupp0r/prometheus-cpp) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-14T21:45:42.7213683Z Submodule 'tools/vcpkg' (https://github.com/Microsoft/vcpkg) registered for path 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-14T21:45:42.7661290Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/benchmark'... 2025-08-14T21:45:55.5769110Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentracing-cpp'... 2025-08-14T21:45:55.5770060Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentelemetry-proto'... 2025-08-14T21:45:55.5770972Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp'... 2025-08-14T21:45:55.5771832Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/ms-gsl'... 2025-08-14T21:45:55.5773280Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/googletest'... 2025-08-14T21:45:55.5774531Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/nlohmann-json'... 2025-08-14T21:45:55.5775559Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/tools/vcpkg'... 2025-08-14T21:45:55.7065743Z Submodule path 'third_party/opentelemetry-cpp/third_party/benchmark': checked out 'd572f4777349d43653b21d6c2fc63020ab326db2' 2025-08-14T21:45:55.8933276Z Submodule path 'third_party/opentelemetry-cpp/third_party/googletest': checked out 'b796f7d44681514f58a683a3a71ff17c94edb0c1' 2025-08-14T21:45:55.9831089Z Submodule path 'third_party/opentelemetry-cpp/third_party/ms-gsl': checked out '6f4529395c5b7c2d661812257cd6780c67e54afa' 2025-08-14T21:45:56.4857760Z Submodule path 'third_party/opentelemetry-cpp/third_party/nlohmann-json': checked out 'bc889afb4c5bf1c0d8ee29ef35eaaf4c8bef8a5d' 2025-08-14T21:45:56.5928219Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto': checked out '4ca4f0335c63cda7ab31ea7ed70d6553aee14dce' 2025-08-14T21:45:56.8257742Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp': checked out '06b57f48ded1fa3bdd3d4346f6ef29e40e08eaf5' 2025-08-14T21:45:56.9562286Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp': checked out 'c9ffcdda9086ffd9e1283ea7a0276d831f3c8a8d' 2025-08-14T21:45:56.9688155Z Submodule 'civetweb' (https://github.com/civetweb/civetweb.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-14T21:45:56.9690508Z Submodule 'googletest' (https://github.com/google/googletest.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-14T21:45:59.2719342Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb'... 2025-08-14T21:45:59.2721427Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest'... 2025-08-14T21:46:00.2614467Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb': checked out 'eefb26f82b233268fc98577d265352720d477ba4' 2025-08-14T21:46:00.4666094Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' 2025-08-14T21:46:06.6176584Z Submodule path 'third_party/opentelemetry-cpp/tools/vcpkg': checked out '8eb57355a4ffb410a2e94c07b4dca2dffbee8e50' 2025-08-14T21:46:06.6972169Z Submodule path 'third_party/pocketfft': checked out '0fa0ef591e38c2758e3184c6c23e497b9f732ffa' 2025-08-14T21:46:08.4782602Z Submodule path 'third_party/protobuf': checked out 'd1eca4e4b421cd2997495c4b4e65cea6be4e9b8a' 2025-08-14T21:46:08.4910131Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/protobuf/third_party/benchmark' 2025-08-14T21:46:08.4911273Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/protobuf/third_party/googletest' 2025-08-14T21:46:09.9330423Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf/third_party/benchmark'... 2025-08-14T21:46:09.9331244Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf/third_party/googletest'... 2025-08-14T21:46:10.0327389Z Submodule path 'third_party/protobuf/third_party/benchmark': checked out '5b7683f49e1e9223cf9927b24f6fd3d6bd82e3f8' 2025-08-14T21:46:10.2941385Z Submodule path 'third_party/protobuf/third_party/googletest': checked out '5ec7f0c4a113e2f18ac2c6cc7df51ad6afc24081' 2025-08-14T21:46:10.3735595Z Submodule path 'third_party/psimd': checked out '072586a71b55b7f8c584153d223e95687148a900' 2025-08-14T21:46:10.4586496Z Submodule path 'third_party/pthreadpool': checked out '4fe0e1e183925bf8cfa6aae24237e724a96479b8' 2025-08-14T21:46:10.6412113Z Submodule path 'third_party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-08-14T21:46:10.7766896Z Submodule path 'third_party/python-peachpy': checked out 'f45429b087dd7d5bc78bb40dc7cf06425c252d67' 2025-08-14T21:46:10.9652271Z Submodule path 'third_party/sleef': checked out '5a1d179df9cf652951b59010a2d2075372d67f68' 2025-08-14T21:46:11.3230203Z Submodule path 'third_party/tensorpipe': checked out 'dacda0567d9f23d4bc503e1c4f84aa65f33ac38a' 2025-08-14T21:46:11.3394472Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/tensorpipe/third_party/googletest' 2025-08-14T21:46:11.3395573Z Submodule 'third_party/libnop' (https://github.com/google/libnop.git) registered for path 'third_party/tensorpipe/third_party/libnop' 2025-08-14T21:46:11.3396586Z Submodule 'third_party/libuv' (https://github.com/libuv/libuv.git) registered for path 'third_party/tensorpipe/third_party/libuv' 2025-08-14T21:46:11.3397590Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/tensorpipe/third_party/pybind11' 2025-08-14T21:46:13.5858115Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/googletest'... 2025-08-14T21:46:13.5858953Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libnop'... 2025-08-14T21:46:13.5859722Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11'... 2025-08-14T21:46:13.5860464Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libuv'... 2025-08-14T21:46:13.7755601Z Submodule path 'third_party/tensorpipe/third_party/googletest': checked out 'aee0f9d9b5b87796ee8a0ab26b7587ec30e8858e' 2025-08-14T21:46:14.0479010Z Submodule path 'third_party/tensorpipe/third_party/libnop': checked out '910b55815be16109f04f4180e9adee14fb4ce281' 2025-08-14T21:46:14.4241029Z Submodule path 'third_party/tensorpipe/third_party/libuv': checked out '5152db2cbfeb5582e9c27c5ea1dba2cd9e10759b' 2025-08-14T21:46:14.5674598Z Submodule path 'third_party/tensorpipe/third_party/pybind11': checked out 'a23996fce38ff6ccfbcdc09f1e63f2c4be5ea2ef' 2025-08-14T21:46:14.5796013Z Submodule 'tools/clang' (https://github.com/wjakob/clang-cindex-python3) registered for path 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-14T21:46:14.9145532Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11/tools/clang'... 2025-08-14T21:46:14.9755447Z Submodule path 'third_party/tensorpipe/third_party/pybind11/tools/clang': checked out '6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5' 2025-08-14T21:46:15.0000804Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local gc.auto 0" 2025-08-14T21:46:15.3993810Z Entering 'android/libs/fbjni' 2025-08-14T21:46:15.4405323Z Entering 'third_party/FP16' 2025-08-14T21:46:15.4792599Z Entering 'third_party/FXdiv' 2025-08-14T21:46:15.5211720Z Entering 'third_party/NNPACK' 2025-08-14T21:46:15.5594712Z Entering 'third_party/NVTX' 2025-08-14T21:46:15.5983385Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-14T21:46:15.6368108Z Entering 'third_party/XNNPACK' 2025-08-14T21:46:15.6761291Z Entering 'third_party/aiter' 2025-08-14T21:46:15.7125882Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-14T21:46:15.7537861Z Entering 'third_party/benchmark' 2025-08-14T21:46:15.7920825Z Entering 'third_party/composable_kernel' 2025-08-14T21:46:15.8312015Z Entering 'third_party/cpp-httplib' 2025-08-14T21:46:15.8690408Z Entering 'third_party/cpuinfo' 2025-08-14T21:46:15.9070795Z Entering 'third_party/cudnn_frontend' 2025-08-14T21:46:15.9452277Z Entering 'third_party/cutlass' 2025-08-14T21:46:15.9836289Z Entering 'third_party/fbgemm' 2025-08-14T21:46:16.0202719Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-14T21:46:16.0592301Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-14T21:46:16.0986173Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-14T21:46:16.1362684Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-14T21:46:16.1755866Z Entering 'third_party/fbgemm/external/googletest' 2025-08-14T21:46:16.2158311Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-14T21:46:16.2549504Z Entering 'third_party/fbgemm/external/json' 2025-08-14T21:46:16.2958626Z Entering 'third_party/flash-attention' 2025-08-14T21:46:16.3320156Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-14T21:46:16.3713904Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-14T21:46:16.4119308Z Entering 'third_party/flatbuffers' 2025-08-14T21:46:16.4514364Z Entering 'third_party/fmt' 2025-08-14T21:46:16.4898005Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-14T21:46:16.5281101Z Entering 'third_party/gloo' 2025-08-14T21:46:16.5661075Z Entering 'third_party/googletest' 2025-08-14T21:46:16.6040978Z Entering 'third_party/ideep' 2025-08-14T21:46:16.6418251Z Entering 'third_party/ideep/mkl-dnn' 2025-08-14T21:46:16.6819825Z Entering 'third_party/ittapi' 2025-08-14T21:46:16.7198154Z Entering 'third_party/kineto' 2025-08-14T21:46:16.7559847Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-14T21:46:16.7934946Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-14T21:46:16.8334701Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-14T21:46:16.8720559Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-14T21:46:16.9117306Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-14T21:46:16.9482293Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-14T21:46:16.9888346Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-14T21:46:17.0284658Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-14T21:46:17.0663804Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-14T21:46:17.1041667Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-14T21:46:17.1439417Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-14T21:46:17.1816095Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-14T21:46:17.2212120Z Entering 'third_party/kleidiai' 2025-08-14T21:46:17.2616705Z Entering 'third_party/mimalloc' 2025-08-14T21:46:17.3013304Z Entering 'third_party/nlohmann' 2025-08-14T21:46:17.3387772Z Entering 'third_party/onnx' 2025-08-14T21:46:17.3805608Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-14T21:46:17.4201061Z Entering 'third_party/opentelemetry-cpp' 2025-08-14T21:46:17.4568572Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-14T21:46:17.4962668Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-14T21:46:17.5335975Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-14T21:46:17.5750505Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-14T21:46:17.6139334Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-14T21:46:17.6504271Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-14T21:46:17.6876784Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-14T21:46:17.7245043Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-14T21:46:17.7638535Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-14T21:46:17.8070476Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-14T21:46:17.8485463Z Entering 'third_party/pocketfft' 2025-08-14T21:46:17.8889258Z Entering 'third_party/protobuf' 2025-08-14T21:46:17.9251853Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-14T21:46:17.9679617Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-14T21:46:18.0075371Z Entering 'third_party/psimd' 2025-08-14T21:46:18.0440651Z Entering 'third_party/pthreadpool' 2025-08-14T21:46:18.0823713Z Entering 'third_party/pybind11' 2025-08-14T21:46:18.1204843Z Entering 'third_party/python-peachpy' 2025-08-14T21:46:18.1574535Z Entering 'third_party/sleef' 2025-08-14T21:46:18.1947262Z Entering 'third_party/tensorpipe' 2025-08-14T21:46:18.2315884Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-14T21:46:18.2724183Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-14T21:46:18.3125643Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-14T21:46:18.3510728Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-14T21:46:18.3865427Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-14T21:46:18.4359178Z ##[endgroup] 2025-08-14T21:46:18.4359581Z ##[group]Persisting credentials for submodules 2025-08-14T21:46:18.4382046Z [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-14T21:46:18.8227338Z Entering 'android/libs/fbjni' 2025-08-14T21:46:18.8796438Z Entering 'third_party/FP16' 2025-08-14T21:46:18.9364454Z Entering 'third_party/FXdiv' 2025-08-14T21:46:18.9941124Z Entering 'third_party/NNPACK' 2025-08-14T21:46:19.0503550Z Entering 'third_party/NVTX' 2025-08-14T21:46:19.1075273Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-14T21:46:19.1633687Z Entering 'third_party/XNNPACK' 2025-08-14T21:46:19.2212470Z Entering 'third_party/aiter' 2025-08-14T21:46:19.2762710Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-14T21:46:19.3355305Z Entering 'third_party/benchmark' 2025-08-14T21:46:19.3923858Z Entering 'third_party/composable_kernel' 2025-08-14T21:46:19.4495340Z Entering 'third_party/cpp-httplib' 2025-08-14T21:46:19.5057014Z Entering 'third_party/cpuinfo' 2025-08-14T21:46:19.5652470Z Entering 'third_party/cudnn_frontend' 2025-08-14T21:46:19.6240459Z Entering 'third_party/cutlass' 2025-08-14T21:46:19.6847078Z Entering 'third_party/fbgemm' 2025-08-14T21:46:19.7427578Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-14T21:46:19.8014149Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-14T21:46:19.8626811Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-14T21:46:19.9227739Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-14T21:46:19.9838026Z Entering 'third_party/fbgemm/external/googletest' 2025-08-14T21:46:20.0445589Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-14T21:46:20.1072594Z Entering 'third_party/fbgemm/external/json' 2025-08-14T21:46:20.1730307Z Entering 'third_party/flash-attention' 2025-08-14T21:46:20.2313997Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-14T21:46:20.2958634Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-14T21:46:20.3601406Z Entering 'third_party/flatbuffers' 2025-08-14T21:46:20.4209332Z Entering 'third_party/fmt' 2025-08-14T21:46:20.4808641Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-14T21:46:20.5439907Z Entering 'third_party/gloo' 2025-08-14T21:46:20.6046081Z Entering 'third_party/googletest' 2025-08-14T21:46:20.6646220Z Entering 'third_party/ideep' 2025-08-14T21:46:20.7251746Z Entering 'third_party/ideep/mkl-dnn' 2025-08-14T21:46:20.7890742Z Entering 'third_party/ittapi' 2025-08-14T21:46:20.8515351Z Entering 'third_party/kineto' 2025-08-14T21:46:20.9108840Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-14T21:46:20.9731692Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-14T21:46:21.0358190Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-14T21:46:21.0962999Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-14T21:46:21.1569905Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-14T21:46:21.2155836Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-14T21:46:21.2783067Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-14T21:46:21.3378219Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-14T21:46:21.4044241Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-14T21:46:21.4678745Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-14T21:46:21.5319360Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-14T21:46:21.5932659Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-14T21:46:21.6578808Z Entering 'third_party/kleidiai' 2025-08-14T21:46:21.7161750Z Entering 'third_party/mimalloc' 2025-08-14T21:46:21.7760622Z Entering 'third_party/nlohmann' 2025-08-14T21:46:21.8384037Z Entering 'third_party/onnx' 2025-08-14T21:46:21.8984912Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-14T21:46:21.9626834Z Entering 'third_party/opentelemetry-cpp' 2025-08-14T21:46:22.0249070Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-14T21:46:22.0874927Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-14T21:46:22.1526134Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-14T21:46:22.2129069Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-14T21:46:22.2715317Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-14T21:46:22.3318786Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-14T21:46:22.3984446Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-14T21:46:22.4621584Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-14T21:46:22.5242928Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-14T21:46:22.5882881Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-14T21:46:22.6570165Z Entering 'third_party/pocketfft' 2025-08-14T21:46:22.7195077Z Entering 'third_party/protobuf' 2025-08-14T21:46:22.7789045Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-14T21:46:22.8405483Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-14T21:46:22.9045264Z Entering 'third_party/psimd' 2025-08-14T21:46:22.9670618Z Entering 'third_party/pthreadpool' 2025-08-14T21:46:23.0287052Z Entering 'third_party/pybind11' 2025-08-14T21:46:23.0903577Z Entering 'third_party/python-peachpy' 2025-08-14T21:46:23.1535431Z Entering 'third_party/sleef' 2025-08-14T21:46:23.2145344Z Entering 'third_party/tensorpipe' 2025-08-14T21:46:23.2785672Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-14T21:46:23.3446970Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-14T21:46:23.4125775Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-14T21:46:23.4805331Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-14T21:46:23.5429336Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-14T21:46:23.6202662Z [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-14T21:46:24.0376799Z Entering 'android/libs/fbjni' 2025-08-14T21:46:24.0982929Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/android/libs/fbjni/config remote.origin.url 2025-08-14T21:46:24.1156919Z Entering 'third_party/FP16' 2025-08-14T21:46:24.1759010Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FP16/config remote.origin.url 2025-08-14T21:46:24.1914949Z Entering 'third_party/FXdiv' 2025-08-14T21:46:24.2513534Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FXdiv/config remote.origin.url 2025-08-14T21:46:24.2675195Z Entering 'third_party/NNPACK' 2025-08-14T21:46:24.3270472Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK/config remote.origin.url 2025-08-14T21:46:24.3429434Z Entering 'third_party/NVTX' 2025-08-14T21:46:24.4002442Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NVTX/config remote.origin.url 2025-08-14T21:46:24.4159202Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-14T21:46:24.4741446Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/VulkanMemoryAllocator/config remote.origin.url 2025-08-14T21:46:24.4899559Z Entering 'third_party/XNNPACK' 2025-08-14T21:46:24.5480706Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/XNNPACK/config remote.origin.url 2025-08-14T21:46:24.5645460Z Entering 'third_party/aiter' 2025-08-14T21:46:24.6270920Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/aiter/config remote.origin.url 2025-08-14T21:46:24.6406420Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-14T21:46:24.7009198Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/aiter/modules/3rdparty/composable_kernel/config remote.origin.url 2025-08-14T21:46:24.7186544Z Entering 'third_party/benchmark' 2025-08-14T21:46:24.7784907Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/benchmark/config remote.origin.url 2025-08-14T21:46:24.7930285Z Entering 'third_party/composable_kernel' 2025-08-14T21:46:24.8530343Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/composable_kernel/config remote.origin.url 2025-08-14T21:46:24.8700774Z Entering 'third_party/cpp-httplib' 2025-08-14T21:46:24.9271606Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cpp-httplib/config remote.origin.url 2025-08-14T21:46:24.9423818Z Entering 'third_party/cpuinfo' 2025-08-14T21:46:25.0007602Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cpuinfo/config remote.origin.url 2025-08-14T21:46:25.0159463Z Entering 'third_party/cudnn_frontend' 2025-08-14T21:46:25.0755983Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cudnn_frontend/config remote.origin.url 2025-08-14T21:46:25.0937574Z Entering 'third_party/cutlass' 2025-08-14T21:46:25.1547436Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cutlass/config remote.origin.url 2025-08-14T21:46:25.1710788Z Entering 'third_party/fbgemm' 2025-08-14T21:46:25.2333034Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/config remote.origin.url 2025-08-14T21:46:25.2473984Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-14T21:46:25.3077446Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/asmjit/config remote.origin.url 2025-08-14T21:46:25.3258444Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-14T21:46:25.3851844Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/composable_kernel/config remote.origin.url 2025-08-14T21:46:25.4024592Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-14T21:46:25.4670088Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cpuinfo/config remote.origin.url 2025-08-14T21:46:25.4827895Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-14T21:46:25.5480597Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cutlass/config remote.origin.url 2025-08-14T21:46:25.5655172Z Entering 'third_party/fbgemm/external/googletest' 2025-08-14T21:46:25.6317986Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/googletest/config remote.origin.url 2025-08-14T21:46:25.6485421Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-14T21:46:25.7101778Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/hipify_torch/config remote.origin.url 2025-08-14T21:46:25.7257833Z Entering 'third_party/fbgemm/external/json' 2025-08-14T21:46:25.7901508Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/json/config remote.origin.url 2025-08-14T21:46:25.8088184Z Entering 'third_party/flash-attention' 2025-08-14T21:46:25.8713171Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/config remote.origin.url 2025-08-14T21:46:25.8853011Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-14T21:46:25.9464191Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/composable_kernel/config remote.origin.url 2025-08-14T21:46:25.9634498Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-14T21:46:26.0240201Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/cutlass/config remote.origin.url 2025-08-14T21:46:26.0424805Z Entering 'third_party/flatbuffers' 2025-08-14T21:46:26.1020722Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flatbuffers/config remote.origin.url 2025-08-14T21:46:26.1180690Z Entering 'third_party/fmt' 2025-08-14T21:46:26.1771549Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fmt/config remote.origin.url 2025-08-14T21:46:26.1925487Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-14T21:46:26.2529211Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/gemmlowp/gemmlowp/config remote.origin.url 2025-08-14T21:46:26.2685922Z Entering 'third_party/gloo' 2025-08-14T21:46:26.3276081Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/gloo/config remote.origin.url 2025-08-14T21:46:26.3439480Z Entering 'third_party/googletest' 2025-08-14T21:46:26.4100325Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/googletest/config remote.origin.url 2025-08-14T21:46:26.4273462Z Entering 'third_party/ideep' 2025-08-14T21:46:26.4885485Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/config remote.origin.url 2025-08-14T21:46:26.5026301Z Entering 'third_party/ideep/mkl-dnn' 2025-08-14T21:46:26.5622926Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/modules/mkl-dnn/config remote.origin.url 2025-08-14T21:46:26.5810964Z Entering 'third_party/ittapi' 2025-08-14T21:46:26.6425821Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ittapi/config remote.origin.url 2025-08-14T21:46:26.6577679Z Entering 'third_party/kineto' 2025-08-14T21:46:26.7181627Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/config remote.origin.url 2025-08-14T21:46:26.7315942Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-14T21:46:26.7903082Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/config remote.origin.url 2025-08-14T21:46:26.8037687Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-14T21:46:26.8630912Z 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-14T21:46:26.8783014Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-14T21:46:26.9808972Z 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-14T21:46:26.9961474Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-14T21:46:27.0609356Z 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-14T21:46:27.0765516Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-14T21:46:27.1378816Z 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-14T21:46:27.1525132Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-14T21:46:27.2145036Z 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-14T21:46:27.2343187Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-14T21:46:27.2928828Z 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-14T21:46:27.3082701Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-14T21:46:27.3672287Z 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-14T21:46:27.3849433Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-14T21:46:27.4454736Z 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-14T21:46:27.4603184Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-14T21:46:27.5190172Z 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-14T21:46:27.5358874Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-14T21:46:27.5932457Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/fmt/config remote.origin.url 2025-08-14T21:46:27.6086428Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-14T21:46:27.6681575Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/googletest/config remote.origin.url 2025-08-14T21:46:27.6863909Z Entering 'third_party/kleidiai' 2025-08-14T21:46:27.7431376Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kleidiai/config remote.origin.url 2025-08-14T21:46:27.7578137Z Entering 'third_party/mimalloc' 2025-08-14T21:46:27.8139456Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/mimalloc/config remote.origin.url 2025-08-14T21:46:27.8285660Z Entering 'third_party/nlohmann' 2025-08-14T21:46:27.8835215Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/nlohmann/config remote.origin.url 2025-08-14T21:46:27.8977618Z Entering 'third_party/onnx' 2025-08-14T21:46:27.9540009Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/config remote.origin.url 2025-08-14T21:46:27.9695275Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-14T21:46:28.0257374Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/modules/third_party/pybind11/config remote.origin.url 2025-08-14T21:46:28.0419084Z Entering 'third_party/opentelemetry-cpp' 2025-08-14T21:46:28.0971912Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/config remote.origin.url 2025-08-14T21:46:28.1101659Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-14T21:46:28.1676060Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/benchmark/config remote.origin.url 2025-08-14T21:46:28.1835390Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-14T21:46:28.2404241Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/googletest/config remote.origin.url 2025-08-14T21:46:28.2545053Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-14T21:46:28.3107842Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/ms-gsl/config remote.origin.url 2025-08-14T21:46:28.3251223Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-14T21:46:28.3812344Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/nlohmann-json/config remote.origin.url 2025-08-14T21:46:28.3992896Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-14T21:46:28.4554680Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentelemetry-proto/config remote.origin.url 2025-08-14T21:46:28.4701237Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-14T21:46:28.5299521Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentracing-cpp/config remote.origin.url 2025-08-14T21:46:28.5442748Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-14T21:46:28.6046687Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/config remote.origin.url 2025-08-14T21:46:28.6180033Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-14T21:46:28.6763051Z 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-14T21:46:28.6906451Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-14T21:46:28.7506400Z 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-14T21:46:28.7674445Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-14T21:46:28.8248953Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/tools/vcpkg/config remote.origin.url 2025-08-14T21:46:28.8440483Z Entering 'third_party/pocketfft' 2025-08-14T21:46:28.9017794Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/pocketfft/config remote.origin.url 2025-08-14T21:46:28.9158783Z Entering 'third_party/protobuf' 2025-08-14T21:46:28.9865106Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/config remote.origin.url 2025-08-14T21:46:29.0000204Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-14T21:46:29.0582431Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/benchmark/config remote.origin.url 2025-08-14T21:46:29.0724088Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-14T21:46:29.1298959Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/googletest/config remote.origin.url 2025-08-14T21:46:29.1463004Z Entering 'third_party/psimd' 2025-08-14T21:46:29.2032224Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/psimd/config remote.origin.url 2025-08-14T21:46:29.2177979Z Entering 'third_party/pthreadpool' 2025-08-14T21:46:29.2748927Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/pthreadpool/config remote.origin.url 2025-08-14T21:46:29.2891211Z Entering 'third_party/pybind11' 2025-08-14T21:46:29.3523542Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/pybind11/config remote.origin.url 2025-08-14T21:46:29.3681956Z Entering 'third_party/python-peachpy' 2025-08-14T21:46:29.4236151Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/python-peachpy/config remote.origin.url 2025-08-14T21:46:29.4387652Z Entering 'third_party/sleef' 2025-08-14T21:46:29.4983959Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/sleef/config remote.origin.url 2025-08-14T21:46:29.5125620Z Entering 'third_party/tensorpipe' 2025-08-14T21:46:29.5679594Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/config remote.origin.url 2025-08-14T21:46:29.5809012Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-14T21:46:29.6371351Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/googletest/config remote.origin.url 2025-08-14T21:46:29.6516681Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-14T21:46:29.7079477Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libnop/config remote.origin.url 2025-08-14T21:46:29.7223234Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-14T21:46:29.7787276Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libuv/config remote.origin.url 2025-08-14T21:46:29.7935394Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-14T21:46:29.8524479Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/config remote.origin.url 2025-08-14T21:46:29.8654055Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-14T21:46:29.9223797Z 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-14T21:46:29.9875083Z [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-14T21:46:30.3517972Z Entering 'android/libs/fbjni' 2025-08-14T21:46:30.3912742Z Entering 'third_party/FP16' 2025-08-14T21:46:30.4297586Z Entering 'third_party/FXdiv' 2025-08-14T21:46:30.4682278Z Entering 'third_party/NNPACK' 2025-08-14T21:46:30.5070866Z Entering 'third_party/NVTX' 2025-08-14T21:46:30.5457617Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-14T21:46:30.5840202Z Entering 'third_party/XNNPACK' 2025-08-14T21:46:30.6244559Z Entering 'third_party/aiter' 2025-08-14T21:46:30.6626614Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-14T21:46:30.7054992Z Entering 'third_party/benchmark' 2025-08-14T21:46:30.7455060Z Entering 'third_party/composable_kernel' 2025-08-14T21:46:30.7856797Z Entering 'third_party/cpp-httplib' 2025-08-14T21:46:30.8237552Z Entering 'third_party/cpuinfo' 2025-08-14T21:46:30.8677221Z Entering 'third_party/cudnn_frontend' 2025-08-14T21:46:30.9071004Z Entering 'third_party/cutlass' 2025-08-14T21:46:30.9484756Z Entering 'third_party/fbgemm' 2025-08-14T21:46:30.9874644Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-14T21:46:31.0269079Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-14T21:46:31.0697109Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-14T21:46:31.1094172Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-14T21:46:31.1515508Z Entering 'third_party/fbgemm/external/googletest' 2025-08-14T21:46:31.1919785Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-14T21:46:31.2309407Z Entering 'third_party/fbgemm/external/json' 2025-08-14T21:46:31.2723481Z Entering 'third_party/flash-attention' 2025-08-14T21:46:31.3108915Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-14T21:46:31.3513788Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-14T21:46:31.3929982Z Entering 'third_party/flatbuffers' 2025-08-14T21:46:31.4333115Z Entering 'third_party/fmt' 2025-08-14T21:46:31.4729347Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-14T21:46:31.5129066Z Entering 'third_party/gloo' 2025-08-14T21:46:31.5532889Z Entering 'third_party/googletest' 2025-08-14T21:46:31.5926091Z Entering 'third_party/ideep' 2025-08-14T21:46:31.6310109Z Entering 'third_party/ideep/mkl-dnn' 2025-08-14T21:46:31.6733582Z Entering 'third_party/ittapi' 2025-08-14T21:46:31.7124979Z Entering 'third_party/kineto' 2025-08-14T21:46:31.7503582Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-14T21:46:31.7891586Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-14T21:46:31.8305459Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-14T21:46:31.8701801Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-14T21:46:31.9108311Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-14T21:46:31.9488758Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-14T21:46:31.9911714Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-14T21:46:32.0317633Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-14T21:46:32.0725203Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-14T21:46:32.1133431Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-14T21:46:32.1560148Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-14T21:46:32.1965088Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-14T21:46:32.2386013Z Entering 'third_party/kleidiai' 2025-08-14T21:46:32.2790482Z Entering 'third_party/mimalloc' 2025-08-14T21:46:32.3243337Z Entering 'third_party/nlohmann' 2025-08-14T21:46:32.3709438Z Entering 'third_party/onnx' 2025-08-14T21:46:32.4124302Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-14T21:46:32.4619942Z Entering 'third_party/opentelemetry-cpp' 2025-08-14T21:46:32.5010803Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-14T21:46:32.5430553Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-14T21:46:32.5833011Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-14T21:46:32.6233783Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-14T21:46:32.6641679Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-14T21:46:32.7079063Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-14T21:46:32.7496469Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-14T21:46:32.7890831Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-14T21:46:32.8306091Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-14T21:46:32.8988316Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-14T21:46:32.9430518Z Entering 'third_party/pocketfft' 2025-08-14T21:46:32.9830149Z Entering 'third_party/protobuf' 2025-08-14T21:46:33.0221541Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-14T21:46:33.0628294Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-14T21:46:33.1086303Z Entering 'third_party/psimd' 2025-08-14T21:46:33.1496250Z Entering 'third_party/pthreadpool' 2025-08-14T21:46:33.1900653Z Entering 'third_party/pybind11' 2025-08-14T21:46:33.2302553Z Entering 'third_party/python-peachpy' 2025-08-14T21:46:33.2733152Z Entering 'third_party/sleef' 2025-08-14T21:46:33.3140584Z Entering 'third_party/tensorpipe' 2025-08-14T21:46:33.3523279Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-14T21:46:33.3957136Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-14T21:46:33.4360272Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-14T21:46:33.4764117Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-14T21:46:33.5189067Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-14T21:46:33.5717449Z [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-14T21:46:33.9969887Z Entering 'android/libs/fbjni' 2025-08-14T21:46:34.0374426Z Entering 'third_party/FP16' 2025-08-14T21:46:34.0773685Z Entering 'third_party/FXdiv' 2025-08-14T21:46:34.1190723Z Entering 'third_party/NNPACK' 2025-08-14T21:46:34.1598604Z Entering 'third_party/NVTX' 2025-08-14T21:46:34.2009128Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-14T21:46:34.2450239Z Entering 'third_party/XNNPACK' 2025-08-14T21:46:34.2887457Z Entering 'third_party/aiter' 2025-08-14T21:46:34.3278958Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-14T21:46:34.3723763Z Entering 'third_party/benchmark' 2025-08-14T21:46:34.4125120Z Entering 'third_party/composable_kernel' 2025-08-14T21:46:34.4541881Z Entering 'third_party/cpp-httplib' 2025-08-14T21:46:34.4951788Z Entering 'third_party/cpuinfo' 2025-08-14T21:46:34.5351351Z Entering 'third_party/cudnn_frontend' 2025-08-14T21:46:34.5780814Z Entering 'third_party/cutlass' 2025-08-14T21:46:34.6201478Z Entering 'third_party/fbgemm' 2025-08-14T21:46:34.6616800Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-14T21:46:34.7042285Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-14T21:46:34.7466554Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-14T21:46:34.7867314Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-14T21:46:34.8290266Z Entering 'third_party/fbgemm/external/googletest' 2025-08-14T21:46:34.8740169Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-14T21:46:34.9141862Z Entering 'third_party/fbgemm/external/json' 2025-08-14T21:46:34.9567325Z Entering 'third_party/flash-attention' 2025-08-14T21:46:34.9955040Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-14T21:46:35.0372398Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-14T21:46:35.0840670Z Entering 'third_party/flatbuffers' 2025-08-14T21:46:35.1266198Z Entering 'third_party/fmt' 2025-08-14T21:46:35.1680561Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-14T21:46:35.2089671Z Entering 'third_party/gloo' 2025-08-14T21:46:35.2494056Z Entering 'third_party/googletest' 2025-08-14T21:46:35.2907023Z Entering 'third_party/ideep' 2025-08-14T21:46:35.3287581Z Entering 'third_party/ideep/mkl-dnn' 2025-08-14T21:46:35.3722365Z Entering 'third_party/ittapi' 2025-08-14T21:46:35.4130818Z Entering 'third_party/kineto' 2025-08-14T21:46:35.4523885Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-14T21:46:35.4932242Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-14T21:46:35.5354805Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-14T21:46:35.5765984Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-14T21:46:35.6175741Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-14T21:46:35.6606483Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-14T21:46:35.7044445Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-14T21:46:35.7505527Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-14T21:46:35.7919578Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-14T21:46:35.8339237Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-14T21:46:35.8776173Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-14T21:46:35.9179671Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-14T21:46:35.9629721Z Entering 'third_party/kleidiai' 2025-08-14T21:46:36.0040486Z Entering 'third_party/mimalloc' 2025-08-14T21:46:36.0441402Z Entering 'third_party/nlohmann' 2025-08-14T21:46:36.0891303Z Entering 'third_party/onnx' 2025-08-14T21:46:36.1328216Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-14T21:46:36.1787044Z Entering 'third_party/opentelemetry-cpp' 2025-08-14T21:46:36.2174170Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-14T21:46:36.2579900Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-14T21:46:36.3003754Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-14T21:46:36.3405188Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-14T21:46:36.3848005Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-14T21:46:36.4264383Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-14T21:46:36.4673971Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-14T21:46:36.5064082Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-14T21:46:36.5476956Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-14T21:46:36.5911524Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-14T21:46:36.6388151Z Entering 'third_party/pocketfft' 2025-08-14T21:46:36.6793978Z Entering 'third_party/protobuf' 2025-08-14T21:46:36.7175040Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-14T21:46:36.7586359Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-14T21:46:36.8021246Z Entering 'third_party/psimd' 2025-08-14T21:46:36.8436064Z Entering 'third_party/pthreadpool' 2025-08-14T21:46:36.8844343Z Entering 'third_party/pybind11' 2025-08-14T21:46:36.9253560Z Entering 'third_party/python-peachpy' 2025-08-14T21:46:36.9677274Z Entering 'third_party/sleef' 2025-08-14T21:46:37.0086508Z Entering 'third_party/tensorpipe' 2025-08-14T21:46:37.0480336Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-14T21:46:37.0908432Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-14T21:46:37.1329620Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-14T21:46:37.1739254Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-14T21:46:37.2125075Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-14T21:46:37.2655688Z ##[endgroup] 2025-08-14T21:46:37.2985498Z [command]"C:\Program Files\Git\cmd\git.exe" log -1 --format=%H 2025-08-14T21:46:37.3200346Z 1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T21:46:37.3523236Z Prepare all required actions 2025-08-14T21:46:37.3591551Z ##[group]Run ./.github/actions/setup-win 2025-08-14T21:46:37.3591894Z with: 2025-08-14T21:46:37.3592081Z cuda-version: cpu 2025-08-14T21:46:37.3592332Z env: 2025-08-14T21:46:37.3592553Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:46:37.3592797Z ##[endgroup] 2025-08-14T21:46:37.3678720Z ##[group]Run set -euo pipefail 2025-08-14T21:46:37.3679070Z set -euo pipefail 2025-08-14T21:46:37.3679342Z function get_ec2_metadata() { 2025-08-14T21:46:37.3679683Z  # Pulled from instance metadata endpoint for EC2 2025-08-14T21:46:37.3680289Z  # see https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html 2025-08-14T21:46:37.3680800Z  category=$1 2025-08-14T21:46:37.3681672Z  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-14T21:46:37.3682502Z } 2025-08-14T21:46:37.3682753Z echo "ami-id: $(get_ec2_metadata ami-id)" 2025-08-14T21:46:37.3683154Z echo "instance-id: $(get_ec2_metadata instance-id)" 2025-08-14T21:46:37.3683591Z echo "instance-type: $(get_ec2_metadata instance-type)" 2025-08-14T21:46:37.3683976Z echo "system info $(uname -a)" 2025-08-14T21:46:37.3704254Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:46:37.3704683Z env: 2025-08-14T21:46:37.3704888Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:46:37.3705139Z ##[endgroup] 2025-08-14T21:46:37.4409891Z ami-id: ami-031789d559e66ab4a 2025-08-14T21:46:37.4873551Z instance-id: i-0598cc65f7dec76e0 2025-08-14T21:46:37.5192031Z instance-type: c5d.4xlarge 2025-08-14T21:46:37.5391326Z system info MSYS_NT-10.0-17763 EC2AMAZ-VK08H34 3.5.7-463ebcdc.x86_64 2025-03-03 17:26 UTC x86_64 Msys 2025-08-14T21:46:37.5492662Z ##[group]Run Set-ItemProperty -Path "HKLM:\\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 2025-08-14T21:46:37.5493615Z Set-ItemProperty -Path "HKLM:\\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 2025-08-14T21:46:37.5509951Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-14T21:46:37.5510416Z env: 2025-08-14T21:46:37.5510760Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:46:37.5511019Z ##[endgroup] 2025-08-14T21:46:37.9499860Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-14T21:46:37.9546740Z Finished 2025-08-14T21:46:37.9855287Z ##[group]Run # Windows conda is baked into the AMI at this location 2025-08-14T21:46:37.9855793Z # Windows conda is baked into the AMI at this location 2025-08-14T21:46:37.9856203Z CONDA="C:\Jenkins\Miniconda3\condabin\conda.bat" 2025-08-14T21:46:37.9856511Z  2025-08-14T21:46:37.9856713Z { 2025-08-14T21:46:37.9856967Z  echo "CONDA_RUN=${CONDA} run --no-capture-output"; 2025-08-14T21:46:37.9857352Z  echo "CONDA_BUILD=${CONDA} run conda-build"; 2025-08-14T21:46:37.9857685Z  echo "CONDA_INSTALL=${CONDA} install"; 2025-08-14T21:46:37.9858042Z } >> "${GITHUB_ENV}" 2025-08-14T21:46:37.9877107Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:46:37.9877560Z env: 2025-08-14T21:46:37.9877747Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:46:37.9877984Z ##[endgroup] 2025-08-14T21:46:38.0170742Z ##[group]Run set +e 2025-08-14T21:46:38.0170997Z set +e 2025-08-14T21:46:38.0171268Z set -x 2025-08-14T21:46:38.0171524Z  2025-08-14T21:46:38.0171787Z PYTHON3=$(${CONDA_RUN} which python3) 2025-08-14T21:46:38.0172098Z EXIT_CODE=$? 2025-08-14T21:46:38.0172301Z  2025-08-14T21:46:38.0173866Z if [[ "${EXIT_CODE}" == "0" ]]; then 2025-08-14T21:46:38.0174278Z  echo "Found Python3 at ${PYTHON3}, adding it into GITHUB_PATH" 2025-08-14T21:46:38.0174644Z  2025-08-14T21:46:38.0174845Z  PYTHON_PATH=$(dirname "${PYTHON3}") 2025-08-14T21:46:38.0175186Z  echo "${PYTHON_PATH}" >> "${GITHUB_PATH}" 2025-08-14T21:46:38.0175471Z else 2025-08-14T21:46:38.0175905Z  # According to https://docs.conda.io/en/latest/miniconda.html, we are using the Miniconda3 2025-08-14T21:46:38.0176605Z  # installation, which is Python 3 based. Its Python is default to Python 3. Further, there 2025-08-14T21:46:38.0177318Z  # is also the Miniconda installation that is Python 2 based, and both can be installed if 2025-08-14T21:46:38.0177936Z  # needed. In both cases, Python binary is just called python 2025-08-14T21:46:38.0178326Z  PYTHON=$(${CONDA_RUN} which python) 2025-08-14T21:46:38.0178612Z  EXIT_CODE=$? 2025-08-14T21:46:38.0178832Z  2025-08-14T21:46:38.0179034Z  if [[ "${EXIT_CODE}" == "0" ]]; then 2025-08-14T21:46:38.0179470Z  echo "Found Python at ${PYTHON}, set Python3 alias and add it into GITHUB_PATH" 2025-08-14T21:46:38.0179870Z  2025-08-14T21:46:38.0180130Z  PYTHON3=$(echo "${PYTHON}" | sed "s/python/python3/") 2025-08-14T21:46:38.0180628Z  # It's difficult to setup alias across GitHub action steps, so I just add a softlink 2025-08-14T21:46:38.0181093Z  # here pointing to Python 2025-08-14T21:46:38.0181397Z  ln -s "${PYTHON}" "${PYTHON3}" 2025-08-14T21:46:38.0181660Z  2025-08-14T21:46:38.0181883Z  PYTHON_PATH=$(dirname "${PYTHON}") 2025-08-14T21:46:38.0182206Z  echo "${PYTHON_PATH}" >> "${GITHUB_PATH}" 2025-08-14T21:46:38.0182510Z  else 2025-08-14T21:46:38.0182784Z  echo "Found no Python using ${CONDA_RUN}" 2025-08-14T21:46:38.0183119Z  fi 2025-08-14T21:46:38.0183318Z fi 2025-08-14T21:46:38.0202414Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:46:38.0202847Z env: 2025-08-14T21:46:38.0203041Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:46:38.0203409Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:46:38.0203922Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:46:38.0204540Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:46:38.0204881Z ##[endgroup] 2025-08-14T21:46:38.0462179Z ++ 'C:\Jenkins\Miniconda3\condabin\conda.bat' run --no-capture-output which python3 2025-08-14T21:46:43.0930824Z 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-14T21:46:43.0959417Z ERROR conda.cli.main_run:execute(49): `conda run which python3` failed. (See above for error) 2025-08-14T21:46:43.1871760Z + PYTHON3= 2025-08-14T21:46:43.1872001Z + EXIT_CODE=1 2025-08-14T21:46:43.1872329Z + [[ 1 == \0 ]] 2025-08-14T21:46:43.1933705Z ++ 'C:\Jenkins\Miniconda3\condabin\conda.bat' run --no-capture-output which python 2025-08-14T21:46:44.8831388Z + PYTHON=/c/Jenkins/Miniconda3/python 2025-08-14T21:46:44.8831775Z + EXIT_CODE=0 2025-08-14T21:46:44.8831953Z + [[ 0 == \0 ]] 2025-08-14T21:46:44.8832483Z + echo 'Found Python at /c/Jenkins/Miniconda3/python, set Python3 alias and add it into GITHUB_PATH' 2025-08-14T21:46:44.8834143Z Found Python at /c/Jenkins/Miniconda3/python, set Python3 alias and add it into GITHUB_PATH 2025-08-14T21:46:44.8951584Z ++ echo /c/Jenkins/Miniconda3/python 2025-08-14T21:46:44.9003687Z ++ sed s/python/python3/ 2025-08-14T21:46:44.9070343Z + PYTHON3=/c/Jenkins/Miniconda3/python3 2025-08-14T21:46:44.9070802Z + ln -s /c/Jenkins/Miniconda3/python /c/Jenkins/Miniconda3/python3 2025-08-14T21:46:44.9259620Z ++ dirname /c/Jenkins/Miniconda3/python 2025-08-14T21:46:44.9332955Z + PYTHON_PATH=/c/Jenkins/Miniconda3 2025-08-14T21:46:44.9333289Z + echo /c/Jenkins/Miniconda3 2025-08-14T21:46:44.9442356Z ##[group]Run TMPDIR=$(python -c 'import tempfile; print(tempfile.gettempdir());') 2025-08-14T21:46:44.9442972Z TMPDIR=$(python -c 'import tempfile; print(tempfile.gettempdir());') 2025-08-14T21:46:44.9443415Z echo "TMPDIR=${TMPDIR}" >> "${GITHUB_ENV}" 2025-08-14T21:46:44.9466534Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:46:44.9466983Z env: 2025-08-14T21:46:44.9467192Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:46:44.9467569Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:46:44.9468078Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:46:44.9468559Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:46:44.9468922Z ##[endgroup] 2025-08-14T21:46:45.0381731Z ##[group]Run Add-MpPreference -ExclusionPath $(Get-Location).tostring(),$Env:TMPDIR,"C:\Jenkins\Miniconda3" -ErrorAction Ignore 2025-08-14T21:46:45.0382755Z Add-MpPreference -ExclusionPath $(Get-Location).tostring(),$Env:TMPDIR,"C:\Jenkins\Miniconda3" -ErrorAction Ignore 2025-08-14T21:46:45.0383610Z # Let's both exclude the path and disable Windows Defender completely just to be sure 2025-08-14T21:46:45.0384080Z # that it doesn't interfere 2025-08-14T21:46:45.0384547Z Set-MpPreference -DisableRealtimeMonitoring $True -ErrorAction Ignore 2025-08-14T21:46:45.0400106Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-14T21:46:45.0400573Z env: 2025-08-14T21:46:45.0400768Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:46:45.0401161Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:46:45.0401683Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:46:45.0402320Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:46:45.0402731Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:46:45.0403032Z ##[endgroup] 2025-08-14T21:46:45.4370192Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-14T21:46:45.4440142Z Finished 2025-08-14T21:46:46.3922083Z ##[group]Run choco install handle -y 2025-08-14T21:46:46.3922417Z choco install handle -y 2025-08-14T21:46:46.3922720Z handle C:\actions-runner\_work\ 2025-08-14T21:46:46.3942183Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-14T21:46:46.3942630Z env: 2025-08-14T21:46:46.3942817Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:46:46.3943178Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:46:46.3945323Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:46:46.3945812Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:46:46.3946195Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:46:46.3946494Z ##[endgroup] 2025-08-14T21:46:46.7808478Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-14T21:46:46.7879260Z Finished 2025-08-14T21:46:49.0709141Z Chocolatey v2.4.3 2025-08-14T21:46:49.2445399Z Installing the following packages: 2025-08-14T21:46:49.2451196Z handle 2025-08-14T21:46:49.2455338Z By installing, you accept licenses for the packages. 2025-08-14T21:46:50.2769469Z Downloading package from source 'https://community.chocolatey.org/api/v2/' 2025-08-14T21:46:50.9896262Z 2025-08-14T21:46:50.9896984Z Progress: Downloading Handle 5.0... 15% 2025-08-14T21:46:50.9897518Z Progress: Downloading Handle 5.0... 45% 2025-08-14T21:46:50.9898136Z Progress: Downloading Handle 5.0... 75% 2025-08-14T21:46:50.9898450Z Progress: Downloading Handle 5.0... 100% 2025-08-14T21:46:51.2756248Z 2025-08-14T21:46:51.2756634Z handle v5.0.0 [Approved] 2025-08-14T21:46:51.2973587Z handle package files install completed. Performing other installation steps. 2025-08-14T21:46:52.4602503Z Downloading Handle 2025-08-14T21:46:52.4602887Z from 'https://download.sysinternals.com/files/Handle.zip' 2025-08-14T21:46:52.5591845Z 2025-08-14T21:46:52.5610221Z Progress: 19% - Saving 143.51 KB of 729.82 KB 2025-08-14T21:46:52.5625582Z Progress: 41% - Saving 303.51 KB of 729.82 KB 2025-08-14T21:46:52.5641024Z Progress: 63% - Saving 463.51 KB of 729.82 KB 2025-08-14T21:46:52.5662009Z Progress: 85% - Saving 623.51 KB of 729.82 KB 2025-08-14T21:46:52.5664650Z Progress: 100% - Completed download of C:\Users\runneruser\AppData\Local\Temp\chocolatey\Handle\5.0.0\Handle.zip (729.82 KB). 2025-08-14T21:46:52.5671705Z Download of Handle.zip (729.82 KB) completed. 2025-08-14T21:46:55.6588386Z Hashes match. 2025-08-14T21:46:55.6909708Z Extracting C:\Users\runneruser\AppData\Local\Temp\chocolatey\Handle\5.0.0\Handle.zip to C:\ProgramData\chocolatey\lib\Handle\tools... 2025-08-14T21:46:55.9136498Z C:\ProgramData\chocolatey\lib\Handle\tools 2025-08-14T21:46:55.9190969Z HKEY_CURRENT_USER\Software\Sysinternals 2025-08-14T21:46:55.9223202Z HKEY_CURRENT_USER\Software\Sysinternals\Handle 2025-08-14T21:46:56.3306429Z ShimGen has successfully created a shim for handle.exe 2025-08-14T21:46:56.5197509Z ShimGen has successfully created a shim for handle64.exe 2025-08-14T21:46:56.6965297Z ShimGen has successfully created a shim for handle64a.exe 2025-08-14T21:46:56.7249989Z The install of handle was successful. 2025-08-14T21:46:56.7253659Z Deployed to 'C:\ProgramData\chocolatey\lib\Handle\tools' 2025-08-14T21:46:56.7369433Z 2025-08-14T21:46:56.7369882Z Chocolatey installed 1/1 packages. 2025-08-14T21:46:56.7370335Z See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log). 2025-08-14T21:46:56.9123795Z 2025-08-14T21:46:56.9124234Z Nthandle v5.0 - Handle viewer 2025-08-14T21:46:56.9124799Z Copyright (C) 1997-2022 Mark Russinovich 2025-08-14T21:46:56.9125106Z Sysinternals - www.sysinternals.com 2025-08-14T21:46:56.9125302Z 2025-08-14T21:46:56.9516079Z powershell.exe pid: 3596 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-08-14T21:46:56.9516663Z handle.exe pid: 6072 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-08-14T21:46:56.9517214Z handle.exe pid: 5164 type: File 94: C:\actions-runner\_work\pytorch\pytorch 2025-08-14T21:46:56.9517781Z handle64.exe pid: 5332 type: File 50: C:\actions-runner\_work\pytorch\pytorch 2025-08-14T21:46:56.9867500Z ##[group]Run nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e 2025-08-14T21:46:56.9867920Z with: 2025-08-14T21:46:56.9868101Z shell: bash 2025-08-14T21:46:56.9868284Z timeout_minutes: 5 2025-08-14T21:46:56.9868555Z max_attempts: 5 2025-08-14T21:46:56.9868762Z retry_wait_seconds: 30 2025-08-14T21:46:56.9869127Z command: set -eu python3 -m pip install 'xdoctest>=1.1.0' 2025-08-14T21:46:56.9869478Z polling_interval_seconds: 1 2025-08-14T21:46:56.9869712Z warning_on_retry: true 2025-08-14T21:46:56.9869933Z continue_on_error: false 2025-08-14T21:46:56.9870144Z env: 2025-08-14T21:46:56.9870323Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:46:56.9870678Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:46:56.9871194Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:46:56.9871658Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:46:56.9872075Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:46:56.9872362Z ##[endgroup] 2025-08-14T21:46:59.4965077Z Collecting xdoctest>=1.1.0 2025-08-14T21:46:59.6844438Z Downloading xdoctest-1.2.0-py3-none-any.whl.metadata (37 kB) 2025-08-14T21:47:00.0778539Z Downloading xdoctest-1.2.0-py3-none-any.whl (151 kB) 2025-08-14T21:47:00.1382554Z ---------------------------------------- 151.2/151.2 kB 2.2 MB/s eta 0:00:00 2025-08-14T21:47:01.4842137Z Installing collected packages: xdoctest 2025-08-14T21:47:01.4842952Z Attempting uninstall: xdoctest 2025-08-14T21:47:01.4867282Z Found existing installation: xdoctest 1.0.2 2025-08-14T21:47:01.5001992Z Uninstalling xdoctest-1.0.2: 2025-08-14T21:47:01.5043919Z Successfully uninstalled xdoctest-1.0.2 2025-08-14T21:47:01.6170842Z WARNING: The script xdoctest.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-14T21:47:01.6171949Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-14T21:47:01.6705402Z Successfully installed xdoctest-1.2.0 2025-08-14T21:47:02.1051758Z Command completed after 1 attempt(s). 2025-08-14T21:47:02.1220565Z Prepare all required actions 2025-08-14T21:47:02.1257196Z ##[group]Run ./.github/actions/get-workflow-job-id 2025-08-14T21:47:02.1257537Z with: 2025-08-14T21:47:02.1258061Z github-token: *** 2025-08-14T21:47:02.1258279Z env: 2025-08-14T21:47:02.1258464Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:02.1258848Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:47:02.1259369Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:47:02.1259834Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:47:02.1260239Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:47:02.1260536Z ##[endgroup] 2025-08-14T21:47:02.1353752Z ##[group]Run set -eux 2025-08-14T21:47:02.1354080Z set -eux 2025-08-14T21:47:02.1354514Z python3 .github/scripts/get_workflow_job_id.py "${GITHUB_RUN_ID}" "${RUNNER_NAME}" 2025-08-14T21:47:02.1374507Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:47:02.1374934Z env: 2025-08-14T21:47:02.1375129Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:02.1375671Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:47:02.1376192Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:47:02.1376654Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:47:02.1377103Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:47:02.1377686Z GITHUB_TOKEN: *** 2025-08-14T21:47:02.1377883Z ##[endgroup] 2025-08-14T21:47:02.1601161Z + python3 .github/scripts/get_workflow_job_id.py 16976255045 i-0598cc65f7dec76e0 2025-08-14T21:47:03.1465805Z Setting output job-id=48128743919 2025-08-14T21:47:03.1466373Z Setting output job-name=win-vs2022-cpu-py3 / test (default, 1, 3, lf.windows.4xlarge.nonephemeral) 2025-08-14T21:47:03.1727011Z ##[group]Run # Windows conda doesn't have python3 binary, only python, but it's python3 2025-08-14T21:47:03.1727796Z # Windows conda doesn't have python3 binary, only python, but it's python3 2025-08-14T21:47:03.1728512Z ${CONDA_RUN} python -m pip install psutil==5.9.8 dataclasses_json==0.6.7 nvidia-ml-py==11.525.84 2025-08-14T21:47:03.1729469Z ${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-14T21:47:03.1730278Z echo "monitor-script-pid=${!}" >> "${GITHUB_OUTPUT}" 2025-08-14T21:47:03.1749312Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:47:03.1749739Z env: 2025-08-14T21:47:03.1749926Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:03.1750296Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:47:03.1750848Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:47:03.1751305Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:47:03.1751704Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:47:03.1751993Z JOB_ID: 48128743919 2025-08-14T21:47:03.1752380Z JOB_NAME: win-vs2022-cpu-py3 / test (default, 1, 3, lf.windows.4xlarge.nonephemeral) 2025-08-14T21:47:03.1752827Z WORKFLOW_NAME: trunk 2025-08-14T21:47:03.1753041Z WORKFLOW_RUN_ID: 16976255045 2025-08-14T21:47:03.1753286Z MONITOR_LOG_INTERVAL: 5 2025-08-14T21:47:03.1753515Z MONITOR_DATA_COLLECT_INTERVAL: 1 2025-08-14T21:47:03.1753767Z ##[endgroup] 2025-08-14T21:47:05.8659100Z Collecting psutil==5.9.8 2025-08-14T21:47:06.0610612Z Downloading psutil-5.9.8-cp37-abi3-win_amd64.whl.metadata (22 kB) 2025-08-14T21:47:06.7664146Z Collecting dataclasses_json==0.6.7 2025-08-14T21:47:06.7716191Z Downloading dataclasses_json-0.6.7-py3-none-any.whl.metadata (25 kB) 2025-08-14T21:47:06.8105771Z Collecting nvidia-ml-py==11.525.84 2025-08-14T21:47:06.8162835Z Downloading nvidia_ml_py-11.525.84-py3-none-any.whl.metadata (8.6 kB) 2025-08-14T21:47:06.9108035Z Collecting marshmallow<4.0.0,>=3.18.0 (from dataclasses_json==0.6.7) 2025-08-14T21:47:06.9158852Z Downloading marshmallow-3.26.1-py3-none-any.whl.metadata (7.3 kB) 2025-08-14T21:47:06.9449567Z Collecting typing-inspect<1,>=0.4.0 (from dataclasses_json==0.6.7) 2025-08-14T21:47:06.9501960Z Downloading typing_inspect-0.9.0-py3-none-any.whl.metadata (1.5 kB) 2025-08-14T21:47:06.9739465Z 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-14T21:47:06.9950794Z Collecting mypy-extensions>=0.3.0 (from typing-inspect<1,>=0.4.0->dataclasses_json==0.6.7) 2025-08-14T21:47:07.0003686Z Downloading mypy_extensions-1.1.0-py3-none-any.whl.metadata (1.1 kB) 2025-08-14T21:47:07.0108042Z 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-14T21:47:07.0226575Z Downloading psutil-5.9.8-cp37-abi3-win_amd64.whl (255 kB) 2025-08-14T21:47:07.0794257Z ---------------------------------------- 255.1/255.1 kB 5.2 MB/s eta 0:00:00 2025-08-14T21:47:07.0841845Z Downloading dataclasses_json-0.6.7-py3-none-any.whl (28 kB) 2025-08-14T21:47:07.1110789Z Downloading nvidia_ml_py-11.525.84-py3-none-any.whl (34 kB) 2025-08-14T21:47:07.1283261Z Downloading marshmallow-3.26.1-py3-none-any.whl (50 kB) 2025-08-14T21:47:07.1402918Z ---------------------------------------- 50.9/50.9 kB ? eta 0:00:00 2025-08-14T21:47:07.1449253Z Downloading typing_inspect-0.9.0-py3-none-any.whl (8.8 kB) 2025-08-14T21:47:07.1599360Z Downloading mypy_extensions-1.1.0-py3-none-any.whl (5.0 kB) 2025-08-14T21:47:07.9782398Z Installing collected packages: nvidia-ml-py, psutil, mypy-extensions, marshmallow, typing-inspect, dataclasses_json 2025-08-14T21:47:08.0266632Z Attempting uninstall: psutil 2025-08-14T21:47:08.0280859Z Found existing installation: psutil 5.9.1 2025-08-14T21:47:08.0390928Z Uninstalling psutil-5.9.1: 2025-08-14T21:47:08.0420197Z Successfully uninstalled psutil-5.9.1 2025-08-14T21:47:08.4307391Z 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-14T21:47:08.6976534Z ##[group]Run seemethere/download-artifact-s3@1da556a7aa0a088e3153970611f6c432d58e80e6 2025-08-14T21:47:08.6977030Z with: 2025-08-14T21:47:08.6977231Z name: win-vs2022-cpu-py3 2025-08-14T21:47:08.6977478Z path: C:\16976255045\build-results 2025-08-14T21:47:08.6977741Z s3-bucket: gha-artifacts 2025-08-14T21:47:08.6977965Z region: us-east-1 2025-08-14T21:47:08.6978160Z env: 2025-08-14T21:47:08.6978334Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:08.6978695Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:47:08.6979203Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:47:08.6979672Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:47:08.6980059Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:47:08.6980355Z ##[endgroup] 2025-08-14T21:47:09.2676828Z (node:4860) NOTE: We are formalizing our plans to enter AWS SDK for JavaScript (v2) into maintenance mode in 2023. 2025-08-14T21:47:09.2677294Z 2025-08-14T21:47:09.2677477Z Please migrate your code to use AWS SDK for JavaScript (v3). 2025-08-14T21:47:09.2677984Z For more information, check the migration guide at https://a.co/7PzMCcy 2025-08-14T21:47:09.2679872Z (Use `node --trace-warnings ...` to show where the warning was created) 2025-08-14T21:47:09.4325940Z Found 4 objects with prefix pytorch/pytorch/16976255045/win-vs2022-cpu-py3/ 2025-08-14T21:47:09.4332704Z Starting download (1/4): C:\16976255045\build-results\.additional_ci_files\test-class-times.json 2025-08-14T21:47:09.6734701Z Finished download (1/4): C:\16976255045\build-results\.additional_ci_files\test-class-times.json 2025-08-14T21:47:09.6735467Z Starting download (2/4): C:\16976255045\build-results\.additional_ci_files\test-times.json 2025-08-14T21:47:09.8021307Z Finished download (2/4): C:\16976255045\build-results\.additional_ci_files\test-times.json 2025-08-14T21:47:09.8022958Z Starting download (3/4): C:\16976255045\build-results\.ninja_log 2025-08-14T21:47:10.0163821Z Finished download (3/4): C:\16976255045\build-results\.ninja_log 2025-08-14T21:47:10.0164871Z Starting download (4/4): C:\16976255045\build-results\torch-2.9.0a0+git1fc683c-cp39-cp39-win_amd64.whl 2025-08-14T21:47:15.7299680Z Finished download (4/4): C:\16976255045\build-results\torch-2.9.0a0+git1fc683c-cp39-cp39-win_amd64.whl 2025-08-14T21:47:15.7310245Z Artifact download has finished successfully 2025-08-14T21:47:15.7592105Z ##[group]Run tree /F C:\$Env:GITHUB_RUN_ID\build-results 2025-08-14T21:47:15.7592580Z tree /F C:\$Env:GITHUB_RUN_ID\build-results 2025-08-14T21:47:15.7608461Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-14T21:47:15.7608909Z env: 2025-08-14T21:47:15.7609106Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:15.7609484Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:47:15.7610154Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:47:15.7610621Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:47:15.7611005Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:47:15.7611309Z ##[endgroup] 2025-08-14T21:47:16.1971277Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-14T21:47:16.2087224Z Finished 2025-08-14T21:47:16.2212074Z Folder PATH listing 2025-08-14T21:47:16.2212459Z Volume serial number is EA7F-0099 2025-08-14T21:47:16.2212747Z C:\16976255045\BUILD-RESULTS 2025-08-14T21:47:16.2219317Z � .ninja_log 2025-08-14T21:47:16.2219738Z � torch-2.9.0a0+git1fc683c-cp39-cp39-win_amd64.whl 2025-08-14T21:47:16.2220100Z � 2025-08-14T21:47:16.2220322Z ����.additional_ci_files 2025-08-14T21:47:16.2220568Z test-class-times.json 2025-08-14T21:47:16.2220833Z test-times.json 2025-08-14T21:47:16.2221040Z 2025-08-14T21:47:16.2482221Z Prepare all required actions 2025-08-14T21:47:16.2482634Z Getting action download info 2025-08-14T21:47:16.4322731Z Download action repository 'seemethere/download-artifact-s3@v4' (SHA:1da556a7aa0a088e3153970611f6c432d58e80e6) 2025-08-14T21:47:16.6700134Z Download action repository 'actions/download-artifact@v4' (SHA:d3f86a106a0bac45b974a628896c90dbdf5c8093) 2025-08-14T21:47:17.0683173Z ##[group]Run ./.github/actions/download-td-artifacts 2025-08-14T21:47:17.0683505Z with: 2025-08-14T21:47:17.0683673Z env: 2025-08-14T21:47:17.0683855Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:17.0684225Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:47:17.0684733Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:47:17.0685210Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:47:17.0685645Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:47:17.0686027Z ##[endgroup] 2025-08-14T21:47:17.0777408Z ##[group]Run seemethere/download-artifact-s3@v4 2025-08-14T21:47:17.0777733Z with: 2025-08-14T21:47:17.0777909Z name: td_results 2025-08-14T21:47:17.0778133Z s3-bucket: gha-artifacts 2025-08-14T21:47:17.0778371Z region: us-east-1 2025-08-14T21:47:17.0778559Z env: 2025-08-14T21:47:17.0778742Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:17.0779107Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:47:17.0779631Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:47:17.0780096Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:47:17.0780498Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:47:17.0780780Z ##[endgroup] 2025-08-14T21:47:17.6352975Z (node:4680) NOTE: We are formalizing our plans to enter AWS SDK for JavaScript (v2) into maintenance mode in 2023. 2025-08-14T21:47:17.6353532Z 2025-08-14T21:47:17.6353733Z Please migrate your code to use AWS SDK for JavaScript (v3). 2025-08-14T21:47:17.6354271Z For more information, check the migration guide at https://a.co/7PzMCcy 2025-08-14T21:47:17.6354789Z (Use `node --trace-warnings ...` to show where the warning was created) 2025-08-14T21:47:17.7517271Z Found 1 objects with prefix pytorch/pytorch/16976255045/td_results/ 2025-08-14T21:47:17.7518811Z Starting download (1/1): C:\actions-runner\_work\pytorch\pytorch\td_results.json 2025-08-14T21:47:17.9202472Z Finished download (1/1): C:\actions-runner\_work\pytorch\pytorch\td_results.json 2025-08-14T21:47:17.9211989Z Artifact download has finished successfully 2025-08-14T21:47:17.9457597Z ##[group]Run mkdir -p .additional_ci_files 2025-08-14T21:47:17.9457958Z mkdir -p .additional_ci_files 2025-08-14T21:47:17.9458346Z mv td_results.json .additional_ci_files/td_results.json || true 2025-08-14T21:47:17.9479219Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:47:17.9479927Z env: 2025-08-14T21:47:17.9480126Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:17.9480547Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:47:17.9481143Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:47:17.9481618Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:47:17.9482009Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:47:17.9482300Z ##[endgroup] 2025-08-14T21:47:18.0207091Z Prepare all required actions 2025-08-14T21:47:18.0207514Z Getting action download info 2025-08-14T21:47:18.1290051Z Download action repository 'nick-fields/retry@v3.0.0' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-08-14T21:47:18.2896454Z ##[group]Run ./.github/actions/filter-test-configs 2025-08-14T21:47:18.2896786Z with: 2025-08-14T21:47:18.2897174Z github-token: *** 2025-08-14T21:47:18.2898215Z test-matrix: {"include": [{"config": "default", "shard": 1, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 2, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 3, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}]} 2025-08-14T21:47:18.2899561Z job-name: win-vs2022-cpu-py3 / test (default, 1, 3, lf.windows.4xlarge.nonephemeral) 2025-08-14T21:47:18.2900042Z env: 2025-08-14T21:47:18.2900278Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:18.2900689Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:47:18.2901194Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:47:18.2901668Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:47:18.2902064Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:47:18.2902355Z ##[endgroup] 2025-08-14T21:47:18.3003841Z ##[group]Run nick-fields/retry@v3.0.0 2025-08-14T21:47:18.3004133Z with: 2025-08-14T21:47:18.3004317Z shell: bash 2025-08-14T21:47:18.3004508Z timeout_minutes: 10 2025-08-14T21:47:18.3004734Z max_attempts: 5 2025-08-14T21:47:18.3004940Z retry_wait_seconds: 30 2025-08-14T21:47:18.3005670Z 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-14T21:47:18.3006434Z polling_interval_seconds: 1 2025-08-14T21:47:18.3006762Z warning_on_retry: true 2025-08-14T21:47:18.3007015Z continue_on_error: false 2025-08-14T21:47:18.3007237Z env: 2025-08-14T21:47:18.3007425Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:18.3007789Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:47:18.3008312Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:47:18.3008780Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:47:18.3009175Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:47:18.3009702Z GITHUB_TOKEN: *** 2025-08-14T21:47:18.3009906Z ##[endgroup] 2025-08-14T21:47:18.4234266Z + python3 -m pip install requests==2.27.1 pyyaml==6.0.2 2025-08-14T21:47:19.2182720Z Collecting requests==2.27.1 2025-08-14T21:47:19.4048301Z Downloading requests-2.27.1-py2.py3-none-any.whl.metadata (5.0 kB) 2025-08-14T21:47:19.4179584Z Requirement already satisfied: pyyaml==6.0.2 in c:\jenkins\miniconda3\lib\site-packages (6.0.2) 2025-08-14T21:47:19.4309597Z 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-14T21:47:19.4316114Z Requirement already satisfied: certifi>=2017.4.17 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (2025.4.26) 2025-08-14T21:47:19.4328419Z 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-14T21:47:19.4342633Z Requirement already satisfied: idna<4,>=2.5 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (3.7) 2025-08-14T21:47:19.4631624Z Downloading requests-2.27.1-py2.py3-none-any.whl (63 kB) 2025-08-14T21:47:19.5570663Z ---------------------------------------- 63.1/63.1 kB 678.1 kB/s eta 0:00:00 2025-08-14T21:47:20.3501229Z Installing collected packages: requests 2025-08-14T21:47:20.3502772Z Attempting uninstall: requests 2025-08-14T21:47:20.3513934Z Found existing installation: requests 2.32.3 2025-08-14T21:47:20.3590871Z Uninstalling requests-2.32.3: 2025-08-14T21:47:20.3612274Z Successfully uninstalled requests-2.32.3 2025-08-14T21:47:20.4636480Z Successfully installed requests-2.27.1 2025-08-14T21:47:21.4112982Z Command completed after 1 attempt(s). 2025-08-14T21:47:21.4289071Z ##[group]Run set -x 2025-08-14T21:47:21.4289329Z set -x 2025-08-14T21:47:21.4289510Z  2025-08-14T21:47:21.4289861Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-08-14T21:47:21.4290326Z # in runner workspace 2025-08-14T21:47:21.4290675Z python3 "${GITHUB_ACTION_PATH}/../../scripts/parse_ref.py" 2025-08-14T21:47:21.4311451Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:47:21.4311883Z env: 2025-08-14T21:47:21.4312070Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:21.4312445Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:47:21.4312967Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:47:21.4313439Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:47:21.4313829Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:47:21.4314119Z ##[endgroup] 2025-08-14T21:47:21.4504507Z + python3 'C:\actions-runner\_work\pytorch\pytorch\./.github/actions/filter-test-configs/../../scripts/parse_ref.py' 2025-08-14T21:47:21.4955894Z Setting output branch=main 2025-08-14T21:47:21.5112074Z ##[group]Run echo "Workflow: ${GITHUB_WORKFLOW}" 2025-08-14T21:47:21.5112451Z echo "Workflow: ${GITHUB_WORKFLOW}" 2025-08-14T21:47:21.5112742Z echo "Job name: ${JOB_NAME}" 2025-08-14T21:47:21.5112994Z  2025-08-14T21:47:21.5113329Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-08-14T21:47:21.5113783Z # in runner workspace 2025-08-14T21:47:21.5114180Z python3 "${GITHUB_ACTION_PATH}/../../scripts/filter_test_configs.py" \ 2025-08-14T21:47:21.5114610Z  --workflow "${GITHUB_WORKFLOW}" \ 2025-08-14T21:47:21.5114904Z  --job-name "${JOB_NAME}" \ 2025-08-14T21:47:21.5116127Z  --test-matrix "{"include": [{"config": "default", "shard": 1, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 2, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 3, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}]}" \ 2025-08-14T21:47:21.5117274Z  --selected-test-configs "" \ 2025-08-14T21:47:21.5117582Z  --pr-number "${PR_NUMBER}" \ 2025-08-14T21:47:21.5117856Z  --tag "${TAG}" \ 2025-08-14T21:47:21.5118115Z  --event-name "${EVENT_NAME}" \ 2025-08-14T21:47:21.5118404Z  --schedule "${SCHEDULE}" \ 2025-08-14T21:47:21.5118683Z  --branch "${HEAD_BRANCH}" 2025-08-14T21:47:21.5138145Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:47:21.5138572Z env: 2025-08-14T21:47:21.5138758Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:21.5139135Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:47:21.5139705Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:47:21.5140230Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:47:21.5140792Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:47:21.5141327Z GITHUB_TOKEN: *** 2025-08-14T21:47:21.5141716Z JOB_NAME: win-vs2022-cpu-py3 / test (default, 1, 3, lf.windows.4xlarge.nonephemeral) 2025-08-14T21:47:21.5142140Z PR_NUMBER: 2025-08-14T21:47:21.5142347Z TAG: 2025-08-14T21:47:21.5142516Z EVENT_NAME: push 2025-08-14T21:47:21.5142721Z SCHEDULE: 2025-08-14T21:47:21.5142905Z HEAD_BRANCH: main 2025-08-14T21:47:21.5143096Z ##[endgroup] 2025-08-14T21:47:21.5333490Z Workflow: trunk 2025-08-14T21:47:21.5334763Z Job name: win-vs2022-cpu-py3 / test (default, 1, 3, lf.windows.4xlarge.nonephemeral) 2025-08-14T21:47:21.8253666Z Setting output keep-going=True 2025-08-14T21:47:21.8254086Z Setting output ci-verbose-test-logs=False 2025-08-14T21:47:21.8254449Z Setting output ci-test-showlocals=False 2025-08-14T21:47:21.8254807Z Setting output ci-no-test-timeout=False 2025-08-14T21:47:21.8255127Z Setting output ci-no-td=False 2025-08-14T21:47:21.8255409Z Setting output ci-td-distributed=False 2025-08-14T21:47:21.8255783Z Setting output is-unstable=False 2025-08-14T21:47:21.8256088Z Setting output reenabled-issues= 2025-08-14T21:47:21.8257375Z Setting output test-matrix={"include": [{"config": "default", "shard": 1, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 2, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 3, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}]} 2025-08-14T21:47:21.8258740Z Setting output is-test-matrix-empty=False 2025-08-14T21:47:21.8488909Z ##[group]Run echo "Filtered matrix:" 2025-08-14T21:47:21.8489213Z echo "Filtered matrix:" 2025-08-14T21:47:21.8490369Z echo "{"include": [{"config": "default", "shard": 1, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 2, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 3, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}]}" 2025-08-14T21:47:21.8491484Z  2025-08-14T21:47:21.8491657Z echo 2025-08-14T21:47:21.8491901Z echo "Is the current job unstable? False" 2025-08-14T21:47:21.8492208Z  2025-08-14T21:47:21.8492375Z echo 2025-08-14T21:47:21.8492593Z echo "Is keep-going label set? True" 2025-08-14T21:47:21.8492862Z  2025-08-14T21:47:21.8493035Z echo 2025-08-14T21:47:21.8493239Z echo "Reenabled issues? " 2025-08-14T21:47:21.8512446Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:47:21.8512886Z env: 2025-08-14T21:47:21.8513091Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:21.8513465Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:47:21.8513978Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:47:21.8514435Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:47:21.8514845Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:47:21.8515133Z ##[endgroup] 2025-08-14T21:47:21.8704366Z Filtered matrix: 2025-08-14T21:47:21.8705442Z {include: [{config: default, shard: 1, num_shards: 3, runner: lf.windows.4xlarge.nonephemeral}, {config: default, shard: 2, num_shards: 3, runner: lf.windows.4xlarge.nonephemeral}, {config: default, shard: 3, num_shards: 3, runner: lf.windows.4xlarge.nonephemeral}]} 2025-08-14T21:47:21.8706559Z 2025-08-14T21:47:21.8706691Z Is the current job unstable? False 2025-08-14T21:47:21.8706881Z 2025-08-14T21:47:21.8706977Z Is keep-going label set? True 2025-08-14T21:47:21.8707160Z 2025-08-14T21:47:21.8707247Z Reenabled issues? 2025-08-14T21:47:21.8833925Z ##[group]Run echo "timeout=$((JOB_TIMEOUT-30))" >> "${GITHUB_OUTPUT}" 2025-08-14T21:47:21.8834447Z echo "timeout=$((JOB_TIMEOUT-30))" >> "${GITHUB_OUTPUT}" 2025-08-14T21:47:21.8853140Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:47:21.8853714Z env: 2025-08-14T21:47:21.8853913Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:21.8854282Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:47:21.8854789Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:47:21.8855257Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:47:21.8855639Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:47:21.8855930Z JOB_TIMEOUT: 240 2025-08-14T21:47:21.8856117Z ##[endgroup] 2025-08-14T21:47:21.9190106Z ##[group]Run pushd "${PYTORCH_FINAL_PACKAGE_DIR}" 2025-08-14T21:47:21.9190521Z pushd "${PYTORCH_FINAL_PACKAGE_DIR}" 2025-08-14T21:47:21.9190911Z # shellcheck disable=SC2046,SC2102 2025-08-14T21:47:21.9191367Z python3 -mpip install $(echo *.whl)[opt-einsum,optree] optree==0.13.0 2025-08-14T21:47:21.9191775Z popd 2025-08-14T21:47:21.9191971Z  2025-08-14T21:47:21.9192172Z .ci/pytorch/win-test.sh 2025-08-14T21:47:21.9211356Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:47:21.9211786Z env: 2025-08-14T21:47:21.9211973Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:21.9212350Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:47:21.9212857Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:47:21.9213333Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:47:21.9213839Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:47:21.9214163Z USE_CUDA: 0 2025-08-14T21:47:21.9214359Z INSTALL_WINDOWS_SDK: 1 2025-08-14T21:47:21.9214588Z PYTHON_VERSION: 3.9 2025-08-14T21:47:21.9214811Z CONTINUE_THROUGH_ERROR: True 2025-08-14T21:47:21.9215069Z VERBOSE_TEST_LOGS: False 2025-08-14T21:47:21.9215294Z TEST_SHOWLOCALS: False 2025-08-14T21:47:21.9215529Z NO_TEST_TIMEOUT: False 2025-08-14T21:47:21.9215739Z NO_TD: False 2025-08-14T21:47:21.9215946Z VC_PRODUCT: BuildTools 2025-08-14T21:47:21.9216153Z VC_VERSION: 2025-08-14T21:47:21.9216347Z VS_VERSION: 17.4.1 2025-08-14T21:47:21.9216542Z VC_YEAR: 2022 2025-08-14T21:47:21.9216758Z AWS_DEFAULT_REGION: us-east-1 2025-08-14T21:47:21.9216999Z PR_NUMBER: 2025-08-14T21:47:21.9217201Z GITHUB_REPOSITORY: pytorch/pytorch 2025-08-14T21:47:21.9217475Z GITHUB_WORKFLOW: trunk 2025-08-14T21:47:21.9217689Z GITHUB_JOB: test 2025-08-14T21:47:21.9217905Z GITHUB_RUN_ID: 16976255045 2025-08-14T21:47:21.9218149Z GITHUB_RUN_NUMBER: 140204 2025-08-14T21:47:21.9218385Z GITHUB_RUN_ATTEMPT: 1 2025-08-14T21:47:21.9218586Z JOB_ID: 48128743919 2025-08-14T21:47:21.9218969Z JOB_NAME: win-vs2022-cpu-py3 / test (default, 1, 3, lf.windows.4xlarge.nonephemeral) 2025-08-14T21:47:21.9219474Z SHA1: 1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T21:47:21.9219810Z CUDA_VERSION: cpu 2025-08-14T21:47:21.9220094Z PYTORCH_FINAL_PACKAGE_DIR: /c/16976255045/build-results/ 2025-08-14T21:47:21.9220475Z BUILD_ENVIRONMENT: win-vs2022-cpu-py3 2025-08-14T21:47:21.9220954Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-08-14T21:47:21.9221369Z SHARD_NUMBER: 1 2025-08-14T21:47:21.9221566Z NUM_TEST_SHARDS: 3 2025-08-14T21:47:21.9221807Z TEST_CONFIG: default 2025-08-14T21:47:21.9222016Z REENABLED_ISSUES: 2025-08-14T21:47:21.9222226Z TORCH_CUDA_ARCH_LIST: 8.6 2025-08-14T21:47:21.9222472Z PYTORCH_TEST_CUDA_MEM_LEAK_CHECK: 0 2025-08-14T21:47:21.9222758Z PYTORCH_TEST_RERUN_DISABLED_TESTS: 0 2025-08-14T21:47:21.9223013Z ##[endgroup] 2025-08-14T21:47:21.9413446Z /c/16976255045/build-results /c/actions-runner/_work/pytorch/pytorch 2025-08-14T21:47:22.4798464Z Processing c:\16976255045\build-results\torch-2.9.0a0+git1fc683c-cp39-cp39-win_amd64.whl (from torch==2.9.0a0+git1fc683c) 2025-08-14T21:47:23.7016989Z Collecting optree==0.13.0 2025-08-14T21:47:23.8908702Z Downloading optree-0.13.0-cp39-cp39-win_amd64.whl.metadata (48 kB) 2025-08-14T21:47:23.9743225Z -------------------------------------- 48.7/48.7 kB 493.4 kB/s eta 0:00:00 2025-08-14T21:47:24.0117193Z 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-14T21:47:24.0600861Z Collecting filelock (from torch==2.9.0a0+git1fc683c->torch==2.9.0a0+git1fc683c) 2025-08-14T21:47:24.0658419Z Downloading filelock-3.19.1-py3-none-any.whl.metadata (2.1 kB) 2025-08-14T21:47:24.1093857Z Collecting sympy>=1.13.3 (from torch==2.9.0a0+git1fc683c->torch==2.9.0a0+git1fc683c) 2025-08-14T21:47:24.1144478Z Downloading sympy-1.14.0-py3-none-any.whl.metadata (12 kB) 2025-08-14T21:47:24.1267644Z Requirement already satisfied: networkx>=2.5.1 in c:\jenkins\miniconda3\lib\site-packages (from torch==2.9.0a0+git1fc683c->torch==2.9.0a0+git1fc683c) (2.8.8) 2025-08-14T21:47:24.1543305Z Collecting jinja2 (from torch==2.9.0a0+git1fc683c->torch==2.9.0a0+git1fc683c) 2025-08-14T21:47:24.1601710Z Downloading jinja2-3.1.6-py3-none-any.whl.metadata (2.9 kB) 2025-08-14T21:47:24.2166186Z Collecting fsspec>=0.8.5 (from torch==2.9.0a0+git1fc683c->torch==2.9.0a0+git1fc683c) 2025-08-14T21:47:24.2222076Z Downloading fsspec-2025.7.0-py3-none-any.whl.metadata (12 kB) 2025-08-14T21:47:24.2615399Z Collecting intel-openmp==2025.1.1 (from torch==2.9.0a0+git1fc683c->torch==2.9.0a0+git1fc683c) 2025-08-14T21:47:24.2683297Z Downloading intel_openmp-2025.1.1-py2.py3-none-win_amd64.whl.metadata (1.3 kB) 2025-08-14T21:47:24.3021439Z Collecting intel-cmplr-lib-ur==2025.1.1 (from intel-openmp==2025.1.1->torch==2.9.0a0+git1fc683c->torch==2.9.0a0+git1fc683c) 2025-08-14T21:47:24.3068949Z Downloading intel_cmplr_lib_ur-2025.1.1-py2.py3-none-win_amd64.whl.metadata (1.3 kB) 2025-08-14T21:47:24.3387927Z Collecting umf==0.10.* (from intel-cmplr-lib-ur==2025.1.1->intel-openmp==2025.1.1->torch==2.9.0a0+git1fc683c->torch==2.9.0a0+git1fc683c) 2025-08-14T21:47:24.3452648Z Downloading umf-0.10.0-py2.py3-none-win_amd64.whl.metadata (1.1 kB) 2025-08-14T21:47:24.3737447Z Collecting tcmlib==1.3 (from umf==0.10.*->intel-cmplr-lib-ur==2025.1.1->intel-openmp==2025.1.1->torch==2.9.0a0+git1fc683c->torch==2.9.0a0+git1fc683c) 2025-08-14T21:47:24.3830114Z Downloading tcmlib-1.3.0-py2.py3-none-win_amd64.whl.metadata (1.0 kB) 2025-08-14T21:47:24.3993157Z Requirement already satisfied: opt-einsum>=3.3 in c:\jenkins\miniconda3\lib\site-packages (from torch==2.9.0a0+git1fc683c->torch==2.9.0a0+git1fc683c) (3.4.0) 2025-08-14T21:47:24.5462820Z 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+git1fc683c->torch==2.9.0a0+git1fc683c) (1.2.1) 2025-08-14T21:47:24.6296900Z Collecting MarkupSafe>=2.0 (from jinja2->torch==2.9.0a0+git1fc683c->torch==2.9.0a0+git1fc683c) 2025-08-14T21:47:24.6364733Z Downloading MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl.metadata (4.1 kB) 2025-08-14T21:47:24.6668468Z Downloading optree-0.13.0-cp39-cp39-win_amd64.whl (270 kB) 2025-08-14T21:47:24.6972005Z ---------------------------------------- 270.1/270.1 kB 8.4 MB/s eta 0:00:00 2025-08-14T21:47:24.7054179Z Downloading intel_openmp-2025.1.1-py2.py3-none-win_amd64.whl (12.7 MB) 2025-08-14T21:47:24.8137721Z ---------------------------------------- 12.7/12.7 MB 131.1 MB/s eta 0:00:00 2025-08-14T21:47:24.8223666Z Downloading intel_cmplr_lib_ur-2025.1.1-py2.py3-none-win_amd64.whl (1.1 MB) 2025-08-14T21:47:24.8394806Z ---------------------------------------- 1.1/1.1 MB 65.9 MB/s eta 0:00:00 2025-08-14T21:47:24.8469417Z Downloading umf-0.10.0-py2.py3-none-win_amd64.whl (193 kB) 2025-08-14T21:47:24.8920707Z ---------------------------------------- 193.9/193.9 kB 5.7 MB/s eta 0:00:00 2025-08-14T21:47:24.9000694Z Downloading tcmlib-1.3.0-py2.py3-none-win_amd64.whl (356 kB) 2025-08-14T21:47:24.9117840Z ---------------------------------------- 356.9/356.9 kB ? eta 0:00:00 2025-08-14T21:47:24.9168131Z Downloading fsspec-2025.7.0-py3-none-any.whl (199 kB) 2025-08-14T21:47:24.9278719Z --------------------------------------- 199.6/199.6 kB 11.8 MB/s eta 0:00:00 2025-08-14T21:47:24.9330449Z Downloading sympy-1.14.0-py3-none-any.whl (6.3 MB) 2025-08-14T21:47:24.9848503Z ---------------------------------------- 6.3/6.3 MB 133.8 MB/s eta 0:00:00 2025-08-14T21:47:24.9901800Z Downloading filelock-3.19.1-py3-none-any.whl (15 kB) 2025-08-14T21:47:25.0052173Z Downloading jinja2-3.1.6-py3-none-any.whl (134 kB) 2025-08-14T21:47:25.0127368Z ---------------------------------------- 134.9/134.9 kB 7.8 MB/s eta 0:00:00 2025-08-14T21:47:25.0191202Z Downloading MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl (15 kB) 2025-08-14T21:47:26.1056901Z Installing collected packages: tcmlib, umf, sympy, optree, MarkupSafe, fsspec, filelock, jinja2, intel-cmplr-lib-ur, intel-openmp, torch 2025-08-14T21:47:26.1534996Z Attempting uninstall: sympy 2025-08-14T21:47:26.1550858Z Found existing installation: sympy 1.11.1 2025-08-14T21:47:26.5571523Z Uninstalling sympy-1.11.1: 2025-08-14T21:47:26.9373617Z Successfully uninstalled sympy-1.11.1 2025-08-14T21:47:34.9097833Z WARNING: The script isympy.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-14T21:47:34.9098636Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-14T21:47:56.8352769Z WARNING: The scripts torchfrtrace.exe and torchrun.exe are installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-14T21:47:56.8353747Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-14T21:47:57.0308999Z Successfully installed MarkupSafe-3.0.2 filelock-3.19.1 fsspec-2025.7.0 intel-cmplr-lib-ur-2025.1.1 intel-openmp-2025.1.1 jinja2-3.1.6 optree-0.13.0 sympy-1.14.0 tcmlib-1.3.0 torch-2.9.0a0+git1fc683c umf-0.10.0 2025-08-14T21:47:57.2053759Z /c/actions-runner/_work/pytorch/pytorch 2025-08-14T21:47:57.2404988Z +++ dirname .ci/pytorch/win-test.sh 2025-08-14T21:47:57.2476950Z ++ cd .ci/pytorch 2025-08-14T21:47:57.2481048Z ++ pwd 2025-08-14T21:47:57.2486509Z + SCRIPT_PARENT_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch 2025-08-14T21:47:57.2487058Z + source /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/common.sh 2025-08-14T21:47:57.2551226Z +++ dirname /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/common.sh 2025-08-14T21:47:57.2623767Z ++ source /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/common_utils.sh 2025-08-14T21:47:57.2627272Z +++ declare -f -t trap_add 2025-08-14T21:47:57.2634103Z ++ set -ex -o pipefail 2025-08-14T21:47:57.2634395Z ++ [[ win-vs2022-cpu-py3 == *rocm* ]] 2025-08-14T21:47:57.2634678Z ++ BUILD_TEST_LIBTORCH=0 2025-08-14T21:47:57.2635032Z + export TMP_DIR=/c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-08-14T21:47:57.2635519Z + TMP_DIR=/c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-08-14T21:47:57.2697489Z ++ cygpath -w /c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-08-14T21:47:57.2801312Z + TMP_DIR_WIN='C:\actions-runner\_work\pytorch\pytorch\build\win_tmp' 2025-08-14T21:47:57.2801740Z + export TMP_DIR_WIN 2025-08-14T21:47:57.2802106Z + export PROJECT_DIR=/c/actions-runner/_work/pytorch/pytorch 2025-08-14T21:47:57.2802504Z + PROJECT_DIR=/c/actions-runner/_work/pytorch/pytorch 2025-08-14T21:47:57.2862692Z ++ cygpath -w /c/actions-runner/_work/pytorch/pytorch 2025-08-14T21:47:57.2964358Z + PROJECT_DIR_WIN='C:\actions-runner\_work\pytorch\pytorch' 2025-08-14T21:47:57.2964768Z + export PROJECT_DIR_WIN 2025-08-14T21:47:57.2965111Z + export TEST_DIR=/c/actions-runner/_work/pytorch/pytorch/test 2025-08-14T21:47:57.2965521Z + TEST_DIR=/c/actions-runner/_work/pytorch/pytorch/test 2025-08-14T21:47:57.3029321Z ++ cygpath -w /c/actions-runner/_work/pytorch/pytorch/test 2025-08-14T21:47:57.3134029Z + TEST_DIR_WIN='C:\actions-runner\_work\pytorch\pytorch\test' 2025-08-14T21:47:57.3134421Z + export TEST_DIR_WIN 2025-08-14T21:47:57.3134994Z + export PYTORCH_FINAL_PACKAGE_DIR=/c/16976255045/build-results/ 2025-08-14T21:47:57.3135421Z + PYTORCH_FINAL_PACKAGE_DIR=/c/16976255045/build-results/ 2025-08-14T21:47:57.3195595Z ++ cygpath -w /c/16976255045/build-results/ 2025-08-14T21:47:57.3296202Z + PYTORCH_FINAL_PACKAGE_DIR_WIN='C:\16976255045\build-results\' 2025-08-14T21:47:57.3296646Z + export PYTORCH_FINAL_PACKAGE_DIR_WIN 2025-08-14T21:47:57.3296939Z + export TORCH_SERIALIZATION_DEBUG=1 2025-08-14T21:47:57.3297227Z + TORCH_SERIALIZATION_DEBUG=1 2025-08-14T21:47:57.3297868Z + mkdir -p /c/actions-runner/_work/pytorch/pytorch/build/win_tmp/build/torch 2025-08-14T21:47:57.3437342Z + export SCRIPT_HELPERS_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-08-14T21:47:57.3438119Z + SCRIPT_HELPERS_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-08-14T21:47:57.3438689Z + [[ default = \f\o\r\c\e\_\o\n\_\c\p\u ]] 2025-08-14T21:47:57.3438989Z + [[ win-vs2022-cpu-py3 == *cuda* ]] 2025-08-14T21:47:57.3439606Z + 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-14T21:47:58.1031009Z Collecting pytest-rerunfailures==10.3 2025-08-14T21:47:58.2937994Z Downloading pytest_rerunfailures-10.3-py3-none-any.whl.metadata (15 kB) 2025-08-14T21:47:58.3294825Z Requirement already satisfied: pytest-cpp==2.3.0 in c:\jenkins\miniconda3\lib\site-packages (2.3.0) 2025-08-14T21:47:58.3817621Z Collecting tensorboard==2.13.0 2025-08-14T21:47:58.3883382Z Downloading tensorboard-2.13.0-py3-none-any.whl.metadata (1.8 kB) 2025-08-14T21:47:58.6981975Z Collecting protobuf==5.29.4 2025-08-14T21:47:58.7044288Z Downloading protobuf-5.29.4-cp39-cp39-win_amd64.whl.metadata (592 bytes) 2025-08-14T21:47:58.7294573Z Collecting pytest-subtests==0.13.1 2025-08-14T21:47:58.7358074Z Downloading pytest_subtests-0.13.1-py3-none-any.whl.metadata (6.1 kB) 2025-08-14T21:47:58.7473263Z Requirement already satisfied: packaging>=17.1 in c:\jenkins\miniconda3\lib\site-packages (from pytest-rerunfailures==10.3) (23.2) 2025-08-14T21:47:58.7480458Z Requirement already satisfied: pytest>=5.3 in c:\jenkins\miniconda3\lib\site-packages (from pytest-rerunfailures==10.3) (7.1.3) 2025-08-14T21:47:58.7509162Z Requirement already satisfied: colorama in c:\jenkins\miniconda3\lib\site-packages (from pytest-cpp==2.3.0) (0.4.6) 2025-08-14T21:47:58.7821965Z Collecting absl-py>=0.4 (from tensorboard==2.13.0) 2025-08-14T21:47:58.7876127Z Downloading absl_py-2.3.1-py3-none-any.whl.metadata (3.3 kB) 2025-08-14T21:47:59.5210195Z Collecting grpcio>=1.48.2 (from tensorboard==2.13.0) 2025-08-14T21:47:59.5296216Z Downloading grpcio-1.74.0-cp39-cp39-win_amd64.whl.metadata (4.0 kB) 2025-08-14T21:47:59.7001645Z Collecting google-auth<3,>=1.6.3 (from tensorboard==2.13.0) 2025-08-14T21:47:59.7055167Z Downloading google_auth-2.40.3-py2.py3-none-any.whl.metadata (6.2 kB) 2025-08-14T21:47:59.7329099Z Collecting google-auth-oauthlib<1.1,>=0.5 (from tensorboard==2.13.0) 2025-08-14T21:47:59.7388250Z Downloading google_auth_oauthlib-1.0.0-py2.py3-none-any.whl.metadata (2.7 kB) 2025-08-14T21:47:59.7743532Z Collecting markdown>=2.6.8 (from tensorboard==2.13.0) 2025-08-14T21:47:59.7796458Z Downloading markdown-3.8.2-py3-none-any.whl.metadata (5.1 kB) 2025-08-14T21:47:59.7866571Z Requirement already satisfied: numpy>=1.12.0 in c:\jenkins\miniconda3\lib\site-packages (from tensorboard==2.13.0) (1.22.3) 2025-08-14T21:47:59.8075919Z 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-14T21:47:59.8082867Z Requirement already satisfied: setuptools>=41.0.0 in c:\jenkins\miniconda3\lib\site-packages (from tensorboard==2.13.0) (78.1.1) 2025-08-14T21:47:59.8244266Z Collecting tensorboard-data-server<0.8.0,>=0.7.0 (from tensorboard==2.13.0) 2025-08-14T21:47:59.8299047Z Downloading tensorboard_data_server-0.7.2-py3-none-any.whl.metadata (1.1 kB) 2025-08-14T21:47:59.9244049Z Collecting werkzeug>=1.0.1 (from tensorboard==2.13.0) 2025-08-14T21:47:59.9298705Z Downloading werkzeug-3.1.3-py3-none-any.whl.metadata (3.7 kB) 2025-08-14T21:47:59.9376341Z Requirement already satisfied: wheel>=0.26 in c:\jenkins\miniconda3\lib\site-packages (from tensorboard==2.13.0) (0.43.0) 2025-08-14T21:47:59.9430919Z 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-14T21:48:00.0541856Z Collecting cachetools<6.0,>=2.0.0 (from google-auth<3,>=1.6.3->tensorboard==2.13.0) 2025-08-14T21:48:00.0596201Z Downloading cachetools-5.5.2-py3-none-any.whl.metadata (5.4 kB) 2025-08-14T21:48:00.0963939Z Collecting pyasn1-modules>=0.2.1 (from google-auth<3,>=1.6.3->tensorboard==2.13.0) 2025-08-14T21:48:00.1024916Z Downloading pyasn1_modules-0.4.2-py3-none-any.whl.metadata (3.5 kB) 2025-08-14T21:48:00.1323499Z Collecting rsa<5,>=3.1.4 (from google-auth<3,>=1.6.3->tensorboard==2.13.0) 2025-08-14T21:48:00.1392757Z Downloading rsa-4.9.1-py3-none-any.whl.metadata (5.6 kB) 2025-08-14T21:48:00.1884185Z Collecting requests-oauthlib>=0.7.0 (from google-auth-oauthlib<1.1,>=0.5->tensorboard==2.13.0) 2025-08-14T21:48:00.1933753Z Downloading requests_oauthlib-2.0.0-py2.py3-none-any.whl.metadata (11 kB) 2025-08-14T21:48:00.2166070Z 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-14T21:48:00.2336782Z Requirement already satisfied: iniconfig in c:\jenkins\miniconda3\lib\site-packages (from pytest>=5.3->pytest-rerunfailures==10.3) (2.1.0) 2025-08-14T21:48:00.2345183Z 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-14T21:48:00.2352333Z 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-14T21:48:00.2364327Z 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-14T21:48:00.2501249Z 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-14T21:48:00.2508603Z 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.4.26) 2025-08-14T21:48:00.2522848Z 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-14T21:48:00.2534873Z 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-14T21:48:00.2828806Z 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-14T21:48:00.3240425Z 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-14T21:48:00.3766757Z 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-14T21:48:00.3820740Z Downloading pyasn1-0.6.1-py3-none-any.whl.metadata (8.4 kB) 2025-08-14T21:48:00.4171731Z Collecting oauthlib>=3.0.0 (from requests-oauthlib>=0.7.0->google-auth-oauthlib<1.1,>=0.5->tensorboard==2.13.0) 2025-08-14T21:48:00.4225379Z Downloading oauthlib-3.3.1-py3-none-any.whl.metadata (7.9 kB) 2025-08-14T21:48:00.5100993Z Downloading pytest_rerunfailures-10.3-py3-none-any.whl (11 kB) 2025-08-14T21:48:00.5259168Z Downloading tensorboard-2.13.0-py3-none-any.whl (5.6 MB) 2025-08-14T21:48:00.5826891Z ---------------------------------------- 5.6/5.6 MB 118.3 MB/s eta 0:00:00 2025-08-14T21:48:00.5935833Z Downloading protobuf-5.29.4-cp39-cp39-win_amd64.whl (434 kB) 2025-08-14T21:48:00.6060327Z ---------------------------------------- 434.6/434.6 kB ? eta 0:00:00 2025-08-14T21:48:00.6117763Z Downloading pytest_subtests-0.13.1-py3-none-any.whl (8.0 kB) 2025-08-14T21:48:00.6221909Z Downloading absl_py-2.3.1-py3-none-any.whl (135 kB) 2025-08-14T21:48:00.6333217Z ---------------------------------------- 135.8/135.8 kB 7.8 MB/s eta 0:00:00 2025-08-14T21:48:00.6384094Z Downloading google_auth-2.40.3-py2.py3-none-any.whl (216 kB) 2025-08-14T21:48:00.6498574Z --------------------------------------- 216.1/216.1 kB 13.7 MB/s eta 0:00:00 2025-08-14T21:48:00.6548669Z Downloading google_auth_oauthlib-1.0.0-py2.py3-none-any.whl (18 kB) 2025-08-14T21:48:00.6673983Z Downloading grpcio-1.74.0-cp39-cp39-win_amd64.whl (4.5 MB) 2025-08-14T21:48:00.7072255Z ---------------------------------------- 4.5/4.5 MB 144.7 MB/s eta 0:00:00 2025-08-14T21:48:00.7121099Z Downloading markdown-3.8.2-py3-none-any.whl (106 kB) 2025-08-14T21:48:00.7217710Z ---------------------------------------- 106.8/106.8 kB 6.0 MB/s eta 0:00:00 2025-08-14T21:48:00.7271441Z Downloading tensorboard_data_server-0.7.2-py3-none-any.whl (2.4 kB) 2025-08-14T21:48:00.7393912Z Downloading werkzeug-3.1.3-py3-none-any.whl (224 kB) 2025-08-14T21:48:00.7497886Z ---------------------------------------- 224.5/224.5 kB ? eta 0:00:00 2025-08-14T21:48:00.7545704Z Downloading cachetools-5.5.2-py3-none-any.whl (10 kB) 2025-08-14T21:48:00.7652772Z Downloading pyasn1_modules-0.4.2-py3-none-any.whl (181 kB) 2025-08-14T21:48:00.7760741Z --------------------------------------- 181.3/181.3 kB 11.4 MB/s eta 0:00:00 2025-08-14T21:48:00.7809597Z Downloading requests_oauthlib-2.0.0-py2.py3-none-any.whl (24 kB) 2025-08-14T21:48:00.7916370Z Downloading rsa-4.9.1-py3-none-any.whl (34 kB) 2025-08-14T21:48:00.8034966Z Downloading oauthlib-3.3.1-py3-none-any.whl (160 kB) 2025-08-14T21:48:00.8142628Z ---------------------------------------- 160.1/160.1 kB ? eta 0:00:00 2025-08-14T21:48:00.8191314Z Downloading pyasn1-0.6.1-py3-none-any.whl (83 kB) 2025-08-14T21:48:00.8283894Z ---------------------------------------- 83.1/83.1 kB 4.6 MB/s eta 0:00:00 2025-08-14T21:48:01.7801653Z 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-14T21:48:02.0973005Z Attempting uninstall: protobuf 2025-08-14T21:48:02.0983803Z Found existing installation: protobuf 5.29.3 2025-08-14T21:48:02.1172402Z Uninstalling protobuf-5.29.3: 2025-08-14T21:48:02.1217416Z Successfully uninstalled protobuf-5.29.3 2025-08-14T21:48:02.9488163Z 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-14T21:48:02.9489368Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-14T21:48:03.0207626Z Attempting uninstall: pytest-rerunfailures 2025-08-14T21:48:03.0223277Z Found existing installation: pytest-rerunfailures 10.2 2025-08-14T21:48:03.0268363Z Uninstalling pytest-rerunfailures-10.2: 2025-08-14T21:48:03.5056216Z Successfully uninstalled pytest-rerunfailures-10.2 2025-08-14T21:48:04.0178968Z WARNING: The script markdown_py.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-14T21:48:04.0179823Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-14T21:48:04.6775455Z WARNING: The script google-oauthlib-tool.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-14T21:48:04.6776337Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-14T21:48:05.3963409Z WARNING: The script tensorboard.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-14T21:48:05.3964245Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-14T21:48:05.4539631Z 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-14T21:48:05.8578592Z + python -m pip install z3-solver==4.15.1.0 2025-08-14T21:48:06.6600746Z Collecting z3-solver==4.15.1.0 2025-08-14T21:48:06.8465343Z Downloading z3_solver-4.15.1.0-py3-none-win_amd64.whl.metadata (778 bytes) 2025-08-14T21:48:06.8620677Z Downloading z3_solver-4.15.1.0-py3-none-win_amd64.whl (16.4 MB) 2025-08-14T21:48:07.1060521Z ---------------------------------------- 16.4/16.4 MB 109.9 MB/s eta 0:00:00 2025-08-14T21:48:08.2447537Z Installing collected packages: z3-solver 2025-08-14T21:48:08.7269489Z Successfully installed z3-solver-4.15.1.0 2025-08-14T21:48:08.8431542Z + python -m pip install tlparse==0.3.30 2025-08-14T21:48:09.7440052Z Collecting tlparse==0.3.30 2025-08-14T21:48:09.9441831Z Downloading tlparse-0.3.30-py3-none-win_amd64.whl.metadata (2.0 kB) 2025-08-14T21:48:09.9609053Z Downloading tlparse-0.3.30-py3-none-win_amd64.whl (1.8 MB) 2025-08-14T21:48:10.1920892Z ---------------------------------------- 1.8/1.8 MB 9.0 MB/s eta 0:00:00 2025-08-14T21:48:11.2168528Z Installing collected packages: tlparse 2025-08-14T21:48:11.2993164Z Successfully installed tlparse-0.3.30 2025-08-14T21:48:11.4204102Z + python -m pip install parameterized==0.8.1 2025-08-14T21:48:12.1746785Z Collecting parameterized==0.8.1 2025-08-14T21:48:12.3617280Z Downloading parameterized-0.8.1-py2.py3-none-any.whl.metadata (18 kB) 2025-08-14T21:48:12.4076134Z Downloading parameterized-0.8.1-py2.py3-none-any.whl (26 kB) 2025-08-14T21:48:13.4334592Z Installing collected packages: parameterized 2025-08-14T21:48:13.5146683Z Successfully installed parameterized-0.8.1 2025-08-14T21:48:13.6235511Z + python -m pip install pulp==2.9.0 2025-08-14T21:48:14.3875583Z Collecting pulp==2.9.0 2025-08-14T21:48:14.5757202Z Downloading PuLP-2.9.0-py3-none-any.whl.metadata (5.4 kB) 2025-08-14T21:48:14.5913084Z Downloading PuLP-2.9.0-py3-none-any.whl (17.7 MB) 2025-08-14T21:48:14.8868875Z ---------------------------------------- 17.7/17.7 MB 131.1 MB/s eta 0:00:00 2025-08-14T21:48:15.9370835Z Installing collected packages: pulp 2025-08-14T21:48:16.3403451Z WARNING: The script pulptest.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-14T21:48:16.3404265Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-14T21:48:16.3947549Z Successfully installed pulp-2.9.0 2025-08-14T21:48:16.5088055Z + python -m pip install expecttest==0.3.0 2025-08-14T21:48:17.2573972Z Collecting expecttest==0.3.0 2025-08-14T21:48:17.4572419Z Downloading expecttest-0.3.0-py3-none-any.whl.metadata (3.8 kB) 2025-08-14T21:48:17.4745706Z Downloading expecttest-0.3.0-py3-none-any.whl (8.2 kB) 2025-08-14T21:48:18.4818448Z Installing collected packages: expecttest 2025-08-14T21:48:18.4819947Z Attempting uninstall: expecttest 2025-08-14T21:48:18.4829530Z Found existing installation: expecttest 0.1.3 2025-08-14T21:48:18.4869790Z Uninstalling expecttest-0.1.3: 2025-08-14T21:48:18.4889879Z Successfully uninstalled expecttest-0.1.3 2025-08-14T21:48:18.5464579Z Successfully installed expecttest-0.3.0 2025-08-14T21:48:18.6625498Z + run_tests 2025-08-14T21:48:18.6626051Z + for path in '/c/Program Files/NVIDIA Corporation/NVSMI/nvidia-smi.exe' /c/Windows/System32/nvidia-smi.exe 2025-08-14T21:48:18.6626683Z + [[ -x /c/Program Files/NVIDIA Corporation/NVSMI/nvidia-smi.exe ]] 2025-08-14T21:48:18.6627551Z + for path in '/c/Program Files/NVIDIA Corporation/NVSMI/nvidia-smi.exe' /c/Windows/System32/nvidia-smi.exe 2025-08-14T21:48:18.6628094Z + [[ -x /c/Windows/System32/nvidia-smi.exe ]] 2025-08-14T21:48:18.6628789Z + /c/Windows/System32/nvidia-smi.exe 2025-08-14T21:48:18.7058445Z 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-14T21:48:18.7059421Z 2025-08-14T21:48:18.7094669Z + echo true 2025-08-14T21:48:18.7094896Z + break 2025-08-14T21:48:18.7095063Z true 2025-08-14T21:48:18.7095249Z + [[ 3 -eq 1 ]] 2025-08-14T21:48:18.7095680Z + /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/test_python_shard.bat 2025-08-14T21:48:18.7242957Z 2025-08-14T21:48:18.7243997Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\setup_pytorch_env.bat 2025-08-14T21:48:18.7252859Z 2025-08-14T21:48:18.7255442Z 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-14T21:48:18.7257869Z 2025-08-14T21:48:18.7258383Z C:\actions-runner\_work\pytorch\pytorch>set INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-08-14T21:48:18.7259967Z 2025-08-14T21:48:18.7260580Z 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-14T21:48:18.7271292Z 2025-08-14T21:48:18.7271981Z 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-14T21:48:18.7276538Z 2025-08-14T21:48:18.7276948Z C:\actions-runner\_work\pytorch\pytorch>if not exist C:\Jenkins\Miniconda3 (set INSTALL_FRESH_CONDA=1 ) 2025-08-14T21:48:18.7279882Z 2025-08-14T21:48:18.7280113Z C:\actions-runner\_work\pytorch\pytorch>if "" == "1" ( 2025-08-14T21:48:18.7281257Z 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-14T21:48:18.7282216Z if errorlevel 1 exit /b 2025-08-14T21:48:18.7282503Z if not errorlevel 0 exit /b 2025-08-14T21:48:18.7283284Z 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-14T21:48:18.7284069Z if errorlevel 1 exit /b 2025-08-14T21:48:18.7284325Z if not errorlevel 0 exit /b 2025-08-14T21:48:18.7284545Z ) 2025-08-14T21:48:18.7284652Z 2025-08-14T21:48:18.7284999Z C:\actions-runner\_work\pytorch\pytorch>call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 2025-08-14T21:48:19.4378383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\functional.py 2025-08-14T21:48:19.4383414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\hub.py 2025-08-14T21:48:19.4387617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\library.py 2025-08-14T21:48:19.4392328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\overrides.py 2025-08-14T21:48:19.4397151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\py.typed 2025-08-14T21:48:19.4405405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quasirandom.py 2025-08-14T21:48:19.4408974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\random.py 2025-08-14T21:48:19.4412416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\return_types.py 2025-08-14T21:48:19.4415910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\return_types.pyi 2025-08-14T21:48:19.4419499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\serialization.py 2025-08-14T21:48:19.4423761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\storage.py 2025-08-14T21:48:19.4427827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\torch_version.py 2025-08-14T21:48:19.4431242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\types.py 2025-08-14T21:48:19.4434737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\version.py 2025-08-14T21:48:19.4437923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_appdirs.py 2025-08-14T21:48:19.4441629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C.cp39-win_amd64.pyd 2025-08-14T21:48:19.4445120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_classes.py 2025-08-14T21:48:19.4448492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_compile.py 2025-08-14T21:48:19.4451840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_ops.py 2025-08-14T21:48:19.4455563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_environment.py 2025-08-14T21:48:19.4459152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_guards.py 2025-08-14T21:48:19.4463049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_jit_internal.py 2025-08-14T21:48:19.4467154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_linalg_utils.py 2025-08-14T21:48:19.4470601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lobpcg.py 2025-08-14T21:48:19.4474276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lowrank.py 2025-08-14T21:48:19.4484288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_meta_registrations.py 2025-08-14T21:48:19.4489683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_namedtensor_internals.py 2025-08-14T21:48:19.4493176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_ops.py 2025-08-14T21:48:19.4496999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_python_dispatcher.py 2025-08-14T21:48:19.4500834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_size_docs.py 2025-08-14T21:48:19.4504516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_sources.py 2025-08-14T21:48:19.4508071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_storage_docs.py 2025-08-14T21:48:19.4511580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_streambase.py 2025-08-14T21:48:19.4515692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_tensor.py 2025-08-14T21:48:19.4527447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_tensor_docs.py 2025-08-14T21:48:19.4530031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_tensor_str.py 2025-08-14T21:48:19.4539364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_thread_safe_fork.py 2025-08-14T21:48:19.4542164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_torch_docs.py 2025-08-14T21:48:19.4548734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_utils.py 2025-08-14T21:48:19.4552498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_utils_internal.py 2025-08-14T21:48:19.4556570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_VF.py 2025-08-14T21:48:19.4560117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_VF.pyi 2025-08-14T21:48:19.4570599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vmap_internals.py 2025-08-14T21:48:19.4574584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_weights_only_unpickler.py 2025-08-14T21:48:19.4578389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__config__.py 2025-08-14T21:48:19.4582588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__future__.py 2025-08-14T21:48:19.4586735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__init__.py 2025-08-14T21:48:19.4601375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\memory.py 2025-08-14T21:48:19.4605505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\_utils.py 2025-08-14T21:48:19.4609211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\__init__.py 2025-08-14T21:48:19.4616397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\__pycache__\memory.cpython-39.pyc 2025-08-14T21:48:19.4620080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:48:19.4623652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.4636068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\autocast_mode.py 2025-08-14T21:48:19.4639833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\grad_scaler.py 2025-08-14T21:48:19.4644303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\__init__.py 2025-08-14T21:48:19.4670562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\__pycache__\autocast_mode.cpython-39.pyc 2025-08-14T21:48:19.4674259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\__pycache__\grad_scaler.cpython-39.pyc 2025-08-14T21:48:19.4677775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.4693092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\__init__.py 2025-08-14T21:48:19.4700949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\__init__.py 2025-08-14T21:48:19.4708339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\__init__.py 2025-08-14T21:48:19.4714887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\modules\fused.py 2025-08-14T21:48:19.4718330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\modules\__init__.py 2025-08-14T21:48:19.4725604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\modules\__pycache__\fused.cpython-39.pyc 2025-08-14T21:48:19.4729260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.4737645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\__init__.py 2025-08-14T21:48:19.4744668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\conv_fused.py 2025-08-14T21:48:19.4748528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\linear_fused.py 2025-08-14T21:48:19.4752079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\linear_relu.py 2025-08-14T21:48:19.4755767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\__init__.py 2025-08-14T21:48:19.4768490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\__pycache__\conv_fused.cpython-39.pyc 2025-08-14T21:48:19.4772690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\__pycache__\linear_fused.cpython-39.pyc 2025-08-14T21:48:19.4777176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\__pycache__\linear_relu.cpython-39.pyc 2025-08-14T21:48:19.4785891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.4794062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.4803076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\__init__.py 2025-08-14T21:48:19.4810905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\__init__.py 2025-08-14T21:48:19.4817915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\modules\linear_relu.py 2025-08-14T21:48:19.4821606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\modules\__init__.py 2025-08-14T21:48:19.4828893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\modules\__pycache__\linear_relu.cpython-39.pyc 2025-08-14T21:48:19.4832751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.4840720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.4848936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\bn_relu.py 2025-08-14T21:48:19.4852434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\conv_add.py 2025-08-14T21:48:19.4855894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\conv_relu.py 2025-08-14T21:48:19.4859325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\linear_relu.py 2025-08-14T21:48:19.4862836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__init__.py 2025-08-14T21:48:19.4875392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__pycache__\bn_relu.cpython-39.pyc 2025-08-14T21:48:19.4879188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__pycache__\conv_add.cpython-39.pyc 2025-08-14T21:48:19.4883638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__pycache__\conv_relu.cpython-39.pyc 2025-08-14T21:48:19.4892407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__pycache__\linear_relu.cpython-39.pyc 2025-08-14T21:48:19.4896108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.4904194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.4918007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.4927440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\__init__.py 2025-08-14T21:48:19.4934828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\__init__.py 2025-08-14T21:48:19.4942094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\modules\linear.py 2025-08-14T21:48:19.4945696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\modules\__init__.py 2025-08-14T21:48:19.4953048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\modules\__pycache__\linear.cpython-39.pyc 2025-08-14T21:48:19.4956801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.4964895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.4973239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\conv.py 2025-08-14T21:48:19.4976687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\embedding_ops.py 2025-08-14T21:48:19.4980145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\linear.py 2025-08-14T21:48:19.4983427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\__init__.py 2025-08-14T21:48:19.4995524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\__pycache__\conv.cpython-39.pyc 2025-08-14T21:48:19.5000265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\__pycache__\embedding_ops.cpython-39.pyc 2025-08-14T21:48:19.5003890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\__pycache__\linear.cpython-39.pyc 2025-08-14T21:48:19.5011965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.5020909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.5029731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\__init__.py 2025-08-14T21:48:19.5036966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\activation.py 2025-08-14T21:48:19.5040801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\rnn.py 2025-08-14T21:48:19.5044450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\__init__.py 2025-08-14T21:48:19.5051721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\__pycache__\activation.cpython-39.pyc 2025-08-14T21:48:19.5055465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\__pycache__\rnn.cpython-39.pyc 2025-08-14T21:48:19.5059152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.5071659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.5086076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\functional.py 2025-08-14T21:48:19.5089913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\__init__.py 2025-08-14T21:48:19.5097795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\__init__.py 2025-08-14T21:48:19.5104660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\conv.py 2025-08-14T21:48:19.5108280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\linear.py 2025-08-14T21:48:19.5111801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\rnn.py 2025-08-14T21:48:19.5115588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\__init__.py 2025-08-14T21:48:19.5123137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\__pycache__\conv.cpython-39.pyc 2025-08-14T21:48:19.5126794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\__pycache__\linear.cpython-39.pyc 2025-08-14T21:48:19.5130306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\__pycache__\rnn.cpython-39.pyc 2025-08-14T21:48:19.5141144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.5149632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.5157673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\activation.py 2025-08-14T21:48:19.5161272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\batchnorm.py 2025-08-14T21:48:19.5164643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\conv.py 2025-08-14T21:48:19.5168425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\dropout.py 2025-08-14T21:48:19.5171880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\embedding_ops.py 2025-08-14T21:48:19.5180409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\functional_modules.py 2025-08-14T21:48:19.5183876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\linear.py 2025-08-14T21:48:19.5187304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\normalization.py 2025-08-14T21:48:19.5190891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\rnn.py 2025-08-14T21:48:19.5195293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\utils.py 2025-08-14T21:48:19.5198747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__init__.py 2025-08-14T21:48:19.5206310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\activation.cpython-39.pyc 2025-08-14T21:48:19.5210711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\batchnorm.cpython-39.pyc 2025-08-14T21:48:19.5214196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\conv.cpython-39.pyc 2025-08-14T21:48:19.5222774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\dropout.cpython-39.pyc 2025-08-14T21:48:19.5226562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\embedding_ops.cpython-39.pyc 2025-08-14T21:48:19.5230614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\functional_modules.cpython-39.pyc 2025-08-14T21:48:19.5234363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\linear.cpython-39.pyc 2025-08-14T21:48:19.5237899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\normalization.cpython-39.pyc 2025-08-14T21:48:19.5241475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\rnn.cpython-39.pyc 2025-08-14T21:48:19.5245050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:19.5248563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.5261844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\__init__.py 2025-08-14T21:48:19.5269210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\conv.py 2025-08-14T21:48:19.5272671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\linear.py 2025-08-14T21:48:19.5276134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\rnn.py 2025-08-14T21:48:19.5280084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\sparse.py 2025-08-14T21:48:19.5283458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\utils.py 2025-08-14T21:48:19.5286969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__init__.py 2025-08-14T21:48:19.5299487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\conv.cpython-39.pyc 2025-08-14T21:48:19.5303209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\linear.cpython-39.pyc 2025-08-14T21:48:19.5307096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\rnn.cpython-39.pyc 2025-08-14T21:48:19.5315333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\sparse.cpython-39.pyc 2025-08-14T21:48:19.5319012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:19.5322795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.5331109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.5339166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\__pycache__\functional.cpython-39.pyc 2025-08-14T21:48:19.5343184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.5352611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\__init__.py 2025-08-14T21:48:19.5360209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\linear.py 2025-08-14T21:48:19.5363731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\utils.py 2025-08-14T21:48:19.5367144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\__init__.py 2025-08-14T21:48:19.5374184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\dynamic\linear.py 2025-08-14T21:48:19.5377855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\dynamic\__init__.py 2025-08-14T21:48:19.5385282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\dynamic\__pycache__\linear.cpython-39.pyc 2025-08-14T21:48:19.5388788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\dynamic\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.5402168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\__pycache__\linear.cpython-39.pyc 2025-08-14T21:48:19.5405798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:19.5409269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.5422776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.5431291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.5440243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\_numeric_suite.py 2025-08-14T21:48:19.5443870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\_numeric_suite_fx.py 2025-08-14T21:48:19.5447517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\__init__.py 2025-08-14T21:48:19.5453690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\graph_matcher.py 2025-08-14T21:48:19.5457270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\graph_passes.py 2025-08-14T21:48:19.5460942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\mappings.py 2025-08-14T21:48:19.5464222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\ns_types.py 2025-08-14T21:48:19.5467734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\n_shadows_utils.py 2025-08-14T21:48:19.5476646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\pattern_utils.py 2025-08-14T21:48:19.5480297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\qconfig_multi_mapping.py 2025-08-14T21:48:19.5483705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\utils.py 2025-08-14T21:48:19.5487218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\weight_utils.py 2025-08-14T21:48:19.5490910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__init__.py 2025-08-14T21:48:19.5497533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\graph_matcher.cpython-39.pyc 2025-08-14T21:48:19.5501698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\graph_passes.cpython-39.pyc 2025-08-14T21:48:19.5505405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\mappings.cpython-39.pyc 2025-08-14T21:48:19.5513452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\ns_types.cpython-39.pyc 2025-08-14T21:48:19.5517117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\n_shadows_utils.cpython-39.pyc 2025-08-14T21:48:19.5521068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\pattern_utils.cpython-39.pyc 2025-08-14T21:48:19.5525231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\qconfig_multi_mapping.cpython-39.pyc 2025-08-14T21:48:19.5528788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:19.5532580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\weight_utils.cpython-39.pyc 2025-08-14T21:48:19.5536259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.5550265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\__pycache__\_numeric_suite.cpython-39.pyc 2025-08-14T21:48:19.5554522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\__pycache__\_numeric_suite_fx.cpython-39.pyc 2025-08-14T21:48:19.5558763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.5572175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_mappings.py 2025-08-14T21:48:19.5575548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\__init__.py 2025-08-14T21:48:19.5582843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\base_scheduler.py 2025-08-14T21:48:19.5586845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\cubic_scheduler.py 2025-08-14T21:48:19.5590779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\lambda_scheduler.py 2025-08-14T21:48:19.5600059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\__init__.py 2025-08-14T21:48:19.5607252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\__pycache__\base_scheduler.cpython-39.pyc 2025-08-14T21:48:19.5611412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\__pycache__\cubic_scheduler.cpython-39.pyc 2025-08-14T21:48:19.5615585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\__pycache__\lambda_scheduler.cpython-39.pyc 2025-08-14T21:48:19.5624042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.5635905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\base_sparsifier.py 2025-08-14T21:48:19.5639994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\nearly_diagonal_sparsifier.py 2025-08-14T21:48:19.5643616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\utils.py 2025-08-14T21:48:19.5651541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\weight_norm_sparsifier.py 2025-08-14T21:48:19.5655318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__init__.py 2025-08-14T21:48:19.5661737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__pycache__\base_sparsifier.cpython-39.pyc 2025-08-14T21:48:19.5665432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__pycache__\nearly_diagonal_sparsifier.cpython-39.pyc 2025-08-14T21:48:19.5668941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:19.5677879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__pycache__\weight_norm_sparsifier.cpython-39.pyc 2025-08-14T21:48:19.5681415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.5689899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\__init__.py 2025-08-14T21:48:19.5696184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\activation_sparsifier\activation_sparsifier.py 2025-08-14T21:48:19.5699736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\activation_sparsifier\__init__.py 2025-08-14T21:48:19.5711400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\activation_sparsifier\__pycache__\activation_sparsifier.cpython-39.pyc 2025-08-14T21:48:19.5715504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\activation_sparsifier\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.5723377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_scheduler\base_data_scheduler.py 2025-08-14T21:48:19.5726849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_scheduler\__init__.py 2025-08-14T21:48:19.5733956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_scheduler\__pycache__\base_data_scheduler.cpython-39.pyc 2025-08-14T21:48:19.5737586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_scheduler\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.5749885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\base_data_sparsifier.py 2025-08-14T21:48:19.5753633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\data_norm_sparsifier.py 2025-08-14T21:48:19.5757575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\quantization_utils.py 2025-08-14T21:48:19.5765481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\__init__.py 2025-08-14T21:48:19.5772909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\__init__.py 2025-08-14T21:48:19.5779151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\data_sparsity.py 2025-08-14T21:48:19.5782961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\_data_sparstity_utils.py 2025-08-14T21:48:19.5786624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\__init__.py 2025-08-14T21:48:19.5822296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\__pycache__\data_sparsity.cpython-39.pyc 2025-08-14T21:48:19.5826024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\__pycache__\_data_sparstity_utils.cpython-39.pyc 2025-08-14T21:48:19.5829513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.5841928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.5850268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\__pycache__\base_data_sparsifier.cpython-39.pyc 2025-08-14T21:48:19.5853934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\__pycache__\data_norm_sparsifier.cpython-39.pyc 2025-08-14T21:48:19.5857372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\__pycache__\quantization_utils.cpython-39.pyc 2025-08-14T21:48:19.5866181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.5874028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\base_structured_sparsifier.py 2025-08-14T21:48:19.5877729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\FPGM_pruner.py 2025-08-14T21:48:19.5881356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\lstm_saliency_pruner.py 2025-08-14T21:48:19.5890289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\match_utils.py 2025-08-14T21:48:19.5893924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\parametrization.py 2025-08-14T21:48:19.5898113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\prune_functions.py 2025-08-14T21:48:19.5902059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\saliency_pruner.py 2025-08-14T21:48:19.5905592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__init__.py 2025-08-14T21:48:19.5913351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\base_structured_sparsifier.cpython-39.pyc 2025-08-14T21:48:19.5917065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\FPGM_pruner.cpython-39.pyc 2025-08-14T21:48:19.5920898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\lstm_saliency_pruner.cpython-39.pyc 2025-08-14T21:48:19.5929762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\match_utils.cpython-39.pyc 2025-08-14T21:48:19.5933412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\parametrization.cpython-39.pyc 2025-08-14T21:48:19.5937080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\prune_functions.cpython-39.pyc 2025-08-14T21:48:19.5940728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\saliency_pruner.cpython-39.pyc 2025-08-14T21:48:19.5944615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.5952907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.5961524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\__pycache__\_mappings.cpython-39.pyc 2025-08-14T21:48:19.5965085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.5974342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fake_quantize.py 2025-08-14T21:48:19.5978324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fuser_method_mappings.py 2025-08-14T21:48:19.5981819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fuse_modules.py 2025-08-14T21:48:19.5990580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\observer.py 2025-08-14T21:48:19.5994743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\qconfig.py 2025-08-14T21:48:19.5998361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\qconfig_mapping.py 2025-08-14T21:48:19.6002343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantization_mappings.py 2025-08-14T21:48:19.6005796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantize.py 2025-08-14T21:48:19.6009446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantize_fx.py 2025-08-14T21:48:19.6013399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantize_jit.py 2025-08-14T21:48:19.6017128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantize_pt2e.py 2025-08-14T21:48:19.6020769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quant_type.py 2025-08-14T21:48:19.6024759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\stubs.py 2025-08-14T21:48:19.6027797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\utils.py 2025-08-14T21:48:19.6031612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\_correct_bias.py 2025-08-14T21:48:19.6035288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\_equalize.py 2025-08-14T21:48:19.6038937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\_learnable_fake_quantize.py 2025-08-14T21:48:19.6042845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__init__.py 2025-08-14T21:48:19.6050586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\backend_config.py 2025-08-14T21:48:19.6054361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\executorch.py 2025-08-14T21:48:19.6057906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\fbgemm.py 2025-08-14T21:48:19.6061536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\native.py 2025-08-14T21:48:19.6069957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\observation_type.py 2025-08-14T21:48:19.6072803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\onednn.py 2025-08-14T21:48:19.6076255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\qnnpack.py 2025-08-14T21:48:19.6079910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\tensorrt.py 2025-08-14T21:48:19.6084042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\utils.py 2025-08-14T21:48:19.6088049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\x86.py 2025-08-14T21:48:19.6092194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\_common_operator_config_utils.py 2025-08-14T21:48:19.6095898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\_qnnpack_pt2e.py 2025-08-14T21:48:19.6099934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__init__.py 2025-08-14T21:48:19.6108306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\backend_config.cpython-39.pyc 2025-08-14T21:48:19.6112181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\executorch.cpython-39.pyc 2025-08-14T21:48:19.6115753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\fbgemm.cpython-39.pyc 2025-08-14T21:48:19.6124725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\native.cpython-39.pyc 2025-08-14T21:48:19.6128591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\observation_type.cpython-39.pyc 2025-08-14T21:48:19.6132400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\onednn.cpython-39.pyc 2025-08-14T21:48:19.6135962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\qnnpack.cpython-39.pyc 2025-08-14T21:48:19.6139644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\tensorrt.cpython-39.pyc 2025-08-14T21:48:19.6143349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:19.6147001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\x86.cpython-39.pyc 2025-08-14T21:48:19.6151255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\_common_operator_config_utils.cpython-39.pyc 2025-08-14T21:48:19.6154564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\_qnnpack_pt2e.cpython-39.pyc 2025-08-14T21:48:19.6158295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.6166855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\convert.py 2025-08-14T21:48:19.6170621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\custom_config.py 2025-08-14T21:48:19.6174176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\fuse.py 2025-08-14T21:48:19.6177648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\fuse_handler.py 2025-08-14T21:48:19.6181291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\graph_module.py 2025-08-14T21:48:19.6189704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\lower_to_fbgemm.py 2025-08-14T21:48:19.6193295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\lower_to_qnnpack.py 2025-08-14T21:48:19.6196753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\lstm_utils.py 2025-08-14T21:48:19.6200400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\match_utils.py 2025-08-14T21:48:19.6203842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\pattern_utils.py 2025-08-14T21:48:19.6207318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\prepare.py 2025-08-14T21:48:19.6211278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\qconfig_mapping_utils.py 2025-08-14T21:48:19.6214983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\quantize_handler.py 2025-08-14T21:48:19.6218645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\tracer.py 2025-08-14T21:48:19.6222170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\utils.py 2025-08-14T21:48:19.6225794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_decomposed.py 2025-08-14T21:48:19.6229420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_equalize.py 2025-08-14T21:48:19.6233092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_lower_to_native_backend.py 2025-08-14T21:48:19.6237613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__init__.py 2025-08-14T21:48:19.6245490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\detector.py 2025-08-14T21:48:19.6249401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\model_report.py 2025-08-14T21:48:19.6253727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\model_report_observer.py 2025-08-14T21:48:19.6262551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\model_report_visualizer.py 2025-08-14T21:48:19.6266206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__init__.py 2025-08-14T21:48:19.6272717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__pycache__\detector.cpython-39.pyc 2025-08-14T21:48:19.6277007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__pycache__\model_report.cpython-39.pyc 2025-08-14T21:48:19.6280718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__pycache__\model_report_observer.cpython-39.pyc 2025-08-14T21:48:19.6288769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__pycache__\model_report_visualizer.cpython-39.pyc 2025-08-14T21:48:19.6292576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.6300941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\convert.cpython-39.pyc 2025-08-14T21:48:19.6304825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\custom_config.cpython-39.pyc 2025-08-14T21:48:19.6308496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\fuse.cpython-39.pyc 2025-08-14T21:48:19.6316784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\fuse_handler.cpython-39.pyc 2025-08-14T21:48:19.6320258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\graph_module.cpython-39.pyc 2025-08-14T21:48:19.6323793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\lower_to_fbgemm.cpython-39.pyc 2025-08-14T21:48:19.6327417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\lower_to_qnnpack.cpython-39.pyc 2025-08-14T21:48:19.6330943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\lstm_utils.cpython-39.pyc 2025-08-14T21:48:19.6334490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\match_utils.cpython-39.pyc 2025-08-14T21:48:19.6337965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\pattern_utils.cpython-39.pyc 2025-08-14T21:48:19.6341454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\prepare.cpython-39.pyc 2025-08-14T21:48:19.6345486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\qconfig_mapping_utils.cpython-39.pyc 2025-08-14T21:48:19.6349117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\quantize_handler.cpython-39.pyc 2025-08-14T21:48:19.6352911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\tracer.cpython-39.pyc 2025-08-14T21:48:19.6356467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:19.6360342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\_decomposed.cpython-39.pyc 2025-08-14T21:48:19.6363978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\_equalize.cpython-39.pyc 2025-08-14T21:48:19.6372767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\_lower_to_native_backend.cpython-39.pyc 2025-08-14T21:48:19.6376580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.6385363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\duplicate_dq_pass.py 2025-08-14T21:48:19.6389037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\export_utils.py 2025-08-14T21:48:19.6392417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\graph_utils.py 2025-08-14T21:48:19.6395670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\lowering.py 2025-08-14T21:48:19.6404673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\port_metadata_pass.py 2025-08-14T21:48:19.6408185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\prepare.py 2025-08-14T21:48:19.6411569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\qat_utils.py 2025-08-14T21:48:19.6415467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\utils.py 2025-08-14T21:48:19.6418942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\_affine_quantization.py 2025-08-14T21:48:19.6422848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\_numeric_debugger.py 2025-08-14T21:48:19.6426445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__init__.py 2025-08-14T21:48:19.6432862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\representation\rewrite.py 2025-08-14T21:48:19.6436544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\representation\__init__.py 2025-08-14T21:48:19.6443948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\representation\__pycache__\rewrite.cpython-39.pyc 2025-08-14T21:48:19.6448763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\representation\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.6457483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\duplicate_dq_pass.cpython-39.pyc 2025-08-14T21:48:19.6461088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\export_utils.cpython-39.pyc 2025-08-14T21:48:19.6464605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\graph_utils.cpython-39.pyc 2025-08-14T21:48:19.6473379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\lowering.cpython-39.pyc 2025-08-14T21:48:19.6476988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\port_metadata_pass.cpython-39.pyc 2025-08-14T21:48:19.6480719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\prepare.cpython-39.pyc 2025-08-14T21:48:19.6484278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\qat_utils.cpython-39.pyc 2025-08-14T21:48:19.6488084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:19.6492175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\_affine_quantization.cpython-39.pyc 2025-08-14T21:48:19.6495863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\_numeric_debugger.cpython-39.pyc 2025-08-14T21:48:19.6499388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.6508137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\composable_quantizer.py 2025-08-14T21:48:19.6511994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\embedding_quantizer.py 2025-08-14T21:48:19.6515733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\quantizer.py 2025-08-14T21:48:19.6524166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\utils.py 2025-08-14T21:48:19.6527632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\x86_inductor_quantizer.py 2025-08-14T21:48:19.6531776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\xnnpack_quantizer.py 2025-08-14T21:48:19.6535592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\xnnpack_quantizer_utils.py 2025-08-14T21:48:19.6539349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\xpu_inductor_quantizer.py 2025-08-14T21:48:19.6543157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__init__.py 2025-08-14T21:48:19.6551161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\composable_quantizer.cpython-39.pyc 2025-08-14T21:48:19.6554832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\embedding_quantizer.cpython-39.pyc 2025-08-14T21:48:19.6558643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\quantizer.cpython-39.pyc 2025-08-14T21:48:19.6567435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:19.6571192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\x86_inductor_quantizer.cpython-39.pyc 2025-08-14T21:48:19.6575001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\xnnpack_quantizer.cpython-39.pyc 2025-08-14T21:48:19.6578613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\xnnpack_quantizer_utils.cpython-39.pyc 2025-08-14T21:48:19.6582639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\xpu_inductor_quantizer.cpython-39.pyc 2025-08-14T21:48:19.6586231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.6601799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\fake_quantize.cpython-39.pyc 2025-08-14T21:48:19.6605711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\fuser_method_mappings.cpython-39.pyc 2025-08-14T21:48:19.6609245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\fuse_modules.cpython-39.pyc 2025-08-14T21:48:19.6618131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\observer.cpython-39.pyc 2025-08-14T21:48:19.6622035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\qconfig.cpython-39.pyc 2025-08-14T21:48:19.6625582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\qconfig_mapping.cpython-39.pyc 2025-08-14T21:48:19.6629540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quantization_mappings.cpython-39.pyc 2025-08-14T21:48:19.6633014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quantize.cpython-39.pyc 2025-08-14T21:48:19.6637034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quantize_fx.cpython-39.pyc 2025-08-14T21:48:19.6640961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quantize_jit.cpython-39.pyc 2025-08-14T21:48:19.6644830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quantize_pt2e.cpython-39.pyc 2025-08-14T21:48:19.6648349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quant_type.cpython-39.pyc 2025-08-14T21:48:19.6651929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\stubs.cpython-39.pyc 2025-08-14T21:48:19.6655676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:19.6659274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\_correct_bias.cpython-39.pyc 2025-08-14T21:48:19.6662945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\_equalize.cpython-39.pyc 2025-08-14T21:48:19.6666498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\_learnable_fake_quantize.cpython-39.pyc 2025-08-14T21:48:19.6676607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.6693008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.6703210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\anomaly_mode.py 2025-08-14T21:48:19.6706751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\forward_ad.py 2025-08-14T21:48:19.6710124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\function.py 2025-08-14T21:48:19.6713721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\functional.py 2025-08-14T21:48:19.6724003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\gradcheck.py 2025-08-14T21:48:19.6728617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\grad_mode.py 2025-08-14T21:48:19.6732188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\graph.py 2025-08-14T21:48:19.6750715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\profiler.py 2025-08-14T21:48:19.6751398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\profiler_legacy.py 2025-08-14T21:48:19.6751933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\profiler_util.py 2025-08-14T21:48:19.6752424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\variable.py 2025-08-14T21:48:19.6752902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__init__.py 2025-08-14T21:48:19.6757806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\tensor.py 2025-08-14T21:48:19.6761401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\utils.py 2025-08-14T21:48:19.6764768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\__init__.py 2025-08-14T21:48:19.6772347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\__pycache__\tensor.cpython-39.pyc 2025-08-14T21:48:19.6775931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:19.6779549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.6793743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\anomaly_mode.cpython-39.pyc 2025-08-14T21:48:19.6797400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\forward_ad.cpython-39.pyc 2025-08-14T21:48:19.6801077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\function.cpython-39.pyc 2025-08-14T21:48:19.6810917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\functional.cpython-39.pyc 2025-08-14T21:48:19.6814604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\gradcheck.cpython-39.pyc 2025-08-14T21:48:19.6818436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\grad_mode.cpython-39.pyc 2025-08-14T21:48:19.6822054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\graph.cpython-39.pyc 2025-08-14T21:48:19.6825845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\profiler.cpython-39.pyc 2025-08-14T21:48:19.6829757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\profiler_legacy.cpython-39.pyc 2025-08-14T21:48:19.6833809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\profiler_util.cpython-39.pyc 2025-08-14T21:48:19.6837352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\variable.cpython-39.pyc 2025-08-14T21:48:19.6840967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.6850108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\__init__.py 2025-08-14T21:48:19.6856934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cpu\__init__.py 2025-08-14T21:48:19.6863986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cpu\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.6871322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cuda\__init__.py 2025-08-14T21:48:19.6878319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cuda\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.6885575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cudnn\rnn.py 2025-08-14T21:48:19.6888961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cudnn\__init__.py 2025-08-14T21:48:19.6896070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cudnn\__pycache__\rnn.cpython-39.pyc 2025-08-14T21:48:19.6899891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cudnn\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.6907863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cusparselt\__init__.py 2025-08-14T21:48:19.6945285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cusparselt\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.6957476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\kleidiai\__init__.py 2025-08-14T21:48:19.6964546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\kleidiai\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.6971808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mha\__init__.py 2025-08-14T21:48:19.6978546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mha\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.6986210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\miopen\__init__.py 2025-08-14T21:48:19.6992947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\miopen\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.7000853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mkl\__init__.py 2025-08-14T21:48:19.7007904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mkl\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.7015185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mkldnn\__init__.py 2025-08-14T21:48:19.7022120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mkldnn\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.7029794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mps\__init__.py 2025-08-14T21:48:19.7036932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mps\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.7045102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\nnpack\__init__.py 2025-08-14T21:48:19.7052023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\nnpack\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.7059306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\openmp\__init__.py 2025-08-14T21:48:19.7066407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\openmp\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.7073727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\opt_einsum\__init__.py 2025-08-14T21:48:19.7080922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\opt_einsum\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.7089819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\quantized\__init__.py 2025-08-14T21:48:19.7097927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\quantized\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.7105223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xeon\run_cpu.py 2025-08-14T21:48:19.7109717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xeon\__init__.py 2025-08-14T21:48:19.7116115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xeon\__pycache__\run_cpu.cpython-39.pyc 2025-08-14T21:48:19.7119868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xeon\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.7127561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xnnpack\__init__.py 2025-08-14T21:48:19.7134473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xnnpack\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.7141903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_coreml\preprocess.py 2025-08-14T21:48:19.7145265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_coreml\__init__.py 2025-08-14T21:48:19.7152235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_coreml\__pycache__\preprocess.cpython-39.pyc 2025-08-14T21:48:19.7156712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_coreml\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.7164378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\prepare.py 2025-08-14T21:48:19.7167794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\serializer.py 2025-08-14T21:48:19.7171767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\__init__.py 2025-08-14T21:48:19.7177877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\__pycache__\prepare.cpython-39.pyc 2025-08-14T21:48:19.7181400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\__pycache__\serializer.cpython-39.pyc 2025-08-14T21:48:19.7185188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.7200263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.7208207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\FileStoreTest.exe 2025-08-14T21:48:19.7213891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\protoc.exe 2025-08-14T21:48:19.7231976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\TCPStoreTest.exe 2025-08-14T21:48:19.7237107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\test_api.exe 2025-08-14T21:48:19.7289992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\test_jit.exe 2025-08-14T21:48:19.7327826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\test_lazy.exe 2025-08-14T21:48:19.7353871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\test_nativert.exe 2025-08-14T21:48:19.7370647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\config.py 2025-08-14T21:48:19.7373990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\_cache.py 2025-08-14T21:48:19.7377383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\__init__.py 2025-08-14T21:48:19.7384587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\__pycache__\config.cpython-39.pyc 2025-08-14T21:48:19.7388322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\__pycache__\_cache.cpython-39.pyc 2025-08-14T21:48:19.7391563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.7407826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\contrib\_tensorboard_vis.py 2025-08-14T21:48:19.7411097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\contrib\__init__.py 2025-08-14T21:48:19.7416981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\contrib\__pycache__\_tensorboard_vis.cpython-39.pyc 2025-08-14T21:48:19.7420400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\contrib\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.7428083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\__init__.py 2025-08-14T21:48:19.7434792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\autocast_mode.py 2025-08-14T21:48:19.7438124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\grad_scaler.py 2025-08-14T21:48:19.7441924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\__init__.py 2025-08-14T21:48:19.7456841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\__pycache__\autocast_mode.cpython-39.pyc 2025-08-14T21:48:19.7460301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\__pycache__\grad_scaler.cpython-39.pyc 2025-08-14T21:48:19.7463707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.7479462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.7495064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\csrc\inductor\aoti_runtime\model.h 2025-08-14T21:48:19.7504816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\comm.py 2025-08-14T21:48:19.7508644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\error.py 2025-08-14T21:48:19.7512818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\gds.py 2025-08-14T21:48:19.7517976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\graphs.py 2025-08-14T21:48:19.7522923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\jiterator.py 2025-08-14T21:48:19.7528030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\memory.py 2025-08-14T21:48:19.7539995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\nccl.py 2025-08-14T21:48:19.7543089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\nvtx.py 2025-08-14T21:48:19.7546414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\profiler.py 2025-08-14T21:48:19.7549776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\random.py 2025-08-14T21:48:19.7553252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\sparse.py 2025-08-14T21:48:19.7556615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\streams.py 2025-08-14T21:48:19.7560154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\tunable.py 2025-08-14T21:48:19.7563720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\_gpu_trace.py 2025-08-14T21:48:19.7567151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\_memory_viz.py 2025-08-14T21:48:19.7570924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\_pin_memory_utils.py 2025-08-14T21:48:19.7574664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\_sanitizer.py 2025-08-14T21:48:19.7578096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\_utils.py 2025-08-14T21:48:19.7581648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__init__.py 2025-08-14T21:48:19.7588946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\autocast_mode.py 2025-08-14T21:48:19.7592725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\common.py 2025-08-14T21:48:19.7596585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\grad_scaler.py 2025-08-14T21:48:19.7599856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\__init__.py 2025-08-14T21:48:19.7616674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\__pycache__\autocast_mode.cpython-39.pyc 2025-08-14T21:48:19.7620915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\__pycache__\common.cpython-39.pyc 2025-08-14T21:48:19.7625069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\__pycache__\grad_scaler.cpython-39.pyc 2025-08-14T21:48:19.7637473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.7646273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\comm.cpython-39.pyc 2025-08-14T21:48:19.7649799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\error.cpython-39.pyc 2025-08-14T21:48:19.7653340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\gds.cpython-39.pyc 2025-08-14T21:48:19.7664838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\graphs.cpython-39.pyc 2025-08-14T21:48:19.7668693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\jiterator.cpython-39.pyc 2025-08-14T21:48:19.7672114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\memory.cpython-39.pyc 2025-08-14T21:48:19.7675900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\nccl.cpython-39.pyc 2025-08-14T21:48:19.7680064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\nvtx.cpython-39.pyc 2025-08-14T21:48:19.7683536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\profiler.cpython-39.pyc 2025-08-14T21:48:19.7687162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\random.cpython-39.pyc 2025-08-14T21:48:19.7690706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\sparse.cpython-39.pyc 2025-08-14T21:48:19.7694900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\streams.cpython-39.pyc 2025-08-14T21:48:19.7698561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\tunable.cpython-39.pyc 2025-08-14T21:48:19.7702137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\_gpu_trace.cpython-39.pyc 2025-08-14T21:48:19.7706265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\_memory_viz.cpython-39.pyc 2025-08-14T21:48:19.7710010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\_pin_memory_utils.cpython-39.pyc 2025-08-14T21:48:19.7713647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\_sanitizer.cpython-39.pyc 2025-08-14T21:48:19.7725206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:48:19.7728864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.7739536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\argparse_util.py 2025-08-14T21:48:19.7743087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\c10d_logger.py 2025-08-14T21:48:19.7746744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\collective_utils.py 2025-08-14T21:48:19.7758535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\constants.py 2025-08-14T21:48:19.7762067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\device_mesh.py 2025-08-14T21:48:19.7765960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\distributed_c10d.py 2025-08-14T21:48:19.7771009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\launch.py 2025-08-14T21:48:19.7774719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\logging_handlers.py 2025-08-14T21:48:19.7778582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\remote_device.py 2025-08-14T21:48:19.7782014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rendezvous.py 2025-08-14T21:48:19.7785438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\run.py 2025-08-14T21:48:19.7788904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\utils.py 2025-08-14T21:48:19.7792439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_checkpointable.py 2025-08-14T21:48:19.7796007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable_state.py 2025-08-14T21:48:19.7799503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_dist2.py 2025-08-14T21:48:19.7802972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_functional_collectives.py 2025-08-14T21:48:19.7807195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_functional_collectives_impl.py 2025-08-14T21:48:19.7810712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_serialization.py 2025-08-14T21:48:19.7814416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_state_dict_utils.py 2025-08-14T21:48:19.7818219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__init__.py 2025-08-14T21:48:19.7834200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\join.py 2025-08-14T21:48:19.7837819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\__init__.py 2025-08-14T21:48:19.7845121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\ddp_zero_hook.py 2025-08-14T21:48:19.7849131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\debugging_hooks.py 2025-08-14T21:48:19.7852683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py 2025-08-14T21:48:19.7864553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\mixed_precision_hooks.py 2025-08-14T21:48:19.7868065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\optimizer_overlap_hooks.py 2025-08-14T21:48:19.7871561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\post_localSGD_hook.py 2025-08-14T21:48:19.7874911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\powerSGD_hook.py 2025-08-14T21:48:19.7879349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\quantization_hooks.py 2025-08-14T21:48:19.7883706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__init__.py 2025-08-14T21:48:19.7891498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\ddp_zero_hook.cpython-39.pyc 2025-08-14T21:48:19.7895088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\debugging_hooks.cpython-39.pyc 2025-08-14T21:48:19.7898765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\default_hooks.cpython-39.pyc 2025-08-14T21:48:19.7910968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\mixed_precision_hooks.cpython-39.pyc 2025-08-14T21:48:19.7914762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\optimizer_overlap_hooks.cpython-39.pyc 2025-08-14T21:48:19.7918546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\post_localSGD_hook.cpython-39.pyc 2025-08-14T21:48:19.7922294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\powerSGD_hook.cpython-39.pyc 2025-08-14T21:48:19.7926149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\quantization_hooks.cpython-39.pyc 2025-08-14T21:48:19.7929892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.7947191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\averagers.py 2025-08-14T21:48:19.7950849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\hierarchical_model_averager.py 2025-08-14T21:48:19.7954509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\utils.py 2025-08-14T21:48:19.7966483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\__init__.py 2025-08-14T21:48:19.7973137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\__pycache__\averagers.cpython-39.pyc 2025-08-14T21:48:19.7976808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\__pycache__\hierarchical_model_averager.cpython-39.pyc 2025-08-14T21:48:19.7981027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:19.8061514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.8069575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_checkpoint\checkpoint_wrapper.py 2025-08-14T21:48:19.8073177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_checkpoint\__init__.py 2025-08-14T21:48:19.8081100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_checkpoint\__pycache__\checkpoint_wrapper.cpython-39.pyc 2025-08-14T21:48:19.8084599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_checkpoint\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.8092797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_comm_hooks\default_hooks.py 2025-08-14T21:48:19.8097290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_comm_hooks\__init__.py 2025-08-14T21:48:19.8107248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_comm_hooks\__pycache__\default_hooks.cpython-39.pyc 2025-08-14T21:48:19.8112237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_comm_hooks\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.8120771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_optimizer_overlap\optimizer_overlap.py 2025-08-14T21:48:19.8124186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_optimizer_overlap\__init__.py 2025-08-14T21:48:19.8132687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_optimizer_overlap\__pycache__\optimizer_overlap.cpython-39.pyc 2025-08-14T21:48:19.8136204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_optimizer_overlap\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.8144190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_quantization\quantization.py 2025-08-14T21:48:19.8147557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_quantization\__init__.py 2025-08-14T21:48:19.8153897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_quantization\__pycache__\quantization.cpython-39.pyc 2025-08-14T21:48:19.8157437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_quantization\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.8165260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\__pycache__\join.cpython-39.pyc 2025-08-14T21:48:19.8168949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.8176974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\autograd\__init__.py 2025-08-14T21:48:19.8184008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\autograd\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.8191864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\api.py 2025-08-14T21:48:19.8195344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\default_planner.py 2025-08-14T21:48:19.8199017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\filesystem.py 2025-08-14T21:48:19.8202883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\format_utils.py 2025-08-14T21:48:19.8269244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\hf_storage.py 2025-08-14T21:48:19.8272403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\logger.py 2025-08-14T21:48:19.8275865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\logging_handlers.py 2025-08-14T21:48:19.8279464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\metadata.py 2025-08-14T21:48:19.8282865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\optimizer.py 2025-08-14T21:48:19.8286569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\planner.py 2025-08-14T21:48:19.8289757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\planner_helpers.py 2025-08-14T21:48:19.8293228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\resharding.py 2025-08-14T21:48:19.8296856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\staging.py 2025-08-14T21:48:19.8300183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\stateful.py 2025-08-14T21:48:19.8303644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\state_dict.py 2025-08-14T21:48:19.8324793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\state_dict_loader.py 2025-08-14T21:48:19.8328395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\state_dict_saver.py 2025-08-14T21:48:19.8332080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\storage.py 2025-08-14T21:48:19.8335859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\utils.py 2025-08-14T21:48:19.8339420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_async_executor.py 2025-08-14T21:48:19.8342914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_async_process_executor.py 2025-08-14T21:48:19.8346694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_async_thread_executor.py 2025-08-14T21:48:19.8350249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_checkpointer.py 2025-08-14T21:48:19.8358688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_consolidate_hf_safetensors.py 2025-08-14T21:48:19.8362288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_dedup_save_plans.py 2025-08-14T21:48:19.8365773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_dedup_tensors.py 2025-08-14T21:48:19.8369275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_extension.py 2025-08-14T21:48:19.8372799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_fsspec_filesystem.py 2025-08-14T21:48:19.8376275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_hf_utils.py 2025-08-14T21:48:19.8380010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_nested_dict.py 2025-08-14T21:48:19.8383612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_pg_transport.py 2025-08-14T21:48:19.8387209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_sharded_tensor_utils.py 2025-08-14T21:48:19.8394884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_state_dict_stager.py 2025-08-14T21:48:19.8398513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_storage_utils.py 2025-08-14T21:48:19.8402068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_traverse.py 2025-08-14T21:48:19.8405518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_version.py 2025-08-14T21:48:19.8408904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__init__.py 2025-08-14T21:48:19.8417204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\barriers.py 2025-08-14T21:48:19.8420674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\builder.py 2025-08-14T21:48:19.8424095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\checkpointer.py 2025-08-14T21:48:19.8428083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\checkpoint_process.py 2025-08-14T21:48:19.8435446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\checkpoint_reader.py 2025-08-14T21:48:19.8439071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\checkpoint_writer.py 2025-08-14T21:48:19.8442623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\config.py 2025-08-14T21:48:19.8446750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\staging.py 2025-08-14T21:48:19.8449902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\types.py 2025-08-14T21:48:19.8453331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\utils.py 2025-08-14T21:48:19.8456817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__init__.py 2025-08-14T21:48:19.8464515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\barriers.cpython-39.pyc 2025-08-14T21:48:19.8468156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\builder.cpython-39.pyc 2025-08-14T21:48:19.8471679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\checkpointer.cpython-39.pyc 2025-08-14T21:48:19.8479653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\checkpoint_process.cpython-39.pyc 2025-08-14T21:48:19.8483246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\checkpoint_reader.cpython-39.pyc 2025-08-14T21:48:19.8487158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\checkpoint_writer.cpython-39.pyc 2025-08-14T21:48:19.8491024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\config.cpython-39.pyc 2025-08-14T21:48:19.8494920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\staging.cpython-39.pyc 2025-08-14T21:48:19.8499618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\types.cpython-39.pyc 2025-08-14T21:48:19.8503495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:19.8507122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.8517070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:19.8520935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\default_planner.cpython-39.pyc 2025-08-14T21:48:19.8524667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\filesystem.cpython-39.pyc 2025-08-14T21:48:19.8534373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\format_utils.cpython-39.pyc 2025-08-14T21:48:19.8538082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\hf_storage.cpython-39.pyc 2025-08-14T21:48:19.8541606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\logger.cpython-39.pyc 2025-08-14T21:48:19.8545350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\logging_handlers.cpython-39.pyc 2025-08-14T21:48:19.8549076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\metadata.cpython-39.pyc 2025-08-14T21:48:19.8552720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\optimizer.cpython-39.pyc 2025-08-14T21:48:19.8556402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\planner.cpython-39.pyc 2025-08-14T21:48:19.8560101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\planner_helpers.cpython-39.pyc 2025-08-14T21:48:19.8563764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\resharding.cpython-39.pyc 2025-08-14T21:48:19.8567562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\staging.cpython-39.pyc 2025-08-14T21:48:19.8571197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\stateful.cpython-39.pyc 2025-08-14T21:48:19.8574953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\state_dict.cpython-39.pyc 2025-08-14T21:48:19.8578914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\state_dict_loader.cpython-39.pyc 2025-08-14T21:48:19.8582507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\state_dict_saver.cpython-39.pyc 2025-08-14T21:48:19.8591067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\storage.cpython-39.pyc 2025-08-14T21:48:19.8594711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:19.8598525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_async_executor.cpython-39.pyc 2025-08-14T21:48:19.8602840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_async_process_executor.cpython-39.pyc 2025-08-14T21:48:19.8607199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_async_thread_executor.cpython-39.pyc 2025-08-14T21:48:19.8611449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_checkpointer.cpython-39.pyc 2025-08-14T21:48:19.8615828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_consolidate_hf_safetensors.cpython-39.pyc 2025-08-14T21:48:19.8619598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_dedup_save_plans.cpython-39.pyc 2025-08-14T21:48:19.8628413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_dedup_tensors.cpython-39.pyc 2025-08-14T21:48:19.8632211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_extension.cpython-39.pyc 2025-08-14T21:48:19.8636032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_fsspec_filesystem.cpython-39.pyc 2025-08-14T21:48:19.8639853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_hf_utils.cpython-39.pyc 2025-08-14T21:48:19.8643679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_nested_dict.cpython-39.pyc 2025-08-14T21:48:19.8647323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_pg_transport.cpython-39.pyc 2025-08-14T21:48:19.8651354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_sharded_tensor_utils.cpython-39.pyc 2025-08-14T21:48:19.8655049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_state_dict_stager.cpython-39.pyc 2025-08-14T21:48:19.8663965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_storage_utils.cpython-39.pyc 2025-08-14T21:48:19.8667850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_traverse.cpython-39.pyc 2025-08-14T21:48:19.8671437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_version.cpython-39.pyc 2025-08-14T21:48:19.8675238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.8685386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\control_plane.py 2025-08-14T21:48:19.8688980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\__init__.py 2025-08-14T21:48:19.8696109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\__init__.py 2025-08-14T21:48:19.8702240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\api.py 2025-08-14T21:48:19.8705980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\health_check_server.py 2025-08-14T21:48:19.8709457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\local_elastic_agent.py 2025-08-14T21:48:19.8712790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\__init__.py 2025-08-14T21:48:19.8724629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:19.8728214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\__pycache__\health_check_server.cpython-39.pyc 2025-08-14T21:48:19.8731769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\__pycache__\local_elastic_agent.cpython-39.pyc 2025-08-14T21:48:19.8740539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.8748214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.8756361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\api.py 2025-08-14T21:48:19.8760009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\handlers.py 2025-08-14T21:48:19.8763343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\__init__.py 2025-08-14T21:48:19.8770247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:19.8773981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\__pycache__\handlers.cpython-39.pyc 2025-08-14T21:48:19.8777478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.8789514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\metrics\api.py 2025-08-14T21:48:19.8792860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\metrics\__init__.py 2025-08-14T21:48:19.8799965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\metrics\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:19.8803542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\metrics\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.8816900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\api.py 2025-08-14T21:48:19.8820577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\redirects.py 2025-08-14T21:48:19.8824627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\tail_log.py 2025-08-14T21:48:19.8827872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\__init__.py 2025-08-14T21:48:19.8839772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\error_handler.py 2025-08-14T21:48:19.8843172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\handlers.py 2025-08-14T21:48:19.8846549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\__init__.py 2025-08-14T21:48:19.8853845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\__pycache__\error_handler.cpython-39.pyc 2025-08-14T21:48:19.8857525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\__pycache__\handlers.cpython-39.pyc 2025-08-14T21:48:19.8861094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.8873540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\handlers.py 2025-08-14T21:48:19.8877005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\subprocess_handler.py 2025-08-14T21:48:19.8880622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\__init__.py 2025-08-14T21:48:19.8893280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\__pycache__\handlers.cpython-39.pyc 2025-08-14T21:48:19.8897015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\__pycache__\subprocess_handler.cpython-39.pyc 2025-08-14T21:48:19.8900691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.8912928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:19.8916677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\__pycache__\redirects.cpython-39.pyc 2025-08-14T21:48:19.8920548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\__pycache__\tail_log.cpython-39.pyc 2025-08-14T21:48:19.8929794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.8937948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\api.py 2025-08-14T21:48:19.8941416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\c10d_rendezvous_backend.py 2025-08-14T21:48:19.8945079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\dynamic_rendezvous.py 2025-08-14T21:48:19.8953716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\etcd_rendezvous.py 2025-08-14T21:48:19.8957701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\etcd_rendezvous_backend.py 2025-08-14T21:48:19.8961491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\etcd_server.py 2025-08-14T21:48:19.8964954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\etcd_store.py 2025-08-14T21:48:19.8968685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\registry.py 2025-08-14T21:48:19.8972251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\static_tcp_rendezvous.py 2025-08-14T21:48:19.8975805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\utils.py 2025-08-14T21:48:19.8979356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\_etcd_stub.py 2025-08-14T21:48:19.8982954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__init__.py 2025-08-14T21:48:19.8990451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:19.8994092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\c10d_rendezvous_backend.cpython-39.pyc 2025-08-14T21:48:19.8998202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\dynamic_rendezvous.cpython-39.pyc 2025-08-14T21:48:19.9007244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\etcd_rendezvous.cpython-39.pyc 2025-08-14T21:48:19.9011064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\etcd_rendezvous_backend.cpython-39.pyc 2025-08-14T21:48:19.9014784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\etcd_server.cpython-39.pyc 2025-08-14T21:48:19.9018432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\etcd_store.cpython-39.pyc 2025-08-14T21:48:19.9022064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\registry.cpython-39.pyc 2025-08-14T21:48:19.9025756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\static_tcp_rendezvous.cpython-39.pyc 2025-08-14T21:48:19.9029659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:19.9033356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\_etcd_stub.cpython-39.pyc 2025-08-14T21:48:19.9037067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.9045225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\api.py 2025-08-14T21:48:19.9048599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\debug_info_logging.py 2025-08-14T21:48:19.9052781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\file_based_local_timer.py 2025-08-14T21:48:19.9056247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\local_timer.py 2025-08-14T21:48:19.9065178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__init__.py 2025-08-14T21:48:19.9073088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:19.9076759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__pycache__\debug_info_logging.cpython-39.pyc 2025-08-14T21:48:19.9081042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__pycache__\file_based_local_timer.cpython-39.pyc 2025-08-14T21:48:19.9089662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__pycache__\local_timer.cpython-39.pyc 2025-08-14T21:48:19.9093205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.9101171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\api.py 2025-08-14T21:48:19.9104832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\distributed.py 2025-08-14T21:48:19.9108392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\logging.py 2025-08-14T21:48:19.9111615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\log_level.py 2025-08-14T21:48:19.9115522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\store.py 2025-08-14T21:48:19.9123455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__init__.py 2025-08-14T21:48:19.9130597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\cycling_iterator.py 2025-08-14T21:48:19.9134262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\elastic_distributed_sampler.py 2025-08-14T21:48:19.9138055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\__init__.py 2025-08-14T21:48:19.9149966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\__pycache__\cycling_iterator.cpython-39.pyc 2025-08-14T21:48:19.9153703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\__pycache__\elastic_distributed_sampler.cpython-39.pyc 2025-08-14T21:48:19.9157357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.9170160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:19.9173820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\distributed.cpython-39.pyc 2025-08-14T21:48:19.9177600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\logging.cpython-39.pyc 2025-08-14T21:48:19.9185747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\log_level.cpython-39.pyc 2025-08-14T21:48:19.9189055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\store.cpython-39.pyc 2025-08-14T21:48:19.9192448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.9200656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\__pycache__\control_plane.cpython-39.pyc 2025-08-14T21:48:19.9204379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.9213031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\api.py 2025-08-14T21:48:19.9216576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\fully_sharded_data_parallel.py 2025-08-14T21:48:19.9221433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\sharded_grad_scaler.py 2025-08-14T21:48:19.9224296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\wrap.py 2025-08-14T21:48:19.9227836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_common_utils.py 2025-08-14T21:48:19.9235984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_debug_utils.py 2025-08-14T21:48:19.9240174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_dynamo_utils.py 2025-08-14T21:48:19.9243765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_exec_order_utils.py 2025-08-14T21:48:19.9247417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_flat_param.py 2025-08-14T21:48:19.9251787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fsdp_extensions.py 2025-08-14T21:48:19.9255418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_init_utils.py 2025-08-14T21:48:19.9259055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_limiter_utils.py 2025-08-14T21:48:19.9262543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_optim_utils.py 2025-08-14T21:48:19.9266431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_runtime_utils.py 2025-08-14T21:48:19.9270062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_shard_utils.py 2025-08-14T21:48:19.9273598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_state_dict_utils.py 2025-08-14T21:48:19.9277173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_trace_utils.py 2025-08-14T21:48:19.9280968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_traversal_utils.py 2025-08-14T21:48:19.9284407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_unshard_param_utils.py 2025-08-14T21:48:19.9287805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_wrap_utils.py 2025-08-14T21:48:19.9295929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__init__.py 2025-08-14T21:48:19.9304032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_api.py 2025-08-14T21:48:19.9307544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_collectives.py 2025-08-14T21:48:19.9311187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_common.py 2025-08-14T21:48:19.9319622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_init.py 2025-08-14T21:48:19.9323497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_param.py 2025-08-14T21:48:19.9327141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_param_group.py 2025-08-14T21:48:19.9330843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_state.py 2025-08-14T21:48:19.9334824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fully_shard.py 2025-08-14T21:48:19.9338344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__init__.py 2025-08-14T21:48:19.9345919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_api.cpython-39.pyc 2025-08-14T21:48:19.9349734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_collectives.cpython-39.pyc 2025-08-14T21:48:19.9353558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_common.cpython-39.pyc 2025-08-14T21:48:19.9362251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_init.cpython-39.pyc 2025-08-14T21:48:19.9365931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_param.cpython-39.pyc 2025-08-14T21:48:19.9369766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_param_group.cpython-39.pyc 2025-08-14T21:48:19.9373554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_state.cpython-39.pyc 2025-08-14T21:48:19.9377178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fully_shard.cpython-39.pyc 2025-08-14T21:48:19.9380683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.9389720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:19.9393176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\fully_sharded_data_parallel.cpython-39.pyc 2025-08-14T21:48:19.9397393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\sharded_grad_scaler.cpython-39.pyc 2025-08-14T21:48:19.9405938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\wrap.cpython-39.pyc 2025-08-14T21:48:19.9409519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_common_utils.cpython-39.pyc 2025-08-14T21:48:19.9413156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_debug_utils.cpython-39.pyc 2025-08-14T21:48:19.9416891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_dynamo_utils.cpython-39.pyc 2025-08-14T21:48:19.9420460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_exec_order_utils.cpython-39.pyc 2025-08-14T21:48:19.9424068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_flat_param.cpython-39.pyc 2025-08-14T21:48:19.9450389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_fsdp_extensions.cpython-39.pyc 2025-08-14T21:48:19.9453753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_init_utils.cpython-39.pyc 2025-08-14T21:48:19.9457959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_limiter_utils.cpython-39.pyc 2025-08-14T21:48:19.9461659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_optim_utils.cpython-39.pyc 2025-08-14T21:48:19.9465858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_runtime_utils.cpython-39.pyc 2025-08-14T21:48:19.9469731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_shard_utils.cpython-39.pyc 2025-08-14T21:48:19.9473246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_state_dict_utils.cpython-39.pyc 2025-08-14T21:48:19.9480880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_trace_utils.cpython-39.pyc 2025-08-14T21:48:19.9484558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_traversal_utils.cpython-39.pyc 2025-08-14T21:48:19.9488278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_unshard_param_utils.cpython-39.pyc 2025-08-14T21:48:19.9492088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_wrap_utils.cpython-39.pyc 2025-08-14T21:48:19.9495596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.9504652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\launcher\api.py 2025-08-14T21:48:19.9508118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\launcher\__init__.py 2025-08-14T21:48:19.9515595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\launcher\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:19.9519073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\launcher\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.9527661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\functional.py 2025-08-14T21:48:19.9531161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\__init__.py 2025-08-14T21:48:19.9537988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\api\remote_module.py 2025-08-14T21:48:19.9541912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\api\__init__.py 2025-08-14T21:48:19.9548209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\api\__pycache__\remote_module.cpython-39.pyc 2025-08-14T21:48:19.9551553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\api\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.9559264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\instantiator.py 2025-08-14T21:48:19.9562851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\__init__.py 2025-08-14T21:48:19.9569113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\templates\remote_module_template.py 2025-08-14T21:48:19.9572711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\templates\__init__.py 2025-08-14T21:48:19.9578955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\templates\__pycache__\remote_module_template.cpython-39.pyc 2025-08-14T21:48:19.9582939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\templates\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.9595383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\__pycache__\instantiator.cpython-39.pyc 2025-08-14T21:48:19.9599001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.9612323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\__pycache__\functional.cpython-39.pyc 2025-08-14T21:48:19.9616410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.9624420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\apply_optimizer_in_backward.py 2025-08-14T21:48:19.9628014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_adadelta.py 2025-08-14T21:48:19.9631804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_adagrad.py 2025-08-14T21:48:19.9639882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_adam.py 2025-08-14T21:48:19.9643297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_adamax.py 2025-08-14T21:48:19.9646784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_adamw.py 2025-08-14T21:48:19.9650497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_rmsprop.py 2025-08-14T21:48:19.9653921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_rprop.py 2025-08-14T21:48:19.9657918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_sgd.py 2025-08-14T21:48:19.9661041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\named_optimizer.py 2025-08-14T21:48:19.9665578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\optimizer.py 2025-08-14T21:48:19.9669109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\post_localSGD_optimizer.py 2025-08-14T21:48:19.9672384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\utils.py 2025-08-14T21:48:19.9675825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\zero_redundancy_optimizer.py 2025-08-14T21:48:19.9681075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\zero_redundancy_optimizer.pyi 2025-08-14T21:48:19.9684655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\_deprecation_warning.py 2025-08-14T21:48:19.9688063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__init__.py 2025-08-14T21:48:19.9696649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\apply_optimizer_in_backward.cpython-39.pyc 2025-08-14T21:48:19.9700265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_adadelta.cpython-39.pyc 2025-08-14T21:48:19.9703886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_adagrad.cpython-39.pyc 2025-08-14T21:48:19.9712545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_adam.cpython-39.pyc 2025-08-14T21:48:19.9716856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_adamax.cpython-39.pyc 2025-08-14T21:48:19.9719969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_adamw.cpython-39.pyc 2025-08-14T21:48:19.9723806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_rmsprop.cpython-39.pyc 2025-08-14T21:48:19.9727532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_rprop.cpython-39.pyc 2025-08-14T21:48:19.9731256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_sgd.cpython-39.pyc 2025-08-14T21:48:19.9735302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\named_optimizer.cpython-39.pyc 2025-08-14T21:48:19.9738545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\optimizer.cpython-39.pyc 2025-08-14T21:48:19.9742136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\post_localSGD_optimizer.cpython-39.pyc 2025-08-14T21:48:19.9745550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:19.9749390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\zero_redundancy_optimizer.cpython-39.pyc 2025-08-14T21:48:19.9753439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\_deprecation_warning.cpython-39.pyc 2025-08-14T21:48:19.9757176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.9770841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\microbatch.py 2025-08-14T21:48:19.9774349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\schedules.py 2025-08-14T21:48:19.9778740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\stage.py 2025-08-14T21:48:19.9782358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_backward.py 2025-08-14T21:48:19.9790521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_debug.py 2025-08-14T21:48:19.9794368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_IR.py 2025-08-14T21:48:19.9798071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_schedule_visualizer.py 2025-08-14T21:48:19.9802033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_unflatten.py 2025-08-14T21:48:19.9805565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_utils.py 2025-08-14T21:48:19.9808922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__init__.py 2025-08-14T21:48:19.9816454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\microbatch.cpython-39.pyc 2025-08-14T21:48:19.9820038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\schedules.cpython-39.pyc 2025-08-14T21:48:19.9824044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\stage.cpython-39.pyc 2025-08-14T21:48:19.9833443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_backward.cpython-39.pyc 2025-08-14T21:48:19.9836862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_debug.cpython-39.pyc 2025-08-14T21:48:19.9840700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_IR.cpython-39.pyc 2025-08-14T21:48:19.9844838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_schedule_visualizer.cpython-39.pyc 2025-08-14T21:48:19.9849055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_unflatten.cpython-39.pyc 2025-08-14T21:48:19.9852562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:48:19.9856206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.9865064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\api.py 2025-08-14T21:48:19.9868499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\backend_registry.py 2025-08-14T21:48:19.9872010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\constants.py 2025-08-14T21:48:19.9875370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\functions.py 2025-08-14T21:48:19.9884397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\internal.py 2025-08-14T21:48:19.9887610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\options.py 2025-08-14T21:48:19.9890850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\rref_proxy.py 2025-08-14T21:48:19.9894508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\server_process_global_profiler.py 2025-08-14T21:48:19.9897932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\_utils.py 2025-08-14T21:48:19.9901313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__init__.py 2025-08-14T21:48:19.9908359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\_testing\faulty_agent_backend_registry.py 2025-08-14T21:48:19.9911839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\_testing\__init__.py 2025-08-14T21:48:19.9918934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\_testing\__pycache__\faulty_agent_backend_registry.cpython-39.pyc 2025-08-14T21:48:19.9922869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\_testing\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.9931535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:19.9935164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\backend_registry.cpython-39.pyc 2025-08-14T21:48:19.9938762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\constants.cpython-39.pyc 2025-08-14T21:48:19.9947449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\functions.cpython-39.pyc 2025-08-14T21:48:19.9950935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\internal.cpython-39.pyc 2025-08-14T21:48:19.9954704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\options.cpython-39.pyc 2025-08-14T21:48:19.9958207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\rref_proxy.cpython-39.pyc 2025-08-14T21:48:19.9962054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\server_process_global_profiler.cpython-39.pyc 2025-08-14T21:48:19.9965616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:48:19.9969235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:19.9977974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\device_mesh.py 2025-08-14T21:48:19.9981487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\placement_types.py 2025-08-14T21:48:19.9985451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_api.py 2025-08-14T21:48:19.9989535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_collective_utils.py 2025-08-14T21:48:19.9998604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_dispatch.py 2025-08-14T21:48:20.0002860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_dtensor_spec.py 2025-08-14T21:48:20.0006769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_op_schema.py 2025-08-14T21:48:20.0010763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_random.py 2025-08-14T21:48:20.0014311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_redistribute.py 2025-08-14T21:48:20.0017816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_sharding_prop.py 2025-08-14T21:48:20.0021410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_shards_wrapper.py 2025-08-14T21:48:20.0025030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_tp_conv.py 2025-08-14T21:48:20.0028595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_utils.py 2025-08-14T21:48:20.0031849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__init__.py 2025-08-14T21:48:20.0038692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\_comm_mode.py 2025-08-14T21:48:20.0042502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\_op_coverage.py 2025-08-14T21:48:20.0046090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\_visualize_sharding.py 2025-08-14T21:48:20.0049513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\__init__.py 2025-08-14T21:48:20.0062401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\__pycache__\_comm_mode.cpython-39.pyc 2025-08-14T21:48:20.0066178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\__pycache__\_op_coverage.cpython-39.pyc 2025-08-14T21:48:20.0070531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\__pycache__\_visualize_sharding.cpython-39.pyc 2025-08-14T21:48:20.0078853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.0087151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\_attention.py 2025-08-14T21:48:20.0091306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\_func_map.py 2025-08-14T21:48:20.0094699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\_register_sharding.py 2025-08-14T21:48:20.0102948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\_tp_transform.py 2025-08-14T21:48:20.0106491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__init__.py 2025-08-14T21:48:20.0114765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__pycache__\_attention.cpython-39.pyc 2025-08-14T21:48:20.0118967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__pycache__\_func_map.cpython-39.pyc 2025-08-14T21:48:20.0123145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__pycache__\_register_sharding.cpython-39.pyc 2025-08-14T21:48:20.0131641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__pycache__\_tp_transform.cpython-39.pyc 2025-08-14T21:48:20.0135217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.0153239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\api.py 2025-08-14T21:48:20.0156787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\ddp.py 2025-08-14T21:48:20.0160147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\fsdp.py 2025-08-14T21:48:20.0163682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\input_reshard.py 2025-08-14T21:48:20.0167252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\loss.py 2025-08-14T21:48:20.0170499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\style.py 2025-08-14T21:48:20.0180078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\_data_parallel_utils.py 2025-08-14T21:48:20.0183661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__init__.py 2025-08-14T21:48:20.0191212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:20.0195115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\ddp.cpython-39.pyc 2025-08-14T21:48:20.0198700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\fsdp.cpython-39.pyc 2025-08-14T21:48:20.0209832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\input_reshard.cpython-39.pyc 2025-08-14T21:48:20.0213181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\loss.cpython-39.pyc 2025-08-14T21:48:20.0216670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\style.cpython-39.pyc 2025-08-14T21:48:20.0221289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\_data_parallel_utils.cpython-39.pyc 2025-08-14T21:48:20.0225028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.0232704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\utils.py 2025-08-14T21:48:20.0236196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_common_rules.py 2025-08-14T21:48:20.0239631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_conv_ops.py 2025-08-14T21:48:20.0243088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_einsum_strategy.py 2025-08-14T21:48:20.0251052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_embedding_ops.py 2025-08-14T21:48:20.0254450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_math_ops.py 2025-08-14T21:48:20.0258309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_matrix_ops.py 2025-08-14T21:48:20.0261945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_pointwise_ops.py 2025-08-14T21:48:20.0265387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_random_ops.py 2025-08-14T21:48:20.0269045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_tensor_ops.py 2025-08-14T21:48:20.0272645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_view_ops.py 2025-08-14T21:48:20.0276098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__init__.py 2025-08-14T21:48:20.0284020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:20.0287647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_common_rules.cpython-39.pyc 2025-08-14T21:48:20.0291288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_conv_ops.cpython-39.pyc 2025-08-14T21:48:20.0300146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_einsum_strategy.cpython-39.pyc 2025-08-14T21:48:20.0303634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_embedding_ops.cpython-39.pyc 2025-08-14T21:48:20.0307103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_math_ops.cpython-39.pyc 2025-08-14T21:48:20.0310657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_matrix_ops.cpython-39.pyc 2025-08-14T21:48:20.0314609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_pointwise_ops.cpython-39.pyc 2025-08-14T21:48:20.0317750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_random_ops.cpython-39.pyc 2025-08-14T21:48:20.0321604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_tensor_ops.cpython-39.pyc 2025-08-14T21:48:20.0325092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_view_ops.cpython-39.pyc 2025-08-14T21:48:20.0328711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.0337327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\device_mesh.cpython-39.pyc 2025-08-14T21:48:20.0340518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\placement_types.cpython-39.pyc 2025-08-14T21:48:20.0344460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_api.cpython-39.pyc 2025-08-14T21:48:20.0353034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_collective_utils.cpython-39.pyc 2025-08-14T21:48:20.0356527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_dispatch.cpython-39.pyc 2025-08-14T21:48:20.0360651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_dtensor_spec.cpython-39.pyc 2025-08-14T21:48:20.0364158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_op_schema.cpython-39.pyc 2025-08-14T21:48:20.0367683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_random.cpython-39.pyc 2025-08-14T21:48:20.0371390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_redistribute.cpython-39.pyc 2025-08-14T21:48:20.0375011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_sharding_prop.cpython-39.pyc 2025-08-14T21:48:20.0378782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_shards_wrapper.cpython-39.pyc 2025-08-14T21:48:20.0382455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_tp_conv.cpython-39.pyc 2025-08-14T21:48:20.0385967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:48:20.0389562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.0399012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\checkpoint_activation.py 2025-08-14T21:48:20.0402593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\contract.py 2025-08-14T21:48:20.0406288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\replicate.py 2025-08-14T21:48:20.0409898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\replicate_with_fsdp.py 2025-08-14T21:48:20.0418032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__init__.py 2025-08-14T21:48:20.0425144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\fsdp\fully_shard.py 2025-08-14T21:48:20.0428644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\fsdp\__init__.py 2025-08-14T21:48:20.0435651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\fsdp\__pycache__\fully_shard.cpython-39.pyc 2025-08-14T21:48:20.0439110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\fsdp\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.0446977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__pycache__\checkpoint_activation.cpython-39.pyc 2025-08-14T21:48:20.0450591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__pycache__\contract.cpython-39.pyc 2025-08-14T21:48:20.0453980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__pycache__\replicate.cpython-39.pyc 2025-08-14T21:48:20.0462234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__pycache__\replicate_with_fsdp.cpython-39.pyc 2025-08-14T21:48:20.0465823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.0473801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\api.py 2025-08-14T21:48:20.0477266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\common_op_utils.py 2025-08-14T21:48:20.0480738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\metadata.py 2025-08-14T21:48:20.0484102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\op_registry_utils.py 2025-08-14T21:48:20.0487670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharder.py 2025-08-14T21:48:20.0496054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\_utils.py 2025-08-14T21:48:20.0499366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__init__.py 2025-08-14T21:48:20.0506564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\checkpoint\__init__.py 2025-08-14T21:48:20.0513700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\checkpoint\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.0521858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_optim\api.py 2025-08-14T21:48:20.0525383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_optim\__init__.py 2025-08-14T21:48:20.0561733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_optim\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:20.0565233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_optim\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.0572866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\api.py 2025-08-14T21:48:20.0576853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\logger.py 2025-08-14T21:48:20.0580305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\logging_handlers.py 2025-08-14T21:48:20.0583833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\metadata.py 2025-08-14T21:48:20.0587224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\reshard.py 2025-08-14T21:48:20.0595095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\shard.py 2025-08-14T21:48:20.0598442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\utils.py 2025-08-14T21:48:20.0602551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__init__.py 2025-08-14T21:48:20.0609733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\binary_cmp.py 2025-08-14T21:48:20.0613354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\init.py 2025-08-14T21:48:20.0617038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\misc_ops.py 2025-08-14T21:48:20.0620894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\tensor_ops.py 2025-08-14T21:48:20.0624687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\_common.py 2025-08-14T21:48:20.0633776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__init__.py 2025-08-14T21:48:20.0641613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\binary_cmp.cpython-39.pyc 2025-08-14T21:48:20.0645800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\init.cpython-39.pyc 2025-08-14T21:48:20.0649316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\misc_ops.cpython-39.pyc 2025-08-14T21:48:20.0658498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\tensor_ops.cpython-39.pyc 2025-08-14T21:48:20.0662200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\_common.cpython-39.pyc 2025-08-14T21:48:20.0665851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.0674396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:20.0677729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\logger.cpython-39.pyc 2025-08-14T21:48:20.0681698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\logging_handlers.cpython-39.pyc 2025-08-14T21:48:20.0691998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\metadata.cpython-39.pyc 2025-08-14T21:48:20.0696614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\reshard.cpython-39.pyc 2025-08-14T21:48:20.0700015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\shard.cpython-39.pyc 2025-08-14T21:48:20.0703626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:20.0707109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.0715095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_plan\api.py 2025-08-14T21:48:20.0718929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_plan\__init__.py 2025-08-14T21:48:20.0725837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_plan\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:20.0730078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_plan\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.0737167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\api.py 2025-08-14T21:48:20.0740563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec.py 2025-08-14T21:48:20.0743987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\_internals.py 2025-08-14T21:48:20.0747590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\__init__.py 2025-08-14T21:48:20.0760482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\embedding.py 2025-08-14T21:48:20.0764365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\embedding_bag.py 2025-08-14T21:48:20.0767863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\_common.py 2025-08-14T21:48:20.0777150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__init__.py 2025-08-14T21:48:20.0783519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__pycache__\embedding.cpython-39.pyc 2025-08-14T21:48:20.0787085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__pycache__\embedding_bag.cpython-39.pyc 2025-08-14T21:48:20.0790579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__pycache__\_common.cpython-39.pyc 2025-08-14T21:48:20.0800693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.0808709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:20.0812329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\__pycache__\chunk_sharding_spec.cpython-39.pyc 2025-08-14T21:48:20.0815791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\__pycache__\_internals.cpython-39.pyc 2025-08-14T21:48:20.0826064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.0833465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:20.0837434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\common_op_utils.cpython-39.pyc 2025-08-14T21:48:20.0841009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\metadata.cpython-39.pyc 2025-08-14T21:48:20.0851161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\op_registry_utils.cpython-39.pyc 2025-08-14T21:48:20.0854734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\sharder.cpython-39.pyc 2025-08-14T21:48:20.0858356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:48:20.0861653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.0869844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_sharded_tensor\__init__.py 2025-08-14T21:48:20.0876776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_sharded_tensor\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.0885124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_sharding_spec\__init__.py 2025-08-14T21:48:20.0891895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_sharding_spec\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.0900004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_symmetric_memory\_nvshmem_triton.py 2025-08-14T21:48:20.0903603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_symmetric_memory\__init__.py 2025-08-14T21:48:20.0911201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_symmetric_memory\__pycache__\_nvshmem_triton.cpython-39.pyc 2025-08-14T21:48:20.0914972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_symmetric_memory\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.0922629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\api.py 2025-08-14T21:48:20.0926340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\placement_types.py 2025-08-14T21:48:20.0929457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\__init__.py 2025-08-14T21:48:20.0936594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:20.0940611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\__pycache__\placement_types.cpython-39.pyc 2025-08-14T21:48:20.0944074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.0958739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\common_utils.py 2025-08-14T21:48:20.0962238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\fake_collectives.py 2025-08-14T21:48:20.0965552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\fsdp2_mem_tracker.py 2025-08-14T21:48:20.0968991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\ilp_utils.py 2025-08-14T21:48:20.0979879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\memory_tracker.py 2025-08-14T21:48:20.0983477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\mem_tracker.py 2025-08-14T21:48:20.0987057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\mod_tracker.py 2025-08-14T21:48:20.0990466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\runtime_estimator.py 2025-08-14T21:48:20.0993899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\sac_estimator.py 2025-08-14T21:48:20.0997388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\sac_ilp.py 2025-08-14T21:48:20.1000786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__init__.py 2025-08-14T21:48:20.1008041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\common_utils.cpython-39.pyc 2025-08-14T21:48:20.1011783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\fake_collectives.cpython-39.pyc 2025-08-14T21:48:20.1015437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\fsdp2_mem_tracker.cpython-39.pyc 2025-08-14T21:48:20.1026628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\ilp_utils.cpython-39.pyc 2025-08-14T21:48:20.1030057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\memory_tracker.cpython-39.pyc 2025-08-14T21:48:20.1034201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\mem_tracker.cpython-39.pyc 2025-08-14T21:48:20.1038344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\mod_tracker.cpython-39.pyc 2025-08-14T21:48:20.1042015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\runtime_estimator.cpython-39.pyc 2025-08-14T21:48:20.1045698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\sac_estimator.cpython-39.pyc 2025-08-14T21:48:20.1049785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\sac_ilp.cpython-39.pyc 2025-08-14T21:48:20.1053286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.1061855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\argparse_util.cpython-39.pyc 2025-08-14T21:48:20.1065952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\c10d_logger.cpython-39.pyc 2025-08-14T21:48:20.1069572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\collective_utils.cpython-39.pyc 2025-08-14T21:48:20.1080624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\constants.cpython-39.pyc 2025-08-14T21:48:20.1084535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\device_mesh.cpython-39.pyc 2025-08-14T21:48:20.1088234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\distributed_c10d.cpython-39.pyc 2025-08-14T21:48:20.1093000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\launch.cpython-39.pyc 2025-08-14T21:48:20.1096645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\logging_handlers.cpython-39.pyc 2025-08-14T21:48:20.1100652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\remote_device.cpython-39.pyc 2025-08-14T21:48:20.1104245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\rendezvous.cpython-39.pyc 2025-08-14T21:48:20.1107822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\run.cpython-39.pyc 2025-08-14T21:48:20.1111582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:20.1115393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_checkpointable.cpython-39.pyc 2025-08-14T21:48:20.1119106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_composable_state.cpython-39.pyc 2025-08-14T21:48:20.1122731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_dist2.cpython-39.pyc 2025-08-14T21:48:20.1126396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_functional_collectives.cpython-39.pyc 2025-08-14T21:48:20.1130461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_functional_collectives_impl.cpython-39.pyc 2025-08-14T21:48:20.1142644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_serialization.cpython-39.pyc 2025-08-14T21:48:20.1146533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_state_dict_utils.cpython-39.pyc 2025-08-14T21:48:20.1150701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.1161714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\bernoulli.py 2025-08-14T21:48:20.1165582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\beta.py 2025-08-14T21:48:20.1169072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\binomial.py 2025-08-14T21:48:20.1172623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\categorical.py 2025-08-14T21:48:20.1184895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\cauchy.py 2025-08-14T21:48:20.1188350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\chi2.py 2025-08-14T21:48:20.1191948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\constraints.py 2025-08-14T21:48:20.1195545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\constraint_registry.py 2025-08-14T21:48:20.1198981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\continuous_bernoulli.py 2025-08-14T21:48:20.1202789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\dirichlet.py 2025-08-14T21:48:20.1206091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\distribution.py 2025-08-14T21:48:20.1209548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\exponential.py 2025-08-14T21:48:20.1213563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\exp_family.py 2025-08-14T21:48:20.1217348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\fishersnedecor.py 2025-08-14T21:48:20.1221100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\gamma.py 2025-08-14T21:48:20.1224502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\generalized_pareto.py 2025-08-14T21:48:20.1227804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\geometric.py 2025-08-14T21:48:20.1232466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\gumbel.py 2025-08-14T21:48:20.1236021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\half_cauchy.py 2025-08-14T21:48:20.1240726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\half_normal.py 2025-08-14T21:48:20.1244254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\independent.py 2025-08-14T21:48:20.1247696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\inverse_gamma.py 2025-08-14T21:48:20.1259475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\kl.py 2025-08-14T21:48:20.1263007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\kumaraswamy.py 2025-08-14T21:48:20.1266445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\laplace.py 2025-08-14T21:48:20.1269836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\lkj_cholesky.py 2025-08-14T21:48:20.1273304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\logistic_normal.py 2025-08-14T21:48:20.1278231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\log_normal.py 2025-08-14T21:48:20.1281957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\lowrank_multivariate_normal.py 2025-08-14T21:48:20.1286163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\mixture_same_family.py 2025-08-14T21:48:20.1289698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\multinomial.py 2025-08-14T21:48:20.1293506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\multivariate_normal.py 2025-08-14T21:48:20.1305066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\negative_binomial.py 2025-08-14T21:48:20.1308591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\normal.py 2025-08-14T21:48:20.1312027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\one_hot_categorical.py 2025-08-14T21:48:20.1315413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\pareto.py 2025-08-14T21:48:20.1318767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\poisson.py 2025-08-14T21:48:20.1322218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\relaxed_bernoulli.py 2025-08-14T21:48:20.1325619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\relaxed_categorical.py 2025-08-14T21:48:20.1329027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\studentT.py 2025-08-14T21:48:20.1332648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\transformed_distribution.py 2025-08-14T21:48:20.1336159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\transforms.py 2025-08-14T21:48:20.1339801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\uniform.py 2025-08-14T21:48:20.1343197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\utils.py 2025-08-14T21:48:20.1346529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\von_mises.py 2025-08-14T21:48:20.1358156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\weibull.py 2025-08-14T21:48:20.1361691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\wishart.py 2025-08-14T21:48:20.1365060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__init__.py 2025-08-14T21:48:20.1374169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\bernoulli.cpython-39.pyc 2025-08-14T21:48:20.1377580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\beta.cpython-39.pyc 2025-08-14T21:48:20.1381446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\binomial.cpython-39.pyc 2025-08-14T21:48:20.1391960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\categorical.cpython-39.pyc 2025-08-14T21:48:20.1395403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\cauchy.cpython-39.pyc 2025-08-14T21:48:20.1412840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\chi2.cpython-39.pyc 2025-08-14T21:48:20.1413571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\constraints.cpython-39.pyc 2025-08-14T21:48:20.1414341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\constraint_registry.cpython-39.pyc 2025-08-14T21:48:20.1415162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\continuous_bernoulli.cpython-39.pyc 2025-08-14T21:48:20.1415917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\dirichlet.cpython-39.pyc 2025-08-14T21:48:20.1417997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\distribution.cpython-39.pyc 2025-08-14T21:48:20.1421480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\exponential.cpython-39.pyc 2025-08-14T21:48:20.1425019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\exp_family.cpython-39.pyc 2025-08-14T21:48:20.1428712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\fishersnedecor.cpython-39.pyc 2025-08-14T21:48:20.1432438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\gamma.cpython-39.pyc 2025-08-14T21:48:20.1436005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\generalized_pareto.cpython-39.pyc 2025-08-14T21:48:20.1439596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\geometric.cpython-39.pyc 2025-08-14T21:48:20.1451316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\gumbel.cpython-39.pyc 2025-08-14T21:48:20.1454957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\half_cauchy.cpython-39.pyc 2025-08-14T21:48:20.1458447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\half_normal.cpython-39.pyc 2025-08-14T21:48:20.1461962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\independent.cpython-39.pyc 2025-08-14T21:48:20.1466256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\inverse_gamma.cpython-39.pyc 2025-08-14T21:48:20.1469815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\kl.cpython-39.pyc 2025-08-14T21:48:20.1473486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\kumaraswamy.cpython-39.pyc 2025-08-14T21:48:20.1477127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\laplace.cpython-39.pyc 2025-08-14T21:48:20.1488437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\lkj_cholesky.cpython-39.pyc 2025-08-14T21:48:20.1492100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\logistic_normal.cpython-39.pyc 2025-08-14T21:48:20.1495710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\log_normal.cpython-39.pyc 2025-08-14T21:48:20.1499435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\lowrank_multivariate_normal.cpython-39.pyc 2025-08-14T21:48:20.1503304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\mixture_same_family.cpython-39.pyc 2025-08-14T21:48:20.1506976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\multinomial.cpython-39.pyc 2025-08-14T21:48:20.1510819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\multivariate_normal.cpython-39.pyc 2025-08-14T21:48:20.1514442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\negative_binomial.cpython-39.pyc 2025-08-14T21:48:20.1526059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\normal.cpython-39.pyc 2025-08-14T21:48:20.1529693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\one_hot_categorical.cpython-39.pyc 2025-08-14T21:48:20.1533452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\pareto.cpython-39.pyc 2025-08-14T21:48:20.1537142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\poisson.cpython-39.pyc 2025-08-14T21:48:20.1540745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\relaxed_bernoulli.cpython-39.pyc 2025-08-14T21:48:20.1544477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\relaxed_categorical.cpython-39.pyc 2025-08-14T21:48:20.1548086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\studentT.cpython-39.pyc 2025-08-14T21:48:20.1551892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\transformed_distribution.cpython-39.pyc 2025-08-14T21:48:20.1563348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\transforms.cpython-39.pyc 2025-08-14T21:48:20.1567829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\uniform.cpython-39.pyc 2025-08-14T21:48:20.1571631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:20.1575326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\von_mises.cpython-39.pyc 2025-08-14T21:48:20.1579002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\weibull.cpython-39.pyc 2025-08-14T21:48:20.1582764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\wishart.cpython-39.pyc 2025-08-14T21:48:20.1586266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.1595795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\custom_obj.py 2025-08-14T21:48:20.1599875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\custom_ops.py 2025-08-14T21:48:20.1603377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\decomp_utils.py 2025-08-14T21:48:20.1606821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\dynamic_shapes.py 2025-08-14T21:48:20.1618490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\exported_program.py 2025-08-14T21:48:20.1622555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\graph_signature.py 2025-08-14T21:48:20.1626781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\unflatten.py 2025-08-14T21:48:20.1631012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_draft_export.py 2025-08-14T21:48:20.1635079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_remove_auto_functionalized_pass.py 2025-08-14T21:48:20.1639240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_remove_effect_tokens_pass.py 2025-08-14T21:48:20.1643263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_safeguard.py 2025-08-14T21:48:20.1647272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_swap.py 2025-08-14T21:48:20.1650745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_trace.py 2025-08-14T21:48:20.1654984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_tree_utils.py 2025-08-14T21:48:20.1658554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_unlift.py 2025-08-14T21:48:20.1662180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_wrapper_utils.py 2025-08-14T21:48:20.1665689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__init__.py 2025-08-14T21:48:20.1673379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\experimental\_utils.py 2025-08-14T21:48:20.1676779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\experimental\__init__.py 2025-08-14T21:48:20.1715918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\experimental\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:48:20.1719123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\experimental\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.1726758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\passes\__init__.py 2025-08-14T21:48:20.1733428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\passes\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.1741339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\constants.py 2025-08-14T21:48:20.1744743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\_package.py 2025-08-14T21:48:20.1748375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\_package_weights.py 2025-08-14T21:48:20.1751833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\__init__.py 2025-08-14T21:48:20.1764039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\__pycache__\constants.cpython-39.pyc 2025-08-14T21:48:20.1767513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\__pycache__\_package.cpython-39.pyc 2025-08-14T21:48:20.1771300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\__pycache__\_package_weights.cpython-39.pyc 2025-08-14T21:48:20.1783160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.1799898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\custom_obj.cpython-39.pyc 2025-08-14T21:48:20.1803435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\custom_ops.cpython-39.pyc 2025-08-14T21:48:20.1806908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\decomp_utils.cpython-39.pyc 2025-08-14T21:48:20.1818755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\dynamic_shapes.cpython-39.pyc 2025-08-14T21:48:20.1822453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\exported_program.cpython-39.pyc 2025-08-14T21:48:20.1826301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\graph_signature.cpython-39.pyc 2025-08-14T21:48:20.1829848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\unflatten.cpython-39.pyc 2025-08-14T21:48:20.1833455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_draft_export.cpython-39.pyc 2025-08-14T21:48:20.1837022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_remove_auto_functionalized_pass.cpython-39.pyc 2025-08-14T21:48:20.1840865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_remove_effect_tokens_pass.cpython-39.pyc 2025-08-14T21:48:20.1844488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_safeguard.cpython-39.pyc 2025-08-14T21:48:20.1848273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_swap.cpython-39.pyc 2025-08-14T21:48:20.1851790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_trace.cpython-39.pyc 2025-08-14T21:48:20.1855592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_tree_utils.cpython-39.pyc 2025-08-14T21:48:20.1859154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_unlift.cpython-39.pyc 2025-08-14T21:48:20.1862775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_wrapper_utils.cpython-39.pyc 2025-08-14T21:48:20.1874463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.1883425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fft\__init__.py 2025-08-14T21:48:20.1890634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fft\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.1898180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\func\__init__.py 2025-08-14T21:48:20.1905304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\func\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.1913680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\futures\__init__.py 2025-08-14T21:48:20.1921747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\futures\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.1928488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\annotate.py 2025-08-14T21:48:20.1931981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\config.py 2025-08-14T21:48:20.1935394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\graph.py 2025-08-14T21:48:20.1939765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\graph_module.py 2025-08-14T21:48:20.1943490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\immutable_collections.py 2025-08-14T21:48:20.1955960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\interpreter.py 2025-08-14T21:48:20.1959603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\node.py 2025-08-14T21:48:20.1963404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\operator_schemas.py 2025-08-14T21:48:20.1967013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\proxy.py 2025-08-14T21:48:20.1970597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\subgraph_rewriter.py 2025-08-14T21:48:20.1973988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\tensor_type.py 2025-08-14T21:48:20.1977506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\traceback.py 2025-08-14T21:48:20.1980911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_compatibility.py 2025-08-14T21:48:20.1985082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_graph_pickler.py 2025-08-14T21:48:20.1988907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_lazy_graph_module.py 2025-08-14T21:48:20.1992447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_pytree.py 2025-08-14T21:48:20.1995951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_symbolic_trace.py 2025-08-14T21:48:20.1999836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_utils.py 2025-08-14T21:48:20.2003278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__init__.py 2025-08-14T21:48:20.2011043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\accelerator_partitioner.py 2025-08-14T21:48:20.2014789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\const_fold.py 2025-08-14T21:48:20.2018350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\debug.py 2025-08-14T21:48:20.2031059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\graph_gradual_typechecker.py 2025-08-14T21:48:20.2034804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\merge_matmul.py 2025-08-14T21:48:20.2038203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\meta_tracer.py 2025-08-14T21:48:20.2041898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\normalize.py 2025-08-14T21:48:20.2045323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\optimization.py 2025-08-14T21:48:20.2049038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\partitioner_utils.py 2025-08-14T21:48:20.2052694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\proxy_tensor.py 2025-08-14T21:48:20.2056607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\recording.py 2025-08-14T21:48:20.2060200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\refinement_types.py 2025-08-14T21:48:20.2063731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\rewriter.py 2025-08-14T21:48:20.2067305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\schema_type_annotation.py 2025-08-14T21:48:20.2071221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\symbolic_shapes.py 2025-08-14T21:48:20.2076487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\sym_node.py 2025-08-14T21:48:20.2080350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unify_refinements.py 2025-08-14T21:48:20.2083911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\validator.py 2025-08-14T21:48:20.2088225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\_backward_state.py 2025-08-14T21:48:20.2091333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\_config.py 2025-08-14T21:48:20.2094715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\_constant_symnode.py 2025-08-14T21:48:20.2108220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\_dynamism.py 2025-08-14T21:48:20.2111832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__init__.py 2025-08-14T21:48:20.2118430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\constraint.py 2025-08-14T21:48:20.2122244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\constraint_generator.py 2025-08-14T21:48:20.2126946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\constraint_transformation.py 2025-08-14T21:48:20.2139997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\operation.py 2025-08-14T21:48:20.2143831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\transform_to_z3.py 2025-08-14T21:48:20.2147698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\util.py 2025-08-14T21:48:20.2151287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\z3_types.py 2025-08-14T21:48:20.2155105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__init__.py 2025-08-14T21:48:20.2162348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\constraint.cpython-39.pyc 2025-08-14T21:48:20.2165794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\constraint_generator.cpython-39.pyc 2025-08-14T21:48:20.2169637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\constraint_transformation.cpython-39.pyc 2025-08-14T21:48:20.2183107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\operation.cpython-39.pyc 2025-08-14T21:48:20.2186646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\transform_to_z3.cpython-39.pyc 2025-08-14T21:48:20.2191043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\util.cpython-39.pyc 2025-08-14T21:48:20.2194731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\z3_types.cpython-39.pyc 2025-08-14T21:48:20.2198310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.2206805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\core.py 2025-08-14T21:48:20.2210235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\dispatch.py 2025-08-14T21:48:20.2213766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\match.py 2025-08-14T21:48:20.2217059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\more.py 2025-08-14T21:48:20.2220723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\unification_tools.py 2025-08-14T21:48:20.2232874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\utils.py 2025-08-14T21:48:20.2236296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\variable.py 2025-08-14T21:48:20.2239917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__init__.py 2025-08-14T21:48:20.2247037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\conflict.py 2025-08-14T21:48:20.2250431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\core.py 2025-08-14T21:48:20.2253788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\dispatcher.py 2025-08-14T21:48:20.2257195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\utils.py 2025-08-14T21:48:20.2260712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\variadic.py 2025-08-14T21:48:20.2273004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__init__.py 2025-08-14T21:48:20.2279936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\conflict.cpython-39.pyc 2025-08-14T21:48:20.2283636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\core.cpython-39.pyc 2025-08-14T21:48:20.2287190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\dispatcher.cpython-39.pyc 2025-08-14T21:48:20.2299453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:20.2302909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\variadic.cpython-39.pyc 2025-08-14T21:48:20.2307034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.2315123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\core.cpython-39.pyc 2025-08-14T21:48:20.2318753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\dispatch.cpython-39.pyc 2025-08-14T21:48:20.2322399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\match.cpython-39.pyc 2025-08-14T21:48:20.2334682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\more.cpython-39.pyc 2025-08-14T21:48:20.2338225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\unification_tools.cpython-39.pyc 2025-08-14T21:48:20.2341692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:20.2345470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\variable.cpython-39.pyc 2025-08-14T21:48:20.2349104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.2357489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\accelerator_partitioner.cpython-39.pyc 2025-08-14T21:48:20.2361213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\const_fold.cpython-39.pyc 2025-08-14T21:48:20.2364661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\debug.cpython-39.pyc 2025-08-14T21:48:20.2377351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\graph_gradual_typechecker.cpython-39.pyc 2025-08-14T21:48:20.2381091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\merge_matmul.cpython-39.pyc 2025-08-14T21:48:20.2384564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\meta_tracer.cpython-39.pyc 2025-08-14T21:48:20.2388247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\normalize.cpython-39.pyc 2025-08-14T21:48:20.2391552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\optimization.cpython-39.pyc 2025-08-14T21:48:20.2395027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\partitioner_utils.cpython-39.pyc 2025-08-14T21:48:20.2398542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\proxy_tensor.cpython-39.pyc 2025-08-14T21:48:20.2402520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\recording.cpython-39.pyc 2025-08-14T21:48:20.2406259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\refinement_types.cpython-39.pyc 2025-08-14T21:48:20.2409829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\rewriter.cpython-39.pyc 2025-08-14T21:48:20.2413328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\schema_type_annotation.cpython-39.pyc 2025-08-14T21:48:20.2417131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\symbolic_shapes.cpython-39.pyc 2025-08-14T21:48:20.2421402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\sym_node.cpython-39.pyc 2025-08-14T21:48:20.2434249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\unify_refinements.cpython-39.pyc 2025-08-14T21:48:20.2437872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\validator.cpython-39.pyc 2025-08-14T21:48:20.2442019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\_backward_state.cpython-39.pyc 2025-08-14T21:48:20.2445582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\_config.cpython-39.pyc 2025-08-14T21:48:20.2449254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\_constant_symnode.cpython-39.pyc 2025-08-14T21:48:20.2452803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\_dynamism.cpython-39.pyc 2025-08-14T21:48:20.2456468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.2465596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\annotate_getitem_nodes.py 2025-08-14T21:48:20.2469474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\fake_tensor_prop.py 2025-08-14T21:48:20.2473216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\graph_drawer.py 2025-08-14T21:48:20.2476794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\graph_manipulation.py 2025-08-14T21:48:20.2489382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\graph_transform_observer.py 2025-08-14T21:48:20.2492970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\net_min_base.py 2025-08-14T21:48:20.2496628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\operator_support.py 2025-08-14T21:48:20.2500206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\param_fetch.py 2025-08-14T21:48:20.2503708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\pass_manager.py 2025-08-14T21:48:20.2507236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\reinplace.py 2025-08-14T21:48:20.2510918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\runtime_assert.py 2025-08-14T21:48:20.2514870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\shape_prop.py 2025-08-14T21:48:20.2518344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\splitter_base.py 2025-08-14T21:48:20.2522115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\split_module.py 2025-08-14T21:48:20.2525798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\split_utils.py 2025-08-14T21:48:20.2529404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\tools_common.py 2025-08-14T21:48:20.2533107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\_tensorify_python_scalars.py 2025-08-14T21:48:20.2536752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__init__.py 2025-08-14T21:48:20.2544139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\backends\cudagraphs.py 2025-08-14T21:48:20.2547590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\backends\__init__.py 2025-08-14T21:48:20.2553834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\backends\__pycache__\cudagraphs.cpython-39.pyc 2025-08-14T21:48:20.2557558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\backends\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.2575703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\__init__.py 2025-08-14T21:48:20.2581998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\common\cse_pass.py 2025-08-14T21:48:20.2585428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\common\__init__.py 2025-08-14T21:48:20.2591713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\common\__pycache__\cse_pass.cpython-39.pyc 2025-08-14T21:48:20.2595298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\common\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.2603317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.2611250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\partitioner.py 2025-08-14T21:48:20.2615592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\pass_base.py 2025-08-14T21:48:20.2619178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\pass_manager.py 2025-08-14T21:48:20.2622626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\__init__.py 2025-08-14T21:48:20.2641789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\__pycache__\partitioner.cpython-39.pyc 2025-08-14T21:48:20.2645709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\__pycache__\pass_base.cpython-39.pyc 2025-08-14T21:48:20.2649356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\__pycache__\pass_manager.cpython-39.pyc 2025-08-14T21:48:20.2663915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.2672052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\tests\test_pass_manager.py 2025-08-14T21:48:20.2675570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\tests\__init__.py 2025-08-14T21:48:20.2681848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\tests\__pycache__\test_pass_manager.cpython-39.pyc 2025-08-14T21:48:20.2685352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\tests\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.2693521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\common.py 2025-08-14T21:48:20.2697188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\fuser_utils.py 2025-08-14T21:48:20.2700776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\matcher_utils.py 2025-08-14T21:48:20.2704247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\matcher_with_name_node_map_utils.py 2025-08-14T21:48:20.2716980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\source_matcher_utils.py 2025-08-14T21:48:20.2720426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__init__.py 2025-08-14T21:48:20.2727691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\common.cpython-39.pyc 2025-08-14T21:48:20.2731451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\fuser_utils.cpython-39.pyc 2025-08-14T21:48:20.2734879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\matcher_utils.cpython-39.pyc 2025-08-14T21:48:20.2748561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\matcher_with_name_node_map_utils.cpython-39.pyc 2025-08-14T21:48:20.2751988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\source_matcher_utils.cpython-39.pyc 2025-08-14T21:48:20.2755408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.2764140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\annotate_getitem_nodes.cpython-39.pyc 2025-08-14T21:48:20.2767715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\fake_tensor_prop.cpython-39.pyc 2025-08-14T21:48:20.2771374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\graph_drawer.cpython-39.pyc 2025-08-14T21:48:20.2784147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\graph_manipulation.cpython-39.pyc 2025-08-14T21:48:20.2788282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\graph_transform_observer.cpython-39.pyc 2025-08-14T21:48:20.2791467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\net_min_base.cpython-39.pyc 2025-08-14T21:48:20.2795389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\operator_support.cpython-39.pyc 2025-08-14T21:48:20.2798848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\param_fetch.cpython-39.pyc 2025-08-14T21:48:20.2802920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\pass_manager.cpython-39.pyc 2025-08-14T21:48:20.2806655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\reinplace.cpython-39.pyc 2025-08-14T21:48:20.2810277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\runtime_assert.cpython-39.pyc 2025-08-14T21:48:20.2813880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\shape_prop.cpython-39.pyc 2025-08-14T21:48:20.2817555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\splitter_base.cpython-39.pyc 2025-08-14T21:48:20.2820963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\split_module.cpython-39.pyc 2025-08-14T21:48:20.2824556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\split_utils.cpython-39.pyc 2025-08-14T21:48:20.2828037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\tools_common.cpython-39.pyc 2025-08-14T21:48:20.2843646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\_tensorify_python_scalars.cpython-39.pyc 2025-08-14T21:48:20.2847162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.2857194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\annotate.cpython-39.pyc 2025-08-14T21:48:20.2861236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\config.cpython-39.pyc 2025-08-14T21:48:20.2865369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\graph.cpython-39.pyc 2025-08-14T21:48:20.2879531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\graph_module.cpython-39.pyc 2025-08-14T21:48:20.2884004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\immutable_collections.cpython-39.pyc 2025-08-14T21:48:20.2888061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\interpreter.cpython-39.pyc 2025-08-14T21:48:20.2925506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\node.cpython-39.pyc 2025-08-14T21:48:20.2929426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\operator_schemas.cpython-39.pyc 2025-08-14T21:48:20.2933082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\proxy.cpython-39.pyc 2025-08-14T21:48:20.2936991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\subgraph_rewriter.cpython-39.pyc 2025-08-14T21:48:20.2940775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\tensor_type.cpython-39.pyc 2025-08-14T21:48:20.2944723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\traceback.cpython-39.pyc 2025-08-14T21:48:20.2948221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_compatibility.cpython-39.pyc 2025-08-14T21:48:20.2951805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_graph_pickler.cpython-39.pyc 2025-08-14T21:48:20.2955382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_lazy_graph_module.cpython-39.pyc 2025-08-14T21:48:20.2958858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_pytree.cpython-39.pyc 2025-08-14T21:48:20.2962634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_symbolic_trace.cpython-39.pyc 2025-08-14T21:48:20.2971073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:48:20.2974871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:20.2993789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\advisor-annotate.h 2025-08-14T21:48:20.2997321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\cpuinfo.h 2025-08-14T21:48:20.3000987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl.h 2025-08-14T21:48:20.3004411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl.hpp 2025-08-14T21:48:20.3007680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_config.h 2025-08-14T21:48:20.3020925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_debug.h 2025-08-14T21:48:20.3024392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_ocl.h 2025-08-14T21:48:20.3027836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_ocl.hpp 2025-08-14T21:48:20.3031120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_sycl.h 2025-08-14T21:48:20.3034479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_sycl.hpp 2025-08-14T21:48:20.3038005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_sycl_types.h 2025-08-14T21:48:20.3041521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_threadpool.h 2025-08-14T21:48:20.3045441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_threadpool.hpp 2025-08-14T21:48:20.3048920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_threadpool_iface.hpp 2025-08-14T21:48:20.3052757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_types.h 2025-08-14T21:48:20.3056514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_version.h 2025-08-14T21:48:20.3059964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\experiments-config.h 2025-08-14T21:48:20.3063427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fp16.h 2025-08-14T21:48:20.3066829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fxdiv.h 2025-08-14T21:48:20.3070158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ittnotify-zca.h 2025-08-14T21:48:20.3073636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ittnotify.h 2025-08-14T21:48:20.3078609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\jitprofiling.h 2025-08-14T21:48:20.3092365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\libittnotify.h 2025-08-14T21:48:20.3095850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\libshm.h 2025-08-14T21:48:20.3099345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\psimd.h 2025-08-14T21:48:20.3103005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pthreadpool.h 2025-08-14T21:48:20.3106931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\sleef.h 2025-08-14T21:48:20.3111668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\xnnpack.h 2025-08-14T21:48:20.3121049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\AccumulateType.h 2025-08-14T21:48:20.3124489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ArrayRef.h 2025-08-14T21:48:20.3127798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ATen.h 2025-08-14T21:48:20.3131140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\autocast_mode.h 2025-08-14T21:48:20.3134619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Backend.h 2025-08-14T21:48:20.3148176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Backtrace.h 2025-08-14T21:48:20.3151444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\BlasBackend.h 2025-08-14T21:48:20.3154884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CachedTensorUtils.h 2025-08-14T21:48:20.3158240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ceil_div.h 2025-08-14T21:48:20.3161680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\code_template.h 2025-08-14T21:48:20.3165015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CollapseDims.h 2025-08-14T21:48:20.3168536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeExplicitAutogradFunctions.h 2025-08-14T21:48:20.3171988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeExplicitAutogradFunctions_inl.h 2025-08-14T21:48:20.3175988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions.h 2025-08-14T21:48:20.3179702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions_inl.h 2025-08-14T21:48:20.3183293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeImplicitAutogradFunctions.h 2025-08-14T21:48:20.3186840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeImplicitAutogradFunctions_inl.h 2025-08-14T21:48:20.3190712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions.h 2025-08-14T21:48:20.3194276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions_inl.h 2025-08-14T21:48:20.3207760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Config.h 2025-08-14T21:48:20.3211085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Context.h 2025-08-14T21:48:20.3214751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpp_custom_type_hack.h 2025-08-14T21:48:20.3218162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CPUApplyUtils.h 2025-08-14T21:48:20.3221619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CPUFixedAllocator.h 2025-08-14T21:48:20.3225602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CPUFunctions.h 2025-08-14T21:48:20.3229557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CPUFunctions_inl.h 2025-08-14T21:48:20.3233510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CPUGeneratorImpl.h 2025-08-14T21:48:20.3237266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CUDAFunctions.h 2025-08-14T21:48:20.3240863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CUDAFunctions_inl.h 2025-08-14T21:48:20.3254383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Device.h 2025-08-14T21:48:20.3257791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DeviceAccelerator.h 2025-08-14T21:48:20.3261339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DeviceGuard.h 2025-08-14T21:48:20.3265028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Dimname.h 2025-08-14T21:48:20.3268329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DimVector.h 2025-08-14T21:48:20.3271722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Dispatch.h 2025-08-14T21:48:20.3275084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Dispatch_v2.h 2025-08-14T21:48:20.3278801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\div_rtn.h 2025-08-14T21:48:20.3282141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DLConvertor.h 2025-08-14T21:48:20.3285401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\dlpack.h 2025-08-14T21:48:20.3288857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DynamicLibrary.h 2025-08-14T21:48:20.3292439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\EmptyTensor.h 2025-08-14T21:48:20.3305613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ExpandBase.h 2025-08-14T21:48:20.3309005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ExpandUtils.h 2025-08-14T21:48:20.3312543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Formatting.h 2025-08-14T21:48:20.3315978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\FunctionalStorageImpl.h 2025-08-14T21:48:20.3319830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\FunctionalTensorWrapper.h 2025-08-14T21:48:20.3323247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Functions.h 2025-08-14T21:48:20.3326910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\FuncTorchTLS.h 2025-08-14T21:48:20.3330345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Generator.h 2025-08-14T21:48:20.3333776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\InferSize.h 2025-08-14T21:48:20.3337503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\InitialTensorOptions.h 2025-08-14T21:48:20.3350989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\jiterator_macros.h 2025-08-14T21:48:20.3354429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\jit_macros.h 2025-08-14T21:48:20.3358081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Layout.h 2025-08-14T21:48:20.3361996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\LegacyBatchedFallback.h 2025-08-14T21:48:20.3365540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\LegacyBatchedTensorImpl.h 2025-08-14T21:48:20.3369148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\LegacyVmapMode.h 2025-08-14T21:48:20.3372946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\LegacyVmapTransforms.h 2025-08-14T21:48:20.3375984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\LinalgBackend.h 2025-08-14T21:48:20.3379396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MapAllocator.h 2025-08-14T21:48:20.3382898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MatrixRef.h 2025-08-14T21:48:20.3405078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MemoryOverlap.h 2025-08-14T21:48:20.3409199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MetaFunctions.h 2025-08-14T21:48:20.3413105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MetaFunctions_inl.h 2025-08-14T21:48:20.3417005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MethodOperators.h 2025-08-14T21:48:20.3420536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NamedTensor.h 2025-08-14T21:48:20.3424326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NamedTensorUtils.h 2025-08-14T21:48:20.3427410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NativeFunctions.h 2025-08-14T21:48:20.3431097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NativeMetaFunctions.h 2025-08-14T21:48:20.3435031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NestedTensorImpl.h 2025-08-14T21:48:20.3448239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NumericUtils.h 2025-08-14T21:48:20.3451903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\OpaqueTensorImpl.h 2025-08-14T21:48:20.3455634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Operators.h 2025-08-14T21:48:20.3459894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\OpMathType.h 2025-08-14T21:48:20.3464061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\PadNd.h 2025-08-14T21:48:20.3468014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Parallel-inl.h 2025-08-14T21:48:20.3472276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Parallel.h 2025-08-14T21:48:20.3476114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ParallelFuture.h 2025-08-14T21:48:20.3480391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ParallelNative.h 2025-08-14T21:48:20.3485052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ParallelOpenMP.h 2025-08-14T21:48:20.3499729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\PTThreadPool.h 2025-08-14T21:48:20.3503744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\PythonTorchFunctionTLS.h 2025-08-14T21:48:20.3507403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\record_function.h 2025-08-14T21:48:20.3511428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\RedispatchFunctions.h 2025-08-14T21:48:20.3528007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\RegistrationDeclarations.h 2025-08-14T21:48:20.3536041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ROCmFABackend.h 2025-08-14T21:48:20.3539564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SavedTensorHooks.h 2025-08-14T21:48:20.3543213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Scalar.h 2025-08-14T21:48:20.3546552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ScalarOps.h 2025-08-14T21:48:20.3550371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ScalarType.h 2025-08-14T21:48:20.3553944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SDPBackend.h 2025-08-14T21:48:20.3557366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SequenceNumber.h 2025-08-14T21:48:20.3561314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SmallVector.h 2025-08-14T21:48:20.3564898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SparseCsrTensorImpl.h 2025-08-14T21:48:20.3568348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SparseCsrTensorUtils.h 2025-08-14T21:48:20.3572004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SparseTensorImpl.h 2025-08-14T21:48:20.3575544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Storage.h 2025-08-14T21:48:20.3578985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\StorageUtils.h 2025-08-14T21:48:20.3582595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Tensor.h 2025-08-14T21:48:20.3585897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorAccessor.h 2025-08-14T21:48:20.3599490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorGeometry.h 2025-08-14T21:48:20.3603017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorIndexing.h 2025-08-14T21:48:20.3607334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorIterator.h 2025-08-14T21:48:20.3611044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorIteratorInternal.h 2025-08-14T21:48:20.3615180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorMeta.h 2025-08-14T21:48:20.3618658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorNames.h 2025-08-14T21:48:20.3622200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorOperators.h 2025-08-14T21:48:20.3625742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorOptions.h 2025-08-14T21:48:20.3629307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorSubclassLikeUtils.h 2025-08-14T21:48:20.3644294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorUtils.h 2025-08-14T21:48:20.3646012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ThreadLocalPythonObjects.h 2025-08-14T21:48:20.3651197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ThreadLocalState.h 2025-08-14T21:48:20.3654949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TracerMode.h 2025-08-14T21:48:20.3660061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TypeDefault.h 2025-08-14T21:48:20.3665360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Utils.h 2025-08-14T21:48:20.3670509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Version.h 2025-08-14T21:48:20.3675643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\VmapGeneratedPlumbing.h 2025-08-14T21:48:20.3691749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\WrapDimUtils.h 2025-08-14T21:48:20.3697087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\WrapDimUtilsMulti.h 2025-08-14T21:48:20.3708861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\alias_info.h 2025-08-14T21:48:20.3712974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Array.h 2025-08-14T21:48:20.3716478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ATenGeneral.h 2025-08-14T21:48:20.3720748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ATenOpList.h 2025-08-14T21:48:20.3734116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ATen_fwd.h 2025-08-14T21:48:20.3737494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\aten_interned_strings.h 2025-08-14T21:48:20.3741197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ATen_pch.h 2025-08-14T21:48:20.3744431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Backtrace.h 2025-08-14T21:48:20.3747761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\blob.h 2025-08-14T21:48:20.3752583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\builtin_function.h 2025-08-14T21:48:20.3754804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\CachingHostAllocator.h 2025-08-14T21:48:20.3758232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\CheckMemoryFormat.h 2025-08-14T21:48:20.3762071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\class_type.h 2025-08-14T21:48:20.3765625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\custom_class.h 2025-08-14T21:48:20.3769358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\DeprecatedTypeProperties.h 2025-08-14T21:48:20.3772660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\DeprecatedTypePropertiesRegistry.h 2025-08-14T21:48:20.3776027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Dict.h 2025-08-14T21:48:20.3779425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Dict_inl.h 2025-08-14T21:48:20.3783744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Dimname.h 2025-08-14T21:48:20.3787740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\DimVector.h 2025-08-14T21:48:20.3791598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\DistributionsHelper.h 2025-08-14T21:48:20.3795343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dynamic_type.h 2025-08-14T21:48:20.3809142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\enum_tag.h 2025-08-14T21:48:20.3812439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\enum_type.h 2025-08-14T21:48:20.3815863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Formatting.h 2025-08-14T21:48:20.3819399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\function.h 2025-08-14T21:48:20.3823114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\functional.h 2025-08-14T21:48:20.3826608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\function_schema.h 2025-08-14T21:48:20.3830188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\function_schema_inl.h 2025-08-14T21:48:20.3834229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Generator.h 2025-08-14T21:48:20.3837867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\GeneratorForPrivateuseone.h 2025-08-14T21:48:20.3841708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\grad_mode.h 2025-08-14T21:48:20.3845191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\IListRef.h 2025-08-14T21:48:20.3858655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\IListRef_inl.h 2025-08-14T21:48:20.3862055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\interned_strings.h 2025-08-14T21:48:20.3865533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\interned_strings_class.h 2025-08-14T21:48:20.3868996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ivalue.h 2025-08-14T21:48:20.3872669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ivalue_inl.h 2025-08-14T21:48:20.3876730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ivalue_to.h 2025-08-14T21:48:20.3880380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\jit_type.h 2025-08-14T21:48:20.3884097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\jit_type_base.h 2025-08-14T21:48:20.3887718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\LegacyTypeDispatch.h 2025-08-14T21:48:20.3891130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\List.h 2025-08-14T21:48:20.3894592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\List_inl.h 2025-08-14T21:48:20.3897952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\MT19937RNGEngine.h 2025-08-14T21:48:20.3911194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\NamedTensor.h 2025-08-14T21:48:20.3914731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\NestedIntSymNodeImpl.h 2025-08-14T21:48:20.3918314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\operator_name.h 2025-08-14T21:48:20.3921946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\PhiloxRNGEngine.h 2025-08-14T21:48:20.3925363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\PythonFallbackKernel.h 2025-08-14T21:48:20.3928867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\PythonOpRegistrationTrampoline.h 2025-08-14T21:48:20.3932545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\qualified_name.h 2025-08-14T21:48:20.3936102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\QuantizerBase.h 2025-08-14T21:48:20.3941097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Range.h 2025-08-14T21:48:20.3943793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Reduction.h 2025-08-14T21:48:20.3956901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\rref_interface.h 2025-08-14T21:48:20.3960550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Scalar.h 2025-08-14T21:48:20.3964070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ScalarType.h 2025-08-14T21:48:20.3967476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\stack.h 2025-08-14T21:48:20.3971300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\symbol.h 2025-08-14T21:48:20.3974249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Tensor.h 2025-08-14T21:48:20.3978154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\TensorAccessor.h 2025-08-14T21:48:20.3981963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\TensorBase.h 2025-08-14T21:48:20.3985421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\TensorBody.h 2025-08-14T21:48:20.3990630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\TorchDispatchUtils.h 2025-08-14T21:48:20.3994955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\TransformationHelper.h 2025-08-14T21:48:20.4017204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\typeid.h 2025-08-14T21:48:20.4020434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\type_factory.h 2025-08-14T21:48:20.4024078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\type_ptr.h 2025-08-14T21:48:20.4027930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\UndefinedTensorImpl.h 2025-08-14T21:48:20.4031275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\UnsafeFromTH.h 2025-08-14T21:48:20.4034808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\VariableHooksInterface.h 2025-08-14T21:48:20.4039272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Variadic.h 2025-08-14T21:48:20.4041999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Vitals.h 2025-08-14T21:48:20.4049385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\BoxedKernel.h 2025-08-14T21:48:20.4052918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\BoxedKernel_impl.h 2025-08-14T21:48:20.4056768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\KernelFunction.h 2025-08-14T21:48:20.4060038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\KernelFunction_impl.h 2025-08-14T21:48:20.4073899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\OperatorKernel.h 2025-08-14T21:48:20.4080760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\impl\boxing.h 2025-08-14T21:48:20.4085411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\impl\make_boxed_from_unboxed_functor.h 2025-08-14T21:48:20.4088315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\impl\test_helpers.h 2025-08-14T21:48:20.4091936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\impl\WrapFunctionIntoFunctor.h 2025-08-14T21:48:20.4105561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\impl\WrapFunctionIntoRuntimeFunctor.h 2025-08-14T21:48:20.4114272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\CppSignature.h 2025-08-14T21:48:20.4117034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\Dispatcher.h 2025-08-14T21:48:20.4120874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\DispatchKeyExtractor.h 2025-08-14T21:48:20.4125439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\ObservedOperators.h 2025-08-14T21:48:20.4137648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\OperatorEntry.h 2025-08-14T21:48:20.4141119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\OperatorOptions.h 2025-08-14T21:48:20.4179259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\RegistrationHandleRAII.h 2025-08-14T21:48:20.4187405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\op_registration\adaption.h 2025-08-14T21:48:20.4190865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\op_registration\infer_schema.h 2025-08-14T21:48:20.4194450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\op_registration\op_allowlist.h 2025-08-14T21:48:20.4197753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\op_registration\op_registration.h 2025-08-14T21:48:20.4212693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\FlushDenormal.h 2025-08-14T21:48:20.4216137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\Utils.h 2025-08-14T21:48:20.4219463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vml.h 2025-08-14T21:48:20.4226460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\functional.h 2025-08-14T21:48:20.4229822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\functional_base.h 2025-08-14T21:48:20.4233213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\functional_bfloat16.h 2025-08-14T21:48:20.4236667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\intrinsics.h 2025-08-14T21:48:20.4249947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec.h 2025-08-14T21:48:20.4253688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_base.h 2025-08-14T21:48:20.4257340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_convert.h 2025-08-14T21:48:20.4260723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_half.h 2025-08-14T21:48:20.4263932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_mask.h 2025-08-14T21:48:20.4267121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_n.h 2025-08-14T21:48:20.4270336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_quant.h 2025-08-14T21:48:20.4277381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\sve_helper.h 2025-08-14T21:48:20.4280804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_bfloat16.h 2025-08-14T21:48:20.4284221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_common_sve.h 2025-08-14T21:48:20.4287778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_double.h 2025-08-14T21:48:20.4301006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_float.h 2025-08-14T21:48:20.4304393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_int.h 2025-08-14T21:48:20.4307691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_qint.h 2025-08-14T21:48:20.4314820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128.h 2025-08-14T21:48:20.4318274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128_bfloat16_neon.h 2025-08-14T21:48:20.4321835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128_convert.h 2025-08-14T21:48:20.4325424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128_float_neon.h 2025-08-14T21:48:20.4339470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128_half_neon.h 2025-08-14T21:48:20.4342734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128_reduced_precision_common_neon.h 2025-08-14T21:48:20.4350323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\missing_vld1_neon.h 2025-08-14T21:48:20.4353519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\missing_vst1_neon.h 2025-08-14T21:48:20.4356888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256.h 2025-08-14T21:48:20.4360392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_16bit_float.h 2025-08-14T21:48:20.4373860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_bfloat16.h 2025-08-14T21:48:20.4377506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_complex_double.h 2025-08-14T21:48:20.4381003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_complex_float.h 2025-08-14T21:48:20.4384813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_convert.h 2025-08-14T21:48:20.4388104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_double.h 2025-08-14T21:48:20.4391794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_float.h 2025-08-14T21:48:20.4395101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_half.h 2025-08-14T21:48:20.4398736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_int.h 2025-08-14T21:48:20.4403063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_mask.h 2025-08-14T21:48:20.4406564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_qint.h 2025-08-14T21:48:20.4414831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_bfloat16_vsx.h 2025-08-14T21:48:20.4418401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_common_vsx.h 2025-08-14T21:48:20.4421922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_complex_double_vsx.h 2025-08-14T21:48:20.4435349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_complex_float_vsx.h 2025-08-14T21:48:20.4438977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_double_vsx.h 2025-08-14T21:48:20.4443080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_float_vsx.h 2025-08-14T21:48:20.4446744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_int16_vsx.h 2025-08-14T21:48:20.4450469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_int32_vsx.h 2025-08-14T21:48:20.4453955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_int64_vsx.h 2025-08-14T21:48:20.4457673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_qint32_vsx.h 2025-08-14T21:48:20.4461209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_qint8_vsx.h 2025-08-14T21:48:20.4464740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_quint8_vsx.h 2025-08-14T21:48:20.4468403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vsx_helpers.h 2025-08-14T21:48:20.4476338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\zarch\vec256_zarch.h 2025-08-14T21:48:20.4485061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512.h 2025-08-14T21:48:20.4488398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_bfloat16.h 2025-08-14T21:48:20.4492134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_complex_double.h 2025-08-14T21:48:20.4495598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_complex_float.h 2025-08-14T21:48:20.4509342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_convert.h 2025-08-14T21:48:20.4513023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_double.h 2025-08-14T21:48:20.4516304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_float.h 2025-08-14T21:48:20.4519953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_float8.h 2025-08-14T21:48:20.4523715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_int.h 2025-08-14T21:48:20.4528021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_mask.h 2025-08-14T21:48:20.4531153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_qint.h 2025-08-14T21:48:20.4540315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\ApplyGridUtils.cuh 2025-08-14T21:48:20.4543827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\AsmUtils.cuh 2025-08-14T21:48:20.4547339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\ATenCUDAGeneral.h 2025-08-14T21:48:20.4550680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\Atomic.cuh 2025-08-14T21:48:20.4554075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CachingHostAllocator.h 2025-08-14T21:48:20.4567485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\cub-RadixSortPairs.cuh 2025-08-14T21:48:20.4570890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\cub.cuh 2025-08-14T21:48:20.4574214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\cub.h 2025-08-14T21:48:20.4577867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\cub_definitions.cuh 2025-08-14T21:48:20.4581101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAApplyUtils.cuh 2025-08-14T21:48:20.4584913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDABlas.h 2025-08-14T21:48:20.4588344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAContext.h 2025-08-14T21:48:20.4591776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAContextLight.h 2025-08-14T21:48:20.4595308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDADataType.h 2025-08-14T21:48:20.4598950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDADevice.h 2025-08-14T21:48:20.4602656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAEvent.h 2025-08-14T21:48:20.4606179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAGeneratorImpl.h 2025-08-14T21:48:20.4610393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAGraph.h 2025-08-14T21:48:20.4613959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAGraphsUtils.cuh 2025-08-14T21:48:20.4617313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDASparse.h 2025-08-14T21:48:20.4620924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDASparseBlas.h 2025-08-14T21:48:20.4634397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDASparseDescriptors.h 2025-08-14T21:48:20.4637926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDATensorMethods.cuh 2025-08-14T21:48:20.4641809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAUtils.h 2025-08-14T21:48:20.4646622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\DeviceUtils.cuh 2025-08-14T21:48:20.4649127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\EmptyTensor.h 2025-08-14T21:48:20.4652884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\Exceptions.h 2025-08-14T21:48:20.4656696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\jiterator.h 2025-08-14T21:48:20.4660128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\jiterator_impl.h 2025-08-14T21:48:20.4663538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\llvm_jit_strings.h 2025-08-14T21:48:20.4678581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\NumericLimits.cuh 2025-08-14T21:48:20.4684029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\PeerToPeerAccess.h 2025-08-14T21:48:20.4685894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\PhiloxCudaState.h 2025-08-14T21:48:20.4689526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\PhiloxUtils.cuh 2025-08-14T21:48:20.4692948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\PinnedMemoryAllocator.h 2025-08-14T21:48:20.4697148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\ScanUtils.cuh 2025-08-14T21:48:20.4700292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\Sleep.h 2025-08-14T21:48:20.4709844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\ThrustAllocator.h 2025-08-14T21:48:20.4712414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\CUDAHooks.h 2025-08-14T21:48:20.4722586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\DeviceThreadHandles.h 2025-08-14T21:48:20.4723261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\IndexUtils.cuh 2025-08-14T21:48:20.4724565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\IntegerDivider.cuh 2025-08-14T21:48:20.4751110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\KernelUtils.h 2025-08-14T21:48:20.4751713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\LazyNVRTC.h 2025-08-14T21:48:20.4752340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\OffsetCalculator.cuh 2025-08-14T21:48:20.4753012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\PhiloxCudaStateRaw.cuh 2025-08-14T21:48:20.4753960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\TensorInfo.cuh 2025-08-14T21:48:20.4757564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\UnpackRaw.cuh 2025-08-14T21:48:20.4766338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\GemmCommon.h 2025-08-14T21:48:20.4770062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\GemmHipblaslt.h 2025-08-14T21:48:20.4773527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\GemmRocblas.h 2025-08-14T21:48:20.4777043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\StreamTimer.h 2025-08-14T21:48:20.4790424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\Tunable.h 2025-08-14T21:48:20.4793716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\TunableGemm.h 2025-08-14T21:48:20.4797043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\TunableOp.h 2025-08-14T21:48:20.4806243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\cudnn-wrapper.h 2025-08-14T21:48:20.4809581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\Descriptors.h 2025-08-14T21:48:20.4812968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\Handle.h 2025-08-14T21:48:20.4816260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\Handles.h 2025-08-14T21:48:20.4819499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\Types.h 2025-08-14T21:48:20.4832795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\Utils.h 2025-08-14T21:48:20.4840185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\AcceleratorHooksInterface.h 2025-08-14T21:48:20.4843740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\CUDAHooksInterface.h 2025-08-14T21:48:20.4847244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\FunctionTraits.h 2025-08-14T21:48:20.4861013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\HIPHooksInterface.h 2025-08-14T21:48:20.4864300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\HPUHooksInterface.h 2025-08-14T21:48:20.4867678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\IPUHooksInterface.h 2025-08-14T21:48:20.4871763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\MAIAHooksInterface.h 2025-08-14T21:48:20.4874668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\MPSHooksInterface.h 2025-08-14T21:48:20.4878017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\MTIAHooksInterface.h 2025-08-14T21:48:20.4881359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\PrivateUse1HooksInterface.h 2025-08-14T21:48:20.4884821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\XPUHooksInterface.h 2025-08-14T21:48:20.4893146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\ADInterpreters.h 2025-08-14T21:48:20.4896475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\BatchedFallback.h 2025-08-14T21:48:20.4899966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\BatchedTensorImpl.h 2025-08-14T21:48:20.4913413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\BatchingMetaprogramming.h 2025-08-14T21:48:20.4916789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\BatchRulesHelper.h 2025-08-14T21:48:20.4920377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\DynamicLayer.h 2025-08-14T21:48:20.4923867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\FunctionalizeInterpreter.h 2025-08-14T21:48:20.4927378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\Interpreter.h 2025-08-14T21:48:20.4930976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\LegacyVmapTransforms.h 2025-08-14T21:48:20.4934487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\Macros.h 2025-08-14T21:48:20.4937893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\PlumbingHelper.h 2025-08-14T21:48:20.4941369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\TensorWrapper.h 2025-08-14T21:48:20.4945179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\VmapInterpreter.h 2025-08-14T21:48:20.4956791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\hip\impl\HIPAllocatorMasqueradingAsCUDA.h 2025-08-14T21:48:20.4960590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\hip\impl\HIPCachingAllocatorMasqueradingAsCUDA.h 2025-08-14T21:48:20.4964006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\hip\impl\HIPGuardImplMasqueradingAsCUDA.h 2025-08-14T21:48:20.4976828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\hip\impl\HIPStreamMasqueradingAsCUDA.h 2025-08-14T21:48:20.4985649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\metal\Context.h 2025-08-14T21:48:20.4992354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\Descriptors.h 2025-08-14T21:48:20.4996448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\Exceptions.h 2025-08-14T21:48:20.4999863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\Handle.h 2025-08-14T21:48:20.5003250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\miopen-wrapper.h 2025-08-14T21:48:20.5016688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\Types.h 2025-08-14T21:48:20.5020079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\Utils.h 2025-08-14T21:48:20.5027176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\EmptyTensor.h 2025-08-14T21:48:20.5030754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\IndexKernels.h 2025-08-14T21:48:20.5034540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSAllocator.h 2025-08-14T21:48:20.5038202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSAllocatorInterface.h 2025-08-14T21:48:20.5050949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSDevice.h 2025-08-14T21:48:20.5054339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSEvent.h 2025-08-14T21:48:20.5058016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSGeneratorImpl.h 2025-08-14T21:48:20.5061231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSGuardImpl.h 2025-08-14T21:48:20.5064278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSHooks.h 2025-08-14T21:48:20.5067613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSProfiler.h 2025-08-14T21:48:20.5071043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSStream.h 2025-08-14T21:48:20.5078892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Activation.h 2025-08-14T21:48:20.5082652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\AdaptivePooling.h 2025-08-14T21:48:20.5085965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\AmpKernels.h 2025-08-14T21:48:20.5089474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\BatchLinearAlgebra.h 2025-08-14T21:48:20.5103255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\batch_norm.h 2025-08-14T21:48:20.5106601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\BinaryOps.h 2025-08-14T21:48:20.5110074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\BucketizationUtils.h 2025-08-14T21:48:20.5114413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\CanUse32BitIndexMath.h 2025-08-14T21:48:20.5117028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ComplexHelper.h 2025-08-14T21:48:20.5120885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\CompositeRandomAccessor.h 2025-08-14T21:48:20.5124668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\CompositeRandomAccessorCommon.h 2025-08-14T21:48:20.5128381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ConvolutionMM3d.h 2025-08-14T21:48:20.5131897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ConvUtils.h 2025-08-14T21:48:20.5135427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Copy.h 2025-08-14T21:48:20.5138848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\CPUBlas.h 2025-08-14T21:48:20.5142150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\CPUFallback.h 2025-08-14T21:48:20.5146089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Cross.h 2025-08-14T21:48:20.5169052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\DilatedConvolutionUtils.h 2025-08-14T21:48:20.5169323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\DispatchStub.h 2025-08-14T21:48:20.5169541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Distance.h 2025-08-14T21:48:20.5169783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Distributions.h 2025-08-14T21:48:20.5198053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\DistributionTemplates.h 2025-08-14T21:48:20.5198302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\EmbeddingBag.h 2025-08-14T21:48:20.5198526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Fill.h 2025-08-14T21:48:20.5198755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ForeachUtils.h 2025-08-14T21:48:20.5199021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\FractionalMaxPooling.h 2025-08-14T21:48:20.5199370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\FunctionOfAMatrixUtils.h 2025-08-14T21:48:20.5199800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\FusedAdagrad.h 2025-08-14T21:48:20.5204080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\FusedAdam.h 2025-08-14T21:48:20.5207343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\FusedSGD.h 2025-08-14T21:48:20.5210887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Gelu.h 2025-08-14T21:48:20.5214401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\GridSampler.h 2025-08-14T21:48:20.5228283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\GridSamplerUtils.h 2025-08-14T21:48:20.5231793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\group_norm.h 2025-08-14T21:48:20.5235481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Histogram.h 2025-08-14T21:48:20.5238671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\im2col.h 2025-08-14T21:48:20.5242263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\im2col_shape_check.h 2025-08-14T21:48:20.5245645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\IndexingUtils.h 2025-08-14T21:48:20.5249471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\IndexKernel.h 2025-08-14T21:48:20.5252801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\layer_norm.h 2025-08-14T21:48:20.5256128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Lerp.h 2025-08-14T21:48:20.5259427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\LinearAlgebra.h 2025-08-14T21:48:20.5263504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\LinearAlgebraUtils.h 2025-08-14T21:48:20.5276232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\LossMulti.h 2025-08-14T21:48:20.5279849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Math.h 2025-08-14T21:48:20.5284709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\MathBitFallThroughLists.h 2025-08-14T21:48:20.5288181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\MathBitsFallback.h 2025-08-14T21:48:20.5291571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\MaxPooling.h 2025-08-14T21:48:20.5295159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\NonEmptyUtils.h 2025-08-14T21:48:20.5298650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\NonSymbolicBC.h 2025-08-14T21:48:20.5302110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Normalization.h 2025-08-14T21:48:20.5306033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Padding.h 2025-08-14T21:48:20.5309788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\PixelShuffle.h 2025-08-14T21:48:20.5323725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\PointwiseOps.h 2025-08-14T21:48:20.5327244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Pool.h 2025-08-14T21:48:20.5330482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Pow.h 2025-08-14T21:48:20.5334382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\RangeFactories.h 2025-08-14T21:48:20.5371250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\RangeUtils.h 2025-08-14T21:48:20.5374591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ReduceAllOps.h 2025-08-14T21:48:20.5378139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ReduceOps.h 2025-08-14T21:48:20.5381810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ReduceOpsUtils.h 2025-08-14T21:48:20.5385382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ReductionType.h 2025-08-14T21:48:20.5388820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Repeat.h 2025-08-14T21:48:20.5392852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Resize.h 2025-08-14T21:48:20.5396219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ResizeCommon.h 2025-08-14T21:48:20.5415368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\RNN.h 2025-08-14T21:48:20.5418732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ScatterGatherChecks.h 2025-08-14T21:48:20.5422178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SegmentReduce.h 2025-08-14T21:48:20.5425662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SharedReduceOps.h 2025-08-14T21:48:20.5429151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SobolEngineOpsUtils.h 2025-08-14T21:48:20.5432721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Sorting.h 2025-08-14T21:48:20.5435895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SortingUtils.h 2025-08-14T21:48:20.5439651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SparseTensorUtils.h 2025-08-14T21:48:20.5443291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SpectralOpsUtils.h 2025-08-14T21:48:20.5446817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\StridedRandomAccessor.h 2025-08-14T21:48:20.5459295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorAdvancedIndexing.h 2025-08-14T21:48:20.5462966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorAdvancedIndexingUtils.h 2025-08-14T21:48:20.5466540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorCompare.h 2025-08-14T21:48:20.5470353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorConversions.h 2025-08-14T21:48:20.5473997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorDimApply.h 2025-08-14T21:48:20.5477795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorFactories.h 2025-08-14T21:48:20.5481568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorIterator.h 2025-08-14T21:48:20.5485328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorIteratorDynamicCasting.h 2025-08-14T21:48:20.5489224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorProperties.h 2025-08-14T21:48:20.5504339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorShape.h 2025-08-14T21:48:20.5508739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorTransformations.h 2025-08-14T21:48:20.5511881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TopKImpl.h 2025-08-14T21:48:20.5515271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TransposeType.h 2025-08-14T21:48:20.5520395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TriangularOpsUtils.h 2025-08-14T21:48:20.5523173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TypeProperties.h 2025-08-14T21:48:20.5526842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\UnaryOps.h 2025-08-14T21:48:20.5530295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Unfold2d.h 2025-08-14T21:48:20.5533706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Unfold3d.h 2025-08-14T21:48:20.5537856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\UnfoldBackward.h 2025-08-14T21:48:20.5540832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\UpSample.h 2025-08-14T21:48:20.5544584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\verbose_wrapper.h 2025-08-14T21:48:20.5548034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\vol2col.h 2025-08-14T21:48:20.5564353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ao_sparse\quantized\cpu\fbgemm_utils.h 2025-08-14T21:48:20.5567889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ao_sparse\quantized\cpu\packed_params.h 2025-08-14T21:48:20.5571668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ao_sparse\quantized\cpu\qnnpack_utils.h 2025-08-14T21:48:20.5581012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\AtomicAddFloat.h 2025-08-14T21:48:20.5584406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\avx_mathfun.h 2025-08-14T21:48:20.5587883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\CatKernel.h 2025-08-14T21:48:20.5591583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\ChannelShuffleKernel.h 2025-08-14T21:48:20.5605376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\CopyKernel.h 2025-08-14T21:48:20.5609074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\DepthwiseConvKernel.h 2025-08-14T21:48:20.5613204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\DistributionTemplates.h 2025-08-14T21:48:20.5616658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\Elu.h 2025-08-14T21:48:20.5620522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\Gelu.h 2025-08-14T21:48:20.5624649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\GridSamplerKernel.h 2025-08-14T21:48:20.5627577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\IndexKernelUtils.h 2025-08-14T21:48:20.5631608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\Intrinsics.h 2025-08-14T21:48:20.5636280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\int_mm_kernel.h 2025-08-14T21:48:20.5638716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\IsContiguous.h 2025-08-14T21:48:20.5642432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\LogAddExp.h 2025-08-14T21:48:20.5645884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\LogSoftmaxKernelImpl.h 2025-08-14T21:48:20.5649631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\Loops.h 2025-08-14T21:48:20.5686021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\MaxUnpoolKernel.h 2025-08-14T21:48:20.5686309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\mixed_data_type.h 2025-08-14T21:48:20.5686560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\moments_utils.h 2025-08-14T21:48:20.5686841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\PixelShuffleKernel.h 2025-08-14T21:48:20.5687068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\Reduce.h 2025-08-14T21:48:20.5687460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.h 2025-08-14T21:48:20.5688052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\ReduceUtils.h 2025-08-14T21:48:20.5692692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\SampledAddmmKernel.h 2025-08-14T21:48:20.5696196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\SerialStackImpl.h 2025-08-14T21:48:20.5699678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\SoftmaxKernel.h 2025-08-14T21:48:20.5704136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\SpmmReduceKernel.h 2025-08-14T21:48:20.5707144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\StackKernel.h 2025-08-14T21:48:20.5710904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\UpSampleKernelAVXAntialias.h 2025-08-14T21:48:20.5725424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\utils.h 2025-08-14T21:48:20.5729073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\WeightNormKernel.h 2025-08-14T21:48:20.5732288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\zmath.h 2025-08-14T21:48:20.5741026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Activation.h 2025-08-14T21:48:20.5744388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\BinaryInternal.h 2025-08-14T21:48:20.5747876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\block_reduce.cuh 2025-08-14T21:48:20.5751404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\CompositeRandomAccessor.h 2025-08-14T21:48:20.5764777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Copy.h 2025-08-14T21:48:20.5768503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\CUDAJitLoops.cuh 2025-08-14T21:48:20.5771705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\CUDALoops.cuh 2025-08-14T21:48:20.5775524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\CuFFTPlanCache.h 2025-08-14T21:48:20.5779102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\CuFFTUtils.h 2025-08-14T21:48:20.5782719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\cutlass_common.cuh 2025-08-14T21:48:20.5786088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\DeviceSqrt.cuh 2025-08-14T21:48:20.5789966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Distributions.h 2025-08-14T21:48:20.5793635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\DistributionTemplates.h 2025-08-14T21:48:20.5797240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\EmbeddingBackwardKernel.cuh 2025-08-14T21:48:20.5800946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ForeachFunctors.cuh 2025-08-14T21:48:20.5804493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ForeachMinMaxFunctors.cuh 2025-08-14T21:48:20.5808683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adagrad_impl.cuh 2025-08-14T21:48:20.5811585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adagrad_utils.cuh 2025-08-14T21:48:20.5815163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adamw_amsgrad_impl.cuh 2025-08-14T21:48:20.5829653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adamw_impl.cuh 2025-08-14T21:48:20.5833116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adam_amsgrad_impl.cuh 2025-08-14T21:48:20.5836710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adam_impl.cuh 2025-08-14T21:48:20.5840734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adam_utils.cuh 2025-08-14T21:48:20.5844250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\GridSampler.cuh 2025-08-14T21:48:20.5847587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\GridSampler.h 2025-08-14T21:48:20.5851045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\GroupMM.h 2025-08-14T21:48:20.5854618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\GroupMMCommon.cuh 2025-08-14T21:48:20.5858159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\im2col.cuh 2025-08-14T21:48:20.5875992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\IndexKernel.h 2025-08-14T21:48:20.5879462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\IndexKernelUtils.h 2025-08-14T21:48:20.5883548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\JitLoops.cuh 2025-08-14T21:48:20.5886599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\jit_utils.h 2025-08-14T21:48:20.5890139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\KernelUtils.cuh 2025-08-14T21:48:20.5893559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\LaunchUtils.h 2025-08-14T21:48:20.5897220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Loops.cuh 2025-08-14T21:48:20.5900322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Math.cuh 2025-08-14T21:48:20.5904391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\MemoryAccess.cuh 2025-08-14T21:48:20.5908116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\MiscUtils.h 2025-08-14T21:48:20.5911871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\MultiTensorApply.cuh 2025-08-14T21:48:20.5929405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Normalization.cuh 2025-08-14T21:48:20.5933157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\PersistentSoftmax.cuh 2025-08-14T21:48:20.5936830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Pow.cuh 2025-08-14T21:48:20.5940211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Randperm.cuh 2025-08-14T21:48:20.5943283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Reduce.cuh 2025-08-14T21:48:20.5946790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ReduceOps.h 2025-08-14T21:48:20.5950775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\reduction_template.cuh 2025-08-14T21:48:20.5954707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Resize.h 2025-08-14T21:48:20.5957990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\RowwiseScaledMM.h 2025-08-14T21:48:20.5961520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ScaledGroupMM.h 2025-08-14T21:48:20.5965974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ScanKernels.h 2025-08-14T21:48:20.5968766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ScanUtils.cuh 2025-08-14T21:48:20.5981804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Sort.h 2025-08-14T21:48:20.5985301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Sorting.h 2025-08-14T21:48:20.5989189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\SortingCommon.cuh 2025-08-14T21:48:20.5992328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\SortingRadixSelect.cuh 2025-08-14T21:48:20.5996142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\SortStable.h 2025-08-14T21:48:20.6000007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\SortUtils.cuh 2025-08-14T21:48:20.6003058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\TensorModeKernel.cuh 2025-08-14T21:48:20.6006644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\TensorModeKernel.h 2025-08-14T21:48:20.6010139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\TensorTopK.h 2025-08-14T21:48:20.6013842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\thread_constants.h 2025-08-14T21:48:20.6036258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\UniqueCub.cuh 2025-08-14T21:48:20.6039825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\UpSample.cuh 2025-08-14T21:48:20.6044063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\vol2col.cuh 2025-08-14T21:48:20.6054285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\ck_bgemm.h 2025-08-14T21:48:20.6058200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\ck_gemm.h 2025-08-14T21:48:20.6061346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\ck_gemm_template.h 2025-08-14T21:48:20.6065027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\ck_types.h 2025-08-14T21:48:20.6082936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\bgemm_kernels\bgemm_kernel_collection.h 2025-08-14T21:48:20.6087402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\bgemm_kernels\bgemm_kernel_template.h 2025-08-14T21:48:20.6094735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\kleidiai\kai_kernels.h 2025-08-14T21:48:20.6098615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\kleidiai\kai_pack.h 2025-08-14T21:48:20.6101545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\kleidiai\kai_ukernel_interface.h 2025-08-14T21:48:20.6112332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\Conv.h 2025-08-14T21:48:20.6115957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\FusionUtils.h 2025-08-14T21:48:20.6122847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\Attr.h 2025-08-14T21:48:20.6127389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\DnnlExt.h 2025-08-14T21:48:20.6129705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\LRUCache.h 2025-08-14T21:48:20.6133446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\oneDNN.h 2025-08-14T21:48:20.6136538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\oneDNNContext.h 2025-08-14T21:48:20.6140066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\Utils.h 2025-08-14T21:48:20.6174725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\Copy.h 2025-08-14T21:48:20.6175016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\MetalShaderLibrary.h 2025-08-14T21:48:20.6175286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\MPSGraphSequoiaOps.h 2025-08-14T21:48:20.6175560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\MPSGraphSonomaOps.h 2025-08-14T21:48:20.6183813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\MPSGraphVenturaOps.h 2025-08-14T21:48:20.6187757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\OperationUtils.h 2025-08-14T21:48:20.6191471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\TensorFactory.h 2025-08-14T21:48:20.6198065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\kernels\Pooling.h 2025-08-14T21:48:20.6201591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\kernels\UpSample.h 2025-08-14T21:48:20.6208780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\BinaryKernel.h 2025-08-14T21:48:20.6212362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\FusedAdamAmsgradKernelImpl.h 2025-08-14T21:48:20.6216037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\FusedAdamKernelImpl.h 2025-08-14T21:48:20.6230307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\FusedAdamWAmsgradKernelImpl.h 2025-08-14T21:48:20.6233635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\FusedAdamWKernelImpl.h 2025-08-14T21:48:20.6236958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\MultiTensorApply.h 2025-08-14T21:48:20.6245695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mtia\EmptyTensor.h 2025-08-14T21:48:20.6252442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\nested\NestedTensorBinaryOps.h 2025-08-14T21:48:20.6256647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\nested\NestedTensorMath.h 2025-08-14T21:48:20.6260436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\nested\NestedTensorTransformerFunctions.h 2025-08-14T21:48:20.6272988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\nested\NestedTensorTransformerUtils.h 2025-08-14T21:48:20.6276601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\nested\NestedTensorUtils.h 2025-08-14T21:48:20.6284685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\AffineQuantizer.h 2025-08-14T21:48:20.6288032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\AffineQuantizerBase.h 2025-08-14T21:48:20.6291406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\ConvUtils.h 2025-08-14T21:48:20.6322695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\Copy.h 2025-08-14T21:48:20.6323208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\FakeQuantAffine.h 2025-08-14T21:48:20.6323480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\IndexKernel.h 2025-08-14T21:48:20.6323746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\library.h 2025-08-14T21:48:20.6324255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\PackedParams.h 2025-08-14T21:48:20.6326082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\ACLUtils.h 2025-08-14T21:48:20.6329336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\BinaryOps.h 2025-08-14T21:48:20.6333078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\conv_serialization.h 2025-08-14T21:48:20.6336697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\EmbeddingPackedParams.h 2025-08-14T21:48:20.6349882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\fbgemm_utils.h 2025-08-14T21:48:20.6353200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\init_qnnpack.h 2025-08-14T21:48:20.6356543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\OnednnUtils.h 2025-08-14T21:48:20.6360013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\qconv.h 2025-08-14T21:48:20.6363624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\qembeddingbag.h 2025-08-14T21:48:20.6367007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\qembeddingbag_prepack.h 2025-08-14T21:48:20.6370301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\qlinear.h 2025-08-14T21:48:20.6373691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\QnnpackUtils.h 2025-08-14T21:48:20.6377359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\QuantizedOps.h 2025-08-14T21:48:20.6380654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\QuantUtils.h 2025-08-14T21:48:20.6384407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\RuyUtils.h 2025-08-14T21:48:20.6387807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\XnnpackUtils.h 2025-08-14T21:48:20.6395243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cudnn\utils.h 2025-08-14T21:48:20.6403801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\attention.h 2025-08-14T21:48:20.6407386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\sdp_utils.h 2025-08-14T21:48:20.6411109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\sdp_utils_cpp.h 2025-08-14T21:48:20.6428366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\sdp_utils.h 2025-08-14T21:48:20.6434972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\flash_attn\flash_api.h 2025-08-14T21:48:20.6438909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\flash_attn\static_switch.h 2025-08-14T21:48:20.6447310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\debug_utils.h 2025-08-14T21:48:20.6451511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm_kernel_utils.h 2025-08-14T21:48:20.6455894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernel_backward.h 2025-08-14T21:48:20.6468745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernel_forward.h 2025-08-14T21:48:20.6473212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\pytorch_utils.h 2025-08-14T21:48:20.6479687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_pipelined.h 2025-08-14T21:48:20.6483684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_rescale_output.h 2025-08-14T21:48:20.6487642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_thread_apply_logsumexp.h 2025-08-14T21:48:20.6504632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma.h 2025-08-14T21:48:20.6508607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_base.h 2025-08-14T21:48:20.6511884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_multistage.h 2025-08-14T21:48:20.6515693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_pipelined.h 2025-08-14T21:48:20.6528964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\find_default_mma.h 2025-08-14T21:48:20.6532544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\mma_accum_lambda_iterator.h 2025-08-14T21:48:20.6537068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\mma_from_smem.h 2025-08-14T21:48:20.6544518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\default_warp_iterator_from_smem.h 2025-08-14T21:48:20.6548820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\epilogue_predicated_tile_iterator.h 2025-08-14T21:48:20.6552123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\make_residual_last.h 2025-08-14T21:48:20.6566316Z 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-14T21:48:20.6569443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\predicated_tile_iterator_residual_last.h 2025-08-14T21:48:20.6573718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\transpose_warp_iterator.h 2025-08-14T21:48:20.6610964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\warp_iterator_from_smem.h 2025-08-14T21:48:20.6619063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB.h 2025-08-14T21:48:20.6623748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF.h 2025-08-14T21:48:20.6631169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform\tile_smem_loader.h 2025-08-14T21:48:20.6639559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\hip\aotriton_adapter.h 2025-08-14T21:48:20.6647374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\hip\flash_attn\flash_api.h 2025-08-14T21:48:20.6654417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\hip\flash_attn\ck\me_ck_api.h 2025-08-14T21:48:20.6664607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\utils\Factory.h 2025-08-14T21:48:20.6667193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\utils\ParamsHash.h 2025-08-14T21:48:20.6683932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\utils\ParamUtils.h 2025-08-14T21:48:20.6684147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs.h 2025-08-14T21:48:20.6684776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\absolute.h 2025-08-14T21:48:20.6688708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\absolute_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.6692335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\absolute_native.h 2025-08-14T21:48:20.6701930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\absolute_ops.h 2025-08-14T21:48:20.6704209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.6708211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs_cpu_dispatch.h 2025-08-14T21:48:20.6711234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs_cuda_dispatch.h 2025-08-14T21:48:20.6714623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs_native.h 2025-08-14T21:48:20.6719321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs_ops.h 2025-08-14T21:48:20.6721692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos.h 2025-08-14T21:48:20.6725459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh.h 2025-08-14T21:48:20.6728971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.6732221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_cpu_dispatch.h 2025-08-14T21:48:20.6735908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_cuda_dispatch.h 2025-08-14T21:48:20.6739335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_meta.h 2025-08-14T21:48:20.6742927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_meta_dispatch.h 2025-08-14T21:48:20.6746400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_native.h 2025-08-14T21:48:20.6749838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_ops.h 2025-08-14T21:48:20.6753829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.6767175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_cpu_dispatch.h 2025-08-14T21:48:20.6770643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_cuda_dispatch.h 2025-08-14T21:48:20.6774416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_meta.h 2025-08-14T21:48:20.6777831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_meta_dispatch.h 2025-08-14T21:48:20.6781183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_native.h 2025-08-14T21:48:20.6784573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_ops.h 2025-08-14T21:48:20.6787942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool1d.h 2025-08-14T21:48:20.6792013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.6796314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.6809736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool1d_native.h 2025-08-14T21:48:20.6813274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool1d_ops.h 2025-08-14T21:48:20.6817031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d.h 2025-08-14T21:48:20.6820614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.6824882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d_cpu_dispatch.h 2025-08-14T21:48:20.6829062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d_cuda_dispatch.h 2025-08-14T21:48:20.6832543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d_native.h 2025-08-14T21:48:20.6836111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d_ops.h 2025-08-14T21:48:20.6849554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d.h 2025-08-14T21:48:20.6853167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_backward.h 2025-08-14T21:48:20.6857117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_backward_cpu_dispatch.h 2025-08-14T21:48:20.6860681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_backward_cuda_dispatch.h 2025-08-14T21:48:20.6864126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_backward_native.h 2025-08-14T21:48:20.6867837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_backward_ops.h 2025-08-14T21:48:20.6871768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.6875428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_cpu_dispatch.h 2025-08-14T21:48:20.6879256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_cuda_dispatch.h 2025-08-14T21:48:20.6882946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_native.h 2025-08-14T21:48:20.6886535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_ops.h 2025-08-14T21:48:20.6909270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool1d.h 2025-08-14T21:48:20.6912921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool1d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.6916499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool1d_native.h 2025-08-14T21:48:20.6920444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool1d_ops.h 2025-08-14T21:48:20.6924227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d.h 2025-08-14T21:48:20.6929183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward.h 2025-08-14T21:48:20.6933171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.6936854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_cpu_dispatch.h 2025-08-14T21:48:20.6940904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_cuda_dispatch.h 2025-08-14T21:48:20.6944654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_meta.h 2025-08-14T21:48:20.6948290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_meta_dispatch.h 2025-08-14T21:48:20.6961774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_native.h 2025-08-14T21:48:20.6965358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_ops.h 2025-08-14T21:48:20.6969266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.6974515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_cpu_dispatch.h 2025-08-14T21:48:20.6977119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_cuda_dispatch.h 2025-08-14T21:48:20.6981268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_meta.h 2025-08-14T21:48:20.6986141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_meta_dispatch.h 2025-08-14T21:48:20.6999565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_native.h 2025-08-14T21:48:20.7003672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_ops.h 2025-08-14T21:48:20.7015916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d.h 2025-08-14T21:48:20.7016598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward.h 2025-08-14T21:48:20.7019393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.7034482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_cpu_dispatch.h 2025-08-14T21:48:20.7038065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_cuda_dispatch.h 2025-08-14T21:48:20.7047833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_meta.h 2025-08-14T21:48:20.7048575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_meta_dispatch.h 2025-08-14T21:48:20.7051450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_native.h 2025-08-14T21:48:20.7079844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_ops.h 2025-08-14T21:48:20.7080748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.7081603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_cpu_dispatch.h 2025-08-14T21:48:20.7082297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_cuda_dispatch.h 2025-08-14T21:48:20.7082971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_meta.h 2025-08-14T21:48:20.7083652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_meta_dispatch.h 2025-08-14T21:48:20.7085368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_native.h 2025-08-14T21:48:20.7086763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_ops.h 2025-08-14T21:48:20.7091097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add.h 2025-08-14T21:48:20.7094075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm.h 2025-08-14T21:48:20.7097707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm_cpu_dispatch.h 2025-08-14T21:48:20.7101736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm_cuda_dispatch.h 2025-08-14T21:48:20.7105320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm_meta_dispatch.h 2025-08-14T21:48:20.7108656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm_native.h 2025-08-14T21:48:20.7112177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm_ops.h 2025-08-14T21:48:20.7116017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv.h 2025-08-14T21:48:20.7119733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.7123150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_cpu_dispatch.h 2025-08-14T21:48:20.7127000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_cuda_dispatch.h 2025-08-14T21:48:20.7140877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_meta.h 2025-08-14T21:48:20.7144508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_meta_dispatch.h 2025-08-14T21:48:20.7148139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_native.h 2025-08-14T21:48:20.7151815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_ops.h 2025-08-14T21:48:20.7156404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul.h 2025-08-14T21:48:20.7159108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.7162864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_cpu_dispatch.h 2025-08-14T21:48:20.7166690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_cuda_dispatch.h 2025-08-14T21:48:20.7171167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_meta.h 2025-08-14T21:48:20.7174630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_meta_dispatch.h 2025-08-14T21:48:20.7178289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_native.h 2025-08-14T21:48:20.7182111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_ops.h 2025-08-14T21:48:20.7185708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm.h 2025-08-14T21:48:20.7189413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.7193114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_cpu_dispatch.h 2025-08-14T21:48:20.7197151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_cuda_dispatch.h 2025-08-14T21:48:20.7201100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_meta.h 2025-08-14T21:48:20.7204910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_meta_dispatch.h 2025-08-14T21:48:20.7208400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_native.h 2025-08-14T21:48:20.7213326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_ops.h 2025-08-14T21:48:20.7216989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv.h 2025-08-14T21:48:20.7220759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.7236344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_cpu_dispatch.h 2025-08-14T21:48:20.7240123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_cuda_dispatch.h 2025-08-14T21:48:20.7243501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_meta.h 2025-08-14T21:48:20.7247073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_meta_dispatch.h 2025-08-14T21:48:20.7250778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_native.h 2025-08-14T21:48:20.7254614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_ops.h 2025-08-14T21:48:20.7258371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr.h 2025-08-14T21:48:20.7261927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.7265640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr_cpu_dispatch.h 2025-08-14T21:48:20.7269367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr_cuda_dispatch.h 2025-08-14T21:48:20.7272917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr_native.h 2025-08-14T21:48:20.7276303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr_ops.h 2025-08-14T21:48:20.7279935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.7283621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.7287259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_cpu_dispatch.h 2025-08-14T21:48:20.7291453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_cuda_dispatch.h 2025-08-14T21:48:20.7294843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_meta.h 2025-08-14T21:48:20.7298230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_meta_dispatch.h 2025-08-14T21:48:20.7301735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_native.h 2025-08-14T21:48:20.7305396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_ops.h 2025-08-14T21:48:20.7308677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adjoint.h 2025-08-14T21:48:20.7312081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adjoint_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.7316311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adjoint_native.h 2025-08-14T21:48:20.7320313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adjoint_ops.h 2025-08-14T21:48:20.7325053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator.h 2025-08-14T21:48:20.7328100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_backward.h 2025-08-14T21:48:20.7332072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.7335613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_backward_native.h 2025-08-14T21:48:20.7339458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_backward_ops.h 2025-08-14T21:48:20.7343606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.7358154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_native.h 2025-08-14T21:48:20.7361892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_ops.h 2025-08-14T21:48:20.7365956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias.h 2025-08-14T21:48:20.7369482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.7372944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_copy.h 2025-08-14T21:48:20.7377668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.7380652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.7384922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_copy_native.h 2025-08-14T21:48:20.7389236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_copy_ops.h 2025-08-14T21:48:20.7392451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_native.h 2025-08-14T21:48:20.7396180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_ops.h 2025-08-14T21:48:20.7400547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_as.h 2025-08-14T21:48:20.7404169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_as_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.7408140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_as_native.h 2025-08-14T21:48:20.7412159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_as_ops.h 2025-08-14T21:48:20.7415207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_tensors.h 2025-08-14T21:48:20.7419106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_tensors_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.7424250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_tensors_native.h 2025-08-14T21:48:20.7429307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_tensors_ops.h 2025-08-14T21:48:20.7432069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_to.h 2025-08-14T21:48:20.7436045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_to_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.7439944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_to_native.h 2025-08-14T21:48:20.7443775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_to_ops.h 2025-08-14T21:48:20.7447356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all.h 2025-08-14T21:48:20.7450809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\allclose.h 2025-08-14T21:48:20.7454643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\allclose_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.7458679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\allclose_native.h 2025-08-14T21:48:20.7462295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\allclose_ops.h 2025-08-14T21:48:20.7466348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.7470514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.7474329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.7478111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_cpu_dispatch.h 2025-08-14T21:48:20.7481881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_cuda_dispatch.h 2025-08-14T21:48:20.7485422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_meta.h 2025-08-14T21:48:20.7489061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_meta_dispatch.h 2025-08-14T21:48:20.7493252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_native.h 2025-08-14T21:48:20.7496578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_ops.h 2025-08-14T21:48:20.7500101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alpha_dropout.h 2025-08-14T21:48:20.7504821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alpha_dropout_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.7507561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alpha_dropout_native.h 2025-08-14T21:48:20.7524453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alpha_dropout_ops.h 2025-08-14T21:48:20.7528231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax.h 2025-08-14T21:48:20.7531997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.7535699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_cpu_dispatch.h 2025-08-14T21:48:20.7539422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_cuda_dispatch.h 2025-08-14T21:48:20.7543008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_meta.h 2025-08-14T21:48:20.7547158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_meta_dispatch.h 2025-08-14T21:48:20.7550871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_native.h 2025-08-14T21:48:20.7554394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_ops.h 2025-08-14T21:48:20.7557952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin.h 2025-08-14T21:48:20.7561649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax.h 2025-08-14T21:48:20.7566281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.7569723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_cpu_dispatch.h 2025-08-14T21:48:20.7574222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_cuda_dispatch.h 2025-08-14T21:48:20.7576953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_meta.h 2025-08-14T21:48:20.7580862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_meta_dispatch.h 2025-08-14T21:48:20.7585617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_native.h 2025-08-14T21:48:20.7588396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_ops.h 2025-08-14T21:48:20.7592607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.7597133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_cpu_dispatch.h 2025-08-14T21:48:20.7600297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_cuda_dispatch.h 2025-08-14T21:48:20.7604617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_meta.h 2025-08-14T21:48:20.7608691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_meta_dispatch.h 2025-08-14T21:48:20.7611431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_native.h 2025-08-14T21:48:20.7615713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_ops.h 2025-08-14T21:48:20.7620167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\and.h 2025-08-14T21:48:20.7623008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\and_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.7626674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\and_native.h 2025-08-14T21:48:20.7630292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\and_ops.h 2025-08-14T21:48:20.7633932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\angle.h 2025-08-14T21:48:20.7637820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\angle_cpu_dispatch.h 2025-08-14T21:48:20.7643382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\angle_cuda_dispatch.h 2025-08-14T21:48:20.7646106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\angle_native.h 2025-08-14T21:48:20.7649710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\angle_ops.h 2025-08-14T21:48:20.7653571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any.h 2025-08-14T21:48:20.7657437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.7661030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.7664658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.7668219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_cpu_dispatch.h 2025-08-14T21:48:20.7672030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_cuda_dispatch.h 2025-08-14T21:48:20.7688000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_meta.h 2025-08-14T21:48:20.7691289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_meta_dispatch.h 2025-08-14T21:48:20.7695684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_native.h 2025-08-14T21:48:20.7699173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_ops.h 2025-08-14T21:48:20.7702625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange.h 2025-08-14T21:48:20.7706097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.7709609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_cpu_dispatch.h 2025-08-14T21:48:20.7713448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_cuda_dispatch.h 2025-08-14T21:48:20.7717146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_meta_dispatch.h 2025-08-14T21:48:20.7720827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_native.h 2025-08-14T21:48:20.7725563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_ops.h 2025-08-14T21:48:20.7729469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccos.h 2025-08-14T21:48:20.7766216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccosh.h 2025-08-14T21:48:20.7769442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccosh_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.7772945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccosh_native.h 2025-08-14T21:48:20.7776486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccosh_ops.h 2025-08-14T21:48:20.7780241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccos_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.7784214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccos_native.h 2025-08-14T21:48:20.7787976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccos_ops.h 2025-08-14T21:48:20.7792232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsin.h 2025-08-14T21:48:20.7795670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsinh.h 2025-08-14T21:48:20.7799257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsinh_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.7803264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsinh_native.h 2025-08-14T21:48:20.7806659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsinh_ops.h 2025-08-14T21:48:20.7810362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsin_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.7814209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsin_native.h 2025-08-14T21:48:20.7817793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsin_ops.h 2025-08-14T21:48:20.7821307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan.h 2025-08-14T21:48:20.7825010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan2.h 2025-08-14T21:48:20.7828498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan2_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.7831985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan2_native.h 2025-08-14T21:48:20.7835514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan2_ops.h 2025-08-14T21:48:20.7839185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctanh.h 2025-08-14T21:48:20.7843496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctanh_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.7846895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctanh_native.h 2025-08-14T21:48:20.7850380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctanh_ops.h 2025-08-14T21:48:20.7854148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.7857704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan_native.h 2025-08-14T21:48:20.7861652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan_ops.h 2025-08-14T21:48:20.7865531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax.h 2025-08-14T21:48:20.7869143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.7873077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_cpu_dispatch.h 2025-08-14T21:48:20.7877182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_cuda_dispatch.h 2025-08-14T21:48:20.7881246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_meta.h 2025-08-14T21:48:20.7885307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_meta_dispatch.h 2025-08-14T21:48:20.7888918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_native.h 2025-08-14T21:48:20.7892550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_ops.h 2025-08-14T21:48:20.7896388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin.h 2025-08-14T21:48:20.7900536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.7905000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_cpu_dispatch.h 2025-08-14T21:48:20.7908295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_cuda_dispatch.h 2025-08-14T21:48:20.7912157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_meta.h 2025-08-14T21:48:20.7915802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_meta_dispatch.h 2025-08-14T21:48:20.7919829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_native.h 2025-08-14T21:48:20.7923699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_ops.h 2025-08-14T21:48:20.7927131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argsort.h 2025-08-14T21:48:20.7931026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argsort_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.7935538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argsort_native.h 2025-08-14T21:48:20.7939387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argsort_ops.h 2025-08-14T21:48:20.7942771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argwhere.h 2025-08-14T21:48:20.7946398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argwhere_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.7949945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argwhere_native.h 2025-08-14T21:48:20.7953652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argwhere_ops.h 2025-08-14T21:48:20.7957227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin.h 2025-08-14T21:48:20.7961002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh.h 2025-08-14T21:48:20.7964799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.7968467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_cpu_dispatch.h 2025-08-14T21:48:20.7972315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_cuda_dispatch.h 2025-08-14T21:48:20.7976021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_meta.h 2025-08-14T21:48:20.7979670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_meta_dispatch.h 2025-08-14T21:48:20.7983541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_native.h 2025-08-14T21:48:20.7987253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_ops.h 2025-08-14T21:48:20.7991371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.7995072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_cpu_dispatch.h 2025-08-14T21:48:20.7998685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_cuda_dispatch.h 2025-08-14T21:48:20.8002462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_meta.h 2025-08-14T21:48:20.8006669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_meta_dispatch.h 2025-08-14T21:48:20.8011481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_native.h 2025-08-14T21:48:20.8014113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_ops.h 2025-08-14T21:48:20.8017652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided.h 2025-08-14T21:48:20.8021902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.8025560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_copy.h 2025-08-14T21:48:20.8029422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.8033123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.8037030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_copy_native.h 2025-08-14T21:48:20.8047356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_copy_ops.h 2025-08-14T21:48:20.8051931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_cpu_dispatch.h 2025-08-14T21:48:20.8054698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_cuda_dispatch.h 2025-08-14T21:48:20.8058700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_meta_dispatch.h 2025-08-14T21:48:20.8062566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_native.h 2025-08-14T21:48:20.8066334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_ops.h 2025-08-14T21:48:20.8069926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_scatter.h 2025-08-14T21:48:20.8075482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.8079128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_scatter_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.8083159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_scatter_native.h 2025-08-14T21:48:20.8086890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_scatter_ops.h 2025-08-14T21:48:20.8090565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan.h 2025-08-14T21:48:20.8094285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2.h 2025-08-14T21:48:20.8098021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.8101972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_cpu_dispatch.h 2025-08-14T21:48:20.8105688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_cuda_dispatch.h 2025-08-14T21:48:20.8109850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_meta.h 2025-08-14T21:48:20.8113391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_meta_dispatch.h 2025-08-14T21:48:20.8117162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_native.h 2025-08-14T21:48:20.8121455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_ops.h 2025-08-14T21:48:20.8125122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh.h 2025-08-14T21:48:20.8129131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.8133081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_cpu_dispatch.h 2025-08-14T21:48:20.8136487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_cuda_dispatch.h 2025-08-14T21:48:20.8140322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_meta.h 2025-08-14T21:48:20.8144429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_meta_dispatch.h 2025-08-14T21:48:20.8147773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_native.h 2025-08-14T21:48:20.8151541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_ops.h 2025-08-14T21:48:20.8156221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.8159097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_cpu_dispatch.h 2025-08-14T21:48:20.8162919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_cuda_dispatch.h 2025-08-14T21:48:20.8167669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_meta.h 2025-08-14T21:48:20.8170408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_meta_dispatch.h 2025-08-14T21:48:20.8175547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_native.h 2025-08-14T21:48:20.8178033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_ops.h 2025-08-14T21:48:20.8182325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_1d.h 2025-08-14T21:48:20.8187408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_1d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.8189759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_1d_native.h 2025-08-14T21:48:20.8194022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_1d_ops.h 2025-08-14T21:48:20.8197509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_2d.h 2025-08-14T21:48:20.8201988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_2d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.8205747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_2d_native.h 2025-08-14T21:48:20.8209105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_2d_ops.h 2025-08-14T21:48:20.8212996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_3d.h 2025-08-14T21:48:20.8217772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_3d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.8221824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_3d_native.h 2025-08-14T21:48:20.8225254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_3d_ops.h 2025-08-14T21:48:20.8229098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool1d.h 2025-08-14T21:48:20.8233629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool1d_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.8237657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool1d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.8241136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool1d_native.h 2025-08-14T21:48:20.8244920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool1d_ops.h 2025-08-14T21:48:20.8248529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d.h 2025-08-14T21:48:20.8252372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward.h 2025-08-14T21:48:20.8256294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.8260155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_cpu_dispatch.h 2025-08-14T21:48:20.8263780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_cuda_dispatch.h 2025-08-14T21:48:20.8267706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_meta.h 2025-08-14T21:48:20.8271593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_meta_dispatch.h 2025-08-14T21:48:20.8275125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_native.h 2025-08-14T21:48:20.8278781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_ops.h 2025-08-14T21:48:20.8283248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.8286792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_cpu_dispatch.h 2025-08-14T21:48:20.8290278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_cuda_dispatch.h 2025-08-14T21:48:20.8294134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_meta.h 2025-08-14T21:48:20.8298035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_meta_dispatch.h 2025-08-14T21:48:20.8301614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_native.h 2025-08-14T21:48:20.8305297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_ops.h 2025-08-14T21:48:20.8308875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d.h 2025-08-14T21:48:20.8312563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward.h 2025-08-14T21:48:20.8317052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.8321124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_cpu_dispatch.h 2025-08-14T21:48:20.8325020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_cuda_dispatch.h 2025-08-14T21:48:20.8329427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_meta.h 2025-08-14T21:48:20.8333129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_meta_dispatch.h 2025-08-14T21:48:20.8336894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_native.h 2025-08-14T21:48:20.8353245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_ops.h 2025-08-14T21:48:20.8357213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.8361379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_cpu_dispatch.h 2025-08-14T21:48:20.8365735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_cuda_dispatch.h 2025-08-14T21:48:20.8369373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_meta.h 2025-08-14T21:48:20.8372998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_meta_dispatch.h 2025-08-14T21:48:20.8376599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_native.h 2025-08-14T21:48:20.8380263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_ops.h 2025-08-14T21:48:20.8384268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm.h 2025-08-14T21:48:20.8387930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.8391308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_cpu_dispatch.h 2025-08-14T21:48:20.8394935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_cuda_dispatch.h 2025-08-14T21:48:20.8398575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_meta.h 2025-08-14T21:48:20.8402467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_meta_dispatch.h 2025-08-14T21:48:20.8405992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_native.h 2025-08-14T21:48:20.8409568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_ops.h 2025-08-14T21:48:20.8413431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bartlett_window.h 2025-08-14T21:48:20.8417443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bartlett_window_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.8421342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bartlett_window_native.h 2025-08-14T21:48:20.8425110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bartlett_window_ops.h 2025-08-14T21:48:20.8428780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm.h 2025-08-14T21:48:20.8432445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward.h 2025-08-14T21:48:20.8436298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_cpu_dispatch.h 2025-08-14T21:48:20.8440488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_cuda_dispatch.h 2025-08-14T21:48:20.8445572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_elemt.h 2025-08-14T21:48:20.8448583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.8452365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_elemt_cuda_dispatch.h 2025-08-14T21:48:20.8456977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_elemt_native.h 2025-08-14T21:48:20.8459921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_elemt_ops.h 2025-08-14T21:48:20.8464653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_native.h 2025-08-14T21:48:20.8468188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_ops.h 2025-08-14T21:48:20.8472124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_reduce.h 2025-08-14T21:48:20.8475958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.8480271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_reduce_cuda_dispatch.h 2025-08-14T21:48:20.8483751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_reduce_native.h 2025-08-14T21:48:20.8487780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_reduce_ops.h 2025-08-14T21:48:20.8491827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.8495373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_elemt.h 2025-08-14T21:48:20.8499660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_elemt_cuda_dispatch.h 2025-08-14T21:48:20.8503551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_elemt_native.h 2025-08-14T21:48:20.8507290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_elemt_ops.h 2025-08-14T21:48:20.8511171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats.h 2025-08-14T21:48:20.8515979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.8520533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_cuda_dispatch.h 2025-08-14T21:48:20.8523735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_native.h 2025-08-14T21:48:20.8527599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_ops.h 2025-08-14T21:48:20.8532041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_with_counts.h 2025-08-14T21:48:20.8535956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.8540901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_cuda_dispatch.h 2025-08-14T21:48:20.8544965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_native.h 2025-08-14T21:48:20.8549300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_ops.h 2025-08-14T21:48:20.8552697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_native.h 2025-08-14T21:48:20.8556638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_ops.h 2025-08-14T21:48:20.8560832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_stats.h 2025-08-14T21:48:20.8564769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_stats_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.8568985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_stats_cuda_dispatch.h 2025-08-14T21:48:20.8572841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_stats_native.h 2025-08-14T21:48:20.8576432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_stats_ops.h 2025-08-14T21:48:20.8580409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats.h 2025-08-14T21:48:20.8584646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.8588713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats_cpu_dispatch.h 2025-08-14T21:48:20.8593928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats_cuda_dispatch.h 2025-08-14T21:48:20.8597477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats_native.h 2025-08-14T21:48:20.8601874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats_ops.h 2025-08-14T21:48:20.8605214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli.h 2025-08-14T21:48:20.8609696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.8613869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.8617423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_cpu_dispatch.h 2025-08-14T21:48:20.8621366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_cuda_dispatch.h 2025-08-14T21:48:20.8640209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_meta_dispatch.h 2025-08-14T21:48:20.8643700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_native.h 2025-08-14T21:48:20.8647868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_ops.h 2025-08-14T21:48:20.8651738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bilinear.h 2025-08-14T21:48:20.8655922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bilinear_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.8659588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bilinear_native.h 2025-08-14T21:48:20.8663201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bilinear_ops.h 2025-08-14T21:48:20.8667048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy.h 2025-08-14T21:48:20.8670974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_backward.h 2025-08-14T21:48:20.8676154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_backward_cpu_dispatch.h 2025-08-14T21:48:20.8679346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_backward_cuda_dispatch.h 2025-08-14T21:48:20.8683460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_backward_native.h 2025-08-14T21:48:20.8688333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_backward_ops.h 2025-08-14T21:48:20.8691386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_cpu_dispatch.h 2025-08-14T21:48:20.8695345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_cuda_dispatch.h 2025-08-14T21:48:20.8700346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_native.h 2025-08-14T21:48:20.8703401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_ops.h 2025-08-14T21:48:20.8707509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_with_logits.h 2025-08-14T21:48:20.8711426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.8715143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_with_logits_native.h 2025-08-14T21:48:20.8719154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_with_logits_ops.h 2025-08-14T21:48:20.8722926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount.h 2025-08-14T21:48:20.8726653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.8730319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount_cpu_dispatch.h 2025-08-14T21:48:20.8735469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount_cuda_dispatch.h 2025-08-14T21:48:20.8739005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount_native.h 2025-08-14T21:48:20.8742545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount_ops.h 2025-08-14T21:48:20.8746229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial.h 2025-08-14T21:48:20.8750205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.8754663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial_cpu_dispatch.h 2025-08-14T21:48:20.8758195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial_cuda_dispatch.h 2025-08-14T21:48:20.8761942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial_native.h 2025-08-14T21:48:20.8765902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial_ops.h 2025-08-14T21:48:20.8769765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and.h 2025-08-14T21:48:20.8773504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.8777263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.8781376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_cpu_dispatch.h 2025-08-14T21:48:20.8785560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_cuda_dispatch.h 2025-08-14T21:48:20.8822289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_meta.h 2025-08-14T21:48:20.8826108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_meta_dispatch.h 2025-08-14T21:48:20.8829645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_native.h 2025-08-14T21:48:20.8833271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_ops.h 2025-08-14T21:48:20.8836950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift.h 2025-08-14T21:48:20.8841178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.8845343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.8849024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_cpu_dispatch.h 2025-08-14T21:48:20.8852561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_cuda_dispatch.h 2025-08-14T21:48:20.8856237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_meta.h 2025-08-14T21:48:20.8860322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_meta_dispatch.h 2025-08-14T21:48:20.8864229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_native.h 2025-08-14T21:48:20.8867919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_ops.h 2025-08-14T21:48:20.8871637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not.h 2025-08-14T21:48:20.8875902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.8879749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_cpu_dispatch.h 2025-08-14T21:48:20.8883668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_cuda_dispatch.h 2025-08-14T21:48:20.8888162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_meta.h 2025-08-14T21:48:20.8892172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_meta_dispatch.h 2025-08-14T21:48:20.8895882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_native.h 2025-08-14T21:48:20.8899857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_ops.h 2025-08-14T21:48:20.8903346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or.h 2025-08-14T21:48:20.8907539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.8911194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.8915015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_cpu_dispatch.h 2025-08-14T21:48:20.8918852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_cuda_dispatch.h 2025-08-14T21:48:20.8922909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_meta.h 2025-08-14T21:48:20.8926749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_meta_dispatch.h 2025-08-14T21:48:20.8930286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_native.h 2025-08-14T21:48:20.8933899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_ops.h 2025-08-14T21:48:20.8937761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift.h 2025-08-14T21:48:20.8941717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.8945687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.8949553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_cpu_dispatch.h 2025-08-14T21:48:20.8953550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_cuda_dispatch.h 2025-08-14T21:48:20.8957716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_meta.h 2025-08-14T21:48:20.8961488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_meta_dispatch.h 2025-08-14T21:48:20.8966162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_native.h 2025-08-14T21:48:20.8970034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_ops.h 2025-08-14T21:48:20.8973649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor.h 2025-08-14T21:48:20.8977553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.8981439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.8985760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_cpu_dispatch.h 2025-08-14T21:48:20.8989948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_cuda_dispatch.h 2025-08-14T21:48:20.8993871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_meta.h 2025-08-14T21:48:20.8997692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_meta_dispatch.h 2025-08-14T21:48:20.9001553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_native.h 2025-08-14T21:48:20.9005375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_ops.h 2025-08-14T21:48:20.9009095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\blackman_window.h 2025-08-14T21:48:20.9013273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\blackman_window_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.9017115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\blackman_window_native.h 2025-08-14T21:48:20.9020929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\blackman_window_ops.h 2025-08-14T21:48:20.9024785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\block_diag.h 2025-08-14T21:48:20.9029932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\block_diag_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.9032883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\block_diag_native.h 2025-08-14T21:48:20.9036960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\block_diag_ops.h 2025-08-14T21:48:20.9041641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm.h 2025-08-14T21:48:20.9044810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.9048628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_cpu_dispatch.h 2025-08-14T21:48:20.9053283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_cuda_dispatch.h 2025-08-14T21:48:20.9055893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_meta.h 2025-08-14T21:48:20.9059757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_meta_dispatch.h 2025-08-14T21:48:20.9063417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_native.h 2025-08-14T21:48:20.9066880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_ops.h 2025-08-14T21:48:20.9070712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_tensors.h 2025-08-14T21:48:20.9074302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_tensors_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.9078519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_tensors_native.h 2025-08-14T21:48:20.9082432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_tensors_ops.h 2025-08-14T21:48:20.9086119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_to.h 2025-08-14T21:48:20.9090180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_to_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.9095639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_to_native.h 2025-08-14T21:48:20.9099801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_to_ops.h 2025-08-14T21:48:20.9103462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize.h 2025-08-14T21:48:20.9107364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.9111305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize_cpu_dispatch.h 2025-08-14T21:48:20.9115057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize_cuda_dispatch.h 2025-08-14T21:48:20.9118770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize_native.h 2025-08-14T21:48:20.9123157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize_ops.h 2025-08-14T21:48:20.9126287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\can_cast.h 2025-08-14T21:48:20.9130138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\can_cast_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.9134624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\can_cast_native.h 2025-08-14T21:48:20.9137681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\can_cast_ops.h 2025-08-14T21:48:20.9141510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cartesian_prod.h 2025-08-14T21:48:20.9145458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cartesian_prod_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.9150021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cartesian_prod_native.h 2025-08-14T21:48:20.9153748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cartesian_prod_ops.h 2025-08-14T21:48:20.9157630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat.h 2025-08-14T21:48:20.9161627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.9165778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.9169533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_cpu_dispatch.h 2025-08-14T21:48:20.9173113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_cuda_dispatch.h 2025-08-14T21:48:20.9189285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_meta.h 2025-08-14T21:48:20.9189554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_meta_dispatch.h 2025-08-14T21:48:20.9189784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_native.h 2025-08-14T21:48:20.9189993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_ops.h 2025-08-14T21:48:20.9193509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy.h 2025-08-14T21:48:20.9197539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.9201618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_cpu_dispatch.h 2025-08-14T21:48:20.9205586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_cuda_dispatch.h 2025-08-14T21:48:20.9209538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_meta_dispatch.h 2025-08-14T21:48:20.9222765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_native.h 2025-08-14T21:48:20.9226559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_ops.h 2025-08-14T21:48:20.9230593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices.h 2025-08-14T21:48:20.9234423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.9237998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_copy.h 2025-08-14T21:48:20.9242294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.9246462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.9250322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_copy_native.h 2025-08-14T21:48:20.9254156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_copy_ops.h 2025-08-14T21:48:20.9258058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_native.h 2025-08-14T21:48:20.9261746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_ops.h 2025-08-14T21:48:20.9265790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cdist.h 2025-08-14T21:48:20.9269258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cdist_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.9272825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cdist_native.h 2025-08-14T21:48:20.9276451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cdist_ops.h 2025-08-14T21:48:20.9280395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil.h 2025-08-14T21:48:20.9284279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.9287841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_cpu_dispatch.h 2025-08-14T21:48:20.9291577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_cuda_dispatch.h 2025-08-14T21:48:20.9295475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_meta.h 2025-08-14T21:48:20.9299222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_meta_dispatch.h 2025-08-14T21:48:20.9302627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_native.h 2025-08-14T21:48:20.9306137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_ops.h 2025-08-14T21:48:20.9309704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\celu.h 2025-08-14T21:48:20.9313421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\celu_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.9317025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\celu_native.h 2025-08-14T21:48:20.9320944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\celu_ops.h 2025-08-14T21:48:20.9324400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chain_matmul.h 2025-08-14T21:48:20.9328363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chain_matmul_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.9332063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chain_matmul_native.h 2025-08-14T21:48:20.9336628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chain_matmul_ops.h 2025-08-14T21:48:20.9340292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chalf.h 2025-08-14T21:48:20.9344051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chalf_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.9348103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chalf_native.h 2025-08-14T21:48:20.9351991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chalf_ops.h 2025-08-14T21:48:20.9355576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle.h 2025-08-14T21:48:20.9359437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.9363173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle_cpu_dispatch.h 2025-08-14T21:48:20.9366966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle_cuda_dispatch.h 2025-08-14T21:48:20.9370969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle_native.h 2025-08-14T21:48:20.9374674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle_ops.h 2025-08-14T21:48:20.9378118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky.h 2025-08-14T21:48:20.9381907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_cpu_dispatch.h 2025-08-14T21:48:20.9385503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_cuda_dispatch.h 2025-08-14T21:48:20.9389142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_inverse.h 2025-08-14T21:48:20.9393505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_inverse_cpu_dispatch.h 2025-08-14T21:48:20.9397503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_inverse_cuda_dispatch.h 2025-08-14T21:48:20.9401423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_inverse_native.h 2025-08-14T21:48:20.9405185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_inverse_ops.h 2025-08-14T21:48:20.9409298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_native.h 2025-08-14T21:48:20.9412936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_ops.h 2025-08-14T21:48:20.9416391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_solve.h 2025-08-14T21:48:20.9420292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_solve_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.9423980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_solve_native.h 2025-08-14T21:48:20.9429247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_solve_ops.h 2025-08-14T21:48:20.9432327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\choose_qparams_optimized.h 2025-08-14T21:48:20.9436238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\choose_qparams_optimized_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.9440254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\choose_qparams_optimized_native.h 2025-08-14T21:48:20.9443986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\choose_qparams_optimized_ops.h 2025-08-14T21:48:20.9447758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chunk.h 2025-08-14T21:48:20.9451601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chunk_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.9455676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chunk_native.h 2025-08-14T21:48:20.9459371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chunk_ops.h 2025-08-14T21:48:20.9463105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp.h 2025-08-14T21:48:20.9467024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.9470971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_cpu_dispatch.h 2025-08-14T21:48:20.9474396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_cuda_dispatch.h 2025-08-14T21:48:20.9478833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max.h 2025-08-14T21:48:20.9483983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.9487790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_cpu_dispatch.h 2025-08-14T21:48:20.9491538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_cuda_dispatch.h 2025-08-14T21:48:20.9495407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_meta.h 2025-08-14T21:48:20.9498944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_meta_dispatch.h 2025-08-14T21:48:20.9502508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_native.h 2025-08-14T21:48:20.9506147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_ops.h 2025-08-14T21:48:20.9509871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_meta.h 2025-08-14T21:48:20.9513607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_meta_dispatch.h 2025-08-14T21:48:20.9517195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min.h 2025-08-14T21:48:20.9521263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.9525038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_cpu_dispatch.h 2025-08-14T21:48:20.9530200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_cuda_dispatch.h 2025-08-14T21:48:20.9533537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_meta.h 2025-08-14T21:48:20.9537560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_meta_dispatch.h 2025-08-14T21:48:20.9541540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_native.h 2025-08-14T21:48:20.9545286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_ops.h 2025-08-14T21:48:20.9549294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_native.h 2025-08-14T21:48:20.9553499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_ops.h 2025-08-14T21:48:20.9556961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clip.h 2025-08-14T21:48:20.9561056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clip_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.9565135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clip_native.h 2025-08-14T21:48:20.9569094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clip_ops.h 2025-08-14T21:48:20.9572674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clone.h 2025-08-14T21:48:20.9577113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clone_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.9582089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clone_native.h 2025-08-14T21:48:20.9585072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clone_ops.h 2025-08-14T21:48:20.9588817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\coalesce.h 2025-08-14T21:48:20.9593782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\coalesce_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.9596635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\coalesce_native.h 2025-08-14T21:48:20.9601575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\coalesce_ops.h 2025-08-14T21:48:20.9605517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col2im.h 2025-08-14T21:48:20.9609010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col2im_cpu_dispatch.h 2025-08-14T21:48:20.9613009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col2im_cuda_dispatch.h 2025-08-14T21:48:20.9616933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col2im_native.h 2025-08-14T21:48:20.9620366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col2im_ops.h 2025-08-14T21:48:20.9624172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\column_stack.h 2025-08-14T21:48:20.9628485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\column_stack_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.9632732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\column_stack_native.h 2025-08-14T21:48:20.9636518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\column_stack_ops.h 2025-08-14T21:48:20.9640657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices.h 2025-08-14T21:48:20.9645549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.9649028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_copy.h 2025-08-14T21:48:20.9653707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:20.9657685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.9661908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_copy_native.h 2025-08-14T21:48:20.9665729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_copy_ops.h 2025-08-14T21:48:20.9669374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_native.h 2025-08-14T21:48:20.9673033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_ops.h 2025-08-14T21:48:20.9680532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\combinations.h 2025-08-14T21:48:20.9681525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\combinations_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.9686338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\combinations_native.h 2025-08-14T21:48:20.9689164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\combinations_ops.h 2025-08-14T21:48:20.9707898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex.h 2025-08-14T21:48:20.9708260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.9708694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex_cpu_dispatch.h 2025-08-14T21:48:20.9708956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex_cuda_dispatch.h 2025-08-14T21:48:20.9709611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex_native.h 2025-08-14T21:48:20.9713895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex_ops.h 2025-08-14T21:48:20.9717066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concat.h 2025-08-14T21:48:20.9721113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concatenate.h 2025-08-14T21:48:20.9726229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concatenate_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.9728764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concatenate_native.h 2025-08-14T21:48:20.9732935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concatenate_ops.h 2025-08-14T21:48:20.9736698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concat_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.9740447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concat_native.h 2025-08-14T21:48:20.9744411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concat_ops.h 2025-08-14T21:48:20.9749029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj.h 2025-08-14T21:48:20.9753157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.9756587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_native.h 2025-08-14T21:48:20.9760293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_ops.h 2025-08-14T21:48:20.9764283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical.h 2025-08-14T21:48:20.9768076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.9771972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.9776145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_cpu_dispatch.h 2025-08-14T21:48:20.9779820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_cuda_dispatch.h 2025-08-14T21:48:20.9783414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_native.h 2025-08-14T21:48:20.9787146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_ops.h 2025-08-14T21:48:20.9791121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\constant_pad_nd.h 2025-08-14T21:48:20.9794803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\constant_pad_nd_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.9798350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\constant_pad_nd_native.h 2025-08-14T21:48:20.9802175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\constant_pad_nd_ops.h 2025-08-14T21:48:20.9806022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\contiguous.h 2025-08-14T21:48:20.9824673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\contiguous_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.9828575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\contiguous_native.h 2025-08-14T21:48:20.9832158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\contiguous_ops.h 2025-08-14T21:48:20.9835896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv1d.h 2025-08-14T21:48:20.9839345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv1d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.9876666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv1d_native.h 2025-08-14T21:48:20.9880458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv1d_ops.h 2025-08-14T21:48:20.9884325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv2d.h 2025-08-14T21:48:20.9887835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv2d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.9891419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv2d_native.h 2025-08-14T21:48:20.9896593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv2d_ops.h 2025-08-14T21:48:20.9901517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv3d.h 2025-08-14T21:48:20.9905121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv3d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:20.9908173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv3d_native.h 2025-08-14T21:48:20.9912009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv3d_ops.h 2025-08-14T21:48:20.9916623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution.h 2025-08-14T21:48:20.9928184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward.h 2025-08-14T21:48:20.9929052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.9934604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_cuda_dispatch.h 2025-08-14T21:48:20.9938747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_native.h 2025-08-14T21:48:20.9942908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_ops.h 2025-08-14T21:48:20.9946858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_overrideable.h 2025-08-14T21:48:20.9950775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_overrideable_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.9954576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_overrideable_native.h 2025-08-14T21:48:20.9958883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_overrideable_ops.h 2025-08-14T21:48:20.9963146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.9967505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_native.h 2025-08-14T21:48:20.9971934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_ops.h 2025-08-14T21:48:20.9975737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_overrideable.h 2025-08-14T21:48:20.9979720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_overrideable_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.9983569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_overrideable_native.h 2025-08-14T21:48:20.9987426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_overrideable_ops.h 2025-08-14T21:48:20.9991579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_depthwise3d.h 2025-08-14T21:48:20.9995511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_depthwise3d_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:20.9999398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_depthwise3d_cuda_dispatch.h 2025-08-14T21:48:21.0004365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_depthwise3d_native.h 2025-08-14T21:48:21.0008167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_depthwise3d_ops.h 2025-08-14T21:48:21.0012059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc.h 2025-08-14T21:48:21.0015517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_backward.h 2025-08-14T21:48:21.0019766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.0024078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_backward_native.h 2025-08-14T21:48:21.0028133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_backward_ops.h 2025-08-14T21:48:21.0031970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.0036929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_native.h 2025-08-14T21:48:21.0041055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_ops.h 2025-08-14T21:48:21.0044877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose1d.h 2025-08-14T21:48:21.0048889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose1d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.0053265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose1d_native.h 2025-08-14T21:48:21.0057260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose1d_ops.h 2025-08-14T21:48:21.0060379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose2d.h 2025-08-14T21:48:21.0064923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose2d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.0068863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose2d_native.h 2025-08-14T21:48:21.0073386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose2d_ops.h 2025-08-14T21:48:21.0077496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose3d.h 2025-08-14T21:48:21.0081520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose3d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.0086226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose3d_native.h 2025-08-14T21:48:21.0089010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose3d_ops.h 2025-08-14T21:48:21.0092843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy.h 2025-08-14T21:48:21.0096306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign.h 2025-08-14T21:48:21.0100337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.0104871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.0108766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_cpu_dispatch.h 2025-08-14T21:48:21.0112514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_cuda_dispatch.h 2025-08-14T21:48:21.0116408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_meta.h 2025-08-14T21:48:21.0120336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_meta_dispatch.h 2025-08-14T21:48:21.0124300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_native.h 2025-08-14T21:48:21.0128382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_ops.h 2025-08-14T21:48:21.0132700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.0136343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.0140498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_meta_dispatch.h 2025-08-14T21:48:21.0144348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_native.h 2025-08-14T21:48:21.0147881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_ops.h 2025-08-14T21:48:21.0151495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_sparse_to_sparse.h 2025-08-14T21:48:21.0155585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.0159424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_sparse_to_sparse_meta_dispatch.h 2025-08-14T21:48:21.0163366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_sparse_to_sparse_native.h 2025-08-14T21:48:21.0167634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_sparse_to_sparse_ops.h 2025-08-14T21:48:21.0171400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\corrcoef.h 2025-08-14T21:48:21.0176612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\corrcoef_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.0180177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\corrcoef_native.h 2025-08-14T21:48:21.0184049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\corrcoef_ops.h 2025-08-14T21:48:21.0187886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos.h 2025-08-14T21:48:21.0191318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh.h 2025-08-14T21:48:21.0195146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.0198975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_cpu_dispatch.h 2025-08-14T21:48:21.0203062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_cuda_dispatch.h 2025-08-14T21:48:21.0207013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_meta.h 2025-08-14T21:48:21.0211576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_meta_dispatch.h 2025-08-14T21:48:21.0215427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_native.h 2025-08-14T21:48:21.0219102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_ops.h 2025-08-14T21:48:21.0222601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_embedding_loss.h 2025-08-14T21:48:21.0226578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_embedding_loss_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.0230141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_embedding_loss_native.h 2025-08-14T21:48:21.0234126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_embedding_loss_ops.h 2025-08-14T21:48:21.0238315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_similarity.h 2025-08-14T21:48:21.0242646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_similarity_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.0247438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_similarity_native.h 2025-08-14T21:48:21.0251234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_similarity_ops.h 2025-08-14T21:48:21.0255130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.0258644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_cpu_dispatch.h 2025-08-14T21:48:21.0262182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_cuda_dispatch.h 2025-08-14T21:48:21.0266065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_meta.h 2025-08-14T21:48:21.0269646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_meta_dispatch.h 2025-08-14T21:48:21.0273149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_native.h 2025-08-14T21:48:21.0276719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_ops.h 2025-08-14T21:48:21.0280758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero.h 2025-08-14T21:48:21.0284686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.0288527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero_cpu_dispatch.h 2025-08-14T21:48:21.0292298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero_cuda_dispatch.h 2025-08-14T21:48:21.0296201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero_native.h 2025-08-14T21:48:21.0300024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero_ops.h 2025-08-14T21:48:21.0303716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cov.h 2025-08-14T21:48:21.0308130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cov_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.0311624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cov_native.h 2025-08-14T21:48:21.0315811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cov_ops.h 2025-08-14T21:48:21.0319386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross.h 2025-08-14T21:48:21.0323082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.0326827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_entropy_loss.h 2025-08-14T21:48:21.0330779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_entropy_loss_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.0334363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_entropy_loss_native.h 2025-08-14T21:48:21.0338437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_entropy_loss_ops.h 2025-08-14T21:48:21.0342315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_native.h 2025-08-14T21:48:21.0346630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_ops.h 2025-08-14T21:48:21.0351554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices.h 2025-08-14T21:48:21.0355643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.0359319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_copy.h 2025-08-14T21:48:21.0363507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.0367347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.0371028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_copy_native.h 2025-08-14T21:48:21.0374831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_copy_ops.h 2025-08-14T21:48:21.0378676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_native.h 2025-08-14T21:48:21.0382362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_ops.h 2025-08-14T21:48:21.0386532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ctc_loss.h 2025-08-14T21:48:21.0390517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ctc_loss_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.0394073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ctc_loss_native.h 2025-08-14T21:48:21.0397746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ctc_loss_ops.h 2025-08-14T21:48:21.0401662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator.h 2025-08-14T21:48:21.1365094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_backward.h 2025-08-14T21:48:21.1369035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.1372948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_cuda_dispatch.h 2025-08-14T21:48:21.1376841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_native.h 2025-08-14T21:48:21.1380818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_ops.h 2025-08-14T21:48:21.1385116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.1389081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_cuda_dispatch.h 2025-08-14T21:48:21.1393147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_native.h 2025-08-14T21:48:21.1397136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_ops.h 2025-08-14T21:48:21.1401441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm.h 2025-08-14T21:48:21.1405725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_backward.h 2025-08-14T21:48:21.1409930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.1413755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_backward_cuda_dispatch.h 2025-08-14T21:48:21.1417652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_backward_native.h 2025-08-14T21:48:21.1421504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_backward_ops.h 2025-08-14T21:48:21.1425364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_cuda_dispatch.h 2025-08-14T21:48:21.1429321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_native.h 2025-08-14T21:48:21.1433449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_ops.h 2025-08-14T21:48:21.1437484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution.h 2025-08-14T21:48:21.1441756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_add_relu.h 2025-08-14T21:48:21.1449140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.1454050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_add_relu_cuda_dispatch.h 2025-08-14T21:48:21.1457741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_add_relu_native.h 2025-08-14T21:48:21.1461749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_add_relu_ops.h 2025-08-14T21:48:21.1465619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_cuda_dispatch.h 2025-08-14T21:48:21.1469501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_native.h 2025-08-14T21:48:21.1473291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_ops.h 2025-08-14T21:48:21.1477184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_relu.h 2025-08-14T21:48:21.1481293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_relu_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.1486397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_relu_cuda_dispatch.h 2025-08-14T21:48:21.1491172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_relu_native.h 2025-08-14T21:48:21.1495400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_relu_ops.h 2025-08-14T21:48:21.1499697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_transpose.h 2025-08-14T21:48:21.1536998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.1541562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_transpose_cuda_dispatch.h 2025-08-14T21:48:21.1545698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_transpose_native.h 2025-08-14T21:48:21.1550142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_transpose_ops.h 2025-08-14T21:48:21.1554642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler.h 2025-08-14T21:48:21.1558722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_backward.h 2025-08-14T21:48:21.1562954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.1567147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_backward_cuda_dispatch.h 2025-08-14T21:48:21.1571200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_backward_native.h 2025-08-14T21:48:21.1575132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_backward_ops.h 2025-08-14T21:48:21.1579295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.1583502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_cuda_dispatch.h 2025-08-14T21:48:21.1587399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_native.h 2025-08-14T21:48:21.1591227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_ops.h 2025-08-14T21:48:21.1595714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_is_acceptable.h 2025-08-14T21:48:21.1600206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_is_acceptable_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.1604582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_is_acceptable_native.h 2025-08-14T21:48:21.1607980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_is_acceptable_ops.h 2025-08-14T21:48:21.1611742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummax.h 2025-08-14T21:48:21.1615251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummaxmin_backward.h 2025-08-14T21:48:21.1619236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummaxmin_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.1623280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummaxmin_backward_native.h 2025-08-14T21:48:21.1627516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummaxmin_backward_ops.h 2025-08-14T21:48:21.1631477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummax_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.1636416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummax_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.1640369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummax_native.h 2025-08-14T21:48:21.1644732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummax_ops.h 2025-08-14T21:48:21.1648312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummin.h 2025-08-14T21:48:21.1652113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummin_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.1655789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummin_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.1659511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummin_native.h 2025-08-14T21:48:21.1663323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummin_ops.h 2025-08-14T21:48:21.1667205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod.h 2025-08-14T21:48:21.1671030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_backward.h 2025-08-14T21:48:21.1675284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.1679004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_backward_native.h 2025-08-14T21:48:21.1683075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_backward_ops.h 2025-08-14T21:48:21.1687533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.1691876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.1695981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_cpu_dispatch.h 2025-08-14T21:48:21.1701001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_cuda_dispatch.h 2025-08-14T21:48:21.1705421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_meta.h 2025-08-14T21:48:21.1709303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_meta_dispatch.h 2025-08-14T21:48:21.1713338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_native.h 2025-08-14T21:48:21.1717187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_ops.h 2025-08-14T21:48:21.1721228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum.h 2025-08-14T21:48:21.1725465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.1729405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.1733345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_cpu_dispatch.h 2025-08-14T21:48:21.1741858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_cuda_dispatch.h 2025-08-14T21:48:21.1745659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_meta.h 2025-08-14T21:48:21.1749951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_meta_dispatch.h 2025-08-14T21:48:21.1753834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_native.h 2025-08-14T21:48:21.1757707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_ops.h 2025-08-14T21:48:21.1761620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumulative_trapezoid.h 2025-08-14T21:48:21.1765620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumulative_trapezoid_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.1769550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumulative_trapezoid_native.h 2025-08-14T21:48:21.1773379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumulative_trapezoid_ops.h 2025-08-14T21:48:21.1777062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\data.h 2025-08-14T21:48:21.1780828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\data_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.1784416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\data_native.h 2025-08-14T21:48:21.1787967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\data_ops.h 2025-08-14T21:48:21.1791683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\deg2rad.h 2025-08-14T21:48:21.1795504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\deg2rad_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.1799302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\deg2rad_native.h 2025-08-14T21:48:21.1803077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\deg2rad_ops.h 2025-08-14T21:48:21.1806749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dense_dim.h 2025-08-14T21:48:21.1810622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dense_dim_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.1814310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dense_dim_native.h 2025-08-14T21:48:21.1817942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dense_dim_ops.h 2025-08-14T21:48:21.1821773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize.h 2025-08-14T21:48:21.1825577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.1829136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize_cpu_dispatch.h 2025-08-14T21:48:21.1832801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize_cuda_dispatch.h 2025-08-14T21:48:21.1836500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize_native.h 2025-08-14T21:48:21.1840710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize_ops.h 2025-08-14T21:48:21.1844801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\det.h 2025-08-14T21:48:21.1848229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach.h 2025-08-14T21:48:21.1852003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.1855576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_copy.h 2025-08-14T21:48:21.1859959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.1863872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.1867802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_copy_native.h 2025-08-14T21:48:21.1871687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_copy_ops.h 2025-08-14T21:48:21.1875374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_native.h 2025-08-14T21:48:21.1879238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_ops.h 2025-08-14T21:48:21.1883652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\det_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.1887337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\det_native.h 2025-08-14T21:48:21.1890936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\det_ops.h 2025-08-14T21:48:21.1894361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag.h 2025-08-14T21:48:21.1897763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagflat.h 2025-08-14T21:48:21.1936158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagflat_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.1939806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagflat_native.h 2025-08-14T21:48:21.1944181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagflat_ops.h 2025-08-14T21:48:21.1948421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal.h 2025-08-14T21:48:21.1952580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_backward.h 2025-08-14T21:48:21.1957160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.1961633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_backward_native.h 2025-08-14T21:48:21.1966113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_backward_ops.h 2025-08-14T21:48:21.1971088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.1986948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.1987863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_copy.h 2025-08-14T21:48:21.1988895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.2015852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.2016861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_copy_native.h 2025-08-14T21:48:21.2017458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_copy_ops.h 2025-08-14T21:48:21.2018044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_native.h 2025-08-14T21:48:21.2018601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_ops.h 2025-08-14T21:48:21.2019154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_scatter.h 2025-08-14T21:48:21.2020493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.2024050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_scatter_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.2027972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_scatter_native.h 2025-08-14T21:48:21.2032300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_scatter_ops.h 2025-08-14T21:48:21.2036511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.2040381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_embed.h 2025-08-14T21:48:21.2044335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_embed_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.2062267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_embed_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.2063025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_embed_native.h 2025-08-14T21:48:21.2063923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_embed_ops.h 2025-08-14T21:48:21.2064646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_native.h 2025-08-14T21:48:21.2065171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_ops.h 2025-08-14T21:48:21.2067976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diff.h 2025-08-14T21:48:21.2072097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diff_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.2075990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diff_native.h 2025-08-14T21:48:21.2080645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diff_ops.h 2025-08-14T21:48:21.2084810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma.h 2025-08-14T21:48:21.2089297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.2093767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_cpu_dispatch.h 2025-08-14T21:48:21.2098493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_cuda_dispatch.h 2025-08-14T21:48:21.2103255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_meta.h 2025-08-14T21:48:21.2107984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_meta_dispatch.h 2025-08-14T21:48:21.2112126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_native.h 2025-08-14T21:48:21.2116012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_ops.h 2025-08-14T21:48:21.2119765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dist.h 2025-08-14T21:48:21.2124073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dist_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.2127957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dist_native.h 2025-08-14T21:48:21.2131644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dist_ops.h 2025-08-14T21:48:21.2143101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div.h 2025-08-14T21:48:21.2144135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\divide.h 2025-08-14T21:48:21.2146641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\divide_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.2150093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\divide_native.h 2025-08-14T21:48:21.2153629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\divide_ops.h 2025-08-14T21:48:21.2157297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.2161335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.2165249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_cpu_dispatch.h 2025-08-14T21:48:21.2168794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_cuda_dispatch.h 2025-08-14T21:48:21.2172828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_meta.h 2025-08-14T21:48:21.2176292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_meta_dispatch.h 2025-08-14T21:48:21.2179863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_native.h 2025-08-14T21:48:21.2183442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_ops.h 2025-08-14T21:48:21.2187174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot.h 2025-08-14T21:48:21.2190889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.2194372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot_cpu_dispatch.h 2025-08-14T21:48:21.2197707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot_cuda_dispatch.h 2025-08-14T21:48:21.2201269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot_native.h 2025-08-14T21:48:21.2204790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot_ops.h 2025-08-14T21:48:21.2208198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dropout.h 2025-08-14T21:48:21.2211752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dropout_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.2215682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dropout_native.h 2025-08-14T21:48:21.2219793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dropout_ops.h 2025-08-14T21:48:21.2223414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dsplit.h 2025-08-14T21:48:21.2227145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dsplit_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.2230562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dsplit_native.h 2025-08-14T21:48:21.2233950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dsplit_ops.h 2025-08-14T21:48:21.2238029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dstack.h 2025-08-14T21:48:21.2241840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dstack_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.2245603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dstack_native.h 2025-08-14T21:48:21.2249170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dstack_ops.h 2025-08-14T21:48:21.2253024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\einsum.h 2025-08-14T21:48:21.2256795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\einsum_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.2260499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\einsum_native.h 2025-08-14T21:48:21.2264219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\einsum_ops.h 2025-08-14T21:48:21.2267848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu.h 2025-08-14T21:48:21.2271411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward.h 2025-08-14T21:48:21.2275283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.2278891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_cpu_dispatch.h 2025-08-14T21:48:21.2283620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_cuda_dispatch.h 2025-08-14T21:48:21.2287517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_meta.h 2025-08-14T21:48:21.2291318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_meta_dispatch.h 2025-08-14T21:48:21.2295118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_native.h 2025-08-14T21:48:21.2298965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_ops.h 2025-08-14T21:48:21.2303092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.2306950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_cpu_dispatch.h 2025-08-14T21:48:21.2310565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_cuda_dispatch.h 2025-08-14T21:48:21.2314121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_meta.h 2025-08-14T21:48:21.2317560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_meta_dispatch.h 2025-08-14T21:48:21.2321256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_native.h 2025-08-14T21:48:21.2324836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_ops.h 2025-08-14T21:48:21.2328262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding.h 2025-08-14T21:48:21.2332139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_backward.h 2025-08-14T21:48:21.2336038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.2339829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_backward_native.h 2025-08-14T21:48:21.2344224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_backward_ops.h 2025-08-14T21:48:21.2347991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_bag.h 2025-08-14T21:48:21.2352011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_bag_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.2356019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_bag_native.h 2025-08-14T21:48:21.2360285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_bag_ops.h 2025-08-14T21:48:21.2364189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.2367983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward.h 2025-08-14T21:48:21.2372133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.2375826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward_cpu_dispatch.h 2025-08-14T21:48:21.2379790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward_cuda_dispatch.h 2025-08-14T21:48:21.2383607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward_native.h 2025-08-14T21:48:21.2387468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward_ops.h 2025-08-14T21:48:21.2391232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_native.h 2025-08-14T21:48:21.2395015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_ops.h 2025-08-14T21:48:21.2398773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm.h 2025-08-14T21:48:21.2402916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.2407019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_cpu_dispatch.h 2025-08-14T21:48:21.2411015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_cuda_dispatch.h 2025-08-14T21:48:21.2414976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_meta_dispatch.h 2025-08-14T21:48:21.2418710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_native.h 2025-08-14T21:48:21.2422384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_ops.h 2025-08-14T21:48:21.2426291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_sparse_backward.h 2025-08-14T21:48:21.2430165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_sparse_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.2434308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_sparse_backward_native.h 2025-08-14T21:48:21.2438050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_sparse_backward_ops.h 2025-08-14T21:48:21.2442495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty.h 2025-08-14T21:48:21.2446062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.2449744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.2453387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_cpu_dispatch.h 2025-08-14T21:48:21.2457510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_cuda_dispatch.h 2025-08-14T21:48:21.2461229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_like.h 2025-08-14T21:48:21.2465157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_like_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.2468737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_like_native.h 2025-08-14T21:48:21.2472685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_like_ops.h 2025-08-14T21:48:21.2476369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_meta_dispatch.h 2025-08-14T21:48:21.2480590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_native.h 2025-08-14T21:48:21.2484196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_ops.h 2025-08-14T21:48:21.2487956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_permuted.h 2025-08-14T21:48:21.2491806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_permuted_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.2495803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_permuted_native.h 2025-08-14T21:48:21.2499438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_permuted_ops.h 2025-08-14T21:48:21.2503324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_quantized.h 2025-08-14T21:48:21.2507369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_quantized_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.2511443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_quantized_native.h 2025-08-14T21:48:21.2515293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_quantized_ops.h 2025-08-14T21:48:21.2519122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided.h 2025-08-14T21:48:21.2523194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.2527026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_cpu_dispatch.h 2025-08-14T21:48:21.2531014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_cuda_dispatch.h 2025-08-14T21:48:21.2534958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_meta_dispatch.h 2025-08-14T21:48:21.2538933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_native.h 2025-08-14T21:48:21.2542580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_ops.h 2025-08-14T21:48:21.2546296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq.h 2025-08-14T21:48:21.2550145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\equal.h 2025-08-14T21:48:21.2553642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\equal_cpu_dispatch.h 2025-08-14T21:48:21.2557705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\equal_cuda_dispatch.h 2025-08-14T21:48:21.2561806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\equal_native.h 2025-08-14T21:48:21.2565245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\equal_ops.h 2025-08-14T21:48:21.2569491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.2573148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_cpu_dispatch.h 2025-08-14T21:48:21.2576732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_cuda_dispatch.h 2025-08-14T21:48:21.2580389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_meta.h 2025-08-14T21:48:21.2583993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_meta_dispatch.h 2025-08-14T21:48:21.2587893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_native.h 2025-08-14T21:48:21.2591773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_ops.h 2025-08-14T21:48:21.2595186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf.h 2025-08-14T21:48:21.2598623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc.h 2025-08-14T21:48:21.2602910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.2622362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_cpu_dispatch.h 2025-08-14T21:48:21.2626115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_cuda_dispatch.h 2025-08-14T21:48:21.2629689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_meta.h 2025-08-14T21:48:21.2633548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_meta_dispatch.h 2025-08-14T21:48:21.2637405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_native.h 2025-08-14T21:48:21.2641184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_ops.h 2025-08-14T21:48:21.2645078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv.h 2025-08-14T21:48:21.2649136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.2653078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_cpu_dispatch.h 2025-08-14T21:48:21.2657123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_cuda_dispatch.h 2025-08-14T21:48:21.2660830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_meta.h 2025-08-14T21:48:21.2664567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_meta_dispatch.h 2025-08-14T21:48:21.2668479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_native.h 2025-08-14T21:48:21.2672395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_ops.h 2025-08-14T21:48:21.2676588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.2680863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_cpu_dispatch.h 2025-08-14T21:48:21.2684692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_cuda_dispatch.h 2025-08-14T21:48:21.2688314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_meta.h 2025-08-14T21:48:21.2692204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_meta_dispatch.h 2025-08-14T21:48:21.2696849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_native.h 2025-08-14T21:48:21.2701123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_ops.h 2025-08-14T21:48:21.2704943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp.h 2025-08-14T21:48:21.2709057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2.h 2025-08-14T21:48:21.2712671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.2716517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_cpu_dispatch.h 2025-08-14T21:48:21.2720354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_cuda_dispatch.h 2025-08-14T21:48:21.2724214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_meta.h 2025-08-14T21:48:21.2728013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_meta_dispatch.h 2025-08-14T21:48:21.2731662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_native.h 2025-08-14T21:48:21.2735495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_ops.h 2025-08-14T21:48:21.2739093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand.h 2025-08-14T21:48:21.2742564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_as.h 2025-08-14T21:48:21.2747151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_as_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.2750719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_as_native.h 2025-08-14T21:48:21.2754306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_as_ops.h 2025-08-14T21:48:21.2758129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.2762088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_copy.h 2025-08-14T21:48:21.2765987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.2770199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.2773980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_copy_native.h 2025-08-14T21:48:21.2777830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_copy_ops.h 2025-08-14T21:48:21.2781829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_native.h 2025-08-14T21:48:21.2785544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_ops.h 2025-08-14T21:48:21.2789302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1.h 2025-08-14T21:48:21.2793945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.2797840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_cpu_dispatch.h 2025-08-14T21:48:21.2801645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_cuda_dispatch.h 2025-08-14T21:48:21.2805297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_meta.h 2025-08-14T21:48:21.2809039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_meta_dispatch.h 2025-08-14T21:48:21.2812874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_native.h 2025-08-14T21:48:21.2816552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_ops.h 2025-08-14T21:48:21.2820228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential.h 2025-08-14T21:48:21.2823984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.2827938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_cpu_dispatch.h 2025-08-14T21:48:21.2831621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_cuda_dispatch.h 2025-08-14T21:48:21.2835330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_meta_dispatch.h 2025-08-14T21:48:21.2839058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_native.h 2025-08-14T21:48:21.2842820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_ops.h 2025-08-14T21:48:21.2846736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.2850957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_cpu_dispatch.h 2025-08-14T21:48:21.2854456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_cuda_dispatch.h 2025-08-14T21:48:21.2858027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_meta.h 2025-08-14T21:48:21.2861356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_meta_dispatch.h 2025-08-14T21:48:21.2864944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_native.h 2025-08-14T21:48:21.2868284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_ops.h 2025-08-14T21:48:21.2871695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye.h 2025-08-14T21:48:21.2875266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.2879187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_cpu_dispatch.h 2025-08-14T21:48:21.2882916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_cuda_dispatch.h 2025-08-14T21:48:21.2886532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_meta_dispatch.h 2025-08-14T21:48:21.2890162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_native.h 2025-08-14T21:48:21.2893781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_ops.h 2025-08-14T21:48:21.2897300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine.h 2025-08-14T21:48:21.2901552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask.h 2025-08-14T21:48:21.2905547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward.h 2025-08-14T21:48:21.2909700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.2913804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_native.h 2025-08-14T21:48:21.2917660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_ops.h 2025-08-14T21:48:21.2921704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.2925602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h 2025-08-14T21:48:21.2929806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h 2025-08-14T21:48:21.2933424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_native.h 2025-08-14T21:48:21.2937333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_ops.h 2025-08-14T21:48:21.2941471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.2945336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_native.h 2025-08-14T21:48:21.2949294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_ops.h 2025-08-14T21:48:21.2953620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine.h 2025-08-14T21:48:21.2989491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask.h 2025-08-14T21:48:21.2993806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward.h 2025-08-14T21:48:21.2998245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3002276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_native.h 2025-08-14T21:48:21.3006374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_ops.h 2025-08-14T21:48:21.3011200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.3015578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h 2025-08-14T21:48:21.3019494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h 2025-08-14T21:48:21.3023566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_native.h 2025-08-14T21:48:21.3027644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_ops.h 2025-08-14T21:48:21.3032085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3036084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_native.h 2025-08-14T21:48:21.3040408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_ops.h 2025-08-14T21:48:21.3044422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight.h 2025-08-14T21:48:21.3048450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3052742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation.h 2025-08-14T21:48:21.3056871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3060740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_native.h 2025-08-14T21:48:21.3064719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_ops.h 2025-08-14T21:48:21.3068669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_native.h 2025-08-14T21:48:21.3072964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_ops.h 2025-08-14T21:48:21.3077021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight.h 2025-08-14T21:48:21.3081414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3085617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation.h 2025-08-14T21:48:21.3089680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3094724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_native.h 2025-08-14T21:48:21.3098845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_ops.h 2025-08-14T21:48:21.3103073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_native.h 2025-08-14T21:48:21.3106931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_ops.h 2025-08-14T21:48:21.3110749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_quantize_weight.h 2025-08-14T21:48:21.3114816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3119904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_quantize_weight_native.h 2025-08-14T21:48:21.3123434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_quantize_weight_ops.h 2025-08-14T21:48:21.3127390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16.h 2025-08-14T21:48:21.3131607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3135472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_native.h 2025-08-14T21:48:21.3139656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_ops.h 2025-08-14T21:48:21.3143572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_quantized_matrix.h 2025-08-14T21:48:21.3147770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3151514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_quantized_matrix_native.h 2025-08-14T21:48:21.3155527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_quantized_matrix_ops.h 2025-08-14T21:48:21.3159406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_alpha_dropout.h 2025-08-14T21:48:21.3163579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_alpha_dropout_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3167433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_alpha_dropout_native.h 2025-08-14T21:48:21.3171136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_alpha_dropout_ops.h 2025-08-14T21:48:21.3175030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_dropout.h 2025-08-14T21:48:21.3178916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_dropout_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3182662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_dropout_native.h 2025-08-14T21:48:21.3187325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_dropout_ops.h 2025-08-14T21:48:21.3191379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft.h 2025-08-14T21:48:21.3194803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft2.h 2025-08-14T21:48:21.3198401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft2_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3202216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft2_native.h 2025-08-14T21:48:21.3205967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft2_ops.h 2025-08-14T21:48:21.3210095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftfreq.h 2025-08-14T21:48:21.3213988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftfreq_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.3217936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftfreq_native.h 2025-08-14T21:48:21.3221767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftfreq_ops.h 2025-08-14T21:48:21.3225364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftn.h 2025-08-14T21:48:21.3229588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftn_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3233512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftn_native.h 2025-08-14T21:48:21.3237644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftn_ops.h 2025-08-14T21:48:21.3241666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftshift.h 2025-08-14T21:48:21.3245784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftshift_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3249918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftshift_native.h 2025-08-14T21:48:21.3253594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftshift_ops.h 2025-08-14T21:48:21.3257505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3261185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft_native.h 2025-08-14T21:48:21.3264920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft_ops.h 2025-08-14T21:48:21.3268760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft.h 2025-08-14T21:48:21.3272201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft2.h 2025-08-14T21:48:21.3276099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft2_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3279824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft2_native.h 2025-08-14T21:48:21.3283625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft2_ops.h 2025-08-14T21:48:21.3287318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfftn.h 2025-08-14T21:48:21.3291512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfftn_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3295923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfftn_native.h 2025-08-14T21:48:21.3300051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfftn_ops.h 2025-08-14T21:48:21.3304089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3307767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft_native.h 2025-08-14T21:48:21.3311525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft_ops.h 2025-08-14T21:48:21.3315327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft.h 2025-08-14T21:48:21.3318731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft2.h 2025-08-14T21:48:21.3322464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft2_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3326105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft2_native.h 2025-08-14T21:48:21.3329742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft2_ops.h 2025-08-14T21:48:21.3333806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftn.h 2025-08-14T21:48:21.3337565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftn_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3341372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftn_native.h 2025-08-14T21:48:21.3345388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftn_ops.h 2025-08-14T21:48:21.3349229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftshift.h 2025-08-14T21:48:21.3353129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftshift_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3356935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftshift_native.h 2025-08-14T21:48:21.3361011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftshift_ops.h 2025-08-14T21:48:21.3365014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3368898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft_native.h 2025-08-14T21:48:21.3373042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft_ops.h 2025-08-14T21:48:21.3377115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft.h 2025-08-14T21:48:21.3380798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft2.h 2025-08-14T21:48:21.3384901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft2_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3388686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft2_native.h 2025-08-14T21:48:21.3392589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft2_ops.h 2025-08-14T21:48:21.3396637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfftn.h 2025-08-14T21:48:21.3400652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfftn_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3405058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfftn_native.h 2025-08-14T21:48:21.3408913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfftn_ops.h 2025-08-14T21:48:21.3412850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3416814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft_native.h 2025-08-14T21:48:21.3420775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft_ops.h 2025-08-14T21:48:21.3424542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft.h 2025-08-14T21:48:21.3428188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft2.h 2025-08-14T21:48:21.3431965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft2_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3435806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft2_native.h 2025-08-14T21:48:21.3439666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft2_ops.h 2025-08-14T21:48:21.3443520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfftn.h 2025-08-14T21:48:21.3447688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfftn_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3451848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfftn_native.h 2025-08-14T21:48:21.3455677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfftn_ops.h 2025-08-14T21:48:21.3459535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3463728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft_native.h 2025-08-14T21:48:21.3468029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft_ops.h 2025-08-14T21:48:21.3472297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft.h 2025-08-14T21:48:21.3476154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft2.h 2025-08-14T21:48:21.3480729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft2_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3484726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft2_native.h 2025-08-14T21:48:21.3488531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft2_ops.h 2025-08-14T21:48:21.3492326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftfreq.h 2025-08-14T21:48:21.3496379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftfreq_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.3500291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftfreq_native.h 2025-08-14T21:48:21.3504235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftfreq_ops.h 2025-08-14T21:48:21.3508347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftn.h 2025-08-14T21:48:21.3512246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftn_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3516909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftn_native.h 2025-08-14T21:48:21.3521520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftn_ops.h 2025-08-14T21:48:21.3525350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3528831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft_native.h 2025-08-14T21:48:21.3532751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft_ops.h 2025-08-14T21:48:21.3536951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill.h 2025-08-14T21:48:21.3540642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.3544553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_cpu_dispatch.h 2025-08-14T21:48:21.3548361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_cuda_dispatch.h 2025-08-14T21:48:21.3552476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_diagonal.h 2025-08-14T21:48:21.3556359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_diagonal_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3560130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_diagonal_native.h 2025-08-14T21:48:21.3563846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_diagonal_ops.h 2025-08-14T21:48:21.3567877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_meta_dispatch.h 2025-08-14T21:48:21.3571802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_native.h 2025-08-14T21:48:21.3575181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_ops.h 2025-08-14T21:48:21.3578593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fix.h 2025-08-14T21:48:21.3582329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fix_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3585982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fix_native.h 2025-08-14T21:48:21.3589589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fix_ops.h 2025-08-14T21:48:21.3593135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten.h 2025-08-14T21:48:21.3597067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3601332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_dense_tensors.h 2025-08-14T21:48:21.3605215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_dense_tensors_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3608975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_dense_tensors_native.h 2025-08-14T21:48:21.3612893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_dense_tensors_ops.h 2025-08-14T21:48:21.3617022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_native.h 2025-08-14T21:48:21.3621335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_ops.h 2025-08-14T21:48:21.3625864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip.h 2025-08-14T21:48:21.3629869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fliplr.h 2025-08-14T21:48:21.3633477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fliplr_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3638689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fliplr_native.h 2025-08-14T21:48:21.3643307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fliplr_ops.h 2025-08-14T21:48:21.3647778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flipud.h 2025-08-14T21:48:21.3652054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flipud_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3656506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flipud_native.h 2025-08-14T21:48:21.3661643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flipud_ops.h 2025-08-14T21:48:21.3667351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.3671631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip_cpu_dispatch.h 2025-08-14T21:48:21.3676169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip_cuda_dispatch.h 2025-08-14T21:48:21.3681289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip_native.h 2025-08-14T21:48:21.3686006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip_ops.h 2025-08-14T21:48:21.3690467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\float_power.h 2025-08-14T21:48:21.3695190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\float_power_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.3700100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\float_power_native.h 2025-08-14T21:48:21.3704770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\float_power_ops.h 2025-08-14T21:48:21.3710075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor.h 2025-08-14T21:48:21.3715163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.3719271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_cpu_dispatch.h 2025-08-14T21:48:21.3722827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_cuda_dispatch.h 2025-08-14T21:48:21.3727581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide.h 2025-08-14T21:48:21.3732007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.3736355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_cpu_dispatch.h 2025-08-14T21:48:21.3740841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_cuda_dispatch.h 2025-08-14T21:48:21.3745269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_meta_dispatch.h 2025-08-14T21:48:21.3748662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_native.h 2025-08-14T21:48:21.3752865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_ops.h 2025-08-14T21:48:21.3757297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_meta.h 2025-08-14T21:48:21.3761384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_meta_dispatch.h 2025-08-14T21:48:21.3765605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_native.h 2025-08-14T21:48:21.3769270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_ops.h 2025-08-14T21:48:21.3773184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax.h 2025-08-14T21:48:21.3776877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.3780704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_cpu_dispatch.h 2025-08-14T21:48:21.3784355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_cuda_dispatch.h 2025-08-14T21:48:21.3788184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_meta.h 2025-08-14T21:48:21.3792137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_meta_dispatch.h 2025-08-14T21:48:21.3795859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_native.h 2025-08-14T21:48:21.3799537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_ops.h 2025-08-14T21:48:21.3803015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin.h 2025-08-14T21:48:21.3806860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.3810495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_cpu_dispatch.h 2025-08-14T21:48:21.3814203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_cuda_dispatch.h 2025-08-14T21:48:21.3818617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_meta.h 2025-08-14T21:48:21.3846463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_meta_dispatch.h 2025-08-14T21:48:21.3850002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_native.h 2025-08-14T21:48:21.3853634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_ops.h 2025-08-14T21:48:21.3857017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod.h 2025-08-14T21:48:21.3860929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.3864569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.3868244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_cpu_dispatch.h 2025-08-14T21:48:21.3872171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_cuda_dispatch.h 2025-08-14T21:48:21.3875982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_meta.h 2025-08-14T21:48:21.3879718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_meta_dispatch.h 2025-08-14T21:48:21.3883641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_native.h 2025-08-14T21:48:21.3887361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_ops.h 2025-08-14T21:48:21.3890748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac.h 2025-08-14T21:48:21.3894600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d.h 2025-08-14T21:48:21.3898295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward.h 2025-08-14T21:48:21.3902484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.3906190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_cpu_dispatch.h 2025-08-14T21:48:21.3910147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_cuda_dispatch.h 2025-08-14T21:48:21.3914212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_meta.h 2025-08-14T21:48:21.3918063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_meta_dispatch.h 2025-08-14T21:48:21.3922167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_native.h 2025-08-14T21:48:21.3926159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_ops.h 2025-08-14T21:48:21.3930096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.3933772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_cpu_dispatch.h 2025-08-14T21:48:21.3937738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_cuda_dispatch.h 2025-08-14T21:48:21.3941663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_meta.h 2025-08-14T21:48:21.3945842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_meta_dispatch.h 2025-08-14T21:48:21.3949502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_native.h 2025-08-14T21:48:21.3953213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_ops.h 2025-08-14T21:48:21.3956926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d.h 2025-08-14T21:48:21.3960911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_backward.h 2025-08-14T21:48:21.3964771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_backward_cpu_dispatch.h 2025-08-14T21:48:21.3968959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_backward_cuda_dispatch.h 2025-08-14T21:48:21.3972619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_backward_native.h 2025-08-14T21:48:21.3976824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_backward_ops.h 2025-08-14T21:48:21.3981534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.3985315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_cpu_dispatch.h 2025-08-14T21:48:21.3989533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_cuda_dispatch.h 2025-08-14T21:48:21.3993301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_meta.h 2025-08-14T21:48:21.3997059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_meta_dispatch.h 2025-08-14T21:48:21.4001046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_native.h 2025-08-14T21:48:21.4004913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_ops.h 2025-08-14T21:48:21.4008912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.4012953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_cpu_dispatch.h 2025-08-14T21:48:21.4016772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_cuda_dispatch.h 2025-08-14T21:48:21.4020399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_meta.h 2025-08-14T21:48:21.4024624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_meta_dispatch.h 2025-08-14T21:48:21.4028469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_native.h 2025-08-14T21:48:21.4031887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_ops.h 2025-08-14T21:48:21.4035384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp.h 2025-08-14T21:48:21.4072678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.4076484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp_cpu_dispatch.h 2025-08-14T21:48:21.4080334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp_cuda_dispatch.h 2025-08-14T21:48:21.4083999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp_native.h 2025-08-14T21:48:21.4087783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp_ops.h 2025-08-14T21:48:21.4091687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frobenius_norm.h 2025-08-14T21:48:21.4095565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frobenius_norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.4099441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frobenius_norm_native.h 2025-08-14T21:48:21.4103073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frobenius_norm_ops.h 2025-08-14T21:48:21.4107059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_blob.h 2025-08-14T21:48:21.4110732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_file.h 2025-08-14T21:48:21.4115087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_file_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.4118728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_file_cpu_dispatch.h 2025-08-14T21:48:21.4122653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_file_native.h 2025-08-14T21:48:21.4126345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_file_ops.h 2025-08-14T21:48:21.4130153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full.h 2025-08-14T21:48:21.4134397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.4137849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_like.h 2025-08-14T21:48:21.4141718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_like_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.4145767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_like_native.h 2025-08-14T21:48:21.4149401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_like_ops.h 2025-08-14T21:48:21.4153148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_native.h 2025-08-14T21:48:21.4156865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_ops.h 2025-08-14T21:48:21.4160551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant.h 2025-08-14T21:48:21.4164848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.4168573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_native.h 2025-08-14T21:48:21.4172440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_ops.h 2025-08-14T21:48:21.4176097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather.h 2025-08-14T21:48:21.4179992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_backward.h 2025-08-14T21:48:21.4183508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.4187458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_backward_native.h 2025-08-14T21:48:21.4191285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_backward_ops.h 2025-08-14T21:48:21.4195219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.4199093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.4203296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_cpu_dispatch.h 2025-08-14T21:48:21.4207527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_cuda_dispatch.h 2025-08-14T21:48:21.4211623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_meta.h 2025-08-14T21:48:21.4216139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_meta_dispatch.h 2025-08-14T21:48:21.4220741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_native.h 2025-08-14T21:48:21.4225208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_ops.h 2025-08-14T21:48:21.4229033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd.h 2025-08-14T21:48:21.4232864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.4236582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_cpu_dispatch.h 2025-08-14T21:48:21.4240395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_cuda_dispatch.h 2025-08-14T21:48:21.4244157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_meta.h 2025-08-14T21:48:21.4248002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_meta_dispatch.h 2025-08-14T21:48:21.4251839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_native.h 2025-08-14T21:48:21.4255403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_ops.h 2025-08-14T21:48:21.4258895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge.h 2025-08-14T21:48:21.4262431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu.h 2025-08-14T21:48:21.4265852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward.h 2025-08-14T21:48:21.4269886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.4273382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_cpu_dispatch.h 2025-08-14T21:48:21.4277669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_cuda_dispatch.h 2025-08-14T21:48:21.4281587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_meta.h 2025-08-14T21:48:21.4285881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_meta_dispatch.h 2025-08-14T21:48:21.4289651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_native.h 2025-08-14T21:48:21.4293423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_ops.h 2025-08-14T21:48:21.4297392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.4301013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_cpu_dispatch.h 2025-08-14T21:48:21.4304952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_cuda_dispatch.h 2025-08-14T21:48:21.4309212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_meta.h 2025-08-14T21:48:21.4312417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_meta_dispatch.h 2025-08-14T21:48:21.4316211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_native.h 2025-08-14T21:48:21.4319820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_ops.h 2025-08-14T21:48:21.4323231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric.h 2025-08-14T21:48:21.4327100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.4330739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_cpu_dispatch.h 2025-08-14T21:48:21.4335372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_cuda_dispatch.h 2025-08-14T21:48:21.4339151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_meta_dispatch.h 2025-08-14T21:48:21.4343022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_native.h 2025-08-14T21:48:21.4346642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_ops.h 2025-08-14T21:48:21.4350399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geqrf.h 2025-08-14T21:48:21.4354049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geqrf_cpu_dispatch.h 2025-08-14T21:48:21.4358480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geqrf_cuda_dispatch.h 2025-08-14T21:48:21.4362535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geqrf_native.h 2025-08-14T21:48:21.4366307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geqrf_ops.h 2025-08-14T21:48:21.4370035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ger.h 2025-08-14T21:48:21.4373591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ger_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.4377189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ger_native.h 2025-08-14T21:48:21.4380755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ger_ops.h 2025-08-14T21:48:21.4384410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.4387986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_cpu_dispatch.h 2025-08-14T21:48:21.4391518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_cuda_dispatch.h 2025-08-14T21:48:21.4395402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_meta.h 2025-08-14T21:48:21.4399099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_meta_dispatch.h 2025-08-14T21:48:21.4403051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_native.h 2025-08-14T21:48:21.4406457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_ops.h 2025-08-14T21:48:21.4409759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu.h 2025-08-14T21:48:21.4413110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward.h 2025-08-14T21:48:21.4416729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_cpu_dispatch.h 2025-08-14T21:48:21.4420415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_cuda_dispatch.h 2025-08-14T21:48:21.4424735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp.h 2025-08-14T21:48:21.4428601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.4432433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp_cpu_dispatch.h 2025-08-14T21:48:21.4436202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp_cuda_dispatch.h 2025-08-14T21:48:21.4440013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp_native.h 2025-08-14T21:48:21.4444186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp_ops.h 2025-08-14T21:48:21.4448007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_native.h 2025-08-14T21:48:21.4451846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_ops.h 2025-08-14T21:48:21.4455745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.4459226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_cpu_dispatch.h 2025-08-14T21:48:21.4462858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_cuda_dispatch.h 2025-08-14T21:48:21.4466815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp.h 2025-08-14T21:48:21.4470467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.4474026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp_cpu_dispatch.h 2025-08-14T21:48:21.4477915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp_cuda_dispatch.h 2025-08-14T21:48:21.4481748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp_native.h 2025-08-14T21:48:21.4485432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp_ops.h 2025-08-14T21:48:21.4489195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_meta.h 2025-08-14T21:48:21.4493007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_meta_dispatch.h 2025-08-14T21:48:21.4496635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_native.h 2025-08-14T21:48:21.4500322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_ops.h 2025-08-14T21:48:21.4503796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gradient.h 2025-08-14T21:48:21.4507355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gradient_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.4511305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gradient_native.h 2025-08-14T21:48:21.4515380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gradient_ops.h 2025-08-14T21:48:21.4518641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater.h 2025-08-14T21:48:21.4522415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.4525942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_equal.h 2025-08-14T21:48:21.4529683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_equal_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.4533631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_equal_native.h 2025-08-14T21:48:21.4537127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_equal_ops.h 2025-08-14T21:48:21.4541102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_native.h 2025-08-14T21:48:21.4554124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_ops.h 2025-08-14T21:48:21.4554381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler.h 2025-08-14T21:48:21.4556499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d.h 2025-08-14T21:48:21.4560374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward.h 2025-08-14T21:48:21.4564309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.4568229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward_cpu_dispatch.h 2025-08-14T21:48:21.4572133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward_cuda_dispatch.h 2025-08-14T21:48:21.4575872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward_native.h 2025-08-14T21:48:21.4579599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward_ops.h 2025-08-14T21:48:21.4583457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.4587322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_cpu_dispatch.h 2025-08-14T21:48:21.4591309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_cuda_dispatch.h 2025-08-14T21:48:21.4595227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_native.h 2025-08-14T21:48:21.4598987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_ops.h 2025-08-14T21:48:21.4602867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d.h 2025-08-14T21:48:21.4606603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward.h 2025-08-14T21:48:21.4610621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.4614641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward_cpu_dispatch.h 2025-08-14T21:48:21.4618641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward_cuda_dispatch.h 2025-08-14T21:48:21.4622466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward_native.h 2025-08-14T21:48:21.4626330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward_ops.h 2025-08-14T21:48:21.4630331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.4634158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_cpu_dispatch.h 2025-08-14T21:48:21.4638277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_cuda_dispatch.h 2025-08-14T21:48:21.4642313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_native.h 2025-08-14T21:48:21.4646127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_ops.h 2025-08-14T21:48:21.4650995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.4654706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_native.h 2025-08-14T21:48:21.4658581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_ops.h 2025-08-14T21:48:21.4662289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\group_norm.h 2025-08-14T21:48:21.4666452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\group_norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.4669911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\group_norm_native.h 2025-08-14T21:48:21.4673640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\group_norm_ops.h 2025-08-14T21:48:21.4677285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru.h 2025-08-14T21:48:21.4680889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_cell.h 2025-08-14T21:48:21.4684483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_cell_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.4688219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_cell_native.h 2025-08-14T21:48:21.4691831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_cell_ops.h 2025-08-14T21:48:21.4695798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.4699773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_native.h 2025-08-14T21:48:21.4703459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_ops.h 2025-08-14T21:48:21.4706890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt.h 2025-08-14T21:48:21.4710630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.4714194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_cpu_dispatch.h 2025-08-14T21:48:21.4717925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_cuda_dispatch.h 2025-08-14T21:48:21.4721907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_meta.h 2025-08-14T21:48:21.4725838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_meta_dispatch.h 2025-08-14T21:48:21.4729403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_native.h 2025-08-14T21:48:21.4733409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_ops.h 2025-08-14T21:48:21.4737016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hamming_window.h 2025-08-14T21:48:21.4741484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hamming_window_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.4745701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hamming_window_native.h 2025-08-14T21:48:21.4749861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hamming_window_ops.h 2025-08-14T21:48:21.4753788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hann_window.h 2025-08-14T21:48:21.4758157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hann_window_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.4763079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hann_window_native.h 2025-08-14T21:48:21.4767483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hann_window_ops.h 2025-08-14T21:48:21.4771727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink.h 2025-08-14T21:48:21.4776285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward.h 2025-08-14T21:48:21.4780709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.4784750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_cpu_dispatch.h 2025-08-14T21:48:21.4788762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_cuda_dispatch.h 2025-08-14T21:48:21.4792552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_meta.h 2025-08-14T21:48:21.4796568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_meta_dispatch.h 2025-08-14T21:48:21.4800836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_native.h 2025-08-14T21:48:21.4804797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_ops.h 2025-08-14T21:48:21.4809007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.4812681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_cpu_dispatch.h 2025-08-14T21:48:21.4816473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_cuda_dispatch.h 2025-08-14T21:48:21.4820333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_meta.h 2025-08-14T21:48:21.4824131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_meta_dispatch.h 2025-08-14T21:48:21.4827807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_native.h 2025-08-14T21:48:21.4832137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_ops.h 2025-08-14T21:48:21.4836239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid.h 2025-08-14T21:48:21.4840089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward.h 2025-08-14T21:48:21.4844502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.4848346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_cpu_dispatch.h 2025-08-14T21:48:21.4852123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_cuda_dispatch.h 2025-08-14T21:48:21.4855878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_meta.h 2025-08-14T21:48:21.4859810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_meta_dispatch.h 2025-08-14T21:48:21.4863838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_native.h 2025-08-14T21:48:21.4868156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_ops.h 2025-08-14T21:48:21.4872267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.4875864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_cpu_dispatch.h 2025-08-14T21:48:21.4879846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_cuda_dispatch.h 2025-08-14T21:48:21.4883704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_meta.h 2025-08-14T21:48:21.4887837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_meta_dispatch.h 2025-08-14T21:48:21.4891726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_native.h 2025-08-14T21:48:21.4895841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_ops.h 2025-08-14T21:48:21.4899813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish.h 2025-08-14T21:48:21.4903708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward.h 2025-08-14T21:48:21.4907594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.4911362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward_cpu_dispatch.h 2025-08-14T21:48:21.4915346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward_cuda_dispatch.h 2025-08-14T21:48:21.4919050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward_native.h 2025-08-14T21:48:21.4922875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward_ops.h 2025-08-14T21:48:21.4926915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_cpu_dispatch.h 2025-08-14T21:48:21.4930666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_cuda_dispatch.h 2025-08-14T21:48:21.4934524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_meta_dispatch.h 2025-08-14T21:48:21.4938165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_native.h 2025-08-14T21:48:21.4942098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_ops.h 2025-08-14T21:48:21.4946522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh.h 2025-08-14T21:48:21.4950094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_backward.h 2025-08-14T21:48:21.4953887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_backward_cpu_dispatch.h 2025-08-14T21:48:21.4957628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_backward_cuda_dispatch.h 2025-08-14T21:48:21.4961432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_backward_native.h 2025-08-14T21:48:21.4965199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_backward_ops.h 2025-08-14T21:48:21.4969109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_cpu_dispatch.h 2025-08-14T21:48:21.4973556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_cuda_dispatch.h 2025-08-14T21:48:21.4977434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_meta_dispatch.h 2025-08-14T21:48:21.4981127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_native.h 2025-08-14T21:48:21.4985261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_ops.h 2025-08-14T21:48:21.4988979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor.h 2025-08-14T21:48:21.4992991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.4996610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_cpu_dispatch.h 2025-08-14T21:48:21.5000682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_cuda_dispatch.h 2025-08-14T21:48:21.5004401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_meta.h 2025-08-14T21:48:21.5008183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_meta_dispatch.h 2025-08-14T21:48:21.5011968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_native.h 2025-08-14T21:48:21.5015790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_ops.h 2025-08-14T21:48:21.5019587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside.h 2025-08-14T21:48:21.5023503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.5027340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_cpu_dispatch.h 2025-08-14T21:48:21.5031074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_cuda_dispatch.h 2025-08-14T21:48:21.5064050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_meta.h 2025-08-14T21:48:21.5067593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_meta_dispatch.h 2025-08-14T21:48:21.5071359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_native.h 2025-08-14T21:48:21.5075221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_ops.h 2025-08-14T21:48:21.5078950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hinge_embedding_loss.h 2025-08-14T21:48:21.5083143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hinge_embedding_loss_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.5086882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hinge_embedding_loss_native.h 2025-08-14T21:48:21.5090598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hinge_embedding_loss_ops.h 2025-08-14T21:48:21.5123681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histc.h 2025-08-14T21:48:21.5127189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histc_cpu_dispatch.h 2025-08-14T21:48:21.5130670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histc_cuda_dispatch.h 2025-08-14T21:48:21.5134248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histc_native.h 2025-08-14T21:48:21.5138192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histc_ops.h 2025-08-14T21:48:21.5142145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogram.h 2025-08-14T21:48:21.5145812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogramdd.h 2025-08-14T21:48:21.5149634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogramdd_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.5153291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogramdd_native.h 2025-08-14T21:48:21.5156971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogramdd_ops.h 2025-08-14T21:48:21.5161012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogram_cpu_dispatch.h 2025-08-14T21:48:21.5164636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogram_native.h 2025-08-14T21:48:21.5168545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogram_ops.h 2025-08-14T21:48:21.5172534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hsplit.h 2025-08-14T21:48:21.5176243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hsplit_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.5179757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hsplit_native.h 2025-08-14T21:48:21.5183298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hsplit_ops.h 2025-08-14T21:48:21.5187528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hspmm.h 2025-08-14T21:48:21.5190982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hspmm_native.h 2025-08-14T21:48:21.5194520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hspmm_ops.h 2025-08-14T21:48:21.5198082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hstack.h 2025-08-14T21:48:21.5201889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hstack_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.5205483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hstack_native.h 2025-08-14T21:48:21.5209258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hstack_ops.h 2025-08-14T21:48:21.5212940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss.h 2025-08-14T21:48:21.5216494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward.h 2025-08-14T21:48:21.5220354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.5223981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward_cpu_dispatch.h 2025-08-14T21:48:21.5227940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward_cuda_dispatch.h 2025-08-14T21:48:21.5231748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward_native.h 2025-08-14T21:48:21.5235463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward_ops.h 2025-08-14T21:48:21.5239280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_cpu_dispatch.h 2025-08-14T21:48:21.5243413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_cuda_dispatch.h 2025-08-14T21:48:21.5247584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_native.h 2025-08-14T21:48:21.5252331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_ops.h 2025-08-14T21:48:21.5256368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot.h 2025-08-14T21:48:21.5260100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.5263633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_cpu_dispatch.h 2025-08-14T21:48:21.5267413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_cuda_dispatch.h 2025-08-14T21:48:21.5271083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_meta.h 2025-08-14T21:48:21.5274912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_meta_dispatch.h 2025-08-14T21:48:21.5279368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_native.h 2025-08-14T21:48:21.5283575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_ops.h 2025-08-14T21:48:21.5287590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0.h 2025-08-14T21:48:21.5292090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.5296453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_cpu_dispatch.h 2025-08-14T21:48:21.5300620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_cuda_dispatch.h 2025-08-14T21:48:21.5304656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_meta.h 2025-08-14T21:48:21.5308789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_meta_dispatch.h 2025-08-14T21:48:21.5312939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_native.h 2025-08-14T21:48:21.5317093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_ops.h 2025-08-14T21:48:21.5322814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma.h 2025-08-14T21:48:21.5327691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac.h 2025-08-14T21:48:21.5331823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.5335538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_cpu_dispatch.h 2025-08-14T21:48:21.5339277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_cuda_dispatch.h 2025-08-14T21:48:21.5343180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_meta.h 2025-08-14T21:48:21.5346859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_meta_dispatch.h 2025-08-14T21:48:21.5350616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_native.h 2025-08-14T21:48:21.5354600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_ops.h 2025-08-14T21:48:21.5358618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.5363319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_cpu_dispatch.h 2025-08-14T21:48:21.5367734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_cuda_dispatch.h 2025-08-14T21:48:21.5371383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_meta.h 2025-08-14T21:48:21.5375060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_meta_dispatch.h 2025-08-14T21:48:21.5378959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_native.h 2025-08-14T21:48:21.5382998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_ops.h 2025-08-14T21:48:21.5386720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\im2col.h 2025-08-14T21:48:21.5390281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\im2col_cpu_dispatch.h 2025-08-14T21:48:21.5393942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\im2col_cuda_dispatch.h 2025-08-14T21:48:21.5398371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\im2col_native.h 2025-08-14T21:48:21.5402201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\im2col_ops.h 2025-08-14T21:48:21.5405935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\imag.h 2025-08-14T21:48:21.5410141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\imag_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.5413296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\imag_native.h 2025-08-14T21:48:21.5416978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\imag_ops.h 2025-08-14T21:48:21.5420368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index.h 2025-08-14T21:48:21.5423822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add.h 2025-08-14T21:48:21.5427704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.5432236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.5435934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_cpu_dispatch.h 2025-08-14T21:48:21.5439818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_cuda_dispatch.h 2025-08-14T21:48:21.5443880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_meta.h 2025-08-14T21:48:21.5447644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_meta_dispatch.h 2025-08-14T21:48:21.5451334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_native.h 2025-08-14T21:48:21.5455066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_ops.h 2025-08-14T21:48:21.5459106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.5463122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy.h 2025-08-14T21:48:21.5529580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.5534498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.5600154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_cpu_dispatch.h 2025-08-14T21:48:21.5604269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_cuda_dispatch.h 2025-08-14T21:48:21.5608257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_meta.h 2025-08-14T21:48:21.5612248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_meta_dispatch.h 2025-08-14T21:48:21.5616085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_native.h 2025-08-14T21:48:21.5619839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_ops.h 2025-08-14T21:48:21.5624590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_cpu_dispatch.h 2025-08-14T21:48:21.5628968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_cuda_dispatch.h 2025-08-14T21:48:21.5632887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill.h 2025-08-14T21:48:21.5637428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.5641559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.5645328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_cpu_dispatch.h 2025-08-14T21:48:21.5649480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_cuda_dispatch.h 2025-08-14T21:48:21.5653342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_meta_dispatch.h 2025-08-14T21:48:21.5657632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_native.h 2025-08-14T21:48:21.5661147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_ops.h 2025-08-14T21:48:21.5664891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_meta.h 2025-08-14T21:48:21.5668798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_meta_dispatch.h 2025-08-14T21:48:21.5672528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_native.h 2025-08-14T21:48:21.5676222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_ops.h 2025-08-14T21:48:21.5680001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_put.h 2025-08-14T21:48:21.5684465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_put_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.5688333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_put_native.h 2025-08-14T21:48:21.5692043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_put_ops.h 2025-08-14T21:48:21.5695842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce.h 2025-08-14T21:48:21.5701421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.5706137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_cpu_dispatch.h 2025-08-14T21:48:21.5711297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_cuda_dispatch.h 2025-08-14T21:48:21.5716975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_meta.h 2025-08-14T21:48:21.5721595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_meta_dispatch.h 2025-08-14T21:48:21.5726093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_native.h 2025-08-14T21:48:21.5730761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_ops.h 2025-08-14T21:48:21.5735059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select.h 2025-08-14T21:48:21.5738803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_backward.h 2025-08-14T21:48:21.5742765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.5746852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_backward_native.h 2025-08-14T21:48:21.5750752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_backward_ops.h 2025-08-14T21:48:21.5755037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.5759076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_cpu_dispatch.h 2025-08-14T21:48:21.5763108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_cuda_dispatch.h 2025-08-14T21:48:21.5766846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_native.h 2025-08-14T21:48:21.5771054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_ops.h 2025-08-14T21:48:21.5774943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices.h 2025-08-14T21:48:21.5778699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.5782249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_copy.h 2025-08-14T21:48:21.5786348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.5790143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.5794844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_copy_native.h 2025-08-14T21:48:21.5798594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_copy_ops.h 2025-08-14T21:48:21.5802460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_native.h 2025-08-14T21:48:21.5806239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_ops.h 2025-08-14T21:48:21.5810286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\infinitely_differentiable_gelu_backward.h 2025-08-14T21:48:21.5814178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.5818430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\infinitely_differentiable_gelu_backward_native.h 2025-08-14T21:48:21.5822485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\infinitely_differentiable_gelu_backward_ops.h 2025-08-14T21:48:21.5826143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inner.h 2025-08-14T21:48:21.5829715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inner_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.5833306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inner_native.h 2025-08-14T21:48:21.5837021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inner_ops.h 2025-08-14T21:48:21.5840866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\instance_norm.h 2025-08-14T21:48:21.5844771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\instance_norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.5848949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\instance_norm_native.h 2025-08-14T21:48:21.5852629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\instance_norm_ops.h 2025-08-14T21:48:21.5856293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\int_repr.h 2025-08-14T21:48:21.5859962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\int_repr_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.5863491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\int_repr_native.h 2025-08-14T21:48:21.5867593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\int_repr_ops.h 2025-08-14T21:48:21.5871367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inverse.h 2025-08-14T21:48:21.5875213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inverse_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.5878882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inverse_native.h 2025-08-14T21:48:21.5882824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inverse_ops.h 2025-08-14T21:48:21.5886605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isclose.h 2025-08-14T21:48:21.5890228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isclose_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.5893801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isclose_native.h 2025-08-14T21:48:21.5897512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isclose_ops.h 2025-08-14T21:48:21.5901276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isfinite.h 2025-08-14T21:48:21.5905221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isfinite_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.5908872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isfinite_native.h 2025-08-14T21:48:21.5912473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isfinite_ops.h 2025-08-14T21:48:21.5916137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin.h 2025-08-14T21:48:21.5919760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isinf.h 2025-08-14T21:48:21.5923900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isinf_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.5927632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isinf_native.h 2025-08-14T21:48:21.5931279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isinf_ops.h 2025-08-14T21:48:21.5935420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.5939227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_cpu_dispatch.h 2025-08-14T21:48:21.5942741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_cuda_dispatch.h 2025-08-14T21:48:21.5946373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_meta.h 2025-08-14T21:48:21.5949977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_meta_dispatch.h 2025-08-14T21:48:21.5953631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_native.h 2025-08-14T21:48:21.5957966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_ops.h 2025-08-14T21:48:21.5961770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan.h 2025-08-14T21:48:21.5965601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.5969229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan_cpu_dispatch.h 2025-08-14T21:48:21.5972892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan_cuda_dispatch.h 2025-08-14T21:48:21.5976545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan_native.h 2025-08-14T21:48:21.5980381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan_ops.h 2025-08-14T21:48:21.5984240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf.h 2025-08-14T21:48:21.5987921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.5991464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_cpu_dispatch.h 2025-08-14T21:48:21.5995352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_cuda_dispatch.h 2025-08-14T21:48:21.5999270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_meta.h 2025-08-14T21:48:21.6003157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_meta_dispatch.h 2025-08-14T21:48:21.6006894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_native.h 2025-08-14T21:48:21.6013665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_ops.h 2025-08-14T21:48:21.6017362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf.h 2025-08-14T21:48:21.6021011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.6024745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_cpu_dispatch.h 2025-08-14T21:48:21.6028424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_cuda_dispatch.h 2025-08-14T21:48:21.6032421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_meta.h 2025-08-14T21:48:21.6036509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_meta_dispatch.h 2025-08-14T21:48:21.6040408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_native.h 2025-08-14T21:48:21.6044417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_ops.h 2025-08-14T21:48:21.6048423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isreal.h 2025-08-14T21:48:21.6052207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isreal_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.6056021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isreal_native.h 2025-08-14T21:48:21.6059778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isreal_ops.h 2025-08-14T21:48:21.6063550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\istft.h 2025-08-14T21:48:21.6067273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\istft_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.6070927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\istft_native.h 2025-08-14T21:48:21.6074592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\istft_ops.h 2025-08-14T21:48:21.6078494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_coalesced.h 2025-08-14T21:48:21.6082487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_coalesced_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.6086615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_coalesced_native.h 2025-08-14T21:48:21.6090301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_coalesced_ops.h 2025-08-14T21:48:21.6094089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_complex.h 2025-08-14T21:48:21.6097991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_complex_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.6101692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_complex_native.h 2025-08-14T21:48:21.6105532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_complex_ops.h 2025-08-14T21:48:21.6109238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_conj.h 2025-08-14T21:48:21.6113147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_conj_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.6116922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_conj_native.h 2025-08-14T21:48:21.6120710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_conj_ops.h 2025-08-14T21:48:21.6124675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_distributed.h 2025-08-14T21:48:21.6128614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_distributed_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.6132304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_distributed_native.h 2025-08-14T21:48:21.6136073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_distributed_ops.h 2025-08-14T21:48:21.6140083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_floating_point.h 2025-08-14T21:48:21.6144345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_floating_point_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.6148171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_floating_point_native.h 2025-08-14T21:48:21.6152134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_floating_point_ops.h 2025-08-14T21:48:21.6156447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_inference.h 2025-08-14T21:48:21.6160792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_inference_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.6164783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_inference_native.h 2025-08-14T21:48:21.6168543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_inference_ops.h 2025-08-14T21:48:21.6172327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_leaf.h 2025-08-14T21:48:21.6176042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_leaf_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.6179632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_leaf_native.h 2025-08-14T21:48:21.6183400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_leaf_ops.h 2025-08-14T21:48:21.6187253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_neg.h 2025-08-14T21:48:21.6190947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_neg_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.6194943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_neg_native.h 2025-08-14T21:48:21.6198698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_neg_ops.h 2025-08-14T21:48:21.6202494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_nonzero.h 2025-08-14T21:48:21.6206485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_nonzero_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.6210336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_nonzero_native.h 2025-08-14T21:48:21.6214239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_nonzero_ops.h 2025-08-14T21:48:21.6218391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_pinned.h 2025-08-14T21:48:21.6222726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_pinned_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.6227725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_pinned_native.h 2025-08-14T21:48:21.6231330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_pinned_ops.h 2025-08-14T21:48:21.6235003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_same_size.h 2025-08-14T21:48:21.6238961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_same_size_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.6243481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_same_size_native.h 2025-08-14T21:48:21.6247929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_same_size_ops.h 2025-08-14T21:48:21.6252749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_set_to.h 2025-08-14T21:48:21.6298919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_set_to_cpu_dispatch.h 2025-08-14T21:48:21.6303210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_set_to_cuda_dispatch.h 2025-08-14T21:48:21.6307618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_set_to_native.h 2025-08-14T21:48:21.6311761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_set_to_ops.h 2025-08-14T21:48:21.6315816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_signed.h 2025-08-14T21:48:21.6319777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_signed_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.6323697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_signed_native.h 2025-08-14T21:48:21.6327389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_signed_ops.h 2025-08-14T21:48:21.6332178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_vulkan_available.h 2025-08-14T21:48:21.6336157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_vulkan_available_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.6339879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_vulkan_available_native.h 2025-08-14T21:48:21.6344015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_vulkan_available_ops.h 2025-08-14T21:48:21.6348227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\item.h 2025-08-14T21:48:21.6351831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\item_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.6355627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\item_native.h 2025-08-14T21:48:21.6359501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\item_ops.h 2025-08-14T21:48:21.6363078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kaiser_window.h 2025-08-14T21:48:21.6366878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kaiser_window_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.6370837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kaiser_window_native.h 2025-08-14T21:48:21.6374526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kaiser_window_ops.h 2025-08-14T21:48:21.6378169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kl_div.h 2025-08-14T21:48:21.6381790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kl_div_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.6385819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kl_div_native.h 2025-08-14T21:48:21.6389378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kl_div_ops.h 2025-08-14T21:48:21.6393083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kron.h 2025-08-14T21:48:21.6396863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kron_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.6400413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kron_native.h 2025-08-14T21:48:21.6403890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kron_ops.h 2025-08-14T21:48:21.6407166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue.h 2025-08-14T21:48:21.6411029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.6414805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.6418353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_cpu_dispatch.h 2025-08-14T21:48:21.6422353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_cuda_dispatch.h 2025-08-14T21:48:21.6425975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_native.h 2025-08-14T21:48:21.6429608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_ops.h 2025-08-14T21:48:21.6433360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\l1_loss.h 2025-08-14T21:48:21.6436927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\l1_loss_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.6441237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\l1_loss_native.h 2025-08-14T21:48:21.6445565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\l1_loss_ops.h 2025-08-14T21:48:21.6449821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\layer_norm.h 2025-08-14T21:48:21.6454530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\layer_norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.6458691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\layer_norm_native.h 2025-08-14T21:48:21.6462343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\layer_norm_ops.h 2025-08-14T21:48:21.6465925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm.h 2025-08-14T21:48:21.6469638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.6474183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_cpu_dispatch.h 2025-08-14T21:48:21.6478442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_cuda_dispatch.h 2025-08-14T21:48:21.6482506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_meta.h 2025-08-14T21:48:21.6486079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_meta_dispatch.h 2025-08-14T21:48:21.6489909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_native.h 2025-08-14T21:48:21.6494600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_ops.h 2025-08-14T21:48:21.6498309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ldexp.h 2025-08-14T21:48:21.6502066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ldexp_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.6506069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ldexp_native.h 2025-08-14T21:48:21.6509810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ldexp_ops.h 2025-08-14T21:48:21.6513475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le.h 2025-08-14T21:48:21.6517112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu.h 2025-08-14T21:48:21.6520902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward.h 2025-08-14T21:48:21.6525409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.6529334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_cpu_dispatch.h 2025-08-14T21:48:21.6533548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_cuda_dispatch.h 2025-08-14T21:48:21.6537483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_meta.h 2025-08-14T21:48:21.6541421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_meta_dispatch.h 2025-08-14T21:48:21.6545233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_native.h 2025-08-14T21:48:21.6549335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_ops.h 2025-08-14T21:48:21.6553525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.6557378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_cpu_dispatch.h 2025-08-14T21:48:21.6561324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_cuda_dispatch.h 2025-08-14T21:48:21.6565237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_meta.h 2025-08-14T21:48:21.6569450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_meta_dispatch.h 2025-08-14T21:48:21.6573299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_native.h 2025-08-14T21:48:21.6577145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_ops.h 2025-08-14T21:48:21.6580983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp.h 2025-08-14T21:48:21.6584702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.6588688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_cpu_dispatch.h 2025-08-14T21:48:21.6592593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_cuda_dispatch.h 2025-08-14T21:48:21.6596313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_meta.h 2025-08-14T21:48:21.6600314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_meta_dispatch.h 2025-08-14T21:48:21.6604126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_native.h 2025-08-14T21:48:21.6607964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_ops.h 2025-08-14T21:48:21.6611547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less.h 2025-08-14T21:48:21.6615170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.6619001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_equal.h 2025-08-14T21:48:21.6623357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_equal_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.6626997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_equal_native.h 2025-08-14T21:48:21.6631587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_equal_ops.h 2025-08-14T21:48:21.6635520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_native.h 2025-08-14T21:48:21.6639413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_ops.h 2025-08-14T21:48:21.6643074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.6647151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_cpu_dispatch.h 2025-08-14T21:48:21.6650943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_cuda_dispatch.h 2025-08-14T21:48:21.6654565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_meta.h 2025-08-14T21:48:21.6658217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_meta_dispatch.h 2025-08-14T21:48:21.6661865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_native.h 2025-08-14T21:48:21.6665479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_ops.h 2025-08-14T21:48:21.6669181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma.h 2025-08-14T21:48:21.6672770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.6676668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_cpu_dispatch.h 2025-08-14T21:48:21.6680604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_cuda_dispatch.h 2025-08-14T21:48:21.6684272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_meta.h 2025-08-14T21:48:21.6688349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_meta_dispatch.h 2025-08-14T21:48:21.6692250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_native.h 2025-08-14T21:48:21.6695999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_ops.h 2025-08-14T21:48:21.6699756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift.h 2025-08-14T21:48:21.6703511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.6707318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh.h 2025-08-14T21:48:21.6711294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.6715231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_copy.h 2025-08-14T21:48:21.6719820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.6724355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.6728660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_copy_native.h 2025-08-14T21:48:21.6733242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_copy_ops.h 2025-08-14T21:48:21.6737605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_native.h 2025-08-14T21:48:21.6742117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_ops.h 2025-08-14T21:48:21.6746933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_native.h 2025-08-14T21:48:21.6750734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_ops.h 2025-08-14T21:48:21.6754418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky.h 2025-08-14T21:48:21.6758399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.6762624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex.h 2025-08-14T21:48:21.6767092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.6770923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_cpu_dispatch.h 2025-08-14T21:48:21.6774925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_cuda_dispatch.h 2025-08-14T21:48:21.6778719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_meta.h 2025-08-14T21:48:21.6782558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_meta_dispatch.h 2025-08-14T21:48:21.6786583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_native.h 2025-08-14T21:48:21.6790604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_ops.h 2025-08-14T21:48:21.6794541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_native.h 2025-08-14T21:48:21.6798284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ops.h 2025-08-14T21:48:21.6802168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cond.h 2025-08-14T21:48:21.6806227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cond_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.6809853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cond_native.h 2025-08-14T21:48:21.6813584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cond_ops.h 2025-08-14T21:48:21.6817177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross.h 2025-08-14T21:48:21.6820938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.6824640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_cpu_dispatch.h 2025-08-14T21:48:21.6828444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_cuda_dispatch.h 2025-08-14T21:48:21.6832192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_meta.h 2025-08-14T21:48:21.6836131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_meta_dispatch.h 2025-08-14T21:48:21.6840023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_native.h 2025-08-14T21:48:21.6843858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_ops.h 2025-08-14T21:48:21.6848138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_det.h 2025-08-14T21:48:21.6852290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_det_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.6856067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_det_native.h 2025-08-14T21:48:21.6859829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_det_ops.h 2025-08-14T21:48:21.6872714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_diagonal.h 2025-08-14T21:48:21.6873382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_diagonal_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.6876814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_diagonal_native.h 2025-08-14T21:48:21.6880841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_diagonal_ops.h 2025-08-14T21:48:21.6884409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eig.h 2025-08-14T21:48:21.6888404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigh.h 2025-08-14T21:48:21.6892075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigh_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.6895724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigh_native.h 2025-08-14T21:48:21.6899725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigh_ops.h 2025-08-14T21:48:21.6903599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals.h 2025-08-14T21:48:21.6907398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvalsh.h 2025-08-14T21:48:21.6911620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvalsh_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.6915403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvalsh_native.h 2025-08-14T21:48:21.6919205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvalsh_ops.h 2025-08-14T21:48:21.6923189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.6927490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals_cpu_dispatch.h 2025-08-14T21:48:21.6931367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals_cuda_dispatch.h 2025-08-14T21:48:21.6934947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals_native.h 2025-08-14T21:48:21.6938765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals_ops.h 2025-08-14T21:48:21.6942767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eig_cpu_dispatch.h 2025-08-14T21:48:21.6946600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eig_cuda_dispatch.h 2025-08-14T21:48:21.6950491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eig_native.h 2025-08-14T21:48:21.6954386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eig_ops.h 2025-08-14T21:48:21.6958745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_householder_product.h 2025-08-14T21:48:21.6962847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_householder_product_cpu_dispatch.h 2025-08-14T21:48:21.6966896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_householder_product_cuda_dispatch.h 2025-08-14T21:48:21.6970865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_householder_product_native.h 2025-08-14T21:48:21.6974579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_householder_product_ops.h 2025-08-14T21:48:21.6978324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv.h 2025-08-14T21:48:21.6982555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.6986665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex.h 2025-08-14T21:48:21.6990745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.6994380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_cpu_dispatch.h 2025-08-14T21:48:21.6998213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_cuda_dispatch.h 2025-08-14T21:48:21.7002056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_meta.h 2025-08-14T21:48:21.7006062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_meta_dispatch.h 2025-08-14T21:48:21.7010735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_native.h 2025-08-14T21:48:21.7014505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_ops.h 2025-08-14T21:48:21.7018264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_native.h 2025-08-14T21:48:21.7022058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ops.h 2025-08-14T21:48:21.7025930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor.h 2025-08-14T21:48:21.7030267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.7049335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex.h 2025-08-14T21:48:21.7050198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.7051094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_cpu_dispatch.h 2025-08-14T21:48:21.7051914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_cuda_dispatch.h 2025-08-14T21:48:21.7052597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_meta.h 2025-08-14T21:48:21.7056211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_meta_dispatch.h 2025-08-14T21:48:21.7060699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_native.h 2025-08-14T21:48:21.7064537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_ops.h 2025-08-14T21:48:21.7068358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_native.h 2025-08-14T21:48:21.7072389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ops.h 2025-08-14T21:48:21.7076378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve.h 2025-08-14T21:48:21.7080324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.7084458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_cpu_dispatch.h 2025-08-14T21:48:21.7088369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_cuda_dispatch.h 2025-08-14T21:48:21.7092278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_meta.h 2025-08-14T21:48:21.7096280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_meta_dispatch.h 2025-08-14T21:48:21.7100456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_native.h 2025-08-14T21:48:21.7104179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_ops.h 2025-08-14T21:48:21.7107941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq.h 2025-08-14T21:48:21.7112111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.7115890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq_cpu_dispatch.h 2025-08-14T21:48:21.7119949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq_cuda_dispatch.h 2025-08-14T21:48:21.7123796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq_native.h 2025-08-14T21:48:21.7127558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq_ops.h 2025-08-14T21:48:21.7132628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu.h 2025-08-14T21:48:21.7135560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.7139676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_cpu_dispatch.h 2025-08-14T21:48:21.7144301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_cuda_dispatch.h 2025-08-14T21:48:21.7147633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor.h 2025-08-14T21:48:21.7151667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.7155886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex.h 2025-08-14T21:48:21.7161366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.7164712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_cpu_dispatch.h 2025-08-14T21:48:21.7168470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_cuda_dispatch.h 2025-08-14T21:48:21.7173066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_meta.h 2025-08-14T21:48:21.7176026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_meta_dispatch.h 2025-08-14T21:48:21.7179854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_native.h 2025-08-14T21:48:21.7183779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_ops.h 2025-08-14T21:48:21.7188390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_native.h 2025-08-14T21:48:21.7192253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ops.h 2025-08-14T21:48:21.7196505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_meta.h 2025-08-14T21:48:21.7200109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_meta_dispatch.h 2025-08-14T21:48:21.7204210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_native.h 2025-08-14T21:48:21.7208679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_ops.h 2025-08-14T21:48:21.7211940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve.h 2025-08-14T21:48:21.7216163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.7256843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_cpu_dispatch.h 2025-08-14T21:48:21.7257600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_cuda_dispatch.h 2025-08-14T21:48:21.7258261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_meta.h 2025-08-14T21:48:21.7258899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_meta_dispatch.h 2025-08-14T21:48:21.7259552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_native.h 2025-08-14T21:48:21.7260174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_ops.h 2025-08-14T21:48:21.7260759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matmul.h 2025-08-14T21:48:21.7262907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matmul_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.7263630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matmul_native.h 2025-08-14T21:48:21.7264240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matmul_ops.h 2025-08-14T21:48:21.7264847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp.h 2025-08-14T21:48:21.7269310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.7273418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp_cpu_dispatch.h 2025-08-14T21:48:21.7277651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp_cuda_dispatch.h 2025-08-14T21:48:21.7281771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp_native.h 2025-08-14T21:48:21.7285513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp_ops.h 2025-08-14T21:48:21.7289208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_norm.h 2025-08-14T21:48:21.7293328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.7297299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_norm_native.h 2025-08-14T21:48:21.7301278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_norm_ops.h 2025-08-14T21:48:21.7305011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_power.h 2025-08-14T21:48:21.7309198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_power_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.7313112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_power_native.h 2025-08-14T21:48:21.7316973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_power_ops.h 2025-08-14T21:48:21.7350603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_rank.h 2025-08-14T21:48:21.7354258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_rank_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.7358635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_rank_native.h 2025-08-14T21:48:21.7362936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_rank_ops.h 2025-08-14T21:48:21.7366640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_multi_dot.h 2025-08-14T21:48:21.7370641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_multi_dot_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.7374886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_multi_dot_native.h 2025-08-14T21:48:21.7378597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_multi_dot_ops.h 2025-08-14T21:48:21.7382379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_norm.h 2025-08-14T21:48:21.7386775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.7390896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_norm_native.h 2025-08-14T21:48:21.7394663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_norm_ops.h 2025-08-14T21:48:21.7398268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv.h 2025-08-14T21:48:21.7402948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.7407581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.7411758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.7415478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv_native.h 2025-08-14T21:48:21.7419304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv_ops.h 2025-08-14T21:48:21.7423159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr.h 2025-08-14T21:48:21.7427415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.7431848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_cpu_dispatch.h 2025-08-14T21:48:21.7435946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_cuda_dispatch.h 2025-08-14T21:48:21.7440228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_meta.h 2025-08-14T21:48:21.7443969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_meta_dispatch.h 2025-08-14T21:48:21.7447607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_native.h 2025-08-14T21:48:21.7451423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_ops.h 2025-08-14T21:48:21.7455192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_slogdet.h 2025-08-14T21:48:21.7459153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_slogdet_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.7463286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_slogdet_native.h 2025-08-14T21:48:21.7467069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_slogdet_ops.h 2025-08-14T21:48:21.7470888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve.h 2025-08-14T21:48:21.7475138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.7478862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_ex.h 2025-08-14T21:48:21.7482874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_ex_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.7486786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_ex_native.h 2025-08-14T21:48:21.7490969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_ex_ops.h 2025-08-14T21:48:21.7494910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_native.h 2025-08-14T21:48:21.7498388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_ops.h 2025-08-14T21:48:21.7502670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_triangular.h 2025-08-14T21:48:21.7507529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_triangular_cpu_dispatch.h 2025-08-14T21:48:21.7511548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_triangular_cuda_dispatch.h 2025-08-14T21:48:21.7515256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_triangular_native.h 2025-08-14T21:48:21.7519439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_triangular_ops.h 2025-08-14T21:48:21.7523560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svd.h 2025-08-14T21:48:21.7527498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svdvals.h 2025-08-14T21:48:21.7532860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svdvals_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.7535557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svdvals_native.h 2025-08-14T21:48:21.7539725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svdvals_ops.h 2025-08-14T21:48:21.7544619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svd_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.7548070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svd_native.h 2025-08-14T21:48:21.7552072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svd_ops.h 2025-08-14T21:48:21.7556085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorinv.h 2025-08-14T21:48:21.7560198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorinv_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.7564311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorinv_native.h 2025-08-14T21:48:21.7568217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorinv_ops.h 2025-08-14T21:48:21.7572116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorsolve.h 2025-08-14T21:48:21.7576656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorsolve_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.7580646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorsolve_native.h 2025-08-14T21:48:21.7585248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorsolve_ops.h 2025-08-14T21:48:21.7588909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vander.h 2025-08-14T21:48:21.7593204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vander_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.7597493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vander_native.h 2025-08-14T21:48:21.7602811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vander_ops.h 2025-08-14T21:48:21.7637533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vecdot.h 2025-08-14T21:48:21.7640444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vecdot_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.7645052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vecdot_native.h 2025-08-14T21:48:21.7649228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vecdot_ops.h 2025-08-14T21:48:21.7653059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm.h 2025-08-14T21:48:21.7657205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.7661508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_cpu_dispatch.h 2025-08-14T21:48:21.7666388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_cuda_dispatch.h 2025-08-14T21:48:21.7669711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_meta.h 2025-08-14T21:48:21.7673887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_meta_dispatch.h 2025-08-14T21:48:21.7678314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_native.h 2025-08-14T21:48:21.7682068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_ops.h 2025-08-14T21:48:21.7686388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear.h 2025-08-14T21:48:21.7690240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_backward.h 2025-08-14T21:48:21.7695473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.7698105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_backward_native.h 2025-08-14T21:48:21.7702110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_backward_ops.h 2025-08-14T21:48:21.7707067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.7710089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.7714514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_native.h 2025-08-14T21:48:21.7718998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_ops.h 2025-08-14T21:48:21.7722126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace.h 2025-08-14T21:48:21.7726359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.7730282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_cpu_dispatch.h 2025-08-14T21:48:21.7734527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_cuda_dispatch.h 2025-08-14T21:48:21.7739042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_meta_dispatch.h 2025-08-14T21:48:21.7742288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_native.h 2025-08-14T21:48:21.7746670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_ops.h 2025-08-14T21:48:21.7752167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log.h 2025-08-14T21:48:21.7754849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10.h 2025-08-14T21:48:21.7758754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.7762503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_cpu_dispatch.h 2025-08-14T21:48:21.7766504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_cuda_dispatch.h 2025-08-14T21:48:21.7770411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_meta.h 2025-08-14T21:48:21.7776124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_meta_dispatch.h 2025-08-14T21:48:21.7778734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_native.h 2025-08-14T21:48:21.7782590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_ops.h 2025-08-14T21:48:21.7787302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p.h 2025-08-14T21:48:21.7790260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.7793872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_cpu_dispatch.h 2025-08-14T21:48:21.7797450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_cuda_dispatch.h 2025-08-14T21:48:21.7803574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_meta.h 2025-08-14T21:48:21.7806395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_meta_dispatch.h 2025-08-14T21:48:21.7810491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_native.h 2025-08-14T21:48:21.7814077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_ops.h 2025-08-14T21:48:21.7818137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2.h 2025-08-14T21:48:21.7822472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.7825500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_cpu_dispatch.h 2025-08-14T21:48:21.7829271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_cuda_dispatch.h 2025-08-14T21:48:21.7834210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_meta.h 2025-08-14T21:48:21.7836730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_meta_dispatch.h 2025-08-14T21:48:21.7840543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_native.h 2025-08-14T21:48:21.7844082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_ops.h 2025-08-14T21:48:21.7847393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp.h 2025-08-14T21:48:21.7851233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2.h 2025-08-14T21:48:21.7855595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.7859149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_cpu_dispatch.h 2025-08-14T21:48:21.7862902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_cuda_dispatch.h 2025-08-14T21:48:21.7867296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_meta.h 2025-08-14T21:48:21.7871048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_meta_dispatch.h 2025-08-14T21:48:21.7876113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_native.h 2025-08-14T21:48:21.7880331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_ops.h 2025-08-14T21:48:21.7883627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.7887329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_cpu_dispatch.h 2025-08-14T21:48:21.7891123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_cuda_dispatch.h 2025-08-14T21:48:21.7895328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_meta.h 2025-08-14T21:48:21.7899044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_meta_dispatch.h 2025-08-14T21:48:21.7902743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_native.h 2025-08-14T21:48:21.7906454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_ops.h 2025-08-14T21:48:21.7910288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logcumsumexp.h 2025-08-14T21:48:21.7914285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logcumsumexp_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.7918061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logcumsumexp_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.7921888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logcumsumexp_native.h 2025-08-14T21:48:21.7926040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logcumsumexp_ops.h 2025-08-14T21:48:21.7929841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logdet.h 2025-08-14T21:48:21.7933454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logdet_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.7936887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logdet_native.h 2025-08-14T21:48:21.7940440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logdet_ops.h 2025-08-14T21:48:21.7944191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and.h 2025-08-14T21:48:21.7948838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.7952893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and_cpu_dispatch.h 2025-08-14T21:48:21.7956383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and_cuda_dispatch.h 2025-08-14T21:48:21.7960343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and_native.h 2025-08-14T21:48:21.7964342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and_ops.h 2025-08-14T21:48:21.7968102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not.h 2025-08-14T21:48:21.7972473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.7976440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not_cpu_dispatch.h 2025-08-14T21:48:21.7980505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not_cuda_dispatch.h 2025-08-14T21:48:21.7984314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not_native.h 2025-08-14T21:48:21.7988081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not_ops.h 2025-08-14T21:48:21.7991701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or.h 2025-08-14T21:48:21.7995502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.7999017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or_cpu_dispatch.h 2025-08-14T21:48:21.8003022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or_cuda_dispatch.h 2025-08-14T21:48:21.8006606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or_native.h 2025-08-14T21:48:21.8010130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or_ops.h 2025-08-14T21:48:21.8013702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor.h 2025-08-14T21:48:21.8017648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.8021384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor_cpu_dispatch.h 2025-08-14T21:48:21.8025496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor_cuda_dispatch.h 2025-08-14T21:48:21.8029339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor_native.h 2025-08-14T21:48:21.8033226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor_ops.h 2025-08-14T21:48:21.8037840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit.h 2025-08-14T21:48:21.8041027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward.h 2025-08-14T21:48:21.8045133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.8049591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_cpu_dispatch.h 2025-08-14T21:48:21.8052804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_cuda_dispatch.h 2025-08-14T21:48:21.8056701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_meta.h 2025-08-14T21:48:21.8061113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_meta_dispatch.h 2025-08-14T21:48:21.8064979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_native.h 2025-08-14T21:48:21.8068836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_ops.h 2025-08-14T21:48:21.8072719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_cpu_dispatch.h 2025-08-14T21:48:21.8077824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_cuda_dispatch.h 2025-08-14T21:48:21.8082049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_meta_dispatch.h 2025-08-14T21:48:21.8086493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_native.h 2025-08-14T21:48:21.8090854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_ops.h 2025-08-14T21:48:21.8094332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace.h 2025-08-14T21:48:21.8097950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.8101957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_cpu_dispatch.h 2025-08-14T21:48:21.8106053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_cuda_dispatch.h 2025-08-14T21:48:21.8109774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_meta_dispatch.h 2025-08-14T21:48:21.8113534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_native.h 2025-08-14T21:48:21.8117254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_ops.h 2025-08-14T21:48:21.8121641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp.h 2025-08-14T21:48:21.8125841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.8130454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.8133446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.8137408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp_native.h 2025-08-14T21:48:21.8142039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp_ops.h 2025-08-14T21:48:21.8145510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.8149215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_cpu_dispatch.h 2025-08-14T21:48:21.8153599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_cuda_dispatch.h 2025-08-14T21:48:21.8156534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_meta.h 2025-08-14T21:48:21.8160198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_meta_dispatch.h 2025-08-14T21:48:21.8165002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_native.h 2025-08-14T21:48:21.8167885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal.h 2025-08-14T21:48:21.8171900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.8176689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_cpu_dispatch.h 2025-08-14T21:48:21.8180111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_cuda_dispatch.h 2025-08-14T21:48:21.8184926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_meta_dispatch.h 2025-08-14T21:48:21.8188459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_native.h 2025-08-14T21:48:21.8192188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_ops.h 2025-08-14T21:48:21.8195988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_ops.h 2025-08-14T21:48:21.8199425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid.h 2025-08-14T21:48:21.8203208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_backward.h 2025-08-14T21:48:21.8207685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_backward_cpu_dispatch.h 2025-08-14T21:48:21.8212224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_backward_cuda_dispatch.h 2025-08-14T21:48:21.8215146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_backward_native.h 2025-08-14T21:48:21.8219207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_backward_ops.h 2025-08-14T21:48:21.8224355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.8227167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_forward.h 2025-08-14T21:48:21.8231496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_forward_cpu_dispatch.h 2025-08-14T21:48:21.8249596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_forward_cuda_dispatch.h 2025-08-14T21:48:21.8250315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_forward_native.h 2025-08-14T21:48:21.8250957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_forward_ops.h 2025-08-14T21:48:21.8251577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_native.h 2025-08-14T21:48:21.8253396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_ops.h 2025-08-14T21:48:21.8257328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_softmax.h 2025-08-14T21:48:21.8262011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_softmax_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.8265383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_softmax_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.8269641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_softmax_native.h 2025-08-14T21:48:21.8273936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_softmax_ops.h 2025-08-14T21:48:21.8277060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift.h 2025-08-14T21:48:21.8280749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.8285040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_cpu_dispatch.h 2025-08-14T21:48:21.8288540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_cuda_dispatch.h 2025-08-14T21:48:21.8292618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_meta_dispatch.h 2025-08-14T21:48:21.8296418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_native.h 2025-08-14T21:48:21.8300431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_ops.h 2025-08-14T21:48:21.8304276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm.h 2025-08-14T21:48:21.8307578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_cell.h 2025-08-14T21:48:21.8311484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_cell_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.8314995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_cell_native.h 2025-08-14T21:48:21.8318801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_cell_ops.h 2025-08-14T21:48:21.8323884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.8327532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_mps_backward.h 2025-08-14T21:48:21.8332420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_mps_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.8335209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_mps_backward_native.h 2025-08-14T21:48:21.8339754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_mps_backward_ops.h 2025-08-14T21:48:21.8343758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_native.h 2025-08-14T21:48:21.8347449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_ops.h 2025-08-14T21:48:21.8350864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt.h 2025-08-14T21:48:21.8354556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.8358219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_cpu_dispatch.h 2025-08-14T21:48:21.8362249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_cuda_dispatch.h 2025-08-14T21:48:21.8365683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_meta.h 2025-08-14T21:48:21.8369151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_meta_dispatch.h 2025-08-14T21:48:21.8372766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_native.h 2025-08-14T21:48:21.8376984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_ops.h 2025-08-14T21:48:21.8380780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_solve.h 2025-08-14T21:48:21.8384478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_solve_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.8389118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_solve_native.h 2025-08-14T21:48:21.8392058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_solve_ops.h 2025-08-14T21:48:21.8426683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack.h 2025-08-14T21:48:21.8430439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.8434973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_cpu_dispatch.h 2025-08-14T21:48:21.8439252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_cuda_dispatch.h 2025-08-14T21:48:21.8442671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_meta.h 2025-08-14T21:48:21.8446413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_meta_dispatch.h 2025-08-14T21:48:21.8450402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_native.h 2025-08-14T21:48:21.8454022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_ops.h 2025-08-14T21:48:21.8457765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\margin_ranking_loss.h 2025-08-14T21:48:21.8461604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\margin_ranking_loss_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.8465391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\margin_ranking_loss_native.h 2025-08-14T21:48:21.8469006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\margin_ranking_loss_ops.h 2025-08-14T21:48:21.8472678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill.h 2025-08-14T21:48:21.8476479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.8480262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_cpu_dispatch.h 2025-08-14T21:48:21.8484030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_cuda_dispatch.h 2025-08-14T21:48:21.8488121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_meta_dispatch.h 2025-08-14T21:48:21.8491982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_native.h 2025-08-14T21:48:21.8495749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_ops.h 2025-08-14T21:48:21.8499968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter.h 2025-08-14T21:48:21.8503356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_backward.h 2025-08-14T21:48:21.8507322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.8511203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_backward_native.h 2025-08-14T21:48:21.8515215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_backward_ops.h 2025-08-14T21:48:21.8519404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.8523381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_cpu_dispatch.h 2025-08-14T21:48:21.8527010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_cuda_dispatch.h 2025-08-14T21:48:21.8530672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_meta_dispatch.h 2025-08-14T21:48:21.8534971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_native.h 2025-08-14T21:48:21.8539426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_ops.h 2025-08-14T21:48:21.8542807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select.h 2025-08-14T21:48:21.8546703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_backward.h 2025-08-14T21:48:21.8550726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.8554446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_backward_native.h 2025-08-14T21:48:21.8558288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_backward_ops.h 2025-08-14T21:48:21.8562613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_cpu_dispatch.h 2025-08-14T21:48:21.8566655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_cuda_dispatch.h 2025-08-14T21:48:21.8570515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_native.h 2025-08-14T21:48:21.8574530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_ops.h 2025-08-14T21:48:21.8578323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul.h 2025-08-14T21:48:21.8581977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_backward.h 2025-08-14T21:48:21.8585768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.8589379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_backward_native.h 2025-08-14T21:48:21.8593375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_backward_ops.h 2025-08-14T21:48:21.8597427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.8601400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_native.h 2025-08-14T21:48:21.8605187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_ops.h 2025-08-14T21:48:21.8608967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp.h 2025-08-14T21:48:21.8612688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_backward.h 2025-08-14T21:48:21.8616577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.8620609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_backward_native.h 2025-08-14T21:48:21.8624340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_backward_ops.h 2025-08-14T21:48:21.8628549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.8632389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_native.h 2025-08-14T21:48:21.8636284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_ops.h 2025-08-14T21:48:21.8640653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_H.h 2025-08-14T21:48:21.8644448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_H_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.8648569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_H_native.h 2025-08-14T21:48:21.8652350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_H_ops.h 2025-08-14T21:48:21.8656749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_power.h 2025-08-14T21:48:21.8660314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_power_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.8665128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_power_native.h 2025-08-14T21:48:21.8667957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_power_ops.h 2025-08-14T21:48:21.8671792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max.h 2025-08-14T21:48:21.8675377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum.h 2025-08-14T21:48:21.8679397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.8683411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_cpu_dispatch.h 2025-08-14T21:48:21.8687048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_cuda_dispatch.h 2025-08-14T21:48:21.8690890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_meta.h 2025-08-14T21:48:21.8694766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_meta_dispatch.h 2025-08-14T21:48:21.8699718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_native.h 2025-08-14T21:48:21.8702638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_ops.h 2025-08-14T21:48:21.8706717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.8711580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.8714694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_cpu_dispatch.h 2025-08-14T21:48:21.8722690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_cuda_dispatch.h 2025-08-14T21:48:21.8725333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_meta.h 2025-08-14T21:48:21.8742730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_meta_dispatch.h 2025-08-14T21:48:21.8743311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_native.h 2025-08-14T21:48:21.8743839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_ops.h 2025-08-14T21:48:21.8744352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d.h 2025-08-14T21:48:21.8745523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.8750807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_native.h 2025-08-14T21:48:21.8753444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_ops.h 2025-08-14T21:48:21.8763287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_with_indices.h 2025-08-14T21:48:21.8764068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_with_indices_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.8767039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_with_indices_native.h 2025-08-14T21:48:21.8773288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_with_indices_ops.h 2025-08-14T21:48:21.8775533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d.h 2025-08-14T21:48:21.8779526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_backward.h 2025-08-14T21:48:21.8783514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.8787405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_backward_native.h 2025-08-14T21:48:21.8791558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_backward_ops.h 2025-08-14T21:48:21.8797260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.8799801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_native.h 2025-08-14T21:48:21.8803566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_ops.h 2025-08-14T21:48:21.8808793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices.h 2025-08-14T21:48:21.8811568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward.h 2025-08-14T21:48:21.8815738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.8819956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_cpu_dispatch.h 2025-08-14T21:48:21.8824973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_cuda_dispatch.h 2025-08-14T21:48:21.8828074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_meta.h 2025-08-14T21:48:21.8831954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_meta_dispatch.h 2025-08-14T21:48:21.8835843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_native.h 2025-08-14T21:48:21.8839852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_ops.h 2025-08-14T21:48:21.8844239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.8848086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_cpu_dispatch.h 2025-08-14T21:48:21.8852623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_cuda_dispatch.h 2025-08-14T21:48:21.8856712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_meta.h 2025-08-14T21:48:21.8861256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_meta_dispatch.h 2025-08-14T21:48:21.8865422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_native.h 2025-08-14T21:48:21.8869265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_ops.h 2025-08-14T21:48:21.8873005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d.h 2025-08-14T21:48:21.8876969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.8880832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_native.h 2025-08-14T21:48:21.8884565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_ops.h 2025-08-14T21:48:21.8888562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices.h 2025-08-14T21:48:21.8893317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_backward.h 2025-08-14T21:48:21.8897411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_backward_cpu_dispatch.h 2025-08-14T21:48:21.8901425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_backward_cuda_dispatch.h 2025-08-14T21:48:21.8905363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_backward_native.h 2025-08-14T21:48:21.8909315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_backward_ops.h 2025-08-14T21:48:21.8913408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_cpu_dispatch.h 2025-08-14T21:48:21.8917689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_cuda_dispatch.h 2025-08-14T21:48:21.8921754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_native.h 2025-08-14T21:48:21.8925757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_ops.h 2025-08-14T21:48:21.8929386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool2d.h 2025-08-14T21:48:21.8933054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool2d_cpu_dispatch.h 2025-08-14T21:48:21.8936793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool2d_cuda_dispatch.h 2025-08-14T21:48:21.8940765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool2d_native.h 2025-08-14T21:48:21.8944560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool2d_ops.h 2025-08-14T21:48:21.8948323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool3d.h 2025-08-14T21:48:21.8952070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool3d_cpu_dispatch.h 2025-08-14T21:48:21.8956479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool3d_cuda_dispatch.h 2025-08-14T21:48:21.8960554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool3d_native.h 2025-08-14T21:48:21.8964476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool3d_ops.h 2025-08-14T21:48:21.8968313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean.h 2025-08-14T21:48:21.8972569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.8976281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.8980420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.8984158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_cpu_dispatch.h 2025-08-14T21:48:21.8987912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_cuda_dispatch.h 2025-08-14T21:48:21.8991609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_meta.h 2025-08-14T21:48:21.8995319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_meta_dispatch.h 2025-08-14T21:48:21.8999275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_native.h 2025-08-14T21:48:21.9002944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_ops.h 2025-08-14T21:48:21.9006421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median.h 2025-08-14T21:48:21.9009952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.9013768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.9017485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_cpu_dispatch.h 2025-08-14T21:48:21.9021501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_cuda_dispatch.h 2025-08-14T21:48:21.9025553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_native.h 2025-08-14T21:48:21.9029907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_ops.h 2025-08-14T21:48:21.9033193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\meshgrid.h 2025-08-14T21:48:21.9036916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\meshgrid_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.9040690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\meshgrid_native.h 2025-08-14T21:48:21.9045038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\meshgrid_ops.h 2025-08-14T21:48:21.9048745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mH.h 2025-08-14T21:48:21.9052315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mH_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.9056185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mH_native.h 2025-08-14T21:48:21.9060067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mH_ops.h 2025-08-14T21:48:21.9063755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min.h 2025-08-14T21:48:21.9067883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum.h 2025-08-14T21:48:21.9071751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.9076465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_cpu_dispatch.h 2025-08-14T21:48:21.9079419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_cuda_dispatch.h 2025-08-14T21:48:21.9083516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_meta.h 2025-08-14T21:48:21.9088310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_meta_dispatch.h 2025-08-14T21:48:21.9091482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_native.h 2025-08-14T21:48:21.9095354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_ops.h 2025-08-14T21:48:21.9099995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.9103080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.9106772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_cpu_dispatch.h 2025-08-14T21:48:21.9111142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_cuda_dispatch.h 2025-08-14T21:48:21.9113882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_meta.h 2025-08-14T21:48:21.9117485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_meta_dispatch.h 2025-08-14T21:48:21.9122757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_native.h 2025-08-14T21:48:21.9125426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_ops.h 2025-08-14T21:48:21.9128958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm.h 2025-08-14T21:48:21.9132564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_backward.h 2025-08-14T21:48:21.9136600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.9140502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_backward_cuda_dispatch.h 2025-08-14T21:48:21.9145664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_backward_native.h 2025-08-14T21:48:21.9148572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_backward_ops.h 2025-08-14T21:48:21.9152786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.9157340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_cuda_dispatch.h 2025-08-14T21:48:21.9160675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_native.h 2025-08-14T21:48:21.9164620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_ops.h 2025-08-14T21:48:21.9169289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution.h 2025-08-14T21:48:21.9174643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_add_relu.h 2025-08-14T21:48:21.9177651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_add_relu_cuda_dispatch.h 2025-08-14T21:48:21.9181677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_add_relu_native.h 2025-08-14T21:48:21.9186208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_add_relu_ops.h 2025-08-14T21:48:21.9189591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.9194009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_cuda_dispatch.h 2025-08-14T21:48:21.9198294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_native.h 2025-08-14T21:48:21.9203264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_ops.h 2025-08-14T21:48:21.9206311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_relu.h 2025-08-14T21:48:21.9210561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_relu_cuda_dispatch.h 2025-08-14T21:48:21.9215018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_relu_native.h 2025-08-14T21:48:21.9218738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_relu_ops.h 2025-08-14T21:48:21.9222723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_transpose.h 2025-08-14T21:48:21.9227062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_transpose_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.9232283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_transpose_cuda_dispatch.h 2025-08-14T21:48:21.9234915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_transpose_native.h 2025-08-14T21:48:21.9248893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_transpose_ops.h 2025-08-14T21:48:21.9249194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_depthwise_convolution.h 2025-08-14T21:48:21.9249619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.9252177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_depthwise_convolution_cuda_dispatch.h 2025-08-14T21:48:21.9256229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_depthwise_convolution_native.h 2025-08-14T21:48:21.9260611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_depthwise_convolution_ops.h 2025-08-14T21:48:21.9264675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn.h 2025-08-14T21:48:21.9268735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_backward.h 2025-08-14T21:48:21.9273403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.9278046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_backward_cuda_dispatch.h 2025-08-14T21:48:21.9282081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_backward_native.h 2025-08-14T21:48:21.9286028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_backward_ops.h 2025-08-14T21:48:21.9289854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.9293872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_cuda_dispatch.h 2025-08-14T21:48:21.9297571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_native.h 2025-08-14T21:48:21.9301453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_ops.h 2025-08-14T21:48:21.9305171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish.h 2025-08-14T21:48:21.9308645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward.h 2025-08-14T21:48:21.9312434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.9316127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward_cpu_dispatch.h 2025-08-14T21:48:21.9320329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward_cuda_dispatch.h 2025-08-14T21:48:21.9324595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward_native.h 2025-08-14T21:48:21.9327815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward_ops.h 2025-08-14T21:48:21.9332952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.9335397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_cpu_dispatch.h 2025-08-14T21:48:21.9339383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_cuda_dispatch.h 2025-08-14T21:48:21.9342915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_meta.h 2025-08-14T21:48:21.9346720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_meta_dispatch.h 2025-08-14T21:48:21.9350385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_native.h 2025-08-14T21:48:21.9354320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_ops.h 2025-08-14T21:48:21.9357791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d.h 2025-08-14T21:48:21.9361751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward.h 2025-08-14T21:48:21.9365629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.9369316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_native.h 2025-08-14T21:48:21.9373800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_ops.h 2025-08-14T21:48:21.9377714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_native.h 2025-08-14T21:48:21.9381543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_ops.h 2025-08-14T21:48:21.9385402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_convolution.h 2025-08-14T21:48:21.9389606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_convolution_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.9393304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_convolution_native.h 2025-08-14T21:48:21.9397277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_convolution_ops.h 2025-08-14T21:48:21.9401620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear.h 2025-08-14T21:48:21.9405422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward.h 2025-08-14T21:48:21.9409444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.9413232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_input.h 2025-08-14T21:48:21.9417277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.9421333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_input_native.h 2025-08-14T21:48:21.9425207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_input_ops.h 2025-08-14T21:48:21.9429130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_native.h 2025-08-14T21:48:21.9433069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_ops.h 2025-08-14T21:48:21.9436814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_weights.h 2025-08-14T21:48:21.9469463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.9473235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_weights_native.h 2025-08-14T21:48:21.9477293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_weights_ops.h 2025-08-14T21:48:21.9481169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.9485230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_native.h 2025-08-14T21:48:21.9488707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_ops.h 2025-08-14T21:48:21.9492904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d.h 2025-08-14T21:48:21.9497604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_backward.h 2025-08-14T21:48:21.9501899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.9506137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_backward_native.h 2025-08-14T21:48:21.9509930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_backward_ops.h 2025-08-14T21:48:21.9514725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.9518216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_native.h 2025-08-14T21:48:21.9522385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_ops.h 2025-08-14T21:48:21.9526255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d.h 2025-08-14T21:48:21.9530069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_backward.h 2025-08-14T21:48:21.9534574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.9538528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_backward_native.h 2025-08-14T21:48:21.9542597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_backward_ops.h 2025-08-14T21:48:21.9546624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.9550571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_native.h 2025-08-14T21:48:21.9554437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_ops.h 2025-08-14T21:48:21.9558484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight.h 2025-08-14T21:48:21.9563039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.9567942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_native.h 2025-08-14T21:48:21.9571692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_ops.h 2025-08-14T21:48:21.9575670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight.h 2025-08-14T21:48:21.9579962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.9583503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_native.h 2025-08-14T21:48:21.9587635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_ops.h 2025-08-14T21:48:21.9591971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer.h 2025-08-14T21:48:21.9596851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_backward.h 2025-08-14T21:48:21.9600057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.9604210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_backward_cpu_dispatch.h 2025-08-14T21:48:21.9608519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_backward_native.h 2025-08-14T21:48:21.9612099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_backward_ops.h 2025-08-14T21:48:21.9616252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.9620248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_cpu_dispatch.h 2025-08-14T21:48:21.9624200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_native.h 2025-08-14T21:48:21.9628168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_ops.h 2025-08-14T21:48:21.9631921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm.h 2025-08-14T21:48:21.9635666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.9639773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_cpu_dispatch.h 2025-08-14T21:48:21.9643507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_cuda_dispatch.h 2025-08-14T21:48:21.9647188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_meta.h 2025-08-14T21:48:21.9650805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_meta_dispatch.h 2025-08-14T21:48:21.9654589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_native.h 2025-08-14T21:48:21.9658110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_ops.h 2025-08-14T21:48:21.9661606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode.h 2025-08-14T21:48:21.9666129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.9669075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.9672869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_cpu_dispatch.h 2025-08-14T21:48:21.9676454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_cuda_dispatch.h 2025-08-14T21:48:21.9680346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_native.h 2025-08-14T21:48:21.9684255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_ops.h 2025-08-14T21:48:21.9687605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\moveaxis.h 2025-08-14T21:48:21.9691691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\moveaxis_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.9696209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\moveaxis_native.h 2025-08-14T21:48:21.9701138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\moveaxis_ops.h 2025-08-14T21:48:21.9703968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\movedim.h 2025-08-14T21:48:21.9708185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\movedim_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.9712627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\movedim_native.h 2025-08-14T21:48:21.9715359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\movedim_ops.h 2025-08-14T21:48:21.9719285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_backward.h 2025-08-14T21:48:21.9724349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.9727382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_backward_native.h 2025-08-14T21:48:21.9731284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_backward_ops.h 2025-08-14T21:48:21.9751697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_transpose_backward.h 2025-08-14T21:48:21.9752339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.9752674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_transpose_backward_native.h 2025-08-14T21:48:21.9752992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_transpose_backward_ops.h 2025-08-14T21:48:21.9753776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss.h 2025-08-14T21:48:21.9757673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_backward.h 2025-08-14T21:48:21.9761413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_backward_cpu_dispatch.h 2025-08-14T21:48:21.9765413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_backward_cuda_dispatch.h 2025-08-14T21:48:21.9769869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_backward_native.h 2025-08-14T21:48:21.9773157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_backward_ops.h 2025-08-14T21:48:21.9777674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.9781281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_cpu_dispatch.h 2025-08-14T21:48:21.9785062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_cuda_dispatch.h 2025-08-14T21:48:21.9789057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_meta.h 2025-08-14T21:48:21.9792813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_meta_dispatch.h 2025-08-14T21:48:21.9796565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_native.h 2025-08-14T21:48:21.9800724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_ops.h 2025-08-14T21:48:21.9804939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\msort.h 2025-08-14T21:48:21.9808587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\msort_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.9812174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\msort_native.h 2025-08-14T21:48:21.9815902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\msort_ops.h 2025-08-14T21:48:21.9819591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mT.h 2025-08-14T21:48:21.9823175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mT_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.9826696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mT_native.h 2025-08-14T21:48:21.9839546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mT_ops.h 2025-08-14T21:48:21.9839762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul.h 2025-08-14T21:48:21.9842328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss.h 2025-08-14T21:48:21.9846323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_backward.h 2025-08-14T21:48:21.9850165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_backward_cpu_dispatch.h 2025-08-14T21:48:21.9854400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_backward_cuda_dispatch.h 2025-08-14T21:48:21.9858397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_backward_native.h 2025-08-14T21:48:21.9862290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_backward_ops.h 2025-08-14T21:48:21.9866492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.9870226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_forward.h 2025-08-14T21:48:21.9874236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_forward_cpu_dispatch.h 2025-08-14T21:48:21.9878170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_forward_cuda_dispatch.h 2025-08-14T21:48:21.9882053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_forward_native.h 2025-08-14T21:48:21.9886228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_forward_ops.h 2025-08-14T21:48:21.9891389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_native.h 2025-08-14T21:48:21.9895302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_ops.h 2025-08-14T21:48:21.9898914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multinomial.h 2025-08-14T21:48:21.9902546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multinomial_cpu_dispatch.h 2025-08-14T21:48:21.9906636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multinomial_cuda_dispatch.h 2025-08-14T21:48:21.9910505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multinomial_native.h 2025-08-14T21:48:21.9914515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multinomial_ops.h 2025-08-14T21:48:21.9918328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multiply.h 2025-08-14T21:48:21.9922087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multiply_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:21.9925864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multiply_native.h 2025-08-14T21:48:21.9929567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multiply_ops.h 2025-08-14T21:48:21.9933437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss.h 2025-08-14T21:48:21.9937119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_backward.h 2025-08-14T21:48:21.9942448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_backward_cpu_dispatch.h 2025-08-14T21:48:21.9946618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_backward_cuda_dispatch.h 2025-08-14T21:48:21.9950573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_backward_native.h 2025-08-14T21:48:21.9954572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_backward_ops.h 2025-08-14T21:48:21.9958422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_cpu_dispatch.h 2025-08-14T21:48:21.9962597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_cuda_dispatch.h 2025-08-14T21:48:21.9966441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_native.h 2025-08-14T21:48:21.9970613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_ops.h 2025-08-14T21:48:21.9974617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:21.9978448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:21.9983288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_cpu_dispatch.h 2025-08-14T21:48:21.9987177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_cuda_dispatch.h 2025-08-14T21:48:21.9991925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_meta.h 2025-08-14T21:48:21.9995594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_meta_dispatch.h 2025-08-14T21:48:21.9999414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_native.h 2025-08-14T21:48:22.0003643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_ops.h 2025-08-14T21:48:22.0007005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mv.h 2025-08-14T21:48:22.0010431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma.h 2025-08-14T21:48:22.0015252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.0048320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma_cpu_dispatch.h 2025-08-14T21:48:22.0051922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma_cuda_dispatch.h 2025-08-14T21:48:22.0055820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma_native.h 2025-08-14T21:48:22.0059614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma_ops.h 2025-08-14T21:48:22.0063424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mv_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.0066994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mv_native.h 2025-08-14T21:48:22.0070605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mv_ops.h 2025-08-14T21:48:22.0074064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmean.h 2025-08-14T21:48:22.0077658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmean_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.0081332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmean_native.h 2025-08-14T21:48:22.0085270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmean_ops.h 2025-08-14T21:48:22.0088950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian.h 2025-08-14T21:48:22.0092709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.0096522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.0100291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_cpu_dispatch.h 2025-08-14T21:48:22.0104099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_cuda_dispatch.h 2025-08-14T21:48:22.0107864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_native.h 2025-08-14T21:48:22.0111703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_ops.h 2025-08-14T21:48:22.0115401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanquantile.h 2025-08-14T21:48:22.0119805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanquantile_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.0123429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanquantile_native.h 2025-08-14T21:48:22.0127201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanquantile_ops.h 2025-08-14T21:48:22.0130829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nansum.h 2025-08-14T21:48:22.0134336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nansum_cpu_dispatch.h 2025-08-14T21:48:22.0137979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nansum_cuda_dispatch.h 2025-08-14T21:48:22.0141843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nansum_native.h 2025-08-14T21:48:22.0145523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nansum_ops.h 2025-08-14T21:48:22.0149430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num.h 2025-08-14T21:48:22.0154545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.0158168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num_cpu_dispatch.h 2025-08-14T21:48:22.0162178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num_cuda_dispatch.h 2025-08-14T21:48:22.0166476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num_native.h 2025-08-14T21:48:22.0171456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num_ops.h 2025-08-14T21:48:22.0174317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow.h 2025-08-14T21:48:22.0178279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.0181637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_copy.h 2025-08-14T21:48:22.0185684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.0189425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_copy_cpu_dispatch.h 2025-08-14T21:48:22.0193370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_copy_native.h 2025-08-14T21:48:22.0197565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_copy_ops.h 2025-08-14T21:48:22.0201539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_native.h 2025-08-14T21:48:22.0206225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_ops.h 2025-08-14T21:48:22.0209101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm.h 2025-08-14T21:48:22.0212894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward.h 2025-08-14T21:48:22.0217881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.0220913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward_cpu_dispatch.h 2025-08-14T21:48:22.0225676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward_cuda_dispatch.h 2025-08-14T21:48:22.0229291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward_native.h 2025-08-14T21:48:22.0233075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward_ops.h 2025-08-14T21:48:22.0237028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_cpu_dispatch.h 2025-08-14T21:48:22.0274197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_cuda_dispatch.h 2025-08-14T21:48:22.0274484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_native.h 2025-08-14T21:48:22.0274740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_ops.h 2025-08-14T21:48:22.0275004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_channel_shuffle.h 2025-08-14T21:48:22.0275413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_channel_shuffle_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.0275721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_channel_shuffle_cpu_dispatch.h 2025-08-14T21:48:22.0275999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_channel_shuffle_native.h 2025-08-14T21:48:22.0276269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_channel_shuffle_ops.h 2025-08-14T21:48:22.0276950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout.h 2025-08-14T21:48:22.0281276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward.h 2025-08-14T21:48:22.0286175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.0289530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward_cpu_dispatch.h 2025-08-14T21:48:22.0294291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward_cuda_dispatch.h 2025-08-14T21:48:22.0298182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward_native.h 2025-08-14T21:48:22.0302443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward_ops.h 2025-08-14T21:48:22.0306616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.0310880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_cpu_dispatch.h 2025-08-14T21:48:22.0314459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_cuda_dispatch.h 2025-08-14T21:48:22.0318190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_native.h 2025-08-14T21:48:22.0322082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_ops.h 2025-08-14T21:48:22.0325971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm.h 2025-08-14T21:48:22.0329919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward.h 2025-08-14T21:48:22.0333856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.0337687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward_cpu_dispatch.h 2025-08-14T21:48:22.0341928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward_cuda_dispatch.h 2025-08-14T21:48:22.0345725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward_native.h 2025-08-14T21:48:22.0349577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward_ops.h 2025-08-14T21:48:22.0354558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.0359303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_cpu_dispatch.h 2025-08-14T21:48:22.0363278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_cuda_dispatch.h 2025-08-14T21:48:22.0366943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_native.h 2025-08-14T21:48:22.0370748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_ops.h 2025-08-14T21:48:22.0375058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm.h 2025-08-14T21:48:22.0378441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward.h 2025-08-14T21:48:22.0382468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.0386244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward_cpu_dispatch.h 2025-08-14T21:48:22.0390079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward_cuda_dispatch.h 2025-08-14T21:48:22.0393978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward_native.h 2025-08-14T21:48:22.0398042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward_ops.h 2025-08-14T21:48:22.0402016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.0405850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_cpu_dispatch.h 2025-08-14T21:48:22.0410484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_cuda_dispatch.h 2025-08-14T21:48:22.0414424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_native.h 2025-08-14T21:48:22.0418307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_ops.h 2025-08-14T21:48:22.0422091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_norm.h 2025-08-14T21:48:22.0426296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_norm_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.0429918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_norm_native.h 2025-08-14T21:48:22.0434034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_norm_ops.h 2025-08-14T21:48:22.0438784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne.h 2025-08-14T21:48:22.0442875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg.h 2025-08-14T21:48:22.0446289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\negative.h 2025-08-14T21:48:22.0449876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\negative_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.0453630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\negative_native.h 2025-08-14T21:48:22.0457395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\negative_ops.h 2025-08-14T21:48:22.0461681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.0465088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_cpu_dispatch.h 2025-08-14T21:48:22.0468537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_cuda_dispatch.h 2025-08-14T21:48:22.0471951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_meta.h 2025-08-14T21:48:22.0475207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_meta_dispatch.h 2025-08-14T21:48:22.0478778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_native.h 2025-08-14T21:48:22.0482815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_ops.h 2025-08-14T21:48:22.0486316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nested_to_padded_tensor.h 2025-08-14T21:48:22.0490035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nested_to_padded_tensor_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.0493605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nested_to_padded_tensor_native.h 2025-08-14T21:48:22.0497082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nested_to_padded_tensor_ops.h 2025-08-14T21:48:22.0500529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty.h 2025-08-14T21:48:22.0504072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.0507632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_native.h 2025-08-14T21:48:22.0542167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_ops.h 2025-08-14T21:48:22.0546604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_strided.h 2025-08-14T21:48:22.0549835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.0553827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_strided_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.0558370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_strided_native.h 2025-08-14T21:48:22.0561832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_strided_ops.h 2025-08-14T21:48:22.0565979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_full.h 2025-08-14T21:48:22.0570050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_full_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.0573506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_full_native.h 2025-08-14T21:48:22.0577378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_full_ops.h 2025-08-14T21:48:22.0581468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_ones.h 2025-08-14T21:48:22.0584764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_ones_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.0588598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_ones_native.h 2025-08-14T21:48:22.0593084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_ones_ops.h 2025-08-14T21:48:22.0596837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_zeros.h 2025-08-14T21:48:22.0601082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_zeros_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.3081084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_zeros_native.h 2025-08-14T21:48:22.3084387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_zeros_ops.h 2025-08-14T21:48:22.3088260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter.h 2025-08-14T21:48:22.3092388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.3096329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_cpu_dispatch.h 2025-08-14T21:48:22.3100205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_cuda_dispatch.h 2025-08-14T21:48:22.3104103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_meta.h 2025-08-14T21:48:22.3108059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_meta_dispatch.h 2025-08-14T21:48:22.3112013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_native.h 2025-08-14T21:48:22.3115975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_ops.h 2025-08-14T21:48:22.3120015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.3123964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_cpu_dispatch.h 2025-08-14T21:48:22.3127619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_cuda_dispatch.h 2025-08-14T21:48:22.3131300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_meta.h 2025-08-14T21:48:22.3134857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_meta_dispatch.h 2025-08-14T21:48:22.3138837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_native.h 2025-08-14T21:48:22.3142557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_ops.h 2025-08-14T21:48:22.3146390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss.h 2025-08-14T21:48:22.3150022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d.h 2025-08-14T21:48:22.3154014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_backward.h 2025-08-14T21:48:22.3158475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_backward_cpu_dispatch.h 2025-08-14T21:48:22.3163038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_backward_cuda_dispatch.h 2025-08-14T21:48:22.3167261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_backward_native.h 2025-08-14T21:48:22.3171553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_backward_ops.h 2025-08-14T21:48:22.3175952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.3181491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_forward.h 2025-08-14T21:48:22.3185454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_forward_cpu_dispatch.h 2025-08-14T21:48:22.3191222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_forward_cuda_dispatch.h 2025-08-14T21:48:22.3195937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_forward_native.h 2025-08-14T21:48:22.3200178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_forward_ops.h 2025-08-14T21:48:22.3204000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_native.h 2025-08-14T21:48:22.3207782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_ops.h 2025-08-14T21:48:22.3211546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward.h 2025-08-14T21:48:22.3215481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.3219674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_cpu_dispatch.h 2025-08-14T21:48:22.3223380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_cuda_dispatch.h 2025-08-14T21:48:22.3226968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_meta.h 2025-08-14T21:48:22.3230842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_meta_dispatch.h 2025-08-14T21:48:22.3234559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_native.h 2025-08-14T21:48:22.3238323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_ops.h 2025-08-14T21:48:22.3242565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.3246359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward.h 2025-08-14T21:48:22.3250287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.3253900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_cpu_dispatch.h 2025-08-14T21:48:22.3257680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_cuda_dispatch.h 2025-08-14T21:48:22.3261446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_meta.h 2025-08-14T21:48:22.3265890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_meta_dispatch.h 2025-08-14T21:48:22.3269344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_native.h 2025-08-14T21:48:22.3273085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_ops.h 2025-08-14T21:48:22.3277080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_native.h 2025-08-14T21:48:22.3281007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_nd.h 2025-08-14T21:48:22.3285642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_nd_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.3289444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_nd_native.h 2025-08-14T21:48:22.3293465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_nd_ops.h 2025-08-14T21:48:22.3297240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_ops.h 2025-08-14T21:48:22.3301736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero.h 2025-08-14T21:48:22.3305313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_cpu_dispatch.h 2025-08-14T21:48:22.3309176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_cuda_dispatch.h 2025-08-14T21:48:22.3312782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_native.h 2025-08-14T21:48:22.3316243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_numpy.h 2025-08-14T21:48:22.3319985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_numpy_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.3323684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_numpy_native.h 2025-08-14T21:48:22.3327211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_numpy_ops.h 2025-08-14T21:48:22.3330741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_ops.h 2025-08-14T21:48:22.3334238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_static.h 2025-08-14T21:48:22.3337788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_static_cpu_dispatch.h 2025-08-14T21:48:22.3341414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_static_cuda_dispatch.h 2025-08-14T21:48:22.3344910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_static_native.h 2025-08-14T21:48:22.3348835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_static_ops.h 2025-08-14T21:48:22.3352178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm.h 2025-08-14T21:48:22.3355782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal.h 2025-08-14T21:48:22.3359478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.3363192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_cpu_dispatch.h 2025-08-14T21:48:22.3366855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_cuda_dispatch.h 2025-08-14T21:48:22.3370566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_meta_dispatch.h 2025-08-14T21:48:22.3374339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_native.h 2025-08-14T21:48:22.3378229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_ops.h 2025-08-14T21:48:22.3382221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.3386621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.3390824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.3394991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_cpu_dispatch.h 2025-08-14T21:48:22.3398630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_cuda_dispatch.h 2025-08-14T21:48:22.3402970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_except_dim.h 2025-08-14T21:48:22.3406812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_except_dim_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.3410655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_except_dim_native.h 2025-08-14T21:48:22.3415149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_except_dim_ops.h 2025-08-14T21:48:22.3419070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_meta.h 2025-08-14T21:48:22.3422988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_meta_dispatch.h 2025-08-14T21:48:22.3427078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_native.h 2025-08-14T21:48:22.3431376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_ops.h 2025-08-14T21:48:22.3434955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\not_equal.h 2025-08-14T21:48:22.3438820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\not_equal_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.3442539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\not_equal_native.h 2025-08-14T21:48:22.3446638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\not_equal_ops.h 2025-08-14T21:48:22.3450380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nuclear_norm.h 2025-08-14T21:48:22.3454249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nuclear_norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.3458157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nuclear_norm_native.h 2025-08-14T21:48:22.3462356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nuclear_norm_ops.h 2025-08-14T21:48:22.3466589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\numpy_T.h 2025-08-14T21:48:22.3470712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\numpy_T_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.3492721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\numpy_T_native.h 2025-08-14T21:48:22.3493344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\numpy_T_ops.h 2025-08-14T21:48:22.3493873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones.h 2025-08-14T21:48:22.3494706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.3495376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_like.h 2025-08-14T21:48:22.3496040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_like_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.3500331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_like_native.h 2025-08-14T21:48:22.3504203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_like_ops.h 2025-08-14T21:48:22.3507899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_native.h 2025-08-14T21:48:22.3512246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_ops.h 2025-08-14T21:48:22.3516476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\one_hot.h 2025-08-14T21:48:22.3519946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\one_hot_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.3523485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\one_hot_native.h 2025-08-14T21:48:22.3527377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\one_hot_ops.h 2025-08-14T21:48:22.3531037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\or.h 2025-08-14T21:48:22.3534450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\orgqr.h 2025-08-14T21:48:22.3538011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\orgqr_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.3541704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\orgqr_native.h 2025-08-14T21:48:22.3546432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\orgqr_ops.h 2025-08-14T21:48:22.3550253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ormqr.h 2025-08-14T21:48:22.3553717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ormqr_cpu_dispatch.h 2025-08-14T21:48:22.3557328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ormqr_cuda_dispatch.h 2025-08-14T21:48:22.3561706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ormqr_native.h 2025-08-14T21:48:22.3565397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ormqr_ops.h 2025-08-14T21:48:22.3569223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\or_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.3572800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\or_native.h 2025-08-14T21:48:22.3576595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\or_ops.h 2025-08-14T21:48:22.3580004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\outer.h 2025-08-14T21:48:22.3583525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\outer_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.3587108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\outer_native.h 2025-08-14T21:48:22.3590992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\outer_ops.h 2025-08-14T21:48:22.3594649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\output_nr.h 2025-08-14T21:48:22.3598509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\output_nr_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.3602402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\output_nr_native.h 2025-08-14T21:48:22.3606069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\output_nr_ops.h 2025-08-14T21:48:22.3609857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad.h 2025-08-14T21:48:22.3613615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.3637314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_native.h 2025-08-14T21:48:22.3638025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_ops.h 2025-08-14T21:48:22.3638809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_sequence.h 2025-08-14T21:48:22.3639573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_sequence_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.3640295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_sequence_native.h 2025-08-14T21:48:22.3640904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_sequence_ops.h 2025-08-14T21:48:22.3641501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pairwise_distance.h 2025-08-14T21:48:22.3645733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pairwise_distance_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.3649520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pairwise_distance_native.h 2025-08-14T21:48:22.3653374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pairwise_distance_ops.h 2025-08-14T21:48:22.3657082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pdist.h 2025-08-14T21:48:22.3661355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pdist_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.3665073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pdist_native.h 2025-08-14T21:48:22.3668796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pdist_ops.h 2025-08-14T21:48:22.3672599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute.h 2025-08-14T21:48:22.3676272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.3680729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_copy.h 2025-08-14T21:48:22.3684775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.3688828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.3692808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_copy_native.h 2025-08-14T21:48:22.3696583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_copy_ops.h 2025-08-14T21:48:22.3700313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_native.h 2025-08-14T21:48:22.3704596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_ops.h 2025-08-14T21:48:22.3708331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pinverse.h 2025-08-14T21:48:22.3711912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pinverse_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.3715502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pinverse_native.h 2025-08-14T21:48:22.3719288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pinverse_ops.h 2025-08-14T21:48:22.3723234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pin_memory.h 2025-08-14T21:48:22.3727783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pin_memory_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.3732109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pin_memory_native.h 2025-08-14T21:48:22.3735926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pin_memory_ops.h 2025-08-14T21:48:22.3739854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle.h 2025-08-14T21:48:22.3743981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.3747867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.3751939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle_cpu_dispatch.h 2025-08-14T21:48:22.3755847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle_native.h 2025-08-14T21:48:22.3771602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle_ops.h 2025-08-14T21:48:22.3775900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle.h 2025-08-14T21:48:22.3780250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.3784563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.3788257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle_cpu_dispatch.h 2025-08-14T21:48:22.3792195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle_native.h 2025-08-14T21:48:22.3796996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle_ops.h 2025-08-14T21:48:22.3800917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson.h 2025-08-14T21:48:22.3804811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.3808603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_cpu_dispatch.h 2025-08-14T21:48:22.3812738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_cuda_dispatch.h 2025-08-14T21:48:22.3816600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_native.h 2025-08-14T21:48:22.3820385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_nll_loss.h 2025-08-14T21:48:22.3824630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_nll_loss_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.3828654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_nll_loss_native.h 2025-08-14T21:48:22.3832469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_nll_loss_ops.h 2025-08-14T21:48:22.3836482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_ops.h 2025-08-14T21:48:22.3840378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar.h 2025-08-14T21:48:22.3844439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.3848039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar_cpu_dispatch.h 2025-08-14T21:48:22.3851807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar_cuda_dispatch.h 2025-08-14T21:48:22.3855794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar_native.h 2025-08-14T21:48:22.3859561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar_ops.h 2025-08-14T21:48:22.3863390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma.h 2025-08-14T21:48:22.3867340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.3871153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.3874995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_cpu_dispatch.h 2025-08-14T21:48:22.3878842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_cuda_dispatch.h 2025-08-14T21:48:22.3883152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_meta.h 2025-08-14T21:48:22.3887114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_meta_dispatch.h 2025-08-14T21:48:22.3891356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_native.h 2025-08-14T21:48:22.3895328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_ops.h 2025-08-14T21:48:22.3899270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\positive.h 2025-08-14T21:48:22.3902957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\positive_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.3906680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\positive_native.h 2025-08-14T21:48:22.3910749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\positive_ops.h 2025-08-14T21:48:22.3914540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow.h 2025-08-14T21:48:22.3918740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.3922330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_cpu_dispatch.h 2025-08-14T21:48:22.3926590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_cuda_dispatch.h 2025-08-14T21:48:22.3929887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_meta.h 2025-08-14T21:48:22.3933497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_meta_dispatch.h 2025-08-14T21:48:22.3938694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_native.h 2025-08-14T21:48:22.3941849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_ops.h 2025-08-14T21:48:22.3945360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prelu.h 2025-08-14T21:48:22.3949592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prelu_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.3953068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prelu_native.h 2025-08-14T21:48:22.3957174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prelu_ops.h 2025-08-14T21:48:22.3960810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod.h 2025-08-14T21:48:22.3964670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.3968718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.3972752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.3976480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_cpu_dispatch.h 2025-08-14T21:48:22.3980398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_cuda_dispatch.h 2025-08-14T21:48:22.3984142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_meta.h 2025-08-14T21:48:22.3987818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_meta_dispatch.h 2025-08-14T21:48:22.3991716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_native.h 2025-08-14T21:48:22.3995367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_ops.h 2025-08-14T21:48:22.3999115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\promote_types.h 2025-08-14T21:48:22.4003652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\promote_types_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.4007977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\promote_types_native.h 2025-08-14T21:48:22.4011795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\promote_types_ops.h 2025-08-14T21:48:22.4015682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put.h 2025-08-14T21:48:22.4019784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.4022993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_cpu_dispatch.h 2025-08-14T21:48:22.4026735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_cuda_dispatch.h 2025-08-14T21:48:22.4066816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_meta_dispatch.h 2025-08-14T21:48:22.4070268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_native.h 2025-08-14T21:48:22.4074049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_ops.h 2025-08-14T21:48:22.4077567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qr.h 2025-08-14T21:48:22.4081449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qr_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.4085060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qr_native.h 2025-08-14T21:48:22.4088772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qr_ops.h 2025-08-14T21:48:22.4092265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qscheme.h 2025-08-14T21:48:22.4096017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qscheme_native.h 2025-08-14T21:48:22.4100171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qscheme_ops.h 2025-08-14T21:48:22.4104175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantile.h 2025-08-14T21:48:22.4107855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantile_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.4111529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantile_native.h 2025-08-14T21:48:22.4115642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantile_ops.h 2025-08-14T21:48:22.4119341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_batch_norm.h 2025-08-14T21:48:22.4123115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_batch_norm_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.4127053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_batch_norm_native.h 2025-08-14T21:48:22.4130985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_batch_norm_ops.h 2025-08-14T21:48:22.4134686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_gru_cell.h 2025-08-14T21:48:22.4138591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_gru_cell_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.4142467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_gru_cell_native.h 2025-08-14T21:48:22.4146252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_gru_cell_ops.h 2025-08-14T21:48:22.4150038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_lstm_cell.h 2025-08-14T21:48:22.4154223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_lstm_cell_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.4158087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_lstm_cell_native.h 2025-08-14T21:48:22.4162084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_lstm_cell_ops.h 2025-08-14T21:48:22.4165917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool1d.h 2025-08-14T21:48:22.4170236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool1d_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.4173989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool1d_native.h 2025-08-14T21:48:22.4177870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool1d_ops.h 2025-08-14T21:48:22.4181672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool2d.h 2025-08-14T21:48:22.4185639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool2d_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.4189430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool2d_native.h 2025-08-14T21:48:22.4193276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool2d_ops.h 2025-08-14T21:48:22.4197124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool3d.h 2025-08-14T21:48:22.4202074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool3d_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.4206198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool3d_native.h 2025-08-14T21:48:22.4209939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool3d_ops.h 2025-08-14T21:48:22.4213940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_relu_cell.h 2025-08-14T21:48:22.4217775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.4221813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_relu_cell_native.h 2025-08-14T21:48:22.4225913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_relu_cell_ops.h 2025-08-14T21:48:22.4230580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_tanh_cell.h 2025-08-14T21:48:22.4234688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.4238509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_tanh_cell_native.h 2025-08-14T21:48:22.4242457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_tanh_cell_ops.h 2025-08-14T21:48:22.4246374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel.h 2025-08-14T21:48:22.4250365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.4255003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel_cpu_dispatch.h 2025-08-14T21:48:22.4258813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel_cuda_dispatch.h 2025-08-14T21:48:22.4262603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel_native.h 2025-08-14T21:48:22.4266358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel_ops.h 2025-08-14T21:48:22.4270254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor.h 2025-08-14T21:48:22.4274357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.4278244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_cpu_dispatch.h 2025-08-14T21:48:22.4282259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_cuda_dispatch.h 2025-08-14T21:48:22.4286285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic.h 2025-08-14T21:48:22.4290376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.4294534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic_cpu_dispatch.h 2025-08-14T21:48:22.4299619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic_cuda_dispatch.h 2025-08-14T21:48:22.4304212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic_native.h 2025-08-14T21:48:22.4308082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic_ops.h 2025-08-14T21:48:22.4311875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_native.h 2025-08-14T21:48:22.4316160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_ops.h 2025-08-14T21:48:22.4320200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_axis.h 2025-08-14T21:48:22.4324183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_axis_native.h 2025-08-14T21:48:22.4328104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_axis_ops.h 2025-08-14T21:48:22.4332663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_scales.h 2025-08-14T21:48:22.4336889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_scales_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.4341202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_scales_native.h 2025-08-14T21:48:22.4345270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_scales_ops.h 2025-08-14T21:48:22.4349502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_zero_points.h 2025-08-14T21:48:22.4354508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_zero_points_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.4358476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_zero_points_native.h 2025-08-14T21:48:22.4362604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_zero_points_ops.h 2025-08-14T21:48:22.4366733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_scale.h 2025-08-14T21:48:22.4370448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_scale_native.h 2025-08-14T21:48:22.4374154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_scale_ops.h 2025-08-14T21:48:22.4377947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_zero_point.h 2025-08-14T21:48:22.4381902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_zero_point_native.h 2025-08-14T21:48:22.4385655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_zero_point_ops.h 2025-08-14T21:48:22.4389501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rad2deg.h 2025-08-14T21:48:22.4393957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rad2deg_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.4397591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rad2deg_native.h 2025-08-14T21:48:22.4401303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rad2deg_ops.h 2025-08-14T21:48:22.4405068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand.h 2025-08-14T21:48:22.4408918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint.h 2025-08-14T21:48:22.4413558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.4418536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_like.h 2025-08-14T21:48:22.4422836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_like_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.4426645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_like_native.h 2025-08-14T21:48:22.4430476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_like_ops.h 2025-08-14T21:48:22.4434385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_native.h 2025-08-14T21:48:22.4438113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_ops.h 2025-08-14T21:48:22.4442378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn.h 2025-08-14T21:48:22.4446142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.4449828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.4453644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_like.h 2025-08-14T21:48:22.4457577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_like_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.4461510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_like_compositeimplicitautogradnestedtensor_dispatch.h 2025-08-14T21:48:22.4465497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_like_native.h 2025-08-14T21:48:22.4469273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_like_ops.h 2025-08-14T21:48:22.4473070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_native.h 2025-08-14T21:48:22.4477036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_ops.h 2025-08-14T21:48:22.4481034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random.h 2025-08-14T21:48:22.4484549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.4488228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_cpu_dispatch.h 2025-08-14T21:48:22.4491886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_cuda_dispatch.h 2025-08-14T21:48:22.4495833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_meta_dispatch.h 2025-08-14T21:48:22.4500471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_native.h 2025-08-14T21:48:22.4504404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_ops.h 2025-08-14T21:48:22.4508559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm.h 2025-08-14T21:48:22.4512056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.4515828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm_cpu_dispatch.h 2025-08-14T21:48:22.4520580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm_cuda_dispatch.h 2025-08-14T21:48:22.4524482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm_native.h 2025-08-14T21:48:22.4528789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm_ops.h 2025-08-14T21:48:22.4532858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.4537496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.4540997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_like.h 2025-08-14T21:48:22.4545006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_like_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.4549271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_like_native.h 2025-08-14T21:48:22.4552912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_like_ops.h 2025-08-14T21:48:22.4556876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_native.h 2025-08-14T21:48:22.4560792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_ops.h 2025-08-14T21:48:22.4564159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range.h 2025-08-14T21:48:22.4567899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.4571664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_cpu_dispatch.h 2025-08-14T21:48:22.4575567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_cuda_dispatch.h 2025-08-14T21:48:22.4579431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_meta_dispatch.h 2025-08-14T21:48:22.4583823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_native.h 2025-08-14T21:48:22.4587235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_ops.h 2025-08-14T21:48:22.4591120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ravel.h 2025-08-14T21:48:22.4595775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ravel_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.4598668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ravel_native.h 2025-08-14T21:48:22.4602580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ravel_ops.h 2025-08-14T21:48:22.4606633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\real.h 2025-08-14T21:48:22.4610311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\real_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.4613963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\real_native.h 2025-08-14T21:48:22.4617722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\real_ops.h 2025-08-14T21:48:22.4621403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal.h 2025-08-14T21:48:22.4625895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.4629499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_cpu_dispatch.h 2025-08-14T21:48:22.4633864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_cuda_dispatch.h 2025-08-14T21:48:22.4637867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_meta.h 2025-08-14T21:48:22.4642175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_meta_dispatch.h 2025-08-14T21:48:22.4645846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_native.h 2025-08-14T21:48:22.4649714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_ops.h 2025-08-14T21:48:22.4653619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\record_stream.h 2025-08-14T21:48:22.4657302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\record_stream_cuda_dispatch.h 2025-08-14T21:48:22.4661181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\record_stream_native.h 2025-08-14T21:48:22.4665137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\record_stream_ops.h 2025-08-14T21:48:22.4668908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\refine_names.h 2025-08-14T21:48:22.4673363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\refine_names_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.4677809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\refine_names_native.h 2025-08-14T21:48:22.4681726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\refine_names_ops.h 2025-08-14T21:48:22.4685531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d.h 2025-08-14T21:48:22.4689405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward.h 2025-08-14T21:48:22.4694228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.4697696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_cpu_dispatch.h 2025-08-14T21:48:22.4702357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_cuda_dispatch.h 2025-08-14T21:48:22.4706731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_meta.h 2025-08-14T21:48:22.4710673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_meta_dispatch.h 2025-08-14T21:48:22.4714569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_native.h 2025-08-14T21:48:22.4719106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_ops.h 2025-08-14T21:48:22.4723482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.4727603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_cpu_dispatch.h 2025-08-14T21:48:22.4731685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_cuda_dispatch.h 2025-08-14T21:48:22.4735955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_meta.h 2025-08-14T21:48:22.4740844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_meta_dispatch.h 2025-08-14T21:48:22.4744426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_native.h 2025-08-14T21:48:22.4748514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_ops.h 2025-08-14T21:48:22.4752703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d.h 2025-08-14T21:48:22.4757281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_backward.h 2025-08-14T21:48:22.4761423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_backward_cpu_dispatch.h 2025-08-14T21:48:22.4765360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_backward_cuda_dispatch.h 2025-08-14T21:48:22.4769291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_backward_native.h 2025-08-14T21:48:22.4773186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_backward_ops.h 2025-08-14T21:48:22.4777265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_cpu_dispatch.h 2025-08-14T21:48:22.4782475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_cuda_dispatch.h 2025-08-14T21:48:22.4785166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_native.h 2025-08-14T21:48:22.4789351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_ops.h 2025-08-14T21:48:22.4793262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d.h 2025-08-14T21:48:22.4797193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward.h 2025-08-14T21:48:22.4801469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.4805550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_cpu_dispatch.h 2025-08-14T21:48:22.4809497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_cuda_dispatch.h 2025-08-14T21:48:22.4813417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_meta.h 2025-08-14T21:48:22.4817448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_meta_dispatch.h 2025-08-14T21:48:22.4821843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_native.h 2025-08-14T21:48:22.4825757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_ops.h 2025-08-14T21:48:22.4830123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.4833987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_cpu_dispatch.h 2025-08-14T21:48:22.4838221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_cuda_dispatch.h 2025-08-14T21:48:22.4842324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_meta.h 2025-08-14T21:48:22.4846217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_meta_dispatch.h 2025-08-14T21:48:22.4850120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_native.h 2025-08-14T21:48:22.4855619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_ops.h 2025-08-14T21:48:22.4859531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu.h 2025-08-14T21:48:22.4863121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu6.h 2025-08-14T21:48:22.4866836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu6_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.4870557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu6_native.h 2025-08-14T21:48:22.4874360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu6_ops.h 2025-08-14T21:48:22.4878412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.4882393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_cpu_dispatch.h 2025-08-14T21:48:22.4886246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_cuda_dispatch.h 2025-08-14T21:48:22.4890379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_meta_dispatch.h 2025-08-14T21:48:22.4893987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_native.h 2025-08-14T21:48:22.4897640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_ops.h 2025-08-14T21:48:22.4901038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder.h 2025-08-14T21:48:22.4905004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.4909446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.4941572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_cpu_dispatch.h 2025-08-14T21:48:22.4945083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_cuda_dispatch.h 2025-08-14T21:48:22.4948889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_meta.h 2025-08-14T21:48:22.4952652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_meta_dispatch.h 2025-08-14T21:48:22.4956536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_native.h 2025-08-14T21:48:22.4960381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_ops.h 2025-08-14T21:48:22.4964178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rename.h 2025-08-14T21:48:22.4967919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rename_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.4971537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rename_native.h 2025-08-14T21:48:22.4975606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rename_ops.h 2025-08-14T21:48:22.4979446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm.h 2025-08-14T21:48:22.4983067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.4987257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_cpu_dispatch.h 2025-08-14T21:48:22.4990906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_cuda_dispatch.h 2025-08-14T21:48:22.4994602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_meta.h 2025-08-14T21:48:22.4998656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_meta_dispatch.h 2025-08-14T21:48:22.5002426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_native.h 2025-08-14T21:48:22.5006078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_ops.h 2025-08-14T21:48:22.5009775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat.h 2025-08-14T21:48:22.5013417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.5017274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave.h 2025-08-14T21:48:22.5021124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.5025526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.5029389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_cpu_dispatch.h 2025-08-14T21:48:22.5033226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_cuda_dispatch.h 2025-08-14T21:48:22.5037053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_native.h 2025-08-14T21:48:22.5040908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_ops.h 2025-08-14T21:48:22.5044908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_native.h 2025-08-14T21:48:22.5048788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_ops.h 2025-08-14T21:48:22.5053660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d.h 2025-08-14T21:48:22.5057466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward.h 2025-08-14T21:48:22.5061568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.5066457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_cpu_dispatch.h 2025-08-14T21:48:22.5070922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_cuda_dispatch.h 2025-08-14T21:48:22.5075245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_meta.h 2025-08-14T21:48:22.5080650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_meta_dispatch.h 2025-08-14T21:48:22.5084710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_native.h 2025-08-14T21:48:22.5088826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_ops.h 2025-08-14T21:48:22.5093065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.5097259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_cpu_dispatch.h 2025-08-14T21:48:22.5101113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_cuda_dispatch.h 2025-08-14T21:48:22.5105015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_meta.h 2025-08-14T21:48:22.5144457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_meta_dispatch.h 2025-08-14T21:48:22.5148852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_native.h 2025-08-14T21:48:22.5152902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_ops.h 2025-08-14T21:48:22.5157248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d.h 2025-08-14T21:48:22.5161730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_backward.h 2025-08-14T21:48:22.5165831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_backward_cpu_dispatch.h 2025-08-14T21:48:22.5169810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_backward_cuda_dispatch.h 2025-08-14T21:48:22.5173875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_backward_native.h 2025-08-14T21:48:22.5178179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_backward_ops.h 2025-08-14T21:48:22.5182436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.5186567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_cpu_dispatch.h 2025-08-14T21:48:22.5190578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_cuda_dispatch.h 2025-08-14T21:48:22.5194623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_meta.h 2025-08-14T21:48:22.5198728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_meta_dispatch.h 2025-08-14T21:48:22.5202866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_native.h 2025-08-14T21:48:22.5206905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_ops.h 2025-08-14T21:48:22.5211209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d.h 2025-08-14T21:48:22.5215343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_backward.h 2025-08-14T21:48:22.5220041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_backward_cpu_dispatch.h 2025-08-14T21:48:22.5223997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_backward_cuda_dispatch.h 2025-08-14T21:48:22.5228382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_backward_native.h 2025-08-14T21:48:22.5232411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_backward_ops.h 2025-08-14T21:48:22.5236798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.5241353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_cpu_dispatch.h 2025-08-14T21:48:22.5245656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_cuda_dispatch.h 2025-08-14T21:48:22.5250235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_meta.h 2025-08-14T21:48:22.5254667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_meta_dispatch.h 2025-08-14T21:48:22.5258778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_native.h 2025-08-14T21:48:22.5264296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_ops.h 2025-08-14T21:48:22.5268521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\requires_grad.h 2025-08-14T21:48:22.5272907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\requires_grad_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.5277490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\requires_grad_native.h 2025-08-14T21:48:22.5281478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\requires_grad_ops.h 2025-08-14T21:48:22.5285817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape.h 2025-08-14T21:48:22.5289286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_as.h 2025-08-14T21:48:22.5293576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_as_compositeimplicitautogradnestedtensor_dispatch.h 2025-08-14T21:48:22.5297693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_as_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.5301503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_as_native.h 2025-08-14T21:48:22.5305410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_as_ops.h 2025-08-14T21:48:22.5309652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_compositeimplicitautogradnestedtensor_dispatch.h 2025-08-14T21:48:22.5313874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.5318019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_native.h 2025-08-14T21:48:22.5321903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_ops.h 2025-08-14T21:48:22.5326591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize.h 2025-08-14T21:48:22.5330457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as.h 2025-08-14T21:48:22.5334344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.5337946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_native.h 2025-08-14T21:48:22.5341898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_ops.h 2025-08-14T21:48:22.5345940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_sparse.h 2025-08-14T21:48:22.5350239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_sparse_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.5354091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_sparse_meta_dispatch.h 2025-08-14T21:48:22.5358199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_sparse_native.h 2025-08-14T21:48:22.5362411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_sparse_ops.h 2025-08-14T21:48:22.5366468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.5370279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_cpu_dispatch.h 2025-08-14T21:48:22.5374345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_cuda_dispatch.h 2025-08-14T21:48:22.5378637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_meta_dispatch.h 2025-08-14T21:48:22.5382550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_native.h 2025-08-14T21:48:22.5386607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_ops.h 2025-08-14T21:48:22.5390503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_conj.h 2025-08-14T21:48:22.5394376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_conj_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.5398280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_conj_native.h 2025-08-14T21:48:22.5402159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_conj_ops.h 2025-08-14T21:48:22.5406100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_neg.h 2025-08-14T21:48:22.5410617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_neg_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.5414619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_neg_native.h 2025-08-14T21:48:22.5418726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_neg_ops.h 2025-08-14T21:48:22.5422864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\result_type.h 2025-08-14T21:48:22.5426816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\result_type_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.5430908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\result_type_native.h 2025-08-14T21:48:22.5434792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\result_type_ops.h 2025-08-14T21:48:22.5439264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retains_grad.h 2025-08-14T21:48:22.5443538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retains_grad_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.5447191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retains_grad_native.h 2025-08-14T21:48:22.5450870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retains_grad_ops.h 2025-08-14T21:48:22.5454820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retain_grad.h 2025-08-14T21:48:22.5458814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retain_grad_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.5462584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retain_grad_native.h 2025-08-14T21:48:22.5466484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retain_grad_ops.h 2025-08-14T21:48:22.5470229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rms_norm.h 2025-08-14T21:48:22.5474094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rms_norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.5477729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rms_norm_native.h 2025-08-14T21:48:22.5481433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rms_norm_ops.h 2025-08-14T21:48:22.5484998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu.h 2025-08-14T21:48:22.5488372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_cell.h 2025-08-14T21:48:22.5492199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_cell_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.5496253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_cell_native.h 2025-08-14T21:48:22.5499819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_cell_ops.h 2025-08-14T21:48:22.5504157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.5507963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_native.h 2025-08-14T21:48:22.5511818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_ops.h 2025-08-14T21:48:22.5515538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh.h 2025-08-14T21:48:22.5519219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_cell.h 2025-08-14T21:48:22.5523407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_cell_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.5527270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_cell_native.h 2025-08-14T21:48:22.5531555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_cell_ops.h 2025-08-14T21:48:22.5535970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.5539410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_native.h 2025-08-14T21:48:22.5543193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_ops.h 2025-08-14T21:48:22.5547457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll.h 2025-08-14T21:48:22.5551348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.5555971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll_cpu_dispatch.h 2025-08-14T21:48:22.5560014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll_cuda_dispatch.h 2025-08-14T21:48:22.5563917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll_native.h 2025-08-14T21:48:22.5568237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll_ops.h 2025-08-14T21:48:22.5571965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rot90.h 2025-08-14T21:48:22.5575565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rot90_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.5579889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rot90_native.h 2025-08-14T21:48:22.5583788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rot90_ops.h 2025-08-14T21:48:22.5588143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round.h 2025-08-14T21:48:22.5592378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.5595968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_cpu_dispatch.h 2025-08-14T21:48:22.5599776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_cuda_dispatch.h 2025-08-14T21:48:22.5603610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_meta.h 2025-08-14T21:48:22.5607902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_meta_dispatch.h 2025-08-14T21:48:22.5611654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_native.h 2025-08-14T21:48:22.5616153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_ops.h 2025-08-14T21:48:22.5619933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices.h 2025-08-14T21:48:22.5623745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.5628269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_copy.h 2025-08-14T21:48:22.5632672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.5636863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.5640797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_copy_native.h 2025-08-14T21:48:22.5644579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_copy_ops.h 2025-08-14T21:48:22.5648470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_native.h 2025-08-14T21:48:22.5652255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_ops.h 2025-08-14T21:48:22.5655966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_stack.h 2025-08-14T21:48:22.5660253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_stack_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.5664324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_stack_native.h 2025-08-14T21:48:22.5668059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_stack_ops.h 2025-08-14T21:48:22.5672595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu.h 2025-08-14T21:48:22.5676809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.5680720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_native.h 2025-08-14T21:48:22.5684459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_ops.h 2025-08-14T21:48:22.5688174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise.h 2025-08-14T21:48:22.5692070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_backward.h 2025-08-14T21:48:22.5696278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.5700761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_backward_native.h 2025-08-14T21:48:22.5704602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_backward_ops.h 2025-08-14T21:48:22.5708576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.5712341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_cpu_dispatch.h 2025-08-14T21:48:22.5716874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_cuda_dispatch.h 2025-08-14T21:48:22.5721280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_meta_dispatch.h 2025-08-14T21:48:22.5725420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_native.h 2025-08-14T21:48:22.5729778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_ops.h 2025-08-14T21:48:22.5733703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift.h 2025-08-14T21:48:22.5737561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.5741678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_cpu_dispatch.h 2025-08-14T21:48:22.5744974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_cuda_dispatch.h 2025-08-14T21:48:22.5750135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_meta_dispatch.h 2025-08-14T21:48:22.5754704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_native.h 2025-08-14T21:48:22.5758446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_ops.h 2025-08-14T21:48:22.5762335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt.h 2025-08-14T21:48:22.5766384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.5770818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_cpu_dispatch.h 2025-08-14T21:48:22.5775886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_cuda_dispatch.h 2025-08-14T21:48:22.5779725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_meta.h 2025-08-14T21:48:22.5783995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_meta_dispatch.h 2025-08-14T21:48:22.5788476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_native.h 2025-08-14T21:48:22.5792800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_ops.h 2025-08-14T21:48:22.5797580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub.h 2025-08-14T21:48:22.5801694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.5805768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub_cpu_dispatch.h 2025-08-14T21:48:22.5809768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub_cuda_dispatch.h 2025-08-14T21:48:22.5813749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub_native.h 2025-08-14T21:48:22.5818202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub_ops.h 2025-08-14T21:48:22.5822108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scalar_tensor.h 2025-08-14T21:48:22.5826875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scalar_tensor_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.5830895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scalar_tensor_native.h 2025-08-14T21:48:22.5834860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scalar_tensor_ops.h 2025-08-14T21:48:22.5838706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scaled_dot_product_attention.h 2025-08-14T21:48:22.5842946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scaled_dot_product_attention_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.5846862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scaled_dot_product_attention_native.h 2025-08-14T21:48:22.5850793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scaled_dot_product_attention_ops.h 2025-08-14T21:48:22.5854622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter.h 2025-08-14T21:48:22.5858392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add.h 2025-08-14T21:48:22.5862339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.5865981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.5869703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_cpu_dispatch.h 2025-08-14T21:48:22.5873849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_cuda_dispatch.h 2025-08-14T21:48:22.5877705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_meta.h 2025-08-14T21:48:22.5882203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_meta_dispatch.h 2025-08-14T21:48:22.5886363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_native.h 2025-08-14T21:48:22.5890408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_ops.h 2025-08-14T21:48:22.5894932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.5898964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.5903157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_cpu_dispatch.h 2025-08-14T21:48:22.5906932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_cuda_dispatch.h 2025-08-14T21:48:22.5911321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_meta.h 2025-08-14T21:48:22.5915230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_meta_dispatch.h 2025-08-14T21:48:22.5919105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_native.h 2025-08-14T21:48:22.5923039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_ops.h 2025-08-14T21:48:22.5926864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce.h 2025-08-14T21:48:22.5931179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.5935015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_cpu_dispatch.h 2025-08-14T21:48:22.5938850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_cuda_dispatch.h 2025-08-14T21:48:22.5942839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_meta.h 2025-08-14T21:48:22.5946688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_meta_dispatch.h 2025-08-14T21:48:22.5950383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_native.h 2025-08-14T21:48:22.5954395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_ops.h 2025-08-14T21:48:22.5958384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\searchsorted.h 2025-08-14T21:48:22.5962251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\searchsorted_cpu_dispatch.h 2025-08-14T21:48:22.5966000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\searchsorted_cuda_dispatch.h 2025-08-14T21:48:22.5969867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\searchsorted_native.h 2025-08-14T21:48:22.5974205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\searchsorted_ops.h 2025-08-14T21:48:22.5977536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce.h 2025-08-14T21:48:22.5981396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.5985569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce_cpu_dispatch.h 2025-08-14T21:48:22.5990026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce_cuda_dispatch.h 2025-08-14T21:48:22.5993913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce_native.h 2025-08-14T21:48:22.5997692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce_ops.h 2025-08-14T21:48:22.6001820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select.h 2025-08-14T21:48:22.6005231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_backward.h 2025-08-14T21:48:22.6009133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.6013134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.6016962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_backward_native.h 2025-08-14T21:48:22.6020898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_backward_ops.h 2025-08-14T21:48:22.6024909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.6028790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.6032853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_copy.h 2025-08-14T21:48:22.6037445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.6041466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.6045457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_copy_native.h 2025-08-14T21:48:22.6049461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_copy_ops.h 2025-08-14T21:48:22.6053021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_native.h 2025-08-14T21:48:22.6057071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_ops.h 2025-08-14T21:48:22.6060660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_scatter.h 2025-08-14T21:48:22.6064871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_scatter_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.6068744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_scatter_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.6072464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_scatter_native.h 2025-08-14T21:48:22.6076317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_scatter_ops.h 2025-08-14T21:48:22.6080524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\selu.h 2025-08-14T21:48:22.6084330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\selu_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.6088267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\selu_native.h 2025-08-14T21:48:22.6092707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\selu_ops.h 2025-08-14T21:48:22.6096151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set.h 2025-08-14T21:48:22.6099991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.6103789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.6108323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_cpu_dispatch.h 2025-08-14T21:48:22.6111874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_cuda_dispatch.h 2025-08-14T21:48:22.6115582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_data.h 2025-08-14T21:48:22.6119184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_data_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.6123033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_data_native.h 2025-08-14T21:48:22.6127148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_data_ops.h 2025-08-14T21:48:22.6130740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_meta_dispatch.h 2025-08-14T21:48:22.6134671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_native.h 2025-08-14T21:48:22.6138482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_ops.h 2025-08-14T21:48:22.6142027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn.h 2025-08-14T21:48:22.6146049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.6150912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_cpu_dispatch.h 2025-08-14T21:48:22.6155258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_cuda_dispatch.h 2025-08-14T21:48:22.6158664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_meta.h 2025-08-14T21:48:22.6162423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_meta_dispatch.h 2025-08-14T21:48:22.6166243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_native.h 2025-08-14T21:48:22.6170593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_ops.h 2025-08-14T21:48:22.6174494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid.h 2025-08-14T21:48:22.6564434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward.h 2025-08-14T21:48:22.6568642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.6572707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_cpu_dispatch.h 2025-08-14T21:48:22.6576387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_cuda_dispatch.h 2025-08-14T21:48:22.6580312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_meta.h 2025-08-14T21:48:22.6584133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_meta_dispatch.h 2025-08-14T21:48:22.6588004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_native.h 2025-08-14T21:48:22.6593259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_ops.h 2025-08-14T21:48:22.6597731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.6602494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_cpu_dispatch.h 2025-08-14T21:48:22.6607176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_cuda_dispatch.h 2025-08-14T21:48:22.6610521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_meta.h 2025-08-14T21:48:22.6614730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_meta_dispatch.h 2025-08-14T21:48:22.6620413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_native.h 2025-08-14T21:48:22.6624482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_ops.h 2025-08-14T21:48:22.6628427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign.h 2025-08-14T21:48:22.6632198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit.h 2025-08-14T21:48:22.6635795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.6639480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_cpu_dispatch.h 2025-08-14T21:48:22.6643461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_cuda_dispatch.h 2025-08-14T21:48:22.6647377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_meta.h 2025-08-14T21:48:22.6651217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_meta_dispatch.h 2025-08-14T21:48:22.6655288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_native.h 2025-08-14T21:48:22.6659324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_ops.h 2025-08-14T21:48:22.6663693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.6667372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_cpu_dispatch.h 2025-08-14T21:48:22.6671868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_cuda_dispatch.h 2025-08-14T21:48:22.6675886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_meta.h 2025-08-14T21:48:22.6679910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_meta_dispatch.h 2025-08-14T21:48:22.6684282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_native.h 2025-08-14T21:48:22.6688167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_ops.h 2025-08-14T21:48:22.6691672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu.h 2025-08-14T21:48:22.6695368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward.h 2025-08-14T21:48:22.6699794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.6703797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.6708032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_cpu_dispatch.h 2025-08-14T21:48:22.6712469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_cuda_dispatch.h 2025-08-14T21:48:22.6716488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_meta.h 2025-08-14T21:48:22.6720600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_meta_dispatch.h 2025-08-14T21:48:22.6724661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_native.h 2025-08-14T21:48:22.6729141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_ops.h 2025-08-14T21:48:22.6733150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.6737197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_cpu_dispatch.h 2025-08-14T21:48:22.6741518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_cuda_dispatch.h 2025-08-14T21:48:22.6745124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_meta.h 2025-08-14T21:48:22.6749308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_meta_dispatch.h 2025-08-14T21:48:22.6753197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_native.h 2025-08-14T21:48:22.6756827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_ops.h 2025-08-14T21:48:22.6761490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin.h 2025-08-14T21:48:22.6765589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc.h 2025-08-14T21:48:22.6768486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.6773833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_cpu_dispatch.h 2025-08-14T21:48:22.6778005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_cuda_dispatch.h 2025-08-14T21:48:22.6782578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_meta.h 2025-08-14T21:48:22.6787310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_meta_dispatch.h 2025-08-14T21:48:22.6792157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_native.h 2025-08-14T21:48:22.6796166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_ops.h 2025-08-14T21:48:22.6800552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh.h 2025-08-14T21:48:22.6804853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.6808979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_cpu_dispatch.h 2025-08-14T21:48:22.6813013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_cuda_dispatch.h 2025-08-14T21:48:22.6817789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_meta.h 2025-08-14T21:48:22.6821685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_meta_dispatch.h 2025-08-14T21:48:22.6825381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_native.h 2025-08-14T21:48:22.6829891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_ops.h 2025-08-14T21:48:22.6833631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.6837138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_cpu_dispatch.h 2025-08-14T21:48:22.6841318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_cuda_dispatch.h 2025-08-14T21:48:22.6844777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_meta.h 2025-08-14T21:48:22.6848363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_meta_dispatch.h 2025-08-14T21:48:22.6852005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_native.h 2025-08-14T21:48:22.6856135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_ops.h 2025-08-14T21:48:22.6859702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\size.h 2025-08-14T21:48:22.6863657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\size_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.6866893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\size_native.h 2025-08-14T21:48:22.6870677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\size_ops.h 2025-08-14T21:48:22.6874346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice.h 2025-08-14T21:48:22.6878093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_backward.h 2025-08-14T21:48:22.6882099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.6886433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_backward_native.h 2025-08-14T21:48:22.6890419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_backward_ops.h 2025-08-14T21:48:22.6894910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.6899369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_copy.h 2025-08-14T21:48:22.6903703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.6907762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.6911780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_copy_native.h 2025-08-14T21:48:22.6915499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_copy_ops.h 2025-08-14T21:48:22.6919586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_inverse.h 2025-08-14T21:48:22.6923875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_inverse_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.6927562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_inverse_native.h 2025-08-14T21:48:22.6931919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_inverse_ops.h 2025-08-14T21:48:22.6935639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_native.h 2025-08-14T21:48:22.6940040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_ops.h 2025-08-14T21:48:22.6943919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_scatter.h 2025-08-14T21:48:22.6948387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.6952325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_scatter_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.6956351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_scatter_native.h 2025-08-14T21:48:22.6960682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_scatter_ops.h 2025-08-14T21:48:22.6964225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slogdet.h 2025-08-14T21:48:22.6967981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slogdet_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.6971600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slogdet_native.h 2025-08-14T21:48:22.6975262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slogdet_ops.h 2025-08-14T21:48:22.6979782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d.h 2025-08-14T21:48:22.6983446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.6987669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_forward.h 2025-08-14T21:48:22.6991393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_forward_cpu_dispatch.h 2025-08-14T21:48:22.6995277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_forward_native.h 2025-08-14T21:48:22.6999357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_forward_ops.h 2025-08-14T21:48:22.7003114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_native.h 2025-08-14T21:48:22.7006913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_ops.h 2025-08-14T21:48:22.7011463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d.h 2025-08-14T21:48:22.7015738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.7019582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d_cpu_dispatch.h 2025-08-14T21:48:22.7023405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d_cuda_dispatch.h 2025-08-14T21:48:22.7027579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d_native.h 2025-08-14T21:48:22.7031343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d_ops.h 2025-08-14T21:48:22.7035160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d.h 2025-08-14T21:48:22.7039443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.7043897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d_cpu_dispatch.h 2025-08-14T21:48:22.7047687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d_cuda_dispatch.h 2025-08-14T21:48:22.7052020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d_native.h 2025-08-14T21:48:22.7055720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d_ops.h 2025-08-14T21:48:22.7059508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d.h 2025-08-14T21:48:22.7063986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.7068260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_cpu_dispatch.h 2025-08-14T21:48:22.7072772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_cuda_dispatch.h 2025-08-14T21:48:22.7076327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_meta.h 2025-08-14T21:48:22.7080510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_meta_dispatch.h 2025-08-14T21:48:22.7084528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_native.h 2025-08-14T21:48:22.7088724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_ops.h 2025-08-14T21:48:22.7092699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose3d.h 2025-08-14T21:48:22.7097250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose3d_cpu_dispatch.h 2025-08-14T21:48:22.7101371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose3d_cuda_dispatch.h 2025-08-14T21:48:22.7105548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose3d_native.h 2025-08-14T21:48:22.7109780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose3d_ops.h 2025-08-14T21:48:22.7113808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smm.h 2025-08-14T21:48:22.7117684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smm_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.7121651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smm_native.h 2025-08-14T21:48:22.7125332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smm_ops.h 2025-08-14T21:48:22.7129226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss.h 2025-08-14T21:48:22.7133402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward.h 2025-08-14T21:48:22.7137378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.7141422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward_cpu_dispatch.h 2025-08-14T21:48:22.7146153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward_cuda_dispatch.h 2025-08-14T21:48:22.7149993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward_native.h 2025-08-14T21:48:22.7154098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward_ops.h 2025-08-14T21:48:22.7158618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.7163087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_cpu_dispatch.h 2025-08-14T21:48:22.7167277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_cuda_dispatch.h 2025-08-14T21:48:22.7171460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_meta.h 2025-08-14T21:48:22.7175763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_meta_dispatch.h 2025-08-14T21:48:22.7179175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_native.h 2025-08-14T21:48:22.7183448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_ops.h 2025-08-14T21:48:22.7187734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softmax.h 2025-08-14T21:48:22.7191281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softmax_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.7195879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softmax_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.7199919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softmax_native.h 2025-08-14T21:48:22.7203649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softmax_ops.h 2025-08-14T21:48:22.7207353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus.h 2025-08-14T21:48:22.7210851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward.h 2025-08-14T21:48:22.7214866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.7218576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_cpu_dispatch.h 2025-08-14T21:48:22.7222961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_cuda_dispatch.h 2025-08-14T21:48:22.7227263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_meta.h 2025-08-14T21:48:22.7231240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_meta_dispatch.h 2025-08-14T21:48:22.7235094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_native.h 2025-08-14T21:48:22.7239188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_ops.h 2025-08-14T21:48:22.7243476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.7247602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_cpu_dispatch.h 2025-08-14T21:48:22.7252322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_cuda_dispatch.h 2025-08-14T21:48:22.7256298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_meta.h 2025-08-14T21:48:22.7260157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_meta_dispatch.h 2025-08-14T21:48:22.7264236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_native.h 2025-08-14T21:48:22.7268184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_ops.h 2025-08-14T21:48:22.7271803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink.h 2025-08-14T21:48:22.7275642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward.h 2025-08-14T21:48:22.7280465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.7284886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_cpu_dispatch.h 2025-08-14T21:48:22.7289243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_cuda_dispatch.h 2025-08-14T21:48:22.7293387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_meta.h 2025-08-14T21:48:22.7297669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_meta_dispatch.h 2025-08-14T21:48:22.7302070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_native.h 2025-08-14T21:48:22.7306317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_ops.h 2025-08-14T21:48:22.7310546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.7314571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_cpu_dispatch.h 2025-08-14T21:48:22.7318523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_cuda_dispatch.h 2025-08-14T21:48:22.7322460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_meta.h 2025-08-14T21:48:22.7326446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_meta_dispatch.h 2025-08-14T21:48:22.7330467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_native.h 2025-08-14T21:48:22.7334231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_ops.h 2025-08-14T21:48:22.7338228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss.h 2025-08-14T21:48:22.7341979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_backward.h 2025-08-14T21:48:22.7345918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.7349746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_backward_native.h 2025-08-14T21:48:22.7354044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_backward_ops.h 2025-08-14T21:48:22.7359357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.7363307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_native.h 2025-08-14T21:48:22.7367209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_ops.h 2025-08-14T21:48:22.7370888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort.h 2025-08-14T21:48:22.7374543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.7378414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.7384304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.7389637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_cpu_dispatch.h 2025-08-14T21:48:22.7394069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_cuda_dispatch.h 2025-08-14T21:48:22.7399168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_meta.h 2025-08-14T21:48:22.7403877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_meta_dispatch.h 2025-08-14T21:48:22.7409426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_native.h 2025-08-14T21:48:22.7412983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_ops.h 2025-08-14T21:48:22.7417588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsc_tensor.h 2025-08-14T21:48:22.7421917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsc_tensor_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.7426222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsc_tensor_native.h 2025-08-14T21:48:22.7430665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsc_tensor_ops.h 2025-08-14T21:48:22.7435353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsr_tensor.h 2025-08-14T21:48:22.7440250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsr_tensor_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.7445612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsr_tensor_native.h 2025-08-14T21:48:22.7450117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsr_tensor_ops.h 2025-08-14T21:48:22.7455436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_compressed_tensor.h 2025-08-14T21:48:22.7460253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_compressed_tensor_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.7463996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_compressed_tensor_native.h 2025-08-14T21:48:22.7467771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_compressed_tensor_ops.h 2025-08-14T21:48:22.7471585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_coo_tensor.h 2025-08-14T21:48:22.7476018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_coo_tensor_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.7480429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_coo_tensor_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.7484203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_coo_tensor_native.h 2025-08-14T21:48:22.7487980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_coo_tensor_ops.h 2025-08-14T21:48:22.7491651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csc_tensor.h 2025-08-14T21:48:22.7495642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csc_tensor_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.7499355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csc_tensor_native.h 2025-08-14T21:48:22.7503412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csc_tensor_ops.h 2025-08-14T21:48:22.7507189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csr_tensor.h 2025-08-14T21:48:22.7511221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csr_tensor_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.7515075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csr_tensor_native.h 2025-08-14T21:48:22.7519103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csr_tensor_ops.h 2025-08-14T21:48:22.7522924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_dim.h 2025-08-14T21:48:22.7526941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_dim_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.7531130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_dim_native.h 2025-08-14T21:48:22.7534897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_dim_ops.h 2025-08-14T21:48:22.7538636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_mask.h 2025-08-14T21:48:22.7542833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_mask_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.7546744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_mask_native.h 2025-08-14T21:48:22.7550264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_mask_ops.h 2025-08-14T21:48:22.7553947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize.h 2025-08-14T21:48:22.7557907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_and_clear.h 2025-08-14T21:48:22.7561985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_and_clear_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.7565795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_and_clear_meta_dispatch.h 2025-08-14T21:48:22.7569623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_and_clear_native.h 2025-08-14T21:48:22.7574216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_and_clear_ops.h 2025-08-14T21:48:22.7578229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.7582265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_meta_dispatch.h 2025-08-14T21:48:22.7586081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_native.h 2025-08-14T21:48:22.7589850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_ops.h 2025-08-14T21:48:22.7593644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_sampled_addmm.h 2025-08-14T21:48:22.7597708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_sampled_addmm_native.h 2025-08-14T21:48:22.7601727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_sampled_addmm_ops.h 2025-08-14T21:48:22.7605600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai.h 2025-08-14T21:48:22.7609808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.7613551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_cpu_dispatch.h 2025-08-14T21:48:22.7617242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_cuda_dispatch.h 2025-08-14T21:48:22.9267678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_meta.h 2025-08-14T21:48:22.9271237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_meta_dispatch.h 2025-08-14T21:48:22.9275312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_native.h 2025-08-14T21:48:22.9279592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_ops.h 2025-08-14T21:48:22.9283564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0.h 2025-08-14T21:48:22.9288021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.9292157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_cpu_dispatch.h 2025-08-14T21:48:22.9296478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_cuda_dispatch.h 2025-08-14T21:48:22.9300940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_meta.h 2025-08-14T21:48:22.9305644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_meta_dispatch.h 2025-08-14T21:48:22.9310183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_native.h 2025-08-14T21:48:22.9314314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_ops.h 2025-08-14T21:48:22.9318344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1.h 2025-08-14T21:48:22.9323225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.9327439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_cpu_dispatch.h 2025-08-14T21:48:22.9331502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_cuda_dispatch.h 2025-08-14T21:48:22.9335533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_meta.h 2025-08-14T21:48:22.9339488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_meta_dispatch.h 2025-08-14T21:48:22.9343378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_native.h 2025-08-14T21:48:22.9347398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_ops.h 2025-08-14T21:48:22.9365997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0.h 2025-08-14T21:48:22.9369759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.9373985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_cpu_dispatch.h 2025-08-14T21:48:22.9377853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_cuda_dispatch.h 2025-08-14T21:48:22.9381659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_meta.h 2025-08-14T21:48:22.9385505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_meta_dispatch.h 2025-08-14T21:48:22.9389319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_native.h 2025-08-14T21:48:22.9393161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_ops.h 2025-08-14T21:48:22.9397310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1.h 2025-08-14T21:48:22.9401867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.9405738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_cpu_dispatch.h 2025-08-14T21:48:22.9409651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_cuda_dispatch.h 2025-08-14T21:48:22.9413493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_meta.h 2025-08-14T21:48:22.9417295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_meta_dispatch.h 2025-08-14T21:48:22.9421334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_native.h 2025-08-14T21:48:22.9425163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_ops.h 2025-08-14T21:48:22.9428890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t.h 2025-08-14T21:48:22.9433469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.9437492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.9442288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_cpu_dispatch.h 2025-08-14T21:48:22.9446343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_cuda_dispatch.h 2025-08-14T21:48:22.9450256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_meta.h 2025-08-14T21:48:22.9454260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_meta_dispatch.h 2025-08-14T21:48:22.9458135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_native.h 2025-08-14T21:48:22.9462250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_ops.h 2025-08-14T21:48:22.9466339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u.h 2025-08-14T21:48:22.9470263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.9474329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.9478226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_cpu_dispatch.h 2025-08-14T21:48:22.9482243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_cuda_dispatch.h 2025-08-14T21:48:22.9486292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_meta.h 2025-08-14T21:48:22.9490292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_meta_dispatch.h 2025-08-14T21:48:22.9494072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_native.h 2025-08-14T21:48:22.9497787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_ops.h 2025-08-14T21:48:22.9501640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v.h 2025-08-14T21:48:22.9505910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.9509673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.9513762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_cpu_dispatch.h 2025-08-14T21:48:22.9517674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_cuda_dispatch.h 2025-08-14T21:48:22.9521662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_meta.h 2025-08-14T21:48:22.9525777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_meta_dispatch.h 2025-08-14T21:48:22.9530372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_native.h 2025-08-14T21:48:22.9534520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_ops.h 2025-08-14T21:48:22.9538417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w.h 2025-08-14T21:48:22.9542546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.9546908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.9550784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_cpu_dispatch.h 2025-08-14T21:48:22.9554785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_cuda_dispatch.h 2025-08-14T21:48:22.9558621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_meta.h 2025-08-14T21:48:22.9562705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_meta_dispatch.h 2025-08-14T21:48:22.9567029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_native.h 2025-08-14T21:48:22.9570934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_ops.h 2025-08-14T21:48:22.9574634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_digamma.h 2025-08-14T21:48:22.9578713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_digamma_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.9582648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_digamma_native.h 2025-08-14T21:48:22.9586471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_digamma_ops.h 2025-08-14T21:48:22.9590580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr.h 2025-08-14T21:48:22.9594631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.9598757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_cpu_dispatch.h 2025-08-14T21:48:22.9602710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_cuda_dispatch.h 2025-08-14T21:48:22.9607079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_meta.h 2025-08-14T21:48:22.9611017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_meta_dispatch.h 2025-08-14T21:48:22.9614945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_native.h 2025-08-14T21:48:22.9618931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_ops.h 2025-08-14T21:48:22.9622774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erf.h 2025-08-14T21:48:22.9626713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfc.h 2025-08-14T21:48:22.9630693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx.h 2025-08-14T21:48:22.9634836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.9638725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_cpu_dispatch.h 2025-08-14T21:48:22.9642847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_cuda_dispatch.h 2025-08-14T21:48:22.9646987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_meta.h 2025-08-14T21:48:22.9650992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_meta_dispatch.h 2025-08-14T21:48:22.9654864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_native.h 2025-08-14T21:48:22.9658648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_ops.h 2025-08-14T21:48:22.9663135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfc_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.9666586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfc_native.h 2025-08-14T21:48:22.9670233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfc_ops.h 2025-08-14T21:48:22.9674067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfinv.h 2025-08-14T21:48:22.9677805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfinv_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.9681618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfinv_native.h 2025-08-14T21:48:22.9685409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfinv_ops.h 2025-08-14T21:48:22.9689358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erf_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.9693626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erf_native.h 2025-08-14T21:48:22.9697529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erf_ops.h 2025-08-14T21:48:22.9701536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_exp2.h 2025-08-14T21:48:22.9705548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_exp2_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.9709450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_exp2_native.h 2025-08-14T21:48:22.9713879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_exp2_ops.h 2025-08-14T21:48:22.9717684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expit.h 2025-08-14T21:48:22.9722031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expit_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.9725690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expit_native.h 2025-08-14T21:48:22.9729634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expit_ops.h 2025-08-14T21:48:22.9733638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expm1.h 2025-08-14T21:48:22.9737659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expm1_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.9741502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expm1_native.h 2025-08-14T21:48:22.9745309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expm1_ops.h 2025-08-14T21:48:22.9749126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammainc.h 2025-08-14T21:48:22.9752939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaincc.h 2025-08-14T21:48:22.9757241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaincc_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.9761247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaincc_native.h 2025-08-14T21:48:22.9765157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaincc_ops.h 2025-08-14T21:48:22.9769118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammainc_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.9773156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammainc_native.h 2025-08-14T21:48:22.9776985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammainc_ops.h 2025-08-14T21:48:22.9780738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaln.h 2025-08-14T21:48:22.9785049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaln_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.9789009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaln_native.h 2025-08-14T21:48:22.9792767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaln_ops.h 2025-08-14T21:48:22.9796854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h.h 2025-08-14T21:48:22.9801150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he.h 2025-08-14T21:48:22.9805636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.9810218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.9815059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_cpu_dispatch.h 2025-08-14T21:48:22.9819115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_cuda_dispatch.h 2025-08-14T21:48:22.9823243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_meta.h 2025-08-14T21:48:22.9827101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_meta_dispatch.h 2025-08-14T21:48:22.9831219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_native.h 2025-08-14T21:48:22.9835170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_ops.h 2025-08-14T21:48:22.9839271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.9843313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.9847204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_cpu_dispatch.h 2025-08-14T21:48:22.9851274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_cuda_dispatch.h 2025-08-14T21:48:22.9855092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_meta.h 2025-08-14T21:48:22.9859276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_meta_dispatch.h 2025-08-14T21:48:22.9863170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_native.h 2025-08-14T21:48:22.9866950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_ops.h 2025-08-14T21:48:22.9871187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0.h 2025-08-14T21:48:22.9875555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e.h 2025-08-14T21:48:22.9879757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.9883460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_cpu_dispatch.h 2025-08-14T21:48:22.9887290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_cuda_dispatch.h 2025-08-14T21:48:22.9891105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_meta.h 2025-08-14T21:48:22.9894905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_meta_dispatch.h 2025-08-14T21:48:22.9898851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_native.h 2025-08-14T21:48:22.9902711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_ops.h 2025-08-14T21:48:22.9907210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:22.9925395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0_native.h 2025-08-14T21:48:22.9926004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0_ops.h 2025-08-14T21:48:22.9926565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1.h 2025-08-14T21:48:22.9927100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e.h 2025-08-14T21:48:22.9927832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.9931258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_cpu_dispatch.h 2025-08-14T21:48:22.9935447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_cuda_dispatch.h 2025-08-14T21:48:22.9938947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_meta.h 2025-08-14T21:48:22.9942588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_meta_dispatch.h 2025-08-14T21:48:22.9946376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_native.h 2025-08-14T21:48:22.9950445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_ops.h 2025-08-14T21:48:22.9954794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.9958717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_cpu_dispatch.h 2025-08-14T21:48:22.9962514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_cuda_dispatch.h 2025-08-14T21:48:22.9966245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_meta.h 2025-08-14T21:48:22.9970051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_meta_dispatch.h 2025-08-14T21:48:22.9973970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_native.h 2025-08-14T21:48:22.9977975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_ops.h 2025-08-14T21:48:22.9981782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l.h 2025-08-14T21:48:22.9985850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:22.9989679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:22.9993455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_cpu_dispatch.h 2025-08-14T21:48:22.9997340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_cuda_dispatch.h 2025-08-14T21:48:23.0001430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_meta.h 2025-08-14T21:48:23.0006116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_meta_dispatch.h 2025-08-14T21:48:23.0010089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_native.h 2025-08-14T21:48:23.0014019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_ops.h 2025-08-14T21:48:23.0017829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p.h 2025-08-14T21:48:23.0021858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.0026269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.0030260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_cpu_dispatch.h 2025-08-14T21:48:23.0034139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_cuda_dispatch.h 2025-08-14T21:48:23.0038042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_meta.h 2025-08-14T21:48:23.0042080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_meta_dispatch.h 2025-08-14T21:48:23.0046163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_native.h 2025-08-14T21:48:23.0050101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_ops.h 2025-08-14T21:48:23.0054039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log1p.h 2025-08-14T21:48:23.0057863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log1p_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.0061532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log1p_native.h 2025-08-14T21:48:23.0065331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log1p_ops.h 2025-08-14T21:48:23.0069350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logit.h 2025-08-14T21:48:23.0073337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logit_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.0077264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logit_native.h 2025-08-14T21:48:23.0081368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logit_ops.h 2025-08-14T21:48:23.0085126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logsumexp.h 2025-08-14T21:48:23.0089187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logsumexp_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.0092947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logsumexp_native.h 2025-08-14T21:48:23.0097005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logsumexp_ops.h 2025-08-14T21:48:23.0101502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr.h 2025-08-14T21:48:23.0105383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.0109277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_cpu_dispatch.h 2025-08-14T21:48:23.0113210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_cuda_dispatch.h 2025-08-14T21:48:23.0117030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_meta.h 2025-08-14T21:48:23.0121276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_meta_dispatch.h 2025-08-14T21:48:23.0125195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_native.h 2025-08-14T21:48:23.0129120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_ops.h 2025-08-14T21:48:23.0133036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_softmax.h 2025-08-14T21:48:23.0137223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_softmax_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.0141072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_softmax_native.h 2025-08-14T21:48:23.0145011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_softmax_ops.h 2025-08-14T21:48:23.0149832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0.h 2025-08-14T21:48:23.0153948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.0157811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_cpu_dispatch.h 2025-08-14T21:48:23.0162484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_cuda_dispatch.h 2025-08-14T21:48:23.0166607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_meta.h 2025-08-14T21:48:23.0170645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_meta_dispatch.h 2025-08-14T21:48:23.0174509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_native.h 2025-08-14T21:48:23.0178467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_ops.h 2025-08-14T21:48:23.0182294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1.h 2025-08-14T21:48:23.0186478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.0190506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_cpu_dispatch.h 2025-08-14T21:48:23.0195058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_cuda_dispatch.h 2025-08-14T21:48:23.0199036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_meta.h 2025-08-14T21:48:23.0203069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_meta_dispatch.h 2025-08-14T21:48:23.0207097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_native.h 2025-08-14T21:48:23.0210995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_ops.h 2025-08-14T21:48:23.0215275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0.h 2025-08-14T21:48:23.0219485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.0223272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_cpu_dispatch.h 2025-08-14T21:48:23.0227600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_cuda_dispatch.h 2025-08-14T21:48:23.0231431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_meta.h 2025-08-14T21:48:23.0235383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_meta_dispatch.h 2025-08-14T21:48:23.0240112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_native.h 2025-08-14T21:48:23.0243884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_ops.h 2025-08-14T21:48:23.0247827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1.h 2025-08-14T21:48:23.0251926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.0255866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_cpu_dispatch.h 2025-08-14T21:48:23.0260142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_cuda_dispatch.h 2025-08-14T21:48:23.0264039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_meta.h 2025-08-14T21:48:23.0268072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_meta_dispatch.h 2025-08-14T21:48:23.0272100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_native.h 2025-08-14T21:48:23.0276037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_ops.h 2025-08-14T21:48:23.0280105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_multigammaln.h 2025-08-14T21:48:23.0284520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_multigammaln_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.0289230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_multigammaln_native.h 2025-08-14T21:48:23.0293153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_multigammaln_ops.h 2025-08-14T21:48:23.0297047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtr.h 2025-08-14T21:48:23.0301303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri.h 2025-08-14T21:48:23.0305369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.0975900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_cpu_dispatch.h 2025-08-14T21:48:23.0980109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_cuda_dispatch.h 2025-08-14T21:48:23.0984029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_meta.h 2025-08-14T21:48:23.0988403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_meta_dispatch.h 2025-08-14T21:48:23.0992139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_native.h 2025-08-14T21:48:23.0995808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_ops.h 2025-08-14T21:48:23.1000003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtr_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.1004365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtr_native.h 2025-08-14T21:48:23.1008487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtr_ops.h 2025-08-14T21:48:23.1012517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_polygamma.h 2025-08-14T21:48:23.1016633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_polygamma_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.1020470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_polygamma_native.h 2025-08-14T21:48:23.1024530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_polygamma_ops.h 2025-08-14T21:48:23.1028235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_psi.h 2025-08-14T21:48:23.1032452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_psi_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.1036232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_psi_native.h 2025-08-14T21:48:23.1040162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_psi_ops.h 2025-08-14T21:48:23.1044143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_round.h 2025-08-14T21:48:23.1048092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_round_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.1052044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_round_native.h 2025-08-14T21:48:23.1055989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_round_ops.h 2025-08-14T21:48:23.1060886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0.h 2025-08-14T21:48:23.1065380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.1069447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_cpu_dispatch.h 2025-08-14T21:48:23.1073805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_cuda_dispatch.h 2025-08-14T21:48:23.1077708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta.h 2025-08-14T21:48:23.1082057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta_dispatch.h 2025-08-14T21:48:23.1086170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_native.h 2025-08-14T21:48:23.1090090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_ops.h 2025-08-14T21:48:23.1093920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1.h 2025-08-14T21:48:23.1098048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.1102127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_cpu_dispatch.h 2025-08-14T21:48:23.1107006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_cuda_dispatch.h 2025-08-14T21:48:23.1110971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta.h 2025-08-14T21:48:23.1114948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta_dispatch.h 2025-08-14T21:48:23.1119138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_native.h 2025-08-14T21:48:23.1123330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_ops.h 2025-08-14T21:48:23.1127209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t.h 2025-08-14T21:48:23.1131358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.1135492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.1140040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cpu_dispatch.h 2025-08-14T21:48:23.1144696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cuda_dispatch.h 2025-08-14T21:48:23.1148782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta.h 2025-08-14T21:48:23.1152677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta_dispatch.h 2025-08-14T21:48:23.1156746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_native.h 2025-08-14T21:48:23.1161062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_ops.h 2025-08-14T21:48:23.1165382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u.h 2025-08-14T21:48:23.1169628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.1173783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.1177803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cpu_dispatch.h 2025-08-14T21:48:23.1182776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cuda_dispatch.h 2025-08-14T21:48:23.1186680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta.h 2025-08-14T21:48:23.1190856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta_dispatch.h 2025-08-14T21:48:23.1194928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_native.h 2025-08-14T21:48:23.1199064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_ops.h 2025-08-14T21:48:23.1203445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v.h 2025-08-14T21:48:23.1207818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.1212213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.1216258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cpu_dispatch.h 2025-08-14T21:48:23.1220590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cuda_dispatch.h 2025-08-14T21:48:23.1225167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta.h 2025-08-14T21:48:23.1229483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta_dispatch.h 2025-08-14T21:48:23.1233521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_native.h 2025-08-14T21:48:23.1237668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_ops.h 2025-08-14T21:48:23.1242163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w.h 2025-08-14T21:48:23.1246554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.1250781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.1254927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cpu_dispatch.h 2025-08-14T21:48:23.1259468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cuda_dispatch.h 2025-08-14T21:48:23.1263735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta.h 2025-08-14T21:48:23.1267689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta_dispatch.h 2025-08-14T21:48:23.1271945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_native.h 2025-08-14T21:48:23.1276082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_ops.h 2025-08-14T21:48:23.1280287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_sinc.h 2025-08-14T21:48:23.1284432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_sinc_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.1288417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_sinc_native.h 2025-08-14T21:48:23.1292470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_sinc_ops.h 2025-08-14T21:48:23.1296908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_softmax.h 2025-08-14T21:48:23.1301733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_softmax_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.1305756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_softmax_native.h 2025-08-14T21:48:23.1310185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_softmax_ops.h 2025-08-14T21:48:23.1314526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0.h 2025-08-14T21:48:23.1319854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.1338956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_cpu_dispatch.h 2025-08-14T21:48:23.1339747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_cuda_dispatch.h 2025-08-14T21:48:23.1340507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_meta.h 2025-08-14T21:48:23.1341237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_meta_dispatch.h 2025-08-14T21:48:23.1342276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_native.h 2025-08-14T21:48:23.1346428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_ops.h 2025-08-14T21:48:23.1350712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py.h 2025-08-14T21:48:23.1354646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.1358850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.1364075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_cpu_dispatch.h 2025-08-14T21:48:23.1368203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_cuda_dispatch.h 2025-08-14T21:48:23.1372200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_meta.h 2025-08-14T21:48:23.1376621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_meta_dispatch.h 2025-08-14T21:48:23.1380424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_native.h 2025-08-14T21:48:23.1384317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_ops.h 2025-08-14T21:48:23.1388294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlogy.h 2025-08-14T21:48:23.1392745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlogy_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.1396730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlogy_native.h 2025-08-14T21:48:23.1400999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlogy_ops.h 2025-08-14T21:48:23.1404656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta.h 2025-08-14T21:48:23.1408935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.1412949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.1417312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_cpu_dispatch.h 2025-08-14T21:48:23.1422108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_cuda_dispatch.h 2025-08-14T21:48:23.1426030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_meta.h 2025-08-14T21:48:23.1430286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_meta_dispatch.h 2025-08-14T21:48:23.1434232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_native.h 2025-08-14T21:48:23.1438441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_ops.h 2025-08-14T21:48:23.1442614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split.h 2025-08-14T21:48:23.1446345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.1450218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.1454261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_copy.h 2025-08-14T21:48:23.1458258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.1462109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.1466802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_copy_native.h 2025-08-14T21:48:23.1470819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_copy_ops.h 2025-08-14T21:48:23.1474769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_native.h 2025-08-14T21:48:23.1478482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_ops.h 2025-08-14T21:48:23.1482850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes.h 2025-08-14T21:48:23.1487045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.1490981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy.h 2025-08-14T21:48:23.1495163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.1499555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.1503401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy_cuda_dispatch.h 2025-08-14T21:48:23.1507250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy_native.h 2025-08-14T21:48:23.1511182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy_ops.h 2025-08-14T21:48:23.1515103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_native.h 2025-08-14T21:48:23.1519385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_ops.h 2025-08-14T21:48:23.1523236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt.h 2025-08-14T21:48:23.1527358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.1531024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_cpu_dispatch.h 2025-08-14T21:48:23.1535026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_cuda_dispatch.h 2025-08-14T21:48:23.1539168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_meta.h 2025-08-14T21:48:23.1543117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_meta_dispatch.h 2025-08-14T21:48:23.1546891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_native.h 2025-08-14T21:48:23.1550696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_ops.h 2025-08-14T21:48:23.1554106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\square.h 2025-08-14T21:48:23.1557811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\square_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.1561580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\square_native.h 2025-08-14T21:48:23.1565233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\square_ops.h 2025-08-14T21:48:23.1568989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze.h 2025-08-14T21:48:23.1572604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.1576337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.1580413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_copy.h 2025-08-14T21:48:23.1584305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.1588076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.1591798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_copy_native.h 2025-08-14T21:48:23.1595612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_copy_ops.h 2025-08-14T21:48:23.1599566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_native.h 2025-08-14T21:48:23.1603573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_ops.h 2025-08-14T21:48:23.1607993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm.h 2025-08-14T21:48:23.1611687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.1615337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm_cpu_dispatch.h 2025-08-14T21:48:23.1619070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm_cuda_dispatch.h 2025-08-14T21:48:23.1623123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm_native.h 2025-08-14T21:48:23.1626972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm_ops.h 2025-08-14T21:48:23.1630807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stack.h 2025-08-14T21:48:23.1635033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stack_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.1638711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stack_native.h 2025-08-14T21:48:23.1642558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stack_ops.h 2025-08-14T21:48:23.1646400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std.h 2025-08-14T21:48:23.1650022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.1653838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_cpu_dispatch.h 2025-08-14T21:48:23.1657709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_cuda_dispatch.h 2025-08-14T21:48:23.1661577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean.h 2025-08-14T21:48:23.1665691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.1669627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.1673176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_cpu_dispatch.h 2025-08-14T21:48:23.1677128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_cuda_dispatch.h 2025-08-14T21:48:23.1681119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_native.h 2025-08-14T21:48:23.1684916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_ops.h 2025-08-14T21:48:23.1688820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_native.h 2025-08-14T21:48:23.1692800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_ops.h 2025-08-14T21:48:23.1696271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stft.h 2025-08-14T21:48:23.1700047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stft_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.1703868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stft_native.h 2025-08-14T21:48:23.1707855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stft_ops.h 2025-08-14T21:48:23.1711287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stride.h 2025-08-14T21:48:23.1715552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stride_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.1719311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stride_native.h 2025-08-14T21:48:23.1723213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stride_ops.h 2025-08-14T21:48:23.1727231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub.h 2025-08-14T21:48:23.1730632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\subtract.h 2025-08-14T21:48:23.1735700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\subtract_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.1739247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\subtract_native.h 2025-08-14T21:48:23.1743072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\subtract_ops.h 2025-08-14T21:48:23.1747405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.1751365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.1755989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_cpu_dispatch.h 2025-08-14T21:48:23.1759956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_cuda_dispatch.h 2025-08-14T21:48:23.1764283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_meta.h 2025-08-14T21:48:23.1767703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_meta_dispatch.h 2025-08-14T21:48:23.1771350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_native.h 2025-08-14T21:48:23.1775026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_ops.h 2025-08-14T21:48:23.1778350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum.h 2025-08-14T21:48:23.1782153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.1786332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.1790218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.1793876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_cpu_dispatch.h 2025-08-14T21:48:23.1797583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_cuda_dispatch.h 2025-08-14T21:48:23.1801356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_meta.h 2025-08-14T21:48:23.1804905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_meta_dispatch.h 2025-08-14T21:48:23.1809158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_native.h 2025-08-14T21:48:23.1812421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_ops.h 2025-08-14T21:48:23.1815886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_to_size.h 2025-08-14T21:48:23.1820061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_to_size_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.1824093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_to_size_native.h 2025-08-14T21:48:23.1828029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_to_size_ops.h 2025-08-14T21:48:23.1831965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\svd.h 2025-08-14T21:48:23.1835563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\svd_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.1839203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\svd_native.h 2025-08-14T21:48:23.1843195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\svd_ops.h 2025-08-14T21:48:23.1846722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapaxes.h 2025-08-14T21:48:23.1850466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapaxes_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.1854052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapaxes_native.h 2025-08-14T21:48:23.1858794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapaxes_ops.h 2025-08-14T21:48:23.1862849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapdims.h 2025-08-14T21:48:23.1867113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapdims_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.1870900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapdims_native.h 2025-08-14T21:48:23.1874785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapdims_ops.h 2025-08-14T21:48:23.1878453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range.h 2025-08-14T21:48:23.1882453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.1886139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_for_size.h 2025-08-14T21:48:23.1890027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.1893940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_for_size_native.h 2025-08-14T21:48:23.1897953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_for_size_ops.h 2025-08-14T21:48:23.1901753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_native.h 2025-08-14T21:48:23.1905625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_ops.h 2025-08-14T21:48:23.1909442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_numel.h 2025-08-14T21:48:23.1913354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_numel_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.1917074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_numel_native.h 2025-08-14T21:48:23.1920963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_numel_ops.h 2025-08-14T21:48:23.1924884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_size.h 2025-08-14T21:48:23.1928592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_size_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.1932145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_size_native.h 2025-08-14T21:48:23.1935885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_size_ops.h 2025-08-14T21:48:23.1939846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_storage_offset.h 2025-08-14T21:48:23.1943808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_storage_offset_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.1947339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_storage_offset_native.h 2025-08-14T21:48:23.1951229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_storage_offset_ops.h 2025-08-14T21:48:23.1954973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_stride.h 2025-08-14T21:48:23.1959717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_stride_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.1963590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_stride_native.h 2025-08-14T21:48:23.1967312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_stride_ops.h 2025-08-14T21:48:23.1971198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t.h 2025-08-14T21:48:23.1974611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take.h 2025-08-14T21:48:23.1978056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_along_dim.h 2025-08-14T21:48:23.1982060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_along_dim_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.1985680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_along_dim_native.h 2025-08-14T21:48:23.1989382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_along_dim_ops.h 2025-08-14T21:48:23.1993442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_cpu_dispatch.h 2025-08-14T21:48:23.1997125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_cuda_dispatch.h 2025-08-14T21:48:23.2000983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_native.h 2025-08-14T21:48:23.2020705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_ops.h 2025-08-14T21:48:23.2024042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan.h 2025-08-14T21:48:23.2027812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh.h 2025-08-14T21:48:23.2031257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward.h 2025-08-14T21:48:23.2035104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.2038723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_cpu_dispatch.h 2025-08-14T21:48:23.2042577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_cuda_dispatch.h 2025-08-14T21:48:23.2046391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_meta.h 2025-08-14T21:48:23.2050312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_meta_dispatch.h 2025-08-14T21:48:23.2054143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_native.h 2025-08-14T21:48:23.2058041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_ops.h 2025-08-14T21:48:23.2061947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.2065536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_cpu_dispatch.h 2025-08-14T21:48:23.2069123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_cuda_dispatch.h 2025-08-14T21:48:23.2072868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_meta.h 2025-08-14T21:48:23.2076470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_meta_dispatch.h 2025-08-14T21:48:23.2080443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_native.h 2025-08-14T21:48:23.2084482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_ops.h 2025-08-14T21:48:23.2088287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.2092035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_cpu_dispatch.h 2025-08-14T21:48:23.2095648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_cuda_dispatch.h 2025-08-14T21:48:23.2099209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_meta.h 2025-08-14T21:48:23.2102576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_meta_dispatch.h 2025-08-14T21:48:23.2106215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_native.h 2025-08-14T21:48:23.2110048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_ops.h 2025-08-14T21:48:23.2113444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensor.h 2025-08-14T21:48:23.2116814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensordot.h 2025-08-14T21:48:23.2120711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensordot_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.2124441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensordot_native.h 2025-08-14T21:48:23.2128146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensordot_ops.h 2025-08-14T21:48:23.2131928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensor_split.h 2025-08-14T21:48:23.2136068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensor_split_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.2140003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensor_split_native.h 2025-08-14T21:48:23.2143830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensor_split_ops.h 2025-08-14T21:48:23.2147661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\thnn_conv2d.h 2025-08-14T21:48:23.2151403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\thnn_conv2d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.2155100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\thnn_conv2d_native.h 2025-08-14T21:48:23.2158762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\thnn_conv2d_ops.h 2025-08-14T21:48:23.2162668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold.h 2025-08-14T21:48:23.2166577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward.h 2025-08-14T21:48:23.2170721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.2175002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_cpu_dispatch.h 2025-08-14T21:48:23.2178428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_cuda_dispatch.h 2025-08-14T21:48:23.2182198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_meta.h 2025-08-14T21:48:23.2186453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_meta_dispatch.h 2025-08-14T21:48:23.2191031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_native.h 2025-08-14T21:48:23.2196132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_ops.h 2025-08-14T21:48:23.2216944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.2220639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_cpu_dispatch.h 2025-08-14T21:48:23.2225438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_cuda_dispatch.h 2025-08-14T21:48:23.2229690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_meta.h 2025-08-14T21:48:23.2233644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_meta_dispatch.h 2025-08-14T21:48:23.2238419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_native.h 2025-08-14T21:48:23.2242499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_ops.h 2025-08-14T21:48:23.2246090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tile.h 2025-08-14T21:48:23.2249858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tile_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.2253471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tile_native.h 2025-08-14T21:48:23.2257251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tile_ops.h 2025-08-14T21:48:23.2260810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to.h 2025-08-14T21:48:23.2264216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk.h 2025-08-14T21:48:23.2267963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.2271987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_cpu_dispatch.h 2025-08-14T21:48:23.2275538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_cuda_dispatch.h 2025-08-14T21:48:23.2279417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_meta.h 2025-08-14T21:48:23.2283555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_meta_dispatch.h 2025-08-14T21:48:23.2286743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_native.h 2025-08-14T21:48:23.2290929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_ops.h 2025-08-14T21:48:23.2294760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.2297962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense.h 2025-08-14T21:48:23.2301574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_backward.h 2025-08-14T21:48:23.2305521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.2309372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_backward_native.h 2025-08-14T21:48:23.2313166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_backward_ops.h 2025-08-14T21:48:23.2317700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.2322515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_native.h 2025-08-14T21:48:23.2326985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_ops.h 2025-08-14T21:48:23.2331244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn.h 2025-08-14T21:48:23.2336586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_backward.h 2025-08-14T21:48:23.2341025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.2345411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_backward_native.h 2025-08-14T21:48:23.2349774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_backward_ops.h 2025-08-14T21:48:23.2353834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.2358008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_cpu_dispatch.h 2025-08-14T21:48:23.2362054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_native.h 2025-08-14T21:48:23.2365873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_ops.h 2025-08-14T21:48:23.2369718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_native.h 2025-08-14T21:48:23.2373471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_ops.h 2025-08-14T21:48:23.2377095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_padded_tensor.h 2025-08-14T21:48:23.2381095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_padded_tensor_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.2384842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_padded_tensor_native.h 2025-08-14T21:48:23.2388731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_padded_tensor_ops.h 2025-08-14T21:48:23.2392478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse.h 2025-08-14T21:48:23.2396227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsc.h 2025-08-14T21:48:23.2400317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsc_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.2404003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsc_native.h 2025-08-14T21:48:23.2407670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsc_ops.h 2025-08-14T21:48:23.2411444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsr.h 2025-08-14T21:48:23.2415461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsr_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.2419648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsr_native.h 2025-08-14T21:48:23.2423492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsr_ops.h 2025-08-14T21:48:23.2428026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.2431902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csc.h 2025-08-14T21:48:23.2435850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csc_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.2439933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csc_native.h 2025-08-14T21:48:23.2444009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csc_ops.h 2025-08-14T21:48:23.2447905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csr.h 2025-08-14T21:48:23.2452452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csr_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.2456373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csr_native.h 2025-08-14T21:48:23.2460220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csr_ops.h 2025-08-14T21:48:23.2463975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_native.h 2025-08-14T21:48:23.2467780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_ops.h 2025-08-14T21:48:23.2471744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace.h 2025-08-14T21:48:23.2475402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_backward.h 2025-08-14T21:48:23.2479265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.2483120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_backward_native.h 2025-08-14T21:48:23.2486903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_backward_ops.h 2025-08-14T21:48:23.2491005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.2494996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_cpu_dispatch.h 2025-08-14T21:48:23.2499017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_cuda_dispatch.h 2025-08-14T21:48:23.2503479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_native.h 2025-08-14T21:48:23.2507782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_ops.h 2025-08-14T21:48:23.2511822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose.h 2025-08-14T21:48:23.2515608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.2519757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.2523585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_copy.h 2025-08-14T21:48:23.2527809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.2532345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.2536294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_copy_native.h 2025-08-14T21:48:23.2540213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_copy_ops.h 2025-08-14T21:48:23.2543930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_native.h 2025-08-14T21:48:23.2547758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_ops.h 2025-08-14T21:48:23.2551479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapezoid.h 2025-08-14T21:48:23.2555753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapezoid_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.2559876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapezoid_native.h 2025-08-14T21:48:23.2563872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapezoid_ops.h 2025-08-14T21:48:23.2567459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapz.h 2025-08-14T21:48:23.2571426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapz_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.2575075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapz_native.h 2025-08-14T21:48:23.2578697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapz_ops.h 2025-08-14T21:48:23.2582546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve.h 2025-08-14T21:48:23.2586869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.2590878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_cpu_dispatch.h 2025-08-14T21:48:23.2594740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_cuda_dispatch.h 2025-08-14T21:48:23.2598630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_meta.h 2025-08-14T21:48:23.2602709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_meta_dispatch.h 2025-08-14T21:48:23.2606605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_native.h 2025-08-14T21:48:23.2610913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_ops.h 2025-08-14T21:48:23.2614625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril.h 2025-08-14T21:48:23.2618477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.2622090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_cpu_dispatch.h 2025-08-14T21:48:23.2625713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_cuda_dispatch.h 2025-08-14T21:48:23.2629585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices.h 2025-08-14T21:48:23.2633549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.2638652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices_cpu_dispatch.h 2025-08-14T21:48:23.2642036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices_cuda_dispatch.h 2025-08-14T21:48:23.2646075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices_native.h 2025-08-14T21:48:23.2650092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices_ops.h 2025-08-14T21:48:23.2653911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_meta.h 2025-08-14T21:48:23.2657740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_meta_dispatch.h 2025-08-14T21:48:23.2661338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_native.h 2025-08-14T21:48:23.2666088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_ops.h 2025-08-14T21:48:23.2670421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triplet_margin_loss.h 2025-08-14T21:48:23.2674915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triplet_margin_loss_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.2679228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triplet_margin_loss_native.h 2025-08-14T21:48:23.2683461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triplet_margin_loss_ops.h 2025-08-14T21:48:23.2687601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu.h 2025-08-14T21:48:23.2691373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.2695432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_cpu_dispatch.h 2025-08-14T21:48:23.2699356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_cuda_dispatch.h 2025-08-14T21:48:23.2703085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices.h 2025-08-14T21:48:23.2707197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.2711845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices_cpu_dispatch.h 2025-08-14T21:48:23.2715730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices_cuda_dispatch.h 2025-08-14T21:48:23.2719899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices_native.h 2025-08-14T21:48:23.2723984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices_ops.h 2025-08-14T21:48:23.2727894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_meta.h 2025-08-14T21:48:23.2731665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_meta_dispatch.h 2025-08-14T21:48:23.2735499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_native.h 2025-08-14T21:48:23.2739715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_ops.h 2025-08-14T21:48:23.2743113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\true_divide.h 2025-08-14T21:48:23.2746960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\true_divide_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.2751230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\true_divide_native.h 2025-08-14T21:48:23.2755274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\true_divide_ops.h 2025-08-14T21:48:23.2759146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc.h 2025-08-14T21:48:23.2763002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.2766813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_cpu_dispatch.h 2025-08-14T21:48:23.2770530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_cuda_dispatch.h 2025-08-14T21:48:23.2774237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_meta.h 2025-08-14T21:48:23.2778011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_meta_dispatch.h 2025-08-14T21:48:23.2781746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_native.h 2025-08-14T21:48:23.2785633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_ops.h 2025-08-14T21:48:23.2789426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\type_as.h 2025-08-14T21:48:23.2793140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\type_as_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.2796601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\type_as_native.h 2025-08-14T21:48:23.2800268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\type_as_ops.h 2025-08-14T21:48:23.2804190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.2807906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_copy.h 2025-08-14T21:48:23.2813229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.2817044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.2820896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_copy_native.h 2025-08-14T21:48:23.2824689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_copy_ops.h 2025-08-14T21:48:23.2828500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_native.h 2025-08-14T21:48:23.2832063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_ops.h 2025-08-14T21:48:23.2835489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind.h 2025-08-14T21:48:23.2839123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.2843206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.2847144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_copy.h 2025-08-14T21:48:23.2851034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.2854913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.2859307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_copy_native.h 2025-08-14T21:48:23.2863168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_copy_ops.h 2025-08-14T21:48:23.2867121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_native.h 2025-08-14T21:48:23.2870854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_ops.h 2025-08-14T21:48:23.2874549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten.h 2025-08-14T21:48:23.2878482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.2882565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_dense_tensors.h 2025-08-14T21:48:23.2886447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_dense_tensors_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.2890166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_dense_tensors_native.h 2025-08-14T21:48:23.2894109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_dense_tensors_ops.h 2025-08-14T21:48:23.2897868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_native.h 2025-08-14T21:48:23.2901550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_ops.h 2025-08-14T21:48:23.2905322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold.h 2025-08-14T21:48:23.2908763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward.h 2025-08-14T21:48:23.2912561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.2916328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward_cpu_dispatch.h 2025-08-14T21:48:23.2920706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward_cuda_dispatch.h 2025-08-14T21:48:23.2924637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward_native.h 2025-08-14T21:48:23.2928283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward_ops.h 2025-08-14T21:48:23.2932073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_copy.h 2025-08-14T21:48:23.2936033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.2939950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.2943978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_copy_native.h 2025-08-14T21:48:23.2947785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_copy_ops.h 2025-08-14T21:48:23.2951661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_cpu_dispatch.h 2025-08-14T21:48:23.2955476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_cuda_dispatch.h 2025-08-14T21:48:23.2959314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_meta_dispatch.h 2025-08-14T21:48:23.2963779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_native.h 2025-08-14T21:48:23.2967770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_ops.h 2025-08-14T21:48:23.2971575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform.h 2025-08-14T21:48:23.2975363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.2979538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_cpu_dispatch.h 2025-08-14T21:48:23.2983194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_cuda_dispatch.h 2025-08-14T21:48:23.2987118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_meta_dispatch.h 2025-08-14T21:48:23.2990881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_native.h 2025-08-14T21:48:23.2994656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_ops.h 2025-08-14T21:48:23.2998520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive.h 2025-08-14T21:48:23.3003218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.3007235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive_cpu_dispatch.h 2025-08-14T21:48:23.3011219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive_cuda_dispatch.h 2025-08-14T21:48:23.3015127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive_native.h 2025-08-14T21:48:23.3020164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive_ops.h 2025-08-14T21:48:23.3023976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim.h 2025-08-14T21:48:23.3028091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.3032225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive.h 2025-08-14T21:48:23.3036391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.3040484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive_cpu_dispatch.h 2025-08-14T21:48:23.3063208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive_cuda_dispatch.h 2025-08-14T21:48:23.3066956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive_native.h 2025-08-14T21:48:23.3071073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive_ops.h 2025-08-14T21:48:23.3075329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_cpu_dispatch.h 2025-08-14T21:48:23.3079299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_cuda_dispatch.h 2025-08-14T21:48:23.3083370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_native.h 2025-08-14T21:48:23.3087246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_ops.h 2025-08-14T21:48:23.3092432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_chunk.h 2025-08-14T21:48:23.3096474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_chunk_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.3100406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_chunk_native.h 2025-08-14T21:48:23.3104386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_chunk_ops.h 2025-08-14T21:48:23.3108293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split.h 2025-08-14T21:48:23.3112483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.3116372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_native.h 2025-08-14T21:48:23.3120474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_ops.h 2025-08-14T21:48:23.3124455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_with_sizes.h 2025-08-14T21:48:23.3128577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.3132841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_with_sizes_native.h 2025-08-14T21:48:23.3136962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_with_sizes_ops.h 2025-08-14T21:48:23.3140822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze.h 2025-08-14T21:48:23.3144689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.3148477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_copy.h 2025-08-14T21:48:23.3152605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.3156743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.3160937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_copy_native.h 2025-08-14T21:48:23.3164927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_copy_ops.h 2025-08-14T21:48:23.3168757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_native.h 2025-08-14T21:48:23.3172710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_ops.h 2025-08-14T21:48:23.3176819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d.h 2025-08-14T21:48:23.3180770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward.h 2025-08-14T21:48:23.3184861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.3189245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_cpu_dispatch.h 2025-08-14T21:48:23.3193938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_cuda_dispatch.h 2025-08-14T21:48:23.3197729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_meta.h 2025-08-14T21:48:23.3201867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_meta_dispatch.h 2025-08-14T21:48:23.3205944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_native.h 2025-08-14T21:48:23.3210293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_ops.h 2025-08-14T21:48:23.3214362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.3218356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.3222295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_cpu_dispatch.h 2025-08-14T21:48:23.3226268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_cuda_dispatch.h 2025-08-14T21:48:23.3230346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_meta.h 2025-08-14T21:48:23.3234378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_meta_dispatch.h 2025-08-14T21:48:23.3238330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_native.h 2025-08-14T21:48:23.3242495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_ops.h 2025-08-14T21:48:23.3246609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d.h 2025-08-14T21:48:23.3251102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward.h 2025-08-14T21:48:23.3255196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.3259337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_cpu_dispatch.h 2025-08-14T21:48:23.3263327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_cuda_dispatch.h 2025-08-14T21:48:23.3267205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_meta.h 2025-08-14T21:48:23.3271245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_meta_dispatch.h 2025-08-14T21:48:23.3275291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_native.h 2025-08-14T21:48:23.3279491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_ops.h 2025-08-14T21:48:23.3283731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.3288439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.3292739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.3296845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_cpu_dispatch.h 2025-08-14T21:48:23.3301095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_cuda_dispatch.h 2025-08-14T21:48:23.3305150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_meta.h 2025-08-14T21:48:23.3309163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_meta_dispatch.h 2025-08-14T21:48:23.3313042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_native.h 2025-08-14T21:48:23.3317136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_ops.h 2025-08-14T21:48:23.3321405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d.h 2025-08-14T21:48:23.3349724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward.h 2025-08-14T21:48:23.3350594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.3351504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_cpu_dispatch.h 2025-08-14T21:48:23.3352397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_cuda_dispatch.h 2025-08-14T21:48:23.3353116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_meta.h 2025-08-14T21:48:23.3353849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_meta_dispatch.h 2025-08-14T21:48:23.3354650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_native.h 2025-08-14T21:48:23.3357862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_ops.h 2025-08-14T21:48:23.3362287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.3366260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.3370314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_cpu_dispatch.h 2025-08-14T21:48:23.3374566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_cuda_dispatch.h 2025-08-14T21:48:23.3379216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_meta.h 2025-08-14T21:48:23.3383288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_meta_dispatch.h 2025-08-14T21:48:23.3388128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_native.h 2025-08-14T21:48:23.3392020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_ops.h 2025-08-14T21:48:23.3395914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d.h 2025-08-14T21:48:23.3399957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward.h 2025-08-14T21:48:23.3404309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.3408162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_cpu_dispatch.h 2025-08-14T21:48:23.3412190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_cuda_dispatch.h 2025-08-14T21:48:23.3416034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_meta.h 2025-08-14T21:48:23.3420454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_meta_dispatch.h 2025-08-14T21:48:23.3424805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_native.h 2025-08-14T21:48:23.3428718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_ops.h 2025-08-14T21:48:23.3432990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.3436955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.3441022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_cpu_dispatch.h 2025-08-14T21:48:23.3445061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_cuda_dispatch.h 2025-08-14T21:48:23.3449155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_meta.h 2025-08-14T21:48:23.3453080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_meta_dispatch.h 2025-08-14T21:48:23.3457253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_native.h 2025-08-14T21:48:23.3461245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_ops.h 2025-08-14T21:48:23.3465287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d.h 2025-08-14T21:48:23.3469207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward.h 2025-08-14T21:48:23.3473294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.3477224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_cpu_dispatch.h 2025-08-14T21:48:23.3482039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_cuda_dispatch.h 2025-08-14T21:48:23.3486432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_meta.h 2025-08-14T21:48:23.3491143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_meta_dispatch.h 2025-08-14T21:48:23.3495239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_native.h 2025-08-14T21:48:23.3499590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_ops.h 2025-08-14T21:48:23.3504269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.3508782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.3513722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.3518324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_cpu_dispatch.h 2025-08-14T21:48:23.3523242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_cuda_dispatch.h 2025-08-14T21:48:23.3527815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_meta.h 2025-08-14T21:48:23.3532285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_meta_dispatch.h 2025-08-14T21:48:23.3536628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_native.h 2025-08-14T21:48:23.3540454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_ops.h 2025-08-14T21:48:23.3544542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d.h 2025-08-14T21:48:23.3548724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward.h 2025-08-14T21:48:23.3552832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.3556782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_cpu_dispatch.h 2025-08-14T21:48:23.3561126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_cuda_dispatch.h 2025-08-14T21:48:23.3565170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_meta.h 2025-08-14T21:48:23.3569145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_meta_dispatch.h 2025-08-14T21:48:23.3573513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_native.h 2025-08-14T21:48:23.3577285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_ops.h 2025-08-14T21:48:23.3582037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.3585957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.3589968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_cpu_dispatch.h 2025-08-14T21:48:23.3594077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_cuda_dispatch.h 2025-08-14T21:48:23.3598180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_meta.h 2025-08-14T21:48:23.3602059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_meta_dispatch.h 2025-08-14T21:48:23.3605898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_native.h 2025-08-14T21:48:23.3609925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_ops.h 2025-08-14T21:48:23.3614154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d.h 2025-08-14T21:48:23.3618080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward.h 2025-08-14T21:48:23.3622543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.3626625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_cpu_dispatch.h 2025-08-14T21:48:23.3630625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_cuda_dispatch.h 2025-08-14T21:48:23.3634611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_meta.h 2025-08-14T21:48:23.3638520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_meta_dispatch.h 2025-08-14T21:48:23.3642710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_native.h 2025-08-14T21:48:23.3646730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_ops.h 2025-08-14T21:48:23.3650851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.3654919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.3658637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_cpu_dispatch.h 2025-08-14T21:48:23.3662748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_cuda_dispatch.h 2025-08-14T21:48:23.3666592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_meta.h 2025-08-14T21:48:23.3671152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_meta_dispatch.h 2025-08-14T21:48:23.3675087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_native.h 2025-08-14T21:48:23.3679126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_ops.h 2025-08-14T21:48:23.3683020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values.h 2025-08-14T21:48:23.3686620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.3690635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_copy.h 2025-08-14T21:48:23.3694667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.3698372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.3702120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_copy_native.h 2025-08-14T21:48:23.3705931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_copy_ops.h 2025-08-14T21:48:23.3709800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_native.h 2025-08-14T21:48:23.3713977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_ops.h 2025-08-14T21:48:23.3717793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\value_selecting_reduction_backward.h 2025-08-14T21:48:23.3721871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.3725716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\value_selecting_reduction_backward_native.h 2025-08-14T21:48:23.3729346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\value_selecting_reduction_backward_ops.h 2025-08-14T21:48:23.3733675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vander.h 2025-08-14T21:48:23.3737537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vander_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.3741236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vander_native.h 2025-08-14T21:48:23.3744896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vander_ops.h 2025-08-14T21:48:23.3748745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var.h 2025-08-14T21:48:23.3752432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.3756152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_cpu_dispatch.h 2025-08-14T21:48:23.3759960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_cuda_dispatch.h 2025-08-14T21:48:23.3763809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean.h 2025-08-14T21:48:23.3767448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.3771946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.3775811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_cpu_dispatch.h 2025-08-14T21:48:23.3779545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_cuda_dispatch.h 2025-08-14T21:48:23.3783485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_native.h 2025-08-14T21:48:23.3787370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_ops.h 2025-08-14T21:48:23.3791052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_native.h 2025-08-14T21:48:23.3794905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_ops.h 2025-08-14T21:48:23.3798306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot.h 2025-08-14T21:48:23.3801971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.3805654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot_cpu_dispatch.h 2025-08-14T21:48:23.3809554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot_cuda_dispatch.h 2025-08-14T21:48:23.3813410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot_native.h 2025-08-14T21:48:23.3817015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot_ops.h 2025-08-14T21:48:23.3820381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view.h 2025-08-14T21:48:23.3824188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as.h 2025-08-14T21:48:23.3827467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex.h 2025-08-14T21:48:23.3831673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_copy.h 2025-08-14T21:48:23.3835771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.3839493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.3843214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_copy_native.h 2025-08-14T21:48:23.3847016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_copy_ops.h 2025-08-14T21:48:23.3851031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_cpu_dispatch.h 2025-08-14T21:48:23.3854905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_cuda_dispatch.h 2025-08-14T21:48:23.3858809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_meta_dispatch.h 2025-08-14T21:48:23.3862553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_native.h 2025-08-14T21:48:23.3866327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_ops.h 2025-08-14T21:48:23.3870309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.3874627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_native.h 2025-08-14T21:48:23.3879197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_ops.h 2025-08-14T21:48:23.3883100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real.h 2025-08-14T21:48:23.3887487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_copy.h 2025-08-14T21:48:23.3891614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.3895576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.3899503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_copy_native.h 2025-08-14T21:48:23.3903584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_copy_ops.h 2025-08-14T21:48:23.3907608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_cpu_dispatch.h 2025-08-14T21:48:23.3911520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_cuda_dispatch.h 2025-08-14T21:48:23.3915644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_meta_dispatch.h 2025-08-14T21:48:23.3919777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_native.h 2025-08-14T21:48:23.3923615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_ops.h 2025-08-14T21:48:23.3927575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.3931409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_copy.h 2025-08-14T21:48:23.3935411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.3939367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.3943183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_copy_native.h 2025-08-14T21:48:23.3947000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_copy_ops.h 2025-08-14T21:48:23.3950934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_cpu_dispatch.h 2025-08-14T21:48:23.3954748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_cuda_dispatch.h 2025-08-14T21:48:23.3959022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_meta_dispatch.h 2025-08-14T21:48:23.3963017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_native.h 2025-08-14T21:48:23.3966539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_ops.h 2025-08-14T21:48:23.3969949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vsplit.h 2025-08-14T21:48:23.3973653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vsplit_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.3977241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vsplit_native.h 2025-08-14T21:48:23.3981613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vsplit_ops.h 2025-08-14T21:48:23.3985787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vstack.h 2025-08-14T21:48:23.3989634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vstack_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.3993863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vstack_native.h 2025-08-14T21:48:23.3996954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vstack_ops.h 2025-08-14T21:48:23.4001184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where.h 2025-08-14T21:48:23.4004826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.4008505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where_cpu_dispatch.h 2025-08-14T21:48:23.4012474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where_cuda_dispatch.h 2025-08-14T21:48:23.4016397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where_native.h 2025-08-14T21:48:23.4020098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where_ops.h 2025-08-14T21:48:23.4023713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy.h 2025-08-14T21:48:23.4027404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.4031412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.4035101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_cpu_dispatch.h 2025-08-14T21:48:23.4038988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_cuda_dispatch.h 2025-08-14T21:48:23.4042824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_meta.h 2025-08-14T21:48:23.4046774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_meta_dispatch.h 2025-08-14T21:48:23.4050573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_native.h 2025-08-14T21:48:23.4054295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_ops.h 2025-08-14T21:48:23.4058093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xor.h 2025-08-14T21:48:23.4061790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xor_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.4065408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xor_native.h 2025-08-14T21:48:23.4069076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xor_ops.h 2025-08-14T21:48:23.4072516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero.h 2025-08-14T21:48:23.4076115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros.h 2025-08-14T21:48:23.4079938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.4083656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_like.h 2025-08-14T21:48:23.4087559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_like_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.4091448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_like_compositeimplicitautogradnestedtensor_dispatch.h 2025-08-14T21:48:23.4111121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_like_native.h 2025-08-14T21:48:23.4114896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_like_ops.h 2025-08-14T21:48:23.4118827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_native.h 2025-08-14T21:48:23.4122689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_ops.h 2025-08-14T21:48:23.4126630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.4130467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_cpu_dispatch.h 2025-08-14T21:48:23.4134043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_cuda_dispatch.h 2025-08-14T21:48:23.4137790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_meta_dispatch.h 2025-08-14T21:48:23.4141608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_native.h 2025-08-14T21:48:23.4145036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_ops.h 2025-08-14T21:48:23.4149089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d.h 2025-08-14T21:48:23.4152914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward.h 2025-08-14T21:48:23.4156887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.4160832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cpu_dispatch.h 2025-08-14T21:48:23.4164783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cuda_dispatch.h 2025-08-14T21:48:23.4168507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_native.h 2025-08-14T21:48:23.4172554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_ops.h 2025-08-14T21:48:23.4176593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.4180384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_cpu_dispatch.h 2025-08-14T21:48:23.4184454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_cuda_dispatch.h 2025-08-14T21:48:23.4188280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_native.h 2025-08-14T21:48:23.4192289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_ops.h 2025-08-14T21:48:23.4196441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d.h 2025-08-14T21:48:23.4200455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward.h 2025-08-14T21:48:23.4204533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.4208817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cpu_dispatch.h 2025-08-14T21:48:23.4212762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cuda_dispatch.h 2025-08-14T21:48:23.4216770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_native.h 2025-08-14T21:48:23.4220642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_ops.h 2025-08-14T21:48:23.4224615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.4228436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_cpu_dispatch.h 2025-08-14T21:48:23.4232388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_cuda_dispatch.h 2025-08-14T21:48:23.4236326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_native.h 2025-08-14T21:48:23.4240838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_ops.h 2025-08-14T21:48:23.4244698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation.h 2025-08-14T21:48:23.4248714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.4252482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_cpu_dispatch.h 2025-08-14T21:48:23.4256343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_cuda_dispatch.h 2025-08-14T21:48:23.4260253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_meta.h 2025-08-14T21:48:23.4264705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_meta_dispatch.h 2025-08-14T21:48:23.4268941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_native.h 2025-08-14T21:48:23.4273329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_ops.h 2025-08-14T21:48:23.4277263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_batch_dim.h 2025-08-14T21:48:23.4281227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_batch_dim_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.4285181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_batch_dim_native.h 2025-08-14T21:48:23.4289050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_batch_dim_ops.h 2025-08-14T21:48:23.4293012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu.h 2025-08-14T21:48:23.4296988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.4301807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu_cpu_dispatch.h 2025-08-14T21:48:23.4305940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu_meta_dispatch.h 2025-08-14T21:48:23.4310402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu_native.h 2025-08-14T21:48:23.4314382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu_ops.h 2025-08-14T21:48:23.4318250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax.h 2025-08-14T21:48:23.4322000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.4326202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax_cpu_dispatch.h 2025-08-14T21:48:23.4330296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax_cuda_dispatch.h 2025-08-14T21:48:23.4357521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax_native.h 2025-08-14T21:48:23.4358301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax_ops.h 2025-08-14T21:48:23.4358700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale.h 2025-08-14T21:48:23.4359284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.4359695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h 2025-08-14T21:48:23.4360114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h 2025-08-14T21:48:23.4361725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_native.h 2025-08-14T21:48:23.4366239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_ops.h 2025-08-14T21:48:23.4370646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale.h 2025-08-14T21:48:23.4375326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.4379371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_cpu_dispatch.h 2025-08-14T21:48:23.4383400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_cuda_dispatch.h 2025-08-14T21:48:23.4387404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_meta_dispatch.h 2025-08-14T21:48:23.4391628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_native.h 2025-08-14T21:48:23.4395705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_ops.h 2025-08-14T21:48:23.4400238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_async.h 2025-08-14T21:48:23.4404750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_async_cpu_dispatch.h 2025-08-14T21:48:23.4408416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_async_cuda_dispatch.h 2025-08-14T21:48:23.4412260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_async_native.h 2025-08-14T21:48:23.4416440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_async_ops.h 2025-08-14T21:48:23.4420336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_scalar.h 2025-08-14T21:48:23.4424468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_scalar_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.4429020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_scalar_native.h 2025-08-14T21:48:23.4433016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_scalar_ops.h 2025-08-14T21:48:23.4436912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_tensor_metadata.h 2025-08-14T21:48:23.4441069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_tensor_metadata_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.4444978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_tensor_metadata_meta_dispatch.h 2025-08-14T21:48:23.4448832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_tensor_metadata_native.h 2025-08-14T21:48:23.4453052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_tensor_metadata_ops.h 2025-08-14T21:48:23.4457014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_full_precision.h 2025-08-14T21:48:23.4461110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_full_precision_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.4465037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_full_precision_native.h 2025-08-14T21:48:23.4468834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_full_precision_ops.h 2025-08-14T21:48:23.4473081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_reduced_precision.h 2025-08-14T21:48:23.4477240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.4481155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_reduced_precision_native.h 2025-08-14T21:48:23.4485186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_reduced_precision_ops.h 2025-08-14T21:48:23.4488997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_backward.h 2025-08-14T21:48:23.4492937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.4496712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_backward_native.h 2025-08-14T21:48:23.4500537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_backward_ops.h 2025-08-14T21:48:23.4504357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index.h 2025-08-14T21:48:23.4508234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_backward.h 2025-08-14T21:48:23.4512881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.4516922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_backward_native.h 2025-08-14T21:48:23.4520922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_backward_ops.h 2025-08-14T21:48:23.4540803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.4544781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_native.h 2025-08-14T21:48:23.4548788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_ops.h 2025-08-14T21:48:23.4552448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_no_update.h 2025-08-14T21:48:23.4556444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_no_update_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.4560319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_no_update_native.h 2025-08-14T21:48:23.4564445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_no_update_ops.h 2025-08-14T21:48:23.4568310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update.h 2025-08-14T21:48:23.4572475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.4576383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update_cpu_dispatch.h 2025-08-14T21:48:23.4580381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update_cuda_dispatch.h 2025-08-14T21:48:23.4584185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update_native.h 2025-08-14T21:48:23.4588260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update_ops.h 2025-08-14T21:48:23.4591967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Byte.h 2025-08-14T21:48:23.4595720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Byte_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.4599484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Byte_native.h 2025-08-14T21:48:23.4603721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Byte_ops.h 2025-08-14T21:48:23.4607758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Char.h 2025-08-14T21:48:23.4611801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Char_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.4616239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Char_native.h 2025-08-14T21:48:23.4619738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Char_ops.h 2025-08-14T21:48:23.4623402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Double.h 2025-08-14T21:48:23.4627889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Double_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.4631587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Double_native.h 2025-08-14T21:48:23.4635284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Double_ops.h 2025-08-14T21:48:23.4639033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Float.h 2025-08-14T21:48:23.4643578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Float_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.4647299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Float_native.h 2025-08-14T21:48:23.4651003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Float_ops.h 2025-08-14T21:48:23.4654824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Half.h 2025-08-14T21:48:23.4658808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Half_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.4662575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Half_native.h 2025-08-14T21:48:23.4666326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Half_ops.h 2025-08-14T21:48:23.4670308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Int.h 2025-08-14T21:48:23.4674244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Int_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.4677957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Int_native.h 2025-08-14T21:48:23.4682031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Int_ops.h 2025-08-14T21:48:23.4685718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Long.h 2025-08-14T21:48:23.4689658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Long_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.4693385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Long_native.h 2025-08-14T21:48:23.4697448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Long_ops.h 2025-08-14T21:48:23.4701262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Short.h 2025-08-14T21:48:23.4705200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Short_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.4708982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Short_native.h 2025-08-14T21:48:23.4712706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Short_ops.h 2025-08-14T21:48:23.4716588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward.h 2025-08-14T21:48:23.4721160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.4724924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward_cpu_dispatch.h 2025-08-14T21:48:23.4729527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward_cuda_dispatch.h 2025-08-14T21:48:23.4733406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward_native.h 2025-08-14T21:48:23.4737442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward_ops.h 2025-08-14T21:48:23.4741530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward.h 2025-08-14T21:48:23.4746387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.4749443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward_cpu_dispatch.h 2025-08-14T21:48:23.4753576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward_cuda_dispatch.h 2025-08-14T21:48:23.4758282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward_native.h 2025-08-14T21:48:23.4761390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward_ops.h 2025-08-14T21:48:23.4765665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper.h 2025-08-14T21:48:23.4769580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.4773396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper_cpu_dispatch.h 2025-08-14T21:48:23.4788307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper_cuda_dispatch.h 2025-08-14T21:48:23.4788638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper_native.h 2025-08-14T21:48:23.4792460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper_ops.h 2025-08-14T21:48:23.4796471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_choose_qparams_per_tensor.h 2025-08-14T21:48:23.4800743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.4805162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_choose_qparams_per_tensor_native.h 2025-08-14T21:48:23.4809401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_choose_qparams_per_tensor_ops.h 2025-08-14T21:48:23.4813309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_chunk_cat.h 2025-08-14T21:48:23.4818690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_chunk_cat_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.4823121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_chunk_cat_cuda_dispatch.h 2025-08-14T21:48:23.4826513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_chunk_cat_native.h 2025-08-14T21:48:23.4830404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_chunk_cat_ops.h 2025-08-14T21:48:23.4834394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesce.h 2025-08-14T21:48:23.4838872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesced.h 2025-08-14T21:48:23.4843474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesced_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.4848639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesced_meta_dispatch.h 2025-08-14T21:48:23.4853138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesced_native.h 2025-08-14T21:48:23.4857601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesced_ops.h 2025-08-14T21:48:23.4861884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesce_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.4865849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesce_native.h 2025-08-14T21:48:23.4869971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesce_ops.h 2025-08-14T21:48:23.4874595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_compute_linear_combination.h 2025-08-14T21:48:23.4878808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_compute_linear_combination_cpu_dispatch.h 2025-08-14T21:48:23.4882807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_compute_linear_combination_cuda_dispatch.h 2025-08-14T21:48:23.4886812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_compute_linear_combination_native.h 2025-08-14T21:48:23.4890618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_compute_linear_combination_ops.h 2025-08-14T21:48:23.4894632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj.h 2025-08-14T21:48:23.4898543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.4902148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_copy.h 2025-08-14T21:48:23.4906136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.4910007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.4914034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_copy_native.h 2025-08-14T21:48:23.4917772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_copy_ops.h 2025-08-14T21:48:23.4921899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_native.h 2025-08-14T21:48:23.4925691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_ops.h 2025-08-14T21:48:23.4929491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_physical.h 2025-08-14T21:48:23.4933419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_physical_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.4937337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_physical_native.h 2025-08-14T21:48:23.4941156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_physical_ops.h 2025-08-14T21:48:23.4945114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr.h 2025-08-14T21:48:23.4949624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.4954915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_cpu_dispatch.h 2025-08-14T21:48:23.4959159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_cuda_dispatch.h 2025-08-14T21:48:23.4962964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_meta.h 2025-08-14T21:48:23.4966844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_meta_dispatch.h 2025-08-14T21:48:23.4971289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_native.h 2025-08-14T21:48:23.4975182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_ops.h 2025-08-14T21:48:23.4979473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo.h 2025-08-14T21:48:23.4983691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.4988231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_cpu_dispatch.h 2025-08-14T21:48:23.4992081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_cuda_dispatch.h 2025-08-14T21:48:23.4996311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_meta.h 2025-08-14T21:48:23.5000747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_meta_dispatch.h 2025-08-14T21:48:23.5005095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_native.h 2025-08-14T21:48:23.5009134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_ops.h 2025-08-14T21:48:23.5013090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack.h 2025-08-14T21:48:23.5017442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_cuda_dispatch.h 2025-08-14T21:48:23.5021735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu.h 2025-08-14T21:48:23.5025442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h 2025-08-14T21:48:23.5029816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_native.h 2025-08-14T21:48:23.5033845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_ops.h 2025-08-14T21:48:23.5037999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_native.h 2025-08-14T21:48:23.5042404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_ops.h 2025-08-14T21:48:23.5047130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution.h 2025-08-14T21:48:23.5051309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.5055309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.5059484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_double_backward.h 2025-08-14T21:48:23.5063678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_double_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.5067676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_double_backward_native.h 2025-08-14T21:48:23.5071649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_double_backward_ops.h 2025-08-14T21:48:23.5075563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_mode.h 2025-08-14T21:48:23.5079921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_mode_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.5083968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_mode_native.h 2025-08-14T21:48:23.5088171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_mode_ops.h 2025-08-14T21:48:23.5092215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_native.h 2025-08-14T21:48:23.5096246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_ops.h 2025-08-14T21:48:23.5100169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conv_depthwise2d.h 2025-08-14T21:48:23.5104324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conv_depthwise2d_cuda_dispatch.h 2025-08-14T21:48:23.5108072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conv_depthwise2d_native.h 2025-08-14T21:48:23.5111970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conv_depthwise2d_ops.h 2025-08-14T21:48:23.5116232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from.h 2025-08-14T21:48:23.5120563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_and_resize.h 2025-08-14T21:48:23.5124468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_and_resize_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.5128275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_and_resize_native.h 2025-08-14T21:48:23.5132249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_and_resize_ops.h 2025-08-14T21:48:23.5136468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.5140902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_native.h 2025-08-14T21:48:23.5144754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_ops.h 2025-08-14T21:48:23.5149410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_compress.h 2025-08-14T21:48:23.5152952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_compress_cuda_dispatch.h 2025-08-14T21:48:23.5156998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_compress_native.h 2025-08-14T21:48:23.5160893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_compress_ops.h 2025-08-14T21:48:23.5165811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm.h 2025-08-14T21:48:23.5170002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_cuda_dispatch.h 2025-08-14T21:48:23.5192960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_native.h 2025-08-14T21:48:23.5197020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_ops.h 2025-08-14T21:48:23.5201419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_search.h 2025-08-14T21:48:23.5205414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_search_cuda_dispatch.h 2025-08-14T21:48:23.5209507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_search_native.h 2025-08-14T21:48:23.5213383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_search_ops.h 2025-08-14T21:48:23.5217412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss.h 2025-08-14T21:48:23.5223328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward.h 2025-08-14T21:48:23.5227046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.5231165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward_cpu_dispatch.h 2025-08-14T21:48:23.5235211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward_cuda_dispatch.h 2025-08-14T21:48:23.5239284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward_native.h 2025-08-14T21:48:23.5243369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward_ops.h 2025-08-14T21:48:23.5247497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.5251543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_cpu_dispatch.h 2025-08-14T21:48:23.5255875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_cuda_dispatch.h 2025-08-14T21:48:23.5259907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_meta_dispatch.h 2025-08-14T21:48:23.5263768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_native.h 2025-08-14T21:48:23.5267671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_ops.h 2025-08-14T21:48:23.5271611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_backward.h 2025-08-14T21:48:23.5275515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_backward_cuda_dispatch.h 2025-08-14T21:48:23.5280233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_backward_native.h 2025-08-14T21:48:23.5284402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_backward_ops.h 2025-08-14T21:48:23.5288405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_forward.h 2025-08-14T21:48:23.5292292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_forward_cuda_dispatch.h 2025-08-14T21:48:23.5296937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_forward_native.h 2025-08-14T21:48:23.5300945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_forward_ops.h 2025-08-14T21:48:23.5305163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_ctc_loss.h 2025-08-14T21:48:23.5309142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.5313339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_ctc_loss_cuda_dispatch.h 2025-08-14T21:48:23.5317444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_ctc_loss_native.h 2025-08-14T21:48:23.5321358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_ctc_loss_ops.h 2025-08-14T21:48:23.5325445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_init_dropout_state.h 2025-08-14T21:48:23.5329947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.5333947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_init_dropout_state_cuda_dispatch.h 2025-08-14T21:48:23.5338047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_init_dropout_state_native.h 2025-08-14T21:48:23.5342297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_init_dropout_state_ops.h 2025-08-14T21:48:23.5346143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn.h 2025-08-14T21:48:23.5350241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_backward.h 2025-08-14T21:48:23.5355040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.5359269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_backward_cuda_dispatch.h 2025-08-14T21:48:23.5363531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_backward_native.h 2025-08-14T21:48:23.5367417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_backward_ops.h 2025-08-14T21:48:23.5371461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.5375401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_cuda_dispatch.h 2025-08-14T21:48:23.5379543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_flatten_weight.h 2025-08-14T21:48:23.5384316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.5388363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_cuda_dispatch.h 2025-08-14T21:48:23.5392286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_native.h 2025-08-14T21:48:23.5396398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_ops.h 2025-08-14T21:48:23.5400379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_native.h 2025-08-14T21:48:23.5404633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_ops.h 2025-08-14T21:48:23.5408659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_clear_plan_cache.h 2025-08-14T21:48:23.5412902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.5416548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_clear_plan_cache_native.h 2025-08-14T21:48:23.5420555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_clear_plan_cache_ops.h 2025-08-14T21:48:23.5424568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_max_size.h 2025-08-14T21:48:23.5428967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.5433009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_max_size_native.h 2025-08-14T21:48:23.5436800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_max_size_ops.h 2025-08-14T21:48:23.5440723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_size.h 2025-08-14T21:48:23.5445028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.5449098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_size_native.h 2025-08-14T21:48:23.5453458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_size_ops.h 2025-08-14T21:48:23.5457334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_set_plan_cache_max_size.h 2025-08-14T21:48:23.5461392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.5465498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_set_plan_cache_max_size_native.h 2025-08-14T21:48:23.5469429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_set_plan_cache_max_size_ops.h 2025-08-14T21:48:23.5473418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummax_helper.h 2025-08-14T21:48:23.5477701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummax_helper_cpu_dispatch.h 2025-08-14T21:48:23.5481829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummax_helper_cuda_dispatch.h 2025-08-14T21:48:23.5485828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummax_helper_native.h 2025-08-14T21:48:23.5489724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummax_helper_ops.h 2025-08-14T21:48:23.5493690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummin_helper.h 2025-08-14T21:48:23.5497738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummin_helper_cpu_dispatch.h 2025-08-14T21:48:23.5501593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummin_helper_cuda_dispatch.h 2025-08-14T21:48:23.5505759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummin_helper_native.h 2025-08-14T21:48:23.5509805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummin_helper_ops.h 2025-08-14T21:48:23.5513547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_debug_has_internal_overlap.h 2025-08-14T21:48:23.5517417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.5522084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_debug_has_internal_overlap_native.h 2025-08-14T21:48:23.5526126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_debug_has_internal_overlap_ops.h 2025-08-14T21:48:23.5530180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimI.h 2025-08-14T21:48:23.5533803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimI_native.h 2025-08-14T21:48:23.5537562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimI_ops.h 2025-08-14T21:48:23.5541260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimV.h 2025-08-14T21:48:23.5544764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimV_native.h 2025-08-14T21:48:23.5548595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimV_ops.h 2025-08-14T21:48:23.5552566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dim_arange.h 2025-08-14T21:48:23.5556368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dim_arange_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.5560218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dim_arange_native.h 2025-08-14T21:48:23.5564381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dim_arange_ops.h 2025-08-14T21:48:23.5568022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad.h 2025-08-14T21:48:23.5571925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.5576272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad_cpu_dispatch.h 2025-08-14T21:48:23.5580142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad_cuda_dispatch.h 2025-08-14T21:48:23.5584700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad_native.h 2025-08-14T21:48:23.5589035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad_ops.h 2025-08-14T21:48:23.5592973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_matmul_4bit.h 2025-08-14T21:48:23.5596680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_matmul_4bit_cpu_dispatch.h 2025-08-14T21:48:23.5600554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_matmul_4bit_native.h 2025-08-14T21:48:23.5604275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_matmul_4bit_ops.h 2025-08-14T21:48:23.5608705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight.h 2025-08-14T21:48:23.5612731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_cpu_dispatch.h 2025-08-14T21:48:23.5616713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_native.h 2025-08-14T21:48:23.5620490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_ops.h 2025-08-14T21:48:23.5624885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor.h 2025-08-14T21:48:23.5628834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.5632756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_cpu_dispatch.h 2025-08-14T21:48:23.5636552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_cuda_dispatch.h 2025-08-14T21:48:23.5640691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_meta_dispatch.h 2025-08-14T21:48:23.5645063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_native.h 2025-08-14T21:48:23.5648744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_ops.h 2025-08-14T21:48:23.5652594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_backward.h 2025-08-14T21:48:23.5656450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_backward_cuda_dispatch.h 2025-08-14T21:48:23.5660321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_backward_native.h 2025-08-14T21:48:23.5664325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_backward_ops.h 2025-08-14T21:48:23.5668228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_forward.h 2025-08-14T21:48:23.5672201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_forward_cuda_dispatch.h 2025-08-14T21:48:23.5676721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_forward_native.h 2025-08-14T21:48:23.5681229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_forward_ops.h 2025-08-14T21:48:23.5685180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag.h 2025-08-14T21:48:23.5690029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_backward.h 2025-08-14T21:48:23.5694074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_backward_cpu_dispatch.h 2025-08-14T21:48:23.5697960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_backward_cuda_dispatch.h 2025-08-14T21:48:23.5701794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_backward_native.h 2025-08-14T21:48:23.5705618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_backward_ops.h 2025-08-14T21:48:23.5709546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.5713538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_cpu_dispatch.h 2025-08-14T21:48:23.5717415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_cuda_dispatch.h 2025-08-14T21:48:23.5721620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward.h 2025-08-14T21:48:23.5725561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.5729482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward_cpu_dispatch.h 2025-08-14T21:48:23.5733415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward_cuda_dispatch.h 2025-08-14T21:48:23.5737432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward_native.h 2025-08-14T21:48:23.5741531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward_ops.h 2025-08-14T21:48:23.5745330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only.h 2025-08-14T21:48:23.5749416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.5753261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only_cpu_dispatch.h 2025-08-14T21:48:23.5757327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only_cuda_dispatch.h 2025-08-14T21:48:23.5761390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only_native.h 2025-08-14T21:48:23.5765384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only_ops.h 2025-08-14T21:48:23.5769470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_native.h 2025-08-14T21:48:23.5773354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_ops.h 2025-08-14T21:48:23.5777244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward.h 2025-08-14T21:48:23.5782668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.5786620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_cpu_dispatch.h 2025-08-14T21:48:23.5790455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_cuda_dispatch.h 2025-08-14T21:48:23.5794321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_native.h 2025-08-14T21:48:23.5798186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_ops.h 2025-08-14T21:48:23.5802335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_sparse_backward.h 2025-08-14T21:48:23.5806494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.5810311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_sparse_backward_native.h 2025-08-14T21:48:23.5814258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_sparse_backward_ops.h 2025-08-14T21:48:23.5818230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_affine_quantized.h 2025-08-14T21:48:23.5822234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_affine_quantized_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.5825997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_affine_quantized_cpu_dispatch.h 2025-08-14T21:48:23.5829830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_affine_quantized_native.h 2025-08-14T21:48:23.5833638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_affine_quantized_ops.h 2025-08-14T21:48:23.5837556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_per_channel_affine_quantized.h 2025-08-14T21:48:23.5841726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.5845888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_per_channel_affine_quantized_cpu_dispatch.h 2025-08-14T21:48:23.5849974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_per_channel_affine_quantized_native.h 2025-08-14T21:48:23.5853899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_per_channel_affine_quantized_ops.h 2025-08-14T21:48:23.5858054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_euclidean_dist.h 2025-08-14T21:48:23.5862052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_euclidean_dist_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.5865979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_euclidean_dist_native.h 2025-08-14T21:48:23.5870717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_euclidean_dist_ops.h 2025-08-14T21:48:23.5874672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine.h 2025-08-14T21:48:23.5878494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward.h 2025-08-14T21:48:23.5883259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h 2025-08-14T21:48:23.5887871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h 2025-08-14T21:48:23.5892234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_native.h 2025-08-14T21:48:23.5896416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_ops.h 2025-08-14T21:48:23.5901003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.5905567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h 2025-08-14T21:48:23.5910659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h 2025-08-14T21:48:23.5915306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_native.h 2025-08-14T21:48:23.5920595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_ops.h 2025-08-14T21:48:23.5926280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine.h 2025-08-14T21:48:23.5931432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward.h 2025-08-14T21:48:23.5936253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h 2025-08-14T21:48:23.5940481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h 2025-08-14T21:48:23.5945025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_native.h 2025-08-14T21:48:23.5949224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_ops.h 2025-08-14T21:48:23.5953763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.5959664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h 2025-08-14T21:48:23.5963993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h 2025-08-14T21:48:23.5967968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_native.h 2025-08-14T21:48:23.5972333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_ops.h 2025-08-14T21:48:23.5976507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h 2025-08-14T21:48:23.5981414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.5985133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h 2025-08-14T21:48:23.5989493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h 2025-08-14T21:48:23.5994031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h 2025-08-14T21:48:23.5998064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h 2025-08-14T21:48:23.6001954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2c.h 2025-08-14T21:48:23.6005347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2c_cpu_dispatch.h 2025-08-14T21:48:23.6009486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2c_cuda_dispatch.h 2025-08-14T21:48:23.6013739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2c_native.h 2025-08-14T21:48:23.6017625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2c_ops.h 2025-08-14T21:48:23.6021382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2r.h 2025-08-14T21:48:23.6024888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2r_cpu_dispatch.h 2025-08-14T21:48:23.6028788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2r_cuda_dispatch.h 2025-08-14T21:48:23.6032665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2r_native.h 2025-08-14T21:48:23.6036867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2r_ops.h 2025-08-14T21:48:23.6040705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_r2c.h 2025-08-14T21:48:23.6044382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_r2c_cpu_dispatch.h 2025-08-14T21:48:23.6048378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_r2c_cuda_dispatch.h 2025-08-14T21:48:23.6052681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_r2c_native.h 2025-08-14T21:48:23.6056677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_r2c_ops.h 2025-08-14T21:48:23.6060504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fill_mem_eff_dropout_mask.h 2025-08-14T21:48:23.6064325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_cuda_dispatch.h 2025-08-14T21:48:23.6068259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_meta_dispatch.h 2025-08-14T21:48:23.6072602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_native.h 2025-08-14T21:48:23.6076736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_ops.h 2025-08-14T21:48:23.6080701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_backward.h 2025-08-14T21:48:23.6084599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_backward_cuda_dispatch.h 2025-08-14T21:48:23.6088976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_backward_native.h 2025-08-14T21:48:23.6092900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_backward_ops.h 2025-08-14T21:48:23.6097257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_forward.h 2025-08-14T21:48:23.6101814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_forward_cuda_dispatch.h 2025-08-14T21:48:23.6105719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_forward_native.h 2025-08-14T21:48:23.6109485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_forward_ops.h 2025-08-14T21:48:23.6113451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foobar.h 2025-08-14T21:48:23.6117353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foobar_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6121124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foobar_cpu_dispatch.h 2025-08-14T21:48:23.6124936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foobar_native.h 2025-08-14T21:48:23.6128743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foobar_ops.h 2025-08-14T21:48:23.6132590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_abs.h 2025-08-14T21:48:23.6136445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_abs_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6140368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_abs_cuda_dispatch.h 2025-08-14T21:48:23.6144160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_abs_native.h 2025-08-14T21:48:23.6148933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_abs_ops.h 2025-08-14T21:48:23.6152768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_acos.h 2025-08-14T21:48:23.6157188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_acos_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6161159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_acos_cuda_dispatch.h 2025-08-14T21:48:23.6165331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_acos_native.h 2025-08-14T21:48:23.6169418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_acos_ops.h 2025-08-14T21:48:23.6173351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_add.h 2025-08-14T21:48:23.6177097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcdiv.h 2025-08-14T21:48:23.6180977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcdiv_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6185194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcdiv_cuda_dispatch.h 2025-08-14T21:48:23.6189309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcdiv_native.h 2025-08-14T21:48:23.6193316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcdiv_ops.h 2025-08-14T21:48:23.6197046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcmul.h 2025-08-14T21:48:23.6201165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcmul_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6205394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcmul_cuda_dispatch.h 2025-08-14T21:48:23.6209546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcmul_native.h 2025-08-14T21:48:23.6213364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcmul_ops.h 2025-08-14T21:48:23.6217323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_add_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6221157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_add_cuda_dispatch.h 2025-08-14T21:48:23.6224975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_add_native.h 2025-08-14T21:48:23.6228809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_add_ops.h 2025-08-14T21:48:23.6232791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_asin.h 2025-08-14T21:48:23.6237184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_asin_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6258480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_asin_cuda_dispatch.h 2025-08-14T21:48:23.6262498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_asin_native.h 2025-08-14T21:48:23.6266324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_asin_ops.h 2025-08-14T21:48:23.6270161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_atan.h 2025-08-14T21:48:23.6274618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_atan_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6279633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_atan_cuda_dispatch.h 2025-08-14T21:48:23.6284103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_atan_native.h 2025-08-14T21:48:23.6288233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_atan_ops.h 2025-08-14T21:48:23.6292365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_ceil.h 2025-08-14T21:48:23.6296447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_ceil_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6300749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_ceil_cuda_dispatch.h 2025-08-14T21:48:23.6304455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_ceil_native.h 2025-08-14T21:48:23.6308739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_ceil_ops.h 2025-08-14T21:48:23.6312817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_max.h 2025-08-14T21:48:23.6317086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_max_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6321086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_max_cuda_dispatch.h 2025-08-14T21:48:23.6325707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_max_native.h 2025-08-14T21:48:23.6330010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_max_ops.h 2025-08-14T21:48:23.6333945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_min.h 2025-08-14T21:48:23.6338238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_min_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6342728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_min_cuda_dispatch.h 2025-08-14T21:48:23.6347709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_min_native.h 2025-08-14T21:48:23.6352418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_min_ops.h 2025-08-14T21:48:23.6357938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_copy.h 2025-08-14T21:48:23.6363255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6368222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_copy_cuda_dispatch.h 2025-08-14T21:48:23.6372972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_copy_native.h 2025-08-14T21:48:23.6377213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_copy_ops.h 2025-08-14T21:48:23.6381438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cos.h 2025-08-14T21:48:23.6385444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cosh.h 2025-08-14T21:48:23.6389582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cosh_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6394479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cosh_cuda_dispatch.h 2025-08-14T21:48:23.6398936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cosh_native.h 2025-08-14T21:48:23.6403000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cosh_ops.h 2025-08-14T21:48:23.6407304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cos_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6411838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cos_cuda_dispatch.h 2025-08-14T21:48:23.6415818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cos_native.h 2025-08-14T21:48:23.6419645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cos_ops.h 2025-08-14T21:48:23.6423707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_div.h 2025-08-14T21:48:23.6428235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_div_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6432501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_div_cuda_dispatch.h 2025-08-14T21:48:23.6436315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_div_native.h 2025-08-14T21:48:23.6440262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_div_ops.h 2025-08-14T21:48:23.6444381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erf.h 2025-08-14T21:48:23.6448610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erfc.h 2025-08-14T21:48:23.6452433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erfc_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6456745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erfc_cuda_dispatch.h 2025-08-14T21:48:23.6462421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erfc_native.h 2025-08-14T21:48:23.6467634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erfc_ops.h 2025-08-14T21:48:23.6471787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erf_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6475708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erf_cuda_dispatch.h 2025-08-14T21:48:23.6479690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erf_native.h 2025-08-14T21:48:23.6483754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erf_ops.h 2025-08-14T21:48:23.6487929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_exp.h 2025-08-14T21:48:23.6492048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_expm1.h 2025-08-14T21:48:23.6496347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_expm1_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6500241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_expm1_cuda_dispatch.h 2025-08-14T21:48:23.6504386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_expm1_native.h 2025-08-14T21:48:23.6508796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_expm1_ops.h 2025-08-14T21:48:23.6512970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_exp_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6517274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_exp_cuda_dispatch.h 2025-08-14T21:48:23.6521418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_exp_native.h 2025-08-14T21:48:23.6525260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_exp_ops.h 2025-08-14T21:48:23.6529053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_floor.h 2025-08-14T21:48:23.6533027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_floor_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6536879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_floor_cuda_dispatch.h 2025-08-14T21:48:23.6540800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_floor_native.h 2025-08-14T21:48:23.6544791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_floor_ops.h 2025-08-14T21:48:23.6548574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_frac.h 2025-08-14T21:48:23.6552740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_frac_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6556629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_frac_cuda_dispatch.h 2025-08-14T21:48:23.6561171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_frac_native.h 2025-08-14T21:48:23.6565147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_frac_ops.h 2025-08-14T21:48:23.6569241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lerp.h 2025-08-14T21:48:23.6573527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lerp_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6577405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lerp_cuda_dispatch.h 2025-08-14T21:48:23.6581371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lerp_native.h 2025-08-14T21:48:23.6585467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lerp_ops.h 2025-08-14T21:48:23.6589354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lgamma.h 2025-08-14T21:48:23.6593237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lgamma_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6597329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lgamma_cuda_dispatch.h 2025-08-14T21:48:23.6601755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lgamma_native.h 2025-08-14T21:48:23.6606337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lgamma_ops.h 2025-08-14T21:48:23.6610081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log.h 2025-08-14T21:48:23.6613894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log10.h 2025-08-14T21:48:23.6618680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log10_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6622761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log10_cuda_dispatch.h 2025-08-14T21:48:23.6626983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log10_native.h 2025-08-14T21:48:23.6630885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log10_ops.h 2025-08-14T21:48:23.6634718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log1p.h 2025-08-14T21:48:23.6639210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log1p_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6643161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log1p_cuda_dispatch.h 2025-08-14T21:48:23.6647057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log1p_native.h 2025-08-14T21:48:23.6650922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log1p_ops.h 2025-08-14T21:48:23.6655527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log2.h 2025-08-14T21:48:23.6660317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log2_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6665120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log2_cuda_dispatch.h 2025-08-14T21:48:23.6669976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log2_native.h 2025-08-14T21:48:23.6674821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log2_ops.h 2025-08-14T21:48:23.6679937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6684909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log_cuda_dispatch.h 2025-08-14T21:48:23.6689792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log_native.h 2025-08-14T21:48:23.6694216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log_ops.h 2025-08-14T21:48:23.6698625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_max.h 2025-08-14T21:48:23.6702966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_maximum.h 2025-08-14T21:48:23.6707258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_maximum_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6711965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_maximum_cuda_dispatch.h 2025-08-14T21:48:23.6716145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_maximum_native.h 2025-08-14T21:48:23.6721038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_maximum_ops.h 2025-08-14T21:48:23.6724751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_max_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6728832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_max_cuda_dispatch.h 2025-08-14T21:48:23.6733319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_max_native.h 2025-08-14T21:48:23.6736700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_max_ops.h 2025-08-14T21:48:23.6740206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_minimum.h 2025-08-14T21:48:23.6744060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_minimum_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6747904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_minimum_cuda_dispatch.h 2025-08-14T21:48:23.6751567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_minimum_native.h 2025-08-14T21:48:23.6755250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_minimum_ops.h 2025-08-14T21:48:23.6758837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_mul.h 2025-08-14T21:48:23.6763249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_mul_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6767674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_mul_cuda_dispatch.h 2025-08-14T21:48:23.6772758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_mul_native.h 2025-08-14T21:48:23.6776828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_mul_ops.h 2025-08-14T21:48:23.6780739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_neg.h 2025-08-14T21:48:23.6784682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_neg_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6788779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_neg_cuda_dispatch.h 2025-08-14T21:48:23.6792650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_neg_native.h 2025-08-14T21:48:23.6796278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_neg_ops.h 2025-08-14T21:48:23.6800382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_norm.h 2025-08-14T21:48:23.6804199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_norm_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6808089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_norm_cuda_dispatch.h 2025-08-14T21:48:23.6811794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_norm_native.h 2025-08-14T21:48:23.6815468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_norm_ops.h 2025-08-14T21:48:23.6819122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_pow.h 2025-08-14T21:48:23.6822960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_pow_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6827018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_pow_cuda_dispatch.h 2025-08-14T21:48:23.6830912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_pow_native.h 2025-08-14T21:48:23.6834687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_pow_ops.h 2025-08-14T21:48:23.6839178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_reciprocal.h 2025-08-14T21:48:23.6843462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_reciprocal_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6847981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_reciprocal_cuda_dispatch.h 2025-08-14T21:48:23.6865524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_reciprocal_native.h 2025-08-14T21:48:23.6870022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_reciprocal_ops.h 2025-08-14T21:48:23.6874324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_round.h 2025-08-14T21:48:23.6878779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_round_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6883685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_round_cuda_dispatch.h 2025-08-14T21:48:23.6887791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_round_native.h 2025-08-14T21:48:23.6892152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_round_ops.h 2025-08-14T21:48:23.6896637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_rsqrt.h 2025-08-14T21:48:23.6901272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_rsqrt_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6905203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_rsqrt_cuda_dispatch.h 2025-08-14T21:48:23.6908989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_rsqrt_native.h 2025-08-14T21:48:23.6912824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_rsqrt_ops.h 2025-08-14T21:48:23.6916904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sigmoid.h 2025-08-14T21:48:23.6921089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sigmoid_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6925138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sigmoid_cuda_dispatch.h 2025-08-14T21:48:23.6929198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sigmoid_native.h 2025-08-14T21:48:23.6932865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sigmoid_ops.h 2025-08-14T21:48:23.6936724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sign.h 2025-08-14T21:48:23.6940534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sign_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6944635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sign_cuda_dispatch.h 2025-08-14T21:48:23.6948503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sign_native.h 2025-08-14T21:48:23.6952632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sign_ops.h 2025-08-14T21:48:23.6956795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sin.h 2025-08-14T21:48:23.6962004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sinh.h 2025-08-14T21:48:23.6965961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sinh_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6969725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sinh_cuda_dispatch.h 2025-08-14T21:48:23.6973487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sinh_native.h 2025-08-14T21:48:23.6977097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sinh_ops.h 2025-08-14T21:48:23.6981178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sin_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.6985099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sin_cuda_dispatch.h 2025-08-14T21:48:23.6988804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sin_native.h 2025-08-14T21:48:23.6992526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sin_ops.h 2025-08-14T21:48:23.6996235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sqrt.h 2025-08-14T21:48:23.7000198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sqrt_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.7004220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sqrt_cuda_dispatch.h 2025-08-14T21:48:23.7008108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sqrt_native.h 2025-08-14T21:48:23.7011775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sqrt_ops.h 2025-08-14T21:48:23.7015426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sub.h 2025-08-14T21:48:23.7019399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sub_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.7023007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sub_cuda_dispatch.h 2025-08-14T21:48:23.7027071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sub_native.h 2025-08-14T21:48:23.7030791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sub_ops.h 2025-08-14T21:48:23.7034810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tan.h 2025-08-14T21:48:23.7038571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tanh.h 2025-08-14T21:48:23.7042603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tanh_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.7046312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tanh_cuda_dispatch.h 2025-08-14T21:48:23.7050546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tanh_native.h 2025-08-14T21:48:23.7054211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tanh_ops.h 2025-08-14T21:48:23.7057943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tan_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.7062428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tan_cuda_dispatch.h 2025-08-14T21:48:23.7066674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tan_native.h 2025-08-14T21:48:23.7070588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tan_ops.h 2025-08-14T21:48:23.7074468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_trunc.h 2025-08-14T21:48:23.7078416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_trunc_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.7082303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_trunc_cuda_dispatch.h 2025-08-14T21:48:23.7086007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_trunc_native.h 2025-08-14T21:48:23.7089944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_trunc_ops.h 2025-08-14T21:48:23.7093791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_zero.h 2025-08-14T21:48:23.7098178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_zero_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.7101836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_zero_cuda_dispatch.h 2025-08-14T21:48:23.7105525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_zero_native.h 2025-08-14T21:48:23.7109197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_zero_ops.h 2025-08-14T21:48:23.7112756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_async.h 2025-08-14T21:48:23.7116585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_async_cpu_dispatch.h 2025-08-14T21:48:23.7120483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_async_native.h 2025-08-14T21:48:23.7124587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_async_ops.h 2025-08-14T21:48:23.7128626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_scalar.h 2025-08-14T21:48:23.7132691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_scalar_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.7136404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_scalar_native.h 2025-08-14T21:48:23.7140331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_scalar_ops.h 2025-08-14T21:48:23.7144824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range.h 2025-08-14T21:48:23.7149327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.7153281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_for_size.h 2025-08-14T21:48:23.7157987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.7162635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_for_size_native.h 2025-08-14T21:48:23.7166780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_for_size_ops.h 2025-08-14T21:48:23.7170617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_native.h 2025-08-14T21:48:23.7174520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_ops.h 2025-08-14T21:48:23.7178356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad.h 2025-08-14T21:48:23.7182181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.7186358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad_cpu_dispatch.h 2025-08-14T21:48:23.7190280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad_cuda_dispatch.h 2025-08-14T21:48:23.7194599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad_native.h 2025-08-14T21:48:23.7198522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad_ops.h 2025-08-14T21:48:23.7203395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam.h 2025-08-14T21:48:23.7207419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw.h 2025-08-14T21:48:23.7211403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.7215480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw_cpu_dispatch.h 2025-08-14T21:48:23.7219702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw_cuda_dispatch.h 2025-08-14T21:48:23.7223654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw_native.h 2025-08-14T21:48:23.7227655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw_ops.h 2025-08-14T21:48:23.7231852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.7236319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam_cpu_dispatch.h 2025-08-14T21:48:23.7240283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam_cuda_dispatch.h 2025-08-14T21:48:23.7244168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam_native.h 2025-08-14T21:48:23.7248164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam_ops.h 2025-08-14T21:48:23.7251910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_dropout.h 2025-08-14T21:48:23.7256653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_dropout_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.7261119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_dropout_cuda_dispatch.h 2025-08-14T21:48:23.7265361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_dropout_native.h 2025-08-14T21:48:23.7269865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_dropout_ops.h 2025-08-14T21:48:23.7273741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper.h 2025-08-14T21:48:23.7278031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.7283666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_cpu_dispatch.h 2025-08-14T21:48:23.7288062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_cuda_dispatch.h 2025-08-14T21:48:23.7291925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_native.h 2025-08-14T21:48:23.7296224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_ops.h 2025-08-14T21:48:23.7300177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm.h 2025-08-14T21:48:23.7304325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_backward.h 2025-08-14T21:48:23.7308560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_backward_cuda_dispatch.h 2025-08-14T21:48:23.7312677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_backward_native.h 2025-08-14T21:48:23.7316724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_backward_ops.h 2025-08-14T21:48:23.7321013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.7324870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_cuda_dispatch.h 2025-08-14T21:48:23.7328749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_native.h 2025-08-14T21:48:23.7352060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_ops.h 2025-08-14T21:48:23.7356253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice.h 2025-08-14T21:48:23.7360834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice_cpu_dispatch.h 2025-08-14T21:48:23.7365302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice_cuda_dispatch.h 2025-08-14T21:48:23.7370211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice_meta_dispatch.h 2025-08-14T21:48:23.7374936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice_native.h 2025-08-14T21:48:23.7379069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice_ops.h 2025-08-14T21:48:23.7383340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd.h 2025-08-14T21:48:23.7388083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.7392273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd_cpu_dispatch.h 2025-08-14T21:48:23.7396391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd_cuda_dispatch.h 2025-08-14T21:48:23.7400338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd_native.h 2025-08-14T21:48:23.7404286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd_ops.h 2025-08-14T21:48:23.7408009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal.h 2025-08-14T21:48:23.7411798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.7415433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_copy.h 2025-08-14T21:48:23.7419565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.7424175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.7428181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_copy_native.h 2025-08-14T21:48:23.7431996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_copy_ops.h 2025-08-14T21:48:23.7435807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_native.h 2025-08-14T21:48:23.7439871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_ops.h 2025-08-14T21:48:23.7444480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_gather_sparse_backward.h 2025-08-14T21:48:23.7448408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_gather_sparse_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.7452400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_gather_sparse_backward_native.h 2025-08-14T21:48:23.7456082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_gather_sparse_backward_ops.h 2025-08-14T21:48:23.7459874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback.h 2025-08-14T21:48:23.7463610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward.h 2025-08-14T21:48:23.7467545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.7471539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_native.h 2025-08-14T21:48:23.7475332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_ops.h 2025-08-14T21:48:23.7479288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.7483850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_native.h 2025-08-14T21:48:23.7487833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_ops.h 2025-08-14T21:48:23.7491793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grouped_mm.h 2025-08-14T21:48:23.7495510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grouped_mm_cuda_dispatch.h 2025-08-14T21:48:23.7499313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grouped_mm_native.h 2025-08-14T21:48:23.7503429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grouped_mm_ops.h 2025-08-14T21:48:23.7507417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_compatible_shallow_copy_type.h 2025-08-14T21:48:23.7511282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.7515032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_compatible_shallow_copy_type_native.h 2025-08-14T21:48:23.7519212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_compatible_shallow_copy_type_ops.h 2025-08-14T21:48:23.7523186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_same_storage_numel.h 2025-08-14T21:48:23.7527075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_same_storage_numel_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.7530825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_same_storage_numel_native.h 2025-08-14T21:48:23.7534656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_same_storage_numel_ops.h 2025-08-14T21:48:23.7538571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_bin_edges.h 2025-08-14T21:48:23.7542385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.7546100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_bin_edges_cpu_dispatch.h 2025-08-14T21:48:23.7549907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_bin_edges_native.h 2025-08-14T21:48:23.7553664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_bin_edges_ops.h 2025-08-14T21:48:23.7557479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_cts.h 2025-08-14T21:48:23.7562062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.7566218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_cts_cpu_dispatch.h 2025-08-14T21:48:23.7570595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_cts_native.h 2025-08-14T21:48:23.7574070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_cts_ops.h 2025-08-14T21:48:23.7578701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_tensors.h 2025-08-14T21:48:23.7582729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.7586731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_tensors_cpu_dispatch.h 2025-08-14T21:48:23.7590530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_tensors_native.h 2025-08-14T21:48:23.7595484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_tensors_ops.h 2025-08-14T21:48:23.7599492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl.h 2025-08-14T21:48:23.7603379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.7607178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_cpu_dispatch.h 2025-08-14T21:48:23.7611128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_cuda_dispatch.h 2025-08-14T21:48:23.7614929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_meta_dispatch.h 2025-08-14T21:48:23.7618716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_native.h 2025-08-14T21:48:23.7622512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_ops.h 2025-08-14T21:48:23.7626300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices.h 2025-08-14T21:48:23.7629751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_copy.h 2025-08-14T21:48:23.7633810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.7637961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.7641738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_copy_native.h 2025-08-14T21:48:23.7645429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_copy_ops.h 2025-08-14T21:48:23.7649104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_native.h 2025-08-14T21:48:23.7652782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_ops.h 2025-08-14T21:48:23.7656599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_int_mm.h 2025-08-14T21:48:23.7660507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_int_mm_cpu_dispatch.h 2025-08-14T21:48:23.7664609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_int_mm_cuda_dispatch.h 2025-08-14T21:48:23.7668254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_int_mm_native.h 2025-08-14T21:48:23.7671963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_int_mm_ops.h 2025-08-14T21:48:23.7675869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_all_true.h 2025-08-14T21:48:23.7680649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_all_true_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.7684221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_all_true_native.h 2025-08-14T21:48:23.7688049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_all_true_ops.h 2025-08-14T21:48:23.7692093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_any_true.h 2025-08-14T21:48:23.7696301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_any_true_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.7700052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_any_true_native.h 2025-08-14T21:48:23.7703927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_any_true_ops.h 2025-08-14T21:48:23.7707828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_zerotensor.h 2025-08-14T21:48:23.7712357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_zerotensor_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.7715597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_zerotensor_native.h 2025-08-14T21:48:23.7719959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_zerotensor_ops.h 2025-08-14T21:48:23.7723995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_jagged_to_padded_dense_forward.h 2025-08-14T21:48:23.7727903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_jagged_to_padded_dense_forward_cpu_dispatch.h 2025-08-14T21:48:23.7731628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_jagged_to_padded_dense_forward_cuda_dispatch.h 2025-08-14T21:48:23.7735498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_jagged_to_padded_dense_forward_native.h 2025-08-14T21:48:23.7739495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_jagged_to_padded_dense_forward_ops.h 2025-08-14T21:48:23.7743525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lazy_clone.h 2025-08-14T21:48:23.7747461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lazy_clone_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.7751580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lazy_clone_native.h 2025-08-14T21:48:23.7755964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lazy_clone_ops.h 2025-08-14T21:48:23.7759579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_check_errors.h 2025-08-14T21:48:23.7763668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_check_errors_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.7767532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_check_errors_native.h 2025-08-14T21:48:23.7771595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_check_errors_ops.h 2025-08-14T21:48:23.7775510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det.h 2025-08-14T21:48:23.7780316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.7784193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_cpu_dispatch.h 2025-08-14T21:48:23.7788049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_cuda_dispatch.h 2025-08-14T21:48:23.7791912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_meta.h 2025-08-14T21:48:23.7795930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_meta_dispatch.h 2025-08-14T21:48:23.7800432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_native.h 2025-08-14T21:48:23.7804474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_ops.h 2025-08-14T21:48:23.7808445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh.h 2025-08-14T21:48:23.7813206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.7817390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_cpu_dispatch.h 2025-08-14T21:48:23.7821109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_cuda_dispatch.h 2025-08-14T21:48:23.7825161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_meta.h 2025-08-14T21:48:23.7829184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_meta_dispatch.h 2025-08-14T21:48:23.7832863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_native.h 2025-08-14T21:48:23.7836760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_ops.h 2025-08-14T21:48:23.7840672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigvals.h 2025-08-14T21:48:23.7844519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigvals_cpu_dispatch.h 2025-08-14T21:48:23.7869163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigvals_cuda_dispatch.h 2025-08-14T21:48:23.7869835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigvals_native.h 2025-08-14T21:48:23.7870450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigvals_ops.h 2025-08-14T21:48:23.7871040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet.h 2025-08-14T21:48:23.7871814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.7872636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_cpu_dispatch.h 2025-08-14T21:48:23.7875653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_cuda_dispatch.h 2025-08-14T21:48:23.7879459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_meta.h 2025-08-14T21:48:23.7883575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_meta_dispatch.h 2025-08-14T21:48:23.7887975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_native.h 2025-08-14T21:48:23.7891857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_ops.h 2025-08-14T21:48:23.7895979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex.h 2025-08-14T21:48:23.7899933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.7904420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_cpu_dispatch.h 2025-08-14T21:48:23.7907654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_cuda_dispatch.h 2025-08-14T21:48:23.7911976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_meta.h 2025-08-14T21:48:23.7915835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_meta_dispatch.h 2025-08-14T21:48:23.7919790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_native.h 2025-08-14T21:48:23.7923670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_ops.h 2025-08-14T21:48:23.7927435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd.h 2025-08-14T21:48:23.7931461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.7935586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_cpu_dispatch.h 2025-08-14T21:48:23.7939297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_cuda_dispatch.h 2025-08-14T21:48:23.7943000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_meta.h 2025-08-14T21:48:23.7946754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_meta_dispatch.h 2025-08-14T21:48:23.7950505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_native.h 2025-08-14T21:48:23.7954360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_ops.h 2025-08-14T21:48:23.7958219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_local_scalar_dense.h 2025-08-14T21:48:23.7962221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_local_scalar_dense_cpu_dispatch.h 2025-08-14T21:48:23.7966004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_local_scalar_dense_cuda_dispatch.h 2025-08-14T21:48:23.7969695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_local_scalar_dense_native.h 2025-08-14T21:48:23.7973440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_local_scalar_dense_ops.h 2025-08-14T21:48:23.7977244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_logcumsumexp.h 2025-08-14T21:48:23.7980928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_logcumsumexp_cpu_dispatch.h 2025-08-14T21:48:23.7984601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_logcumsumexp_cuda_dispatch.h 2025-08-14T21:48:23.7988328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_logcumsumexp_native.h 2025-08-14T21:48:23.7992778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_logcumsumexp_ops.h 2025-08-14T21:48:23.7996944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax.h 2025-08-14T21:48:23.8000768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data.h 2025-08-14T21:48:23.8005582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.8009308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_cpu_dispatch.h 2025-08-14T21:48:23.8013185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_cuda_dispatch.h 2025-08-14T21:48:23.8017539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_meta.h 2025-08-14T21:48:23.8021526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_meta_dispatch.h 2025-08-14T21:48:23.8025332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_native.h 2025-08-14T21:48:23.8029115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_ops.h 2025-08-14T21:48:23.8033084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.8036953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_cpu_dispatch.h 2025-08-14T21:48:23.8040911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_cuda_dispatch.h 2025-08-14T21:48:23.8044650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_meta.h 2025-08-14T21:48:23.8048418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_meta_dispatch.h 2025-08-14T21:48:23.8052158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_native.h 2025-08-14T21:48:23.8055910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_ops.h 2025-08-14T21:48:23.8059772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lstm_mps.h 2025-08-14T21:48:23.8065383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lstm_mps_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.8069358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lstm_mps_native.h 2025-08-14T21:48:23.8073077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lstm_mps_ops.h 2025-08-14T21:48:23.8086521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lu_with_info.h 2025-08-14T21:48:23.8087258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lu_with_info_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.8087972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lu_with_info_native.h 2025-08-14T21:48:23.8090355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lu_with_info_ops.h 2025-08-14T21:48:23.8094448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dep_token.h 2025-08-14T21:48:23.8100125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dep_token_cpu_dispatch.h 2025-08-14T21:48:23.8103755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dep_token_native.h 2025-08-14T21:48:23.8107518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dep_token_ops.h 2025-08-14T21:48:23.8111316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual.h 2025-08-14T21:48:23.8115104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.8119490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_copy.h 2025-08-14T21:48:23.8123886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.8127804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.8131660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_copy_native.h 2025-08-14T21:48:23.8135888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_copy_ops.h 2025-08-14T21:48:23.8139680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_native.h 2025-08-14T21:48:23.8143422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_ops.h 2025-08-14T21:48:23.8147390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor.h 2025-08-14T21:48:23.8151560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.8155319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor_cpu_dispatch.h 2025-08-14T21:48:23.8159273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor_cuda_dispatch.h 2025-08-14T21:48:23.8163270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor_native.h 2025-08-14T21:48:23.8167219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor_ops.h 2025-08-14T21:48:23.8171250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor.h 2025-08-14T21:48:23.8175479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.8179347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cpu_dispatch.h 2025-08-14T21:48:23.8183341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cuda_dispatch.h 2025-08-14T21:48:23.8187658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_native.h 2025-08-14T21:48:23.8193191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_ops.h 2025-08-14T21:48:23.8197217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_scale.h 2025-08-14T21:48:23.8201269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_scale_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.8205305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_scale_cuda_dispatch.h 2025-08-14T21:48:23.8209158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_scale_native.h 2025-08-14T21:48:23.8213704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_scale_ops.h 2025-08-14T21:48:23.8218828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax.h 2025-08-14T21:48:23.8222781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward.h 2025-08-14T21:48:23.8227014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.8231152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward_cpu_dispatch.h 2025-08-14T21:48:23.8234919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward_cuda_dispatch.h 2025-08-14T21:48:23.8238746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward_native.h 2025-08-14T21:48:23.8243074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward_ops.h 2025-08-14T21:48:23.8248790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.8252542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_cpu_dispatch.h 2025-08-14T21:48:23.8256576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_cuda_dispatch.h 2025-08-14T21:48:23.8260550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_native.h 2025-08-14T21:48:23.8264305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_ops.h 2025-08-14T21:48:23.8268377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mixed_dtypes_linear.h 2025-08-14T21:48:23.8272813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mixed_dtypes_linear_cuda_dispatch.h 2025-08-14T21:48:23.8277150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mixed_dtypes_linear_native.h 2025-08-14T21:48:23.8280928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mixed_dtypes_linear_ops.h 2025-08-14T21:48:23.8284829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_reshape.h 2025-08-14T21:48:23.8288609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_reshape_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.8292342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_reshape_native.h 2025-08-14T21:48:23.8297993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_reshape_ops.h 2025-08-14T21:48:23.8301781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_transpose.h 2025-08-14T21:48:23.8305602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_transpose_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.8309257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_transpose_meta_dispatch.h 2025-08-14T21:48:23.8314414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_transpose_native.h 2025-08-14T21:48:23.8319115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_transpose_ops.h 2025-08-14T21:48:23.8324134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution.h 2025-08-14T21:48:23.8328114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.8331811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_native.h 2025-08-14T21:48:23.8335389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_ops.h 2025-08-14T21:48:23.8339248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_transpose.h 2025-08-14T21:48:23.8343532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_transpose_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.8348663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_transpose_native.h 2025-08-14T21:48:23.8352578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_transpose_ops.h 2025-08-14T21:48:23.8356188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit.h 2025-08-14T21:48:23.8361324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.8364312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_cpu_dispatch.h 2025-08-14T21:48:23.8368012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_cuda_dispatch.h 2025-08-14T21:48:23.8372070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_native.h 2025-08-14T21:48:23.8390816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_no_training.h 2025-08-14T21:48:23.8395582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.8400299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_no_training_native.h 2025-08-14T21:48:23.8404077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_no_training_ops.h 2025-08-14T21:48:23.8407851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_ops.h 2025-08-14T21:48:23.8412189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention.h 2025-08-14T21:48:23.8416777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.8421140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention_cpu_dispatch.h 2025-08-14T21:48:23.8425826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention_cuda_dispatch.h 2025-08-14T21:48:23.8429501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention_native.h 2025-08-14T21:48:23.8433450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention_ops.h 2025-08-14T21:48:23.8436977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view.h 2025-08-14T21:48:23.8441453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.8446422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_copy.h 2025-08-14T21:48:23.8451900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.8456399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.8460979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_copy_native.h 2025-08-14T21:48:23.8465565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_copy_ops.h 2025-08-14T21:48:23.8471120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_native.h 2025-08-14T21:48:23.8474987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_ops.h 2025-08-14T21:48:23.8479407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets.h 2025-08-14T21:48:23.8484210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cpu_dispatch.h 2025-08-14T21:48:23.8488784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cuda_dispatch.h 2025-08-14T21:48:23.8493306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_native.h 2025-08-14T21:48:23.8497635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_ops.h 2025-08-14T21:48:23.8501599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded.h 2025-08-14T21:48:23.8505770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_and_nested_example.h 2025-08-14T21:48:23.8509980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.8514406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_and_nested_example_native.h 2025-08-14T21:48:23.8518641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_and_nested_example_ops.h 2025-08-14T21:48:23.8522966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.8527697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_cpu_dispatch.h 2025-08-14T21:48:23.8532565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_cuda_dispatch.h 2025-08-14T21:48:23.8536334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_native.h 2025-08-14T21:48:23.8540065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_ops.h 2025-08-14T21:48:23.8544357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_tensor.h 2025-08-14T21:48:23.8548411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_tensor_native.h 2025-08-14T21:48:23.8552882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_tensor_ops.h 2025-08-14T21:48:23.8557533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_jagged_dummy.h 2025-08-14T21:48:23.8561633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_jagged_dummy_native.h 2025-08-14T21:48:23.8565470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_jagged_dummy_ops.h 2025-08-14T21:48:23.8570968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_lengths.h 2025-08-14T21:48:23.8575587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_lengths_native.h 2025-08-14T21:48:23.8579785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_lengths_ops.h 2025-08-14T21:48:23.8584328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_max_seqlen.h 2025-08-14T21:48:23.8588217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_max_seqlen_native.h 2025-08-14T21:48:23.8592005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_max_seqlen_ops.h 2025-08-14T21:48:23.8597670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_min_seqlen.h 2025-08-14T21:48:23.8602071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_min_seqlen_native.h 2025-08-14T21:48:23.8606010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_min_seqlen_ops.h 2025-08-14T21:48:23.8610273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_offsets.h 2025-08-14T21:48:23.8614324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_offsets_native.h 2025-08-14T21:48:23.8618666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_offsets_ops.h 2025-08-14T21:48:23.8622514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_ragged_idx.h 2025-08-14T21:48:23.8626823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_ragged_idx_native.h 2025-08-14T21:48:23.8630667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_ragged_idx_ops.h 2025-08-14T21:48:23.8634495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values.h 2025-08-14T21:48:23.8638492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_copy.h 2025-08-14T21:48:23.8643482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.8647684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.8651593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_copy_native.h 2025-08-14T21:48:23.8656511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_copy_ops.h 2025-08-14T21:48:23.8660466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_native.h 2025-08-14T21:48:23.8664389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_ops.h 2025-08-14T21:48:23.8668950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_select_backward.h 2025-08-14T21:48:23.8672757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_select_backward_native.h 2025-08-14T21:48:23.8676568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_select_backward_ops.h 2025-08-14T21:48:23.8680520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_sum_backward.h 2025-08-14T21:48:23.8684495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_sum_backward_native.h 2025-08-14T21:48:23.8688725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_sum_backward_ops.h 2025-08-14T21:48:23.8693033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask.h 2025-08-14T21:48:23.8697185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.8701090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_cpu_dispatch.h 2025-08-14T21:48:23.8705074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_cuda_dispatch.h 2025-08-14T21:48:23.8708998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned.h 2025-08-14T21:48:23.8712974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_cpu_dispatch.h 2025-08-14T21:48:23.8717364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_cuda_dispatch.h 2025-08-14T21:48:23.8722618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_native.h 2025-08-14T21:48:23.8727081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_ops.h 2025-08-14T21:48:23.8731133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_native.h 2025-08-14T21:48:23.8735613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_ops.h 2025-08-14T21:48:23.8739828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_tensor_list.h 2025-08-14T21:48:23.8744938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.8749698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_tensor_list_native.h 2025-08-14T21:48:23.8753859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_tensor_list_ops.h 2025-08-14T21:48:23.8758128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_size.h 2025-08-14T21:48:23.8762432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_size_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.8766668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_size_native.h 2025-08-14T21:48:23.8787603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_size_ops.h 2025-08-14T21:48:23.8791688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_softmax_with_shape.h 2025-08-14T21:48:23.8796272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_softmax_with_shape_native.h 2025-08-14T21:48:23.8800405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_softmax_with_shape_ops.h 2025-08-14T21:48:23.8804221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_storage_offsets.h 2025-08-14T21:48:23.8809144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.8813149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_storage_offsets_native.h 2025-08-14T21:48:23.8817464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_storage_offsets_ops.h 2025-08-14T21:48:23.8821313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_strides.h 2025-08-14T21:48:23.8826166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_strides_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.8830933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_strides_native.h 2025-08-14T21:48:23.8835257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_strides_ops.h 2025-08-14T21:48:23.8839252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer.h 2025-08-14T21:48:23.8843759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_copy.h 2025-08-14T21:48:23.8848100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.8852212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.8856856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_copy_native.h 2025-08-14T21:48:23.8861491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_copy_ops.h 2025-08-14T21:48:23.8866453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_cpu_dispatch.h 2025-08-14T21:48:23.8870875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_cuda_dispatch.h 2025-08-14T21:48:23.8875238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_native.h 2025-08-14T21:48:23.8880380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_ops.h 2025-08-14T21:48:23.8885539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged.h 2025-08-14T21:48:23.8890472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_copy.h 2025-08-14T21:48:23.8895664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.8900013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.8904168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_copy_native.h 2025-08-14T21:48:23.8908115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_copy_ops.h 2025-08-14T21:48:23.8912204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_native.h 2025-08-14T21:48:23.8916571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_ops.h 2025-08-14T21:48:23.8920808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_new_zeros_with_same_feature_meta.h 2025-08-14T21:48:23.8925242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.8929380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_new_zeros_with_same_feature_meta_native.h 2025-08-14T21:48:23.8933414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_new_zeros_with_same_feature_meta_ops.h 2025-08-14T21:48:23.8937294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_available.h 2025-08-14T21:48:23.8941532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_available_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.8945459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_available_native.h 2025-08-14T21:48:23.8949408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_available_ops.h 2025-08-14T21:48:23.8953259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_spatial_convolution.h 2025-08-14T21:48:23.8957210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.8961027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_spatial_convolution_native.h 2025-08-14T21:48:23.8965063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_spatial_convolution_ops.h 2025-08-14T21:48:23.8969097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnz.h 2025-08-14T21:48:23.8972714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnz_native.h 2025-08-14T21:48:23.8976758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnz_ops.h 2025-08-14T21:48:23.8980325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence.h 2025-08-14T21:48:23.8984129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_backward.h 2025-08-14T21:48:23.8988154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.8991880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_backward_native.h 2025-08-14T21:48:23.8995704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_backward_ops.h 2025-08-14T21:48:23.8999992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.9004201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_native.h 2025-08-14T21:48:23.9007807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_ops.h 2025-08-14T21:48:23.9011756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_padded_dense_to_jagged_forward.h 2025-08-14T21:48:23.9015534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_padded_dense_to_jagged_forward_cpu_dispatch.h 2025-08-14T21:48:23.9019504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_padded_dense_to_jagged_forward_cuda_dispatch.h 2025-08-14T21:48:23.9027996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_padded_dense_to_jagged_forward_native.h 2025-08-14T21:48:23.9032061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_padded_dense_to_jagged_forward_ops.h 2025-08-14T21:48:23.9035793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_circular.h 2025-08-14T21:48:23.9041274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_circular_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.9045153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_circular_native.h 2025-08-14T21:48:23.9063451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_circular_ops.h 2025-08-14T21:48:23.9067281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_enum.h 2025-08-14T21:48:23.9071980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_enum_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.9075853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_enum_native.h 2025-08-14T21:48:23.9079789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_enum_ops.h 2025-08-14T21:48:23.9083691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_packed_sequence.h 2025-08-14T21:48:23.9087609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_packed_sequence_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.9091640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_packed_sequence_native.h 2025-08-14T21:48:23.9095480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_packed_sequence_ops.h 2025-08-14T21:48:23.9099585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward.h 2025-08-14T21:48:23.9103437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.9107400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward_cpu_dispatch.h 2025-08-14T21:48:23.9110812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward_cuda_dispatch.h 2025-08-14T21:48:23.9114568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward_native.h 2025-08-14T21:48:23.9118436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward_ops.h 2025-08-14T21:48:23.9122548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward.h 2025-08-14T21:48:23.9126487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.9130311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward_cpu_dispatch.h 2025-08-14T21:48:23.9134215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward_cuda_dispatch.h 2025-08-14T21:48:23.9138018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward_native.h 2025-08-14T21:48:23.9141953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward_ops.h 2025-08-14T21:48:23.9145806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pin_memory.h 2025-08-14T21:48:23.9149770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pin_memory_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.9153670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pin_memory_native.h 2025-08-14T21:48:23.9158073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pin_memory_ops.h 2025-08-14T21:48:23.9161956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel.h 2025-08-14T21:48:23.9165655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_backward.h 2025-08-14T21:48:23.9169414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_backward_cpu_dispatch.h 2025-08-14T21:48:23.9173331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_backward_cuda_dispatch.h 2025-08-14T21:48:23.9177289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_backward_native.h 2025-08-14T21:48:23.9181508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_backward_ops.h 2025-08-14T21:48:23.9185327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_cpu_dispatch.h 2025-08-14T21:48:23.9189190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_cuda_dispatch.h 2025-08-14T21:48:23.9193205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_native.h 2025-08-14T21:48:23.9197115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_ops.h 2025-08-14T21:48:23.9201019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_print.h 2025-08-14T21:48:23.9204796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_print_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.9208462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_print_native.h 2025-08-14T21:48:23.9212857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_print_ops.h 2025-08-14T21:48:23.9216479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_propagate_xla_data.h 2025-08-14T21:48:23.9221146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_propagate_xla_data_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.9224922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_propagate_xla_data_native.h 2025-08-14T21:48:23.9228694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_propagate_xla_data_ops.h 2025-08-14T21:48:23.9232976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_remove_batch_dim.h 2025-08-14T21:48:23.9237015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_remove_batch_dim_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.9246725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_remove_batch_dim_native.h 2025-08-14T21:48:23.9247403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_remove_batch_dim_ops.h 2025-08-14T21:48:23.9249034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias.h 2025-08-14T21:48:23.9252961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_copy.h 2025-08-14T21:48:23.9256837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.9261563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.9265669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_copy_native.h 2025-08-14T21:48:23.9269464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_copy_ops.h 2025-08-14T21:48:23.9273374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_cpu_dispatch.h 2025-08-14T21:48:23.9277717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_cuda_dispatch.h 2025-08-14T21:48:23.9282124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_meta_dispatch.h 2025-08-14T21:48:23.9285908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_native.h 2025-08-14T21:48:23.9290205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_ops.h 2025-08-14T21:48:23.9294034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_copy.h 2025-08-14T21:48:23.9298266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.9302259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_copy_native.h 2025-08-14T21:48:23.9305958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_copy_ops.h 2025-08-14T21:48:23.9310193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_from_tensor.h 2025-08-14T21:48:23.9314244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_from_tensor_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.9318165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_from_tensor_native.h 2025-08-14T21:48:23.9322485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_from_tensor_ops.h 2025-08-14T21:48:23.9326863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_resize_output.h 2025-08-14T21:48:23.9331260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_resize_output_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.9335295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_resize_output_meta_dispatch.h 2025-08-14T21:48:23.9339057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_resize_output_native.h 2025-08-14T21:48:23.9342737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_resize_output_ops.h 2025-08-14T21:48:23.9346927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_rowwise_prune.h 2025-08-14T21:48:23.9350653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_rowwise_prune_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.9354249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_rowwise_prune_native.h 2025-08-14T21:48:23.9358378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_rowwise_prune_ops.h 2025-08-14T21:48:23.9362973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_safe_softmax.h 2025-08-14T21:48:23.9367389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_safe_softmax_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.9371806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_safe_softmax_native.h 2025-08-14T21:48:23.9376351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_safe_softmax_ops.h 2025-08-14T21:48:23.9380194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet.h 2025-08-14T21:48:23.9384342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.9388810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet_cpu_dispatch.h 2025-08-14T21:48:23.9393676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet_cuda_dispatch.h 2025-08-14T21:48:23.9398371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet_native.h 2025-08-14T21:48:23.9402550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet_ops.h 2025-08-14T21:48:23.9406554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_saturate_weight_to_fp16.h 2025-08-14T21:48:23.9410564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.9414953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_saturate_weight_to_fp16_native.h 2025-08-14T21:48:23.9419025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_saturate_weight_to_fp16_ops.h 2025-08-14T21:48:23.9422912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math.h 2025-08-14T21:48:23.9427393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.9431191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps.h 2025-08-14T21:48:23.9436244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps_native.h 2025-08-14T21:48:23.9439127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps_ops.h 2025-08-14T21:48:23.9443061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_native.h 2025-08-14T21:48:23.9446999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_ops.h 2025-08-14T21:48:23.9452240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention.h 2025-08-14T21:48:23.9455339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward.h 2025-08-14T21:48:23.9459268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h 2025-08-14T21:48:23.9463811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_native.h 2025-08-14T21:48:23.9468232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_ops.h 2025-08-14T21:48:23.9472255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_cuda_dispatch.h 2025-08-14T21:48:23.9476161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_native.h 2025-08-14T21:48:23.9480947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_ops.h 2025-08-14T21:48:23.9485519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention.h 2025-08-14T21:48:23.9489423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward.h 2025-08-14T21:48:23.9493507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h 2025-08-14T21:48:23.9497744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_native.h 2025-08-14T21:48:23.9521292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_ops.h 2025-08-14T21:48:23.9525695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_cuda_dispatch.h 2025-08-14T21:48:23.9530025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_native.h 2025-08-14T21:48:23.9534627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_ops.h 2025-08-14T21:48:23.9538753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention.h 2025-08-14T21:48:23.9543098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward.h 2025-08-14T21:48:23.9547003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_cuda_dispatch.h 2025-08-14T21:48:23.9550931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_native.h 2025-08-14T21:48:23.9554918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_ops.h 2025-08-14T21:48:23.9559425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_cuda_dispatch.h 2025-08-14T21:48:23.9563497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu.h 2025-08-14T21:48:23.9567974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward.h 2025-08-14T21:48:23.9572241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h 2025-08-14T21:48:23.9576444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_native.h 2025-08-14T21:48:23.9580281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_ops.h 2025-08-14T21:48:23.9584399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h 2025-08-14T21:48:23.9588237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_native.h 2025-08-14T21:48:23.9592442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_ops.h 2025-08-14T21:48:23.9596720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_native.h 2025-08-14T21:48:23.9600940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_ops.h 2025-08-14T21:48:23.9604871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable.h 2025-08-14T21:48:23.9609052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward.h 2025-08-14T21:48:23.9613340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.9617205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_native.h 2025-08-14T21:48:23.9621740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_ops.h 2025-08-14T21:48:23.9625863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.9630182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_native.h 2025-08-14T21:48:23.9633796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_ops.h 2025-08-14T21:48:23.9637862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_grouped_mm.h 2025-08-14T21:48:23.9641917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_grouped_mm_cuda_dispatch.h 2025-08-14T21:48:23.9647029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_grouped_mm_native.h 2025-08-14T21:48:23.9650720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_grouped_mm_ops.h 2025-08-14T21:48:23.9654823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_mm.h 2025-08-14T21:48:23.9658919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_mm_cpu_dispatch.h 2025-08-14T21:48:23.9662840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_mm_cuda_dispatch.h 2025-08-14T21:48:23.9666794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_mm_native.h 2025-08-14T21:48:23.9670644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_mm_ops.h 2025-08-14T21:48:23.9674459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward.h 2025-08-14T21:48:23.9678546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.9682897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward_cpu_dispatch.h 2025-08-14T21:48:23.9686452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward_cuda_dispatch.h 2025-08-14T21:48:23.9690800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward_native.h 2025-08-14T21:48:23.9695028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward_ops.h 2025-08-14T21:48:23.9699829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_shape_as_tensor.h 2025-08-14T21:48:23.9703207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_shape_as_tensor_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.9706941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_shape_as_tensor_native.h 2025-08-14T21:48:23.9711085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_shape_as_tensor_ops.h 2025-08-14T21:48:23.9714973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward.h 2025-08-14T21:48:23.9719334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.9723230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward_cpu_dispatch.h 2025-08-14T21:48:23.9727336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward_cuda_dispatch.h 2025-08-14T21:48:23.9731510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward_native.h 2025-08-14T21:48:23.9735659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward_ops.h 2025-08-14T21:48:23.9739623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_forward.h 2025-08-14T21:48:23.9743653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_forward_cpu_dispatch.h 2025-08-14T21:48:23.9748457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_forward_cuda_dispatch.h 2025-08-14T21:48:23.9752650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_forward_native.h 2025-08-14T21:48:23.9757151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_forward_ops.h 2025-08-14T21:48:23.9761574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_draw.h 2025-08-14T21:48:23.9765656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_draw_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.9769659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_draw_native.h 2025-08-14T21:48:23.9773534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_draw_ops.h 2025-08-14T21:48:23.9777534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_ff.h 2025-08-14T21:48:23.9781730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_ff_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.9785372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_ff_native.h 2025-08-14T21:48:23.9789207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_ff_ops.h 2025-08-14T21:48:23.9794057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_initialize_state.h 2025-08-14T21:48:23.9798359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.9802498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_initialize_state_native.h 2025-08-14T21:48:23.9806358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_initialize_state_ops.h 2025-08-14T21:48:23.9810213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_scramble.h 2025-08-14T21:48:23.9814191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_scramble_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.9818193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_scramble_native.h 2025-08-14T21:48:23.9822148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_scramble_ops.h 2025-08-14T21:48:23.9826128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax.h 2025-08-14T21:48:23.9829750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data.h 2025-08-14T21:48:23.9834086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.9837901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_cpu_dispatch.h 2025-08-14T21:48:23.9842101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_cuda_dispatch.h 2025-08-14T21:48:23.9846641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_meta.h 2025-08-14T21:48:23.9850814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_meta_dispatch.h 2025-08-14T21:48:23.9854790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_native.h 2025-08-14T21:48:23.9859154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_ops.h 2025-08-14T21:48:23.9863633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.9868080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_cpu_dispatch.h 2025-08-14T21:48:23.9872753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_cuda_dispatch.h 2025-08-14T21:48:23.9876910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_meta.h 2025-08-14T21:48:23.9881085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_meta_dispatch.h 2025-08-14T21:48:23.9885030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_native.h 2025-08-14T21:48:23.9888956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_ops.h 2025-08-14T21:48:23.9893511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_addmm.h 2025-08-14T21:48:23.9897110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_addmm_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.9901253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_addmm_native.h 2025-08-14T21:48:23.9905397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_addmm_ops.h 2025-08-14T21:48:23.9910608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to.h 2025-08-14T21:48:23.9913248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_copy.h 2025-08-14T21:48:23.9918020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:23.9922070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:23.9927183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_copy_native.h 2025-08-14T21:48:23.9930954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_copy_ops.h 2025-08-14T21:48:23.9934757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_native.h 2025-08-14T21:48:23.9938707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_ops.h 2025-08-14T21:48:23.9942714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe.h 2025-08-14T21:48:23.9946856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.9951694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_native.h 2025-08-14T21:48:23.9955561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_ops.h 2025-08-14T21:48:23.9959742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe.h 2025-08-14T21:48:23.9963815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.9967614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_native.h 2025-08-14T21:48:23.9971836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_ops.h 2025-08-14T21:48:23.9975899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe.h 2025-08-14T21:48:23.9980131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:23.9984078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_native.h 2025-08-14T21:48:23.9987836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_ops.h 2025-08-14T21:48:23.9991706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims.h 2025-08-14T21:48:23.9996396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.0000524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_native.h 2025-08-14T21:48:24.0004614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_ops.h 2025-08-14T21:48:24.0008237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_unsafe.h 2025-08-14T21:48:24.0012322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:24.0016541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_unsafe_native.h 2025-08-14T21:48:24.0020533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_unsafe_ops.h 2025-08-14T21:48:24.0024414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims.h 2025-08-14T21:48:24.0028529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors.h 2025-08-14T21:48:24.0032558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.0036589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h 2025-08-14T21:48:24.0041608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_native.h 2025-08-14T21:48:24.0045577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_ops.h 2025-08-14T21:48:24.0049580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.0053563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_meta_dispatch.h 2025-08-14T21:48:24.0057815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_native.h 2025-08-14T21:48:24.0061736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_ops.h 2025-08-14T21:48:24.0065744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csc_tensor_unsafe.h 2025-08-14T21:48:24.0069872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:24.0073795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csc_tensor_unsafe_native.h 2025-08-14T21:48:24.0078349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csc_tensor_unsafe_ops.h 2025-08-14T21:48:24.0082377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_prod.h 2025-08-14T21:48:24.0086364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_prod_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.0090482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_prod_native.h 2025-08-14T21:48:24.0094324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_prod_ops.h 2025-08-14T21:48:24.0098015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_sum.h 2025-08-14T21:48:24.0102045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_sum_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.0106026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_sum_native.h 2025-08-14T21:48:24.0109856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_sum_ops.h 2025-08-14T21:48:24.0113705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_tensor_unsafe.h 2025-08-14T21:48:24.0117872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:24.0122154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_tensor_unsafe_native.h 2025-08-14T21:48:24.0127101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_tensor_unsafe_ops.h 2025-08-14T21:48:24.0130650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax.h 2025-08-14T21:48:24.0134451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_backward_data.h 2025-08-14T21:48:24.0139296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.0143307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_backward_data_native.h 2025-08-14T21:48:24.0147097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_backward_data_ops.h 2025-08-14T21:48:24.0151343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.0155734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:24.0159529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_native.h 2025-08-14T21:48:24.0164156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_ops.h 2025-08-14T21:48:24.0167948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mask_projection.h 2025-08-14T21:48:24.0172181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mask_projection_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.0176464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mask_projection_native.h 2025-08-14T21:48:24.0180361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mask_projection_ops.h 2025-08-14T21:48:24.0185459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm.h 2025-08-14T21:48:24.0189501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:24.0193445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_native.h 2025-08-14T21:48:24.0197572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_ops.h 2025-08-14T21:48:24.0201795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl.h 2025-08-14T21:48:24.0206158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl_backward.h 2025-08-14T21:48:24.0210423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_native.h 2025-08-14T21:48:24.0214645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_ops.h 2025-08-14T21:48:24.0219272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl_native.h 2025-08-14T21:48:24.0222993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl_ops.h 2025-08-14T21:48:24.0227216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_addmm.h 2025-08-14T21:48:24.0231310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_addmm_cuda_dispatch.h 2025-08-14T21:48:24.0235435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_addmm_native.h 2025-08-14T21:48:24.0240298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_addmm_ops.h 2025-08-14T21:48:24.0244449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply.h 2025-08-14T21:48:24.0248752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_cuda_dispatch.h 2025-08-14T21:48:24.0252990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_dense.h 2025-08-14T21:48:24.0257186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_dense_cuda_dispatch.h 2025-08-14T21:48:24.0261544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_dense_native.h 2025-08-14T21:48:24.0265554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_dense_ops.h 2025-08-14T21:48:24.0269548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_native.h 2025-08-14T21:48:24.0273627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_ops.h 2025-08-14T21:48:24.0277681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_linear.h 2025-08-14T21:48:24.0281832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_linear_cuda_dispatch.h 2025-08-14T21:48:24.0285858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_linear_native.h 2025-08-14T21:48:24.0289891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_linear_ops.h 2025-08-14T21:48:24.0293968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_mm.h 2025-08-14T21:48:24.0298284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_mm_cuda_dispatch.h 2025-08-14T21:48:24.0302514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_mm_native.h 2025-08-14T21:48:24.0306568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_mm_ops.h 2025-08-14T21:48:24.0310454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_tile.h 2025-08-14T21:48:24.0314388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_tile_cuda_dispatch.h 2025-08-14T21:48:24.0318985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_tile_native.h 2025-08-14T21:48:24.0323665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_tile_ops.h 2025-08-14T21:48:24.0327642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax.h 2025-08-14T21:48:24.0331523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_backward_data.h 2025-08-14T21:48:24.0336371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.0340660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_backward_data_native.h 2025-08-14T21:48:24.0344702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_backward_data_ops.h 2025-08-14T21:48:24.0348924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.0353197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:24.0357111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_native.h 2025-08-14T21:48:24.0361220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_ops.h 2025-08-14T21:48:24.0367677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sparse_matmul.h 2025-08-14T21:48:24.0369941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.0375149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sparse_matmul_native.h 2025-08-14T21:48:24.0378347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sparse_matmul_ops.h 2025-08-14T21:48:24.0382689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum.h 2025-08-14T21:48:24.0387262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_backward.h 2025-08-14T21:48:24.0391161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.0395142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_backward_native.h 2025-08-14T21:48:24.0399512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_backward_ops.h 2025-08-14T21:48:24.0404095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.0408069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:24.0412247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_native.h 2025-08-14T21:48:24.0416043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_ops.h 2025-08-14T21:48:24.0419944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spdiags.h 2025-08-14T21:48:24.0423605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spdiags_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.0427747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spdiags_cpu_dispatch.h 2025-08-14T21:48:24.0431373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spdiags_native.h 2025-08-14T21:48:24.0435215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spdiags_ops.h 2025-08-14T21:48:24.0439770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spsolve.h 2025-08-14T21:48:24.0443204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spsolve_native.h 2025-08-14T21:48:24.0446727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spsolve_ops.h 2025-08-14T21:48:24.0450349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_stack.h 2025-08-14T21:48:24.0453975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_stack_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.0457950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_stack_cpu_dispatch.h 2025-08-14T21:48:24.0461518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_stack_native.h 2025-08-14T21:48:24.0465514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_stack_ops.h 2025-08-14T21:48:24.0469139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma.h 2025-08-14T21:48:24.0472909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.0476497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_cpu_dispatch.h 2025-08-14T21:48:24.0480283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_cuda_dispatch.h 2025-08-14T21:48:24.0484263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad.h 2025-08-14T21:48:24.0488587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.0492328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad_cpu_dispatch.h 2025-08-14T21:48:24.0496543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad_cuda_dispatch.h 2025-08-14T21:48:24.0500543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad_native.h 2025-08-14T21:48:24.0504277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad_ops.h 2025-08-14T21:48:24.0508359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_native.h 2025-08-14T21:48:24.0511921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_ops.h 2025-08-14T21:48:24.0516007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_ambiguous_defaults.h 2025-08-14T21:48:24.0520220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:24.0524897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_ambiguous_defaults_native.h 2025-08-14T21:48:24.0528112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_ambiguous_defaults_ops.h 2025-08-14T21:48:24.0532182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch.h 2025-08-14T21:48:24.0536582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.0541166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:24.0545250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_native.h 2025-08-14T21:48:24.0549067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_ops.h 2025-08-14T21:48:24.0553807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view.h 2025-08-14T21:48:24.0558195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.0562363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy.h 2025-08-14T21:48:24.0566950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:24.0586513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.0591254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_native.h 2025-08-14T21:48:24.0595353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_ops.h 2025-08-14T21:48:24.0599299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_native.h 2025-08-14T21:48:24.0603140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_ops.h 2025-08-14T21:48:24.0607413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_check_tensor.h 2025-08-14T21:48:24.0611523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_check_tensor_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:24.0615646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_check_tensor_native.h 2025-08-14T21:48:24.0619922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_check_tensor_ops.h 2025-08-14T21:48:24.0624135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_functorch_fallback.h 2025-08-14T21:48:24.0628365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_functorch_fallback_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.0632341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_functorch_fallback_cpu_dispatch.h 2025-08-14T21:48:24.0636106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_functorch_fallback_native.h 2025-08-14T21:48:24.0640472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_functorch_fallback_ops.h 2025-08-14T21:48:24.0644913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_filled_intlist.h 2025-08-14T21:48:24.0649652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.0653546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_filled_intlist_cpu_dispatch.h 2025-08-14T21:48:24.0657636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_filled_intlist_native.h 2025-08-14T21:48:24.0661821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_filled_intlist_ops.h 2025-08-14T21:48:24.0665863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_floatlist.h 2025-08-14T21:48:24.0669905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_floatlist_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.0674552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_floatlist_cpu_dispatch.h 2025-08-14T21:48:24.0678565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_floatlist_native.h 2025-08-14T21:48:24.0682376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_floatlist_ops.h 2025-08-14T21:48:24.0686062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_intlist.h 2025-08-14T21:48:24.0689951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_intlist_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.0694458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_intlist_cpu_dispatch.h 2025-08-14T21:48:24.0698202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_intlist_native.h 2025-08-14T21:48:24.0702384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_intlist_ops.h 2025-08-14T21:48:24.0706175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_parallel_materialize.h 2025-08-14T21:48:24.0710768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_parallel_materialize_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.0714614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_parallel_materialize_native.h 2025-08-14T21:48:24.0718563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_parallel_materialize_ops.h 2025-08-14T21:48:24.0722573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_serialization_subcmul.h 2025-08-14T21:48:24.0727979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_serialization_subcmul_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:24.0730790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_serialization_subcmul_native.h 2025-08-14T21:48:24.0735273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_serialization_subcmul_ops.h 2025-08-14T21:48:24.0739918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_string_default.h 2025-08-14T21:48:24.0745197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_string_default_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:24.0748515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_string_default_native.h 2025-08-14T21:48:24.0752875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_string_default_ops.h 2025-08-14T21:48:24.0756811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_warn_in_autograd.h 2025-08-14T21:48:24.0761685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_warn_in_autograd_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.0765669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_warn_in_autograd_native.h 2025-08-14T21:48:24.0769799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_warn_in_autograd_ops.h 2025-08-14T21:48:24.0773733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward.h 2025-08-14T21:48:24.0778862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:24.0782761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_native.h 2025-08-14T21:48:24.0786704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_ops.h 2025-08-14T21:48:24.0791053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward.h 2025-08-14T21:48:24.0795249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:24.0799428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_native.h 2025-08-14T21:48:24.0803866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_ops.h 2025-08-14T21:48:24.0807664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell.h 2025-08-14T21:48:24.0811625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_backward.h 2025-08-14T21:48:24.0816304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.0820547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_cuda_dispatch.h 2025-08-14T21:48:24.0824344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_native.h 2025-08-14T21:48:24.0828219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_ops.h 2025-08-14T21:48:24.0833135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.0837202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_cuda_dispatch.h 2025-08-14T21:48:24.0840969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_native.h 2025-08-14T21:48:24.0845304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_ops.h 2025-08-14T21:48:24.0849233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell.h 2025-08-14T21:48:24.0853574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward.h 2025-08-14T21:48:24.0857965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:24.0862338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl.h 2025-08-14T21:48:24.0866425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.0871573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h 2025-08-14T21:48:24.0876140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_native.h 2025-08-14T21:48:24.0880731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_ops.h 2025-08-14T21:48:24.0885043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_native.h 2025-08-14T21:48:24.0889333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_ops.h 2025-08-14T21:48:24.0893444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.0897602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_cuda_dispatch.h 2025-08-14T21:48:24.0902564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_native.h 2025-08-14T21:48:24.0906849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_ops.h 2025-08-14T21:48:24.0911023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_copy.h 2025-08-14T21:48:24.0915571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.0919831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_copy_native.h 2025-08-14T21:48:24.0923804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_copy_ops.h 2025-08-14T21:48:24.0927355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_cpu.h 2025-08-14T21:48:24.0930958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_cpu_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:24.0935356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_cpu_native.h 2025-08-14T21:48:24.0939175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_cpu_ops.h 2025-08-14T21:48:24.0943154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_dense.h 2025-08-14T21:48:24.0947849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_dense_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.0951854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_dense_native.h 2025-08-14T21:48:24.0955769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_dense_ops.h 2025-08-14T21:48:24.0959445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse.h 2025-08-14T21:48:24.0962931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc.h 2025-08-14T21:48:24.0966557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.0970756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc_cpu_dispatch.h 2025-08-14T21:48:24.0974684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc_cuda_dispatch.h 2025-08-14T21:48:24.0978564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc_native.h 2025-08-14T21:48:24.0982527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc_ops.h 2025-08-14T21:48:24.0986781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr.h 2025-08-14T21:48:24.0991142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.0994869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr_cpu_dispatch.h 2025-08-14T21:48:24.0998842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr_cuda_dispatch.h 2025-08-14T21:48:24.1002868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr_native.h 2025-08-14T21:48:24.1006919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr_ops.h 2025-08-14T21:48:24.1010996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.1014780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_cpu_dispatch.h 2025-08-14T21:48:24.1018566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc.h 2025-08-14T21:48:24.1022406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.1026211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc_cpu_dispatch.h 2025-08-14T21:48:24.1029972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc_cuda_dispatch.h 2025-08-14T21:48:24.1033539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc_native.h 2025-08-14T21:48:24.1037330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc_ops.h 2025-08-14T21:48:24.1041917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr.h 2025-08-14T21:48:24.1045789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.1049688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr_cpu_dispatch.h 2025-08-14T21:48:24.1053924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr_cuda_dispatch.h 2025-08-14T21:48:24.1058341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr_native.h 2025-08-14T21:48:24.1062536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr_ops.h 2025-08-14T21:48:24.1066149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_cuda_dispatch.h 2025-08-14T21:48:24.1069915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_native.h 2025-08-14T21:48:24.1073644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_ops.h 2025-08-14T21:48:24.1077356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_semi_structured.h 2025-08-14T21:48:24.1081503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_semi_structured_cuda_dispatch.h 2025-08-14T21:48:24.1085304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_semi_structured_native.h 2025-08-14T21:48:24.1089081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_semi_structured_ops.h 2025-08-14T21:48:24.1092851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd.h 2025-08-14T21:48:24.1096893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.1100642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd_cpu_dispatch.h 2025-08-14T21:48:24.1104590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd_cuda_dispatch.h 2025-08-14T21:48:24.1108400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd_native.h 2025-08-14T21:48:24.1112189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd_ops.h 2025-08-14T21:48:24.1116128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv.h 2025-08-14T21:48:24.1120272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.1124228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv_cpu_dispatch.h 2025-08-14T21:48:24.1128915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv_cuda_dispatch.h 2025-08-14T21:48:24.1133165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv_native.h 2025-08-14T21:48:24.1138816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv_ops.h 2025-08-14T21:48:24.1142963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_trilinear.h 2025-08-14T21:48:24.1148238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_trilinear_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:24.1153180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_trilinear_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.1157710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_trilinear_native.h 2025-08-14T21:48:24.1162596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_trilinear_ops.h 2025-08-14T21:48:24.1166953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_multi_head_attention.h 2025-08-14T21:48:24.1172278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_multi_head_attention_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.1176719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_multi_head_attention_cuda_dispatch.h 2025-08-14T21:48:24.1181212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_multi_head_attention_native.h 2025-08-14T21:48:24.1186438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_multi_head_attention_ops.h 2025-08-14T21:48:24.1191717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_scaled_dot_attention.h 2025-08-14T21:48:24.1196299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.1200768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_scaled_dot_attention_cuda_dispatch.h 2025-08-14T21:48:24.1205311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_scaled_dot_attention_native.h 2025-08-14T21:48:24.1209922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_scaled_dot_attention_ops.h 2025-08-14T21:48:24.1214968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique.h 2025-08-14T21:48:24.1218818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2.h 2025-08-14T21:48:24.1223222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.1226863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2_cpu_dispatch.h 2025-08-14T21:48:24.1231119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2_cuda_dispatch.h 2025-08-14T21:48:24.1234811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2_native.h 2025-08-14T21:48:24.1238988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2_ops.h 2025-08-14T21:48:24.1242828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.1246521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique_cpu_dispatch.h 2025-08-14T21:48:24.1251014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique_cuda_dispatch.h 2025-08-14T21:48:24.1255144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique_native.h 2025-08-14T21:48:24.1258704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique_ops.h 2025-08-14T21:48:24.1262510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unpack_dual.h 2025-08-14T21:48:24.1266668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unpack_dual_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:24.1270631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unpack_dual_native.h 2025-08-14T21:48:24.1557442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unpack_dual_ops.h 2025-08-14T21:48:24.1561166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index.h 2025-08-14T21:48:24.1565157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.1568913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_native.h 2025-08-14T21:48:24.1572826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_ops.h 2025-08-14T21:48:24.1576914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_put.h 2025-08-14T21:48:24.1581076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_put_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.1584908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_put_native.h 2025-08-14T21:48:24.1588866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_put_ops.h 2025-08-14T21:48:24.1592833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index.h 2025-08-14T21:48:24.1597048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.1601130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_native.h 2025-08-14T21:48:24.1605369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_ops.h 2025-08-14T21:48:24.1609888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate.h 2025-08-14T21:48:24.1614115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.1618082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_native.h 2025-08-14T21:48:24.1622161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_ops.h 2025-08-14T21:48:24.1626142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_view.h 2025-08-14T21:48:24.1630350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_view_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.1635919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_view_native.h 2025-08-14T21:48:24.1640204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_view_ops.h 2025-08-14T21:48:24.1644287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa.h 2025-08-14T21:48:24.1648189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward.h 2025-08-14T21:48:24.1652454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:24.1656596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cpu_dispatch.h 2025-08-14T21:48:24.1660499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cuda_dispatch.h 2025-08-14T21:48:24.1664545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta.h 2025-08-14T21:48:24.1668655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta_dispatch.h 2025-08-14T21:48:24.1672628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_native.h 2025-08-14T21:48:24.1676829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_ops.h 2025-08-14T21:48:24.1681515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:24.1685687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:24.1689737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_cpu_dispatch.h 2025-08-14T21:48:24.1693680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_cuda_dispatch.h 2025-08-14T21:48:24.1697940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_meta.h 2025-08-14T21:48:24.1701936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_meta_dispatch.h 2025-08-14T21:48:24.1705785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_native.h 2025-08-14T21:48:24.1709777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_ops.h 2025-08-14T21:48:24.1713791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa.h 2025-08-14T21:48:24.1717698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward.h 2025-08-14T21:48:24.1722264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:24.1726838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cpu_dispatch.h 2025-08-14T21:48:24.1730988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cuda_dispatch.h 2025-08-14T21:48:24.1735424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta.h 2025-08-14T21:48:24.1739231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta_dispatch.h 2025-08-14T21:48:24.1743735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_native.h 2025-08-14T21:48:24.1747648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_ops.h 2025-08-14T21:48:24.1752101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:24.1756168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:24.1760246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_cpu_dispatch.h 2025-08-14T21:48:24.1764553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_cuda_dispatch.h 2025-08-14T21:48:24.1768554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_meta.h 2025-08-14T21:48:24.1772594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_meta_dispatch.h 2025-08-14T21:48:24.1776500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_native.h 2025-08-14T21:48:24.1780532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_ops.h 2025-08-14T21:48:24.1784589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d.h 2025-08-14T21:48:24.1788756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward.h 2025-08-14T21:48:24.1792939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:24.1797524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cpu_dispatch.h 2025-08-14T21:48:24.1801338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cuda_dispatch.h 2025-08-14T21:48:24.1805237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta.h 2025-08-14T21:48:24.1811146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta_dispatch.h 2025-08-14T21:48:24.1815126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_native.h 2025-08-14T21:48:24.1819894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_ops.h 2025-08-14T21:48:24.1824461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:24.1828454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:24.1832726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_cpu_dispatch.h 2025-08-14T21:48:24.1837209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_cuda_dispatch.h 2025-08-14T21:48:24.1841435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_meta.h 2025-08-14T21:48:24.1845545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_meta_dispatch.h 2025-08-14T21:48:24.1849583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_native.h 2025-08-14T21:48:24.1853944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_ops.h 2025-08-14T21:48:24.1858044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d.h 2025-08-14T21:48:24.1862271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward.h 2025-08-14T21:48:24.1866525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:24.1870566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cpu_dispatch.h 2025-08-14T21:48:24.1874790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cuda_dispatch.h 2025-08-14T21:48:24.1878904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta.h 2025-08-14T21:48:24.1883065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta_dispatch.h 2025-08-14T21:48:24.1887611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_native.h 2025-08-14T21:48:24.1891731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_ops.h 2025-08-14T21:48:24.1896101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:24.1900059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:24.1904152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_cpu_dispatch.h 2025-08-14T21:48:24.1908610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_cuda_dispatch.h 2025-08-14T21:48:24.1912508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_meta.h 2025-08-14T21:48:24.1916568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_meta_dispatch.h 2025-08-14T21:48:24.1920590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_native.h 2025-08-14T21:48:24.1924492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_ops.h 2025-08-14T21:48:24.1929073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d.h 2025-08-14T21:48:24.1953179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward.h 2025-08-14T21:48:24.1957307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:24.1961543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cpu_dispatch.h 2025-08-14T21:48:24.1965719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cuda_dispatch.h 2025-08-14T21:48:24.1969711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta.h 2025-08-14T21:48:24.1973611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta_dispatch.h 2025-08-14T21:48:24.1977494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_native.h 2025-08-14T21:48:24.1981582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_ops.h 2025-08-14T21:48:24.1985644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:24.1989651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:24.1993557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_cpu_dispatch.h 2025-08-14T21:48:24.1997510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_cuda_dispatch.h 2025-08-14T21:48:24.2002448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_meta.h 2025-08-14T21:48:24.2005891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_meta_dispatch.h 2025-08-14T21:48:24.2009822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_native.h 2025-08-14T21:48:24.2013644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_ops.h 2025-08-14T21:48:24.2018880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_ctc_loss.h 2025-08-14T21:48:24.2022583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_ctc_loss_cuda_dispatch.h 2025-08-14T21:48:24.2026571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_ctc_loss_native.h 2025-08-14T21:48:24.2030343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_ctc_loss_ops.h 2025-08-14T21:48:24.2034345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight.h 2025-08-14T21:48:24.2038438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:24.2042435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_native.h 2025-08-14T21:48:24.2046320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_ops.h 2025-08-14T21:48:24.2050811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_compressed_sparse_indices.h 2025-08-14T21:48:24.2054787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_compressed_sparse_indices_cpu_dispatch.h 2025-08-14T21:48:24.2058628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_compressed_sparse_indices_cuda_dispatch.h 2025-08-14T21:48:24.2062394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_compressed_sparse_indices_native.h 2025-08-14T21:48:24.2066275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_compressed_sparse_indices_ops.h 2025-08-14T21:48:24.2070336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args.h 2025-08-14T21:48:24.2074486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:24.2078378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_native.h 2025-08-14T21:48:24.2082611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_ops.h 2025-08-14T21:48:24.2086376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args.h 2025-08-14T21:48:24.2090591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:24.2094872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_native.h 2025-08-14T21:48:24.2099097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_ops.h 2025-08-14T21:48:24.2103050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args.h 2025-08-14T21:48:24.2107785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:24.2112183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_native.h 2025-08-14T21:48:24.2116256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_ops.h 2025-08-14T21:48:24.2120300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_coo_tensor_args.h 2025-08-14T21:48:24.2124667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:24.2128482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_coo_tensor_args_native.h 2025-08-14T21:48:24.2132745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_coo_tensor_args_ops.h 2025-08-14T21:48:24.2136669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csc_tensor_args.h 2025-08-14T21:48:24.2140984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:24.2145043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csc_tensor_args_native.h 2025-08-14T21:48:24.2149054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csc_tensor_args_ops.h 2025-08-14T21:48:24.2153405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csr_tensor_args.h 2025-08-14T21:48:24.2157828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:24.2161850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csr_tensor_args_native.h 2025-08-14T21:48:24.2165849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csr_tensor_args_ops.h 2025-08-14T21:48:24.2169864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values.h 2025-08-14T21:48:24.2173461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_copy.h 2025-08-14T21:48:24.2177794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:24.2181927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.2185861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_copy_native.h 2025-08-14T21:48:24.2190967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_copy_ops.h 2025-08-14T21:48:24.2194881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_native.h 2025-08-14T21:48:24.2198845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_ops.h 2025-08-14T21:48:24.2203448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_version.h 2025-08-14T21:48:24.2207141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_version_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:24.2211073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_version_native.h 2025-08-14T21:48:24.2214964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_version_ops.h 2025-08-14T21:48:24.2218868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm.h 2025-08-14T21:48:24.2222685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_cuda_dispatch.h 2025-08-14T21:48:24.2226558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu.h 2025-08-14T21:48:24.2230652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_cpu_dispatch.h 2025-08-14T21:48:24.2234628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_native.h 2025-08-14T21:48:24.2238777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_ops.h 2025-08-14T21:48:24.2243179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_native.h 2025-08-14T21:48:24.2247252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_ops.h 2025-08-14T21:48:24.2251284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros.h 2025-08-14T21:48:24.2255554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros_native.h 2025-08-14T21:48:24.2259512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros_ops.h 2025-08-14T21:48:24.2263776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int8pack_mm.h 2025-08-14T21:48:24.2267997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int8pack_mm_cpu_dispatch.h 2025-08-14T21:48:24.2271850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int8pack_mm_cuda_dispatch.h 2025-08-14T21:48:24.2275655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int8pack_mm_native.h 2025-08-14T21:48:24.2279751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int8pack_mm_ops.h 2025-08-14T21:48:24.2283729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm.h 2025-08-14T21:48:24.2288059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:24.2291978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_differentiable_backward.h 2025-08-14T21:48:24.2296272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:24.2300278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_differentiable_backward_native.h 2025-08-14T21:48:24.2305065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_differentiable_backward_ops.h 2025-08-14T21:48:24.2309514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface.h 2025-08-14T21:48:24.2313420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward.h 2025-08-14T21:48:24.2317643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.2322238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward_cpu_dispatch.h 2025-08-14T21:48:24.2326009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward_cuda_dispatch.h 2025-08-14T21:48:24.2330859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward_native.h 2025-08-14T21:48:24.2334689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward_ops.h 2025-08-14T21:48:24.2339726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:24.2343477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_cpu_dispatch.h 2025-08-14T21:48:24.2347610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_cuda_dispatch.h 2025-08-14T21:48:24.2351613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_native.h 2025-08-14T21:48:24.2355667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_ops.h 2025-08-14T21:48:24.2360659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_native.h 2025-08-14T21:48:24.2365747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_ops.h 2025-08-14T21:48:24.2370038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_linear_prepack.h 2025-08-14T21:48:24.2374365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:24.2378325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_linear_prepack_native.h 2025-08-14T21:48:24.2382161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_linear_prepack_ops.h 2025-08-14T21:48:24.2386552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked.h 2025-08-14T21:48:24.2390973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:24.2394802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_native.h 2025-08-14T21:48:24.2398908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_ops.h 2025-08-14T21:48:24.2648561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\quantized\QTensorImpl.h 2025-08-14T21:48:24.2651937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\quantized\Quantizer.h 2025-08-14T21:48:24.2660530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\CachingHostAllocator.h 2025-08-14T21:48:24.2664852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\PinnedMemoryAllocator.h 2025-08-14T21:48:24.2668769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\XPUContext.h 2025-08-14T21:48:24.2672690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\XPUDevice.h 2025-08-14T21:48:24.2684615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\XPUEvent.h 2025-08-14T21:48:24.2688475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\XPUGeneratorImpl.h 2025-08-14T21:48:24.2696645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\detail\XPUHooks.h 2025-08-14T21:48:24.2709181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\alignment.h 2025-08-14T21:48:24.2712773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Allocator.h 2025-08-14T21:48:24.2716232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\AllocatorConfig.h 2025-08-14T21:48:24.2719835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\AutogradState.h 2025-08-14T21:48:24.2728290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Backend.h 2025-08-14T21:48:24.2731788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\CachingDeviceAllocator.h 2025-08-14T21:48:24.2735778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\CompileTimeFunctionPointer.h 2025-08-14T21:48:24.2739185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\ConstantSymNodeImpl.h 2025-08-14T21:48:24.2742588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Contiguity.h 2025-08-14T21:48:24.2746137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\CopyBytes.h 2025-08-14T21:48:24.2749497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\CPUAllocator.h 2025-08-14T21:48:24.2752896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DefaultDtype.h 2025-08-14T21:48:24.2756435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DefaultTensorOptions.h 2025-08-14T21:48:24.2759985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Device.h 2025-08-14T21:48:24.2763638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DeviceArray.h 2025-08-14T21:48:24.2767313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DeviceGuard.h 2025-08-14T21:48:24.2770737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DeviceType.h 2025-08-14T21:48:24.2774129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DispatchKey.h 2025-08-14T21:48:24.2777911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DispatchKeySet.h 2025-08-14T21:48:24.2781453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DynamicCast.h 2025-08-14T21:48:24.2789763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Event.h 2025-08-14T21:48:24.2792989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\GeneratorImpl.h 2025-08-14T21:48:24.2796368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\GradMode.h 2025-08-14T21:48:24.2799868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\InferenceMode.h 2025-08-14T21:48:24.2803619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Layout.h 2025-08-14T21:48:24.2806913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\MemoryFormat.h 2025-08-14T21:48:24.2810325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\OptionalRef.h 2025-08-14T21:48:24.2813842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\PyHandleCache.h 2025-08-14T21:48:24.2817411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\QEngine.h 2025-08-14T21:48:24.2820704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\QScheme.h 2025-08-14T21:48:24.2824050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\RefcountedDeleter.h 2025-08-14T21:48:24.2827571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SafePyObject.h 2025-08-14T21:48:24.2836103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Scalar.h 2025-08-14T21:48:24.2840594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\ScalarType.h 2025-08-14T21:48:24.2844276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\ScalarTypeToTypeMeta.h 2025-08-14T21:48:24.2847657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Storage.h 2025-08-14T21:48:24.2850932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\StorageImpl.h 2025-08-14T21:48:24.2854327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Stream.h 2025-08-14T21:48:24.2857606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\StreamGuard.h 2025-08-14T21:48:24.2861009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymbolicShapeMeta.h 2025-08-14T21:48:24.2864375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymBool.h 2025-08-14T21:48:24.2867671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymFloat.h 2025-08-14T21:48:24.2870932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymInt.h 2025-08-14T21:48:24.2874490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymIntArrayRef.h 2025-08-14T21:48:24.2883131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymNodeImpl.h 2025-08-14T21:48:24.2886851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\TensorImpl.h 2025-08-14T21:48:24.2891075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\TensorOptions.h 2025-08-14T21:48:24.2894614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\thread_pool.h 2025-08-14T21:48:24.2898142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\UndefinedTensorImpl.h 2025-08-14T21:48:24.2901696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\WrapDimMinimal.h 2025-08-14T21:48:24.2909212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\alloc_cpu.h 2025-08-14T21:48:24.2912852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\COW.h 2025-08-14T21:48:24.2916127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\COWDeleter.h 2025-08-14T21:48:24.2920879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\DeviceGuardImplInterface.h 2025-08-14T21:48:24.2929849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\FakeGuardImpl.h 2025-08-14T21:48:24.2933234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\GPUTrace.h 2025-08-14T21:48:24.2936609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\HermeticPyObjectTLS.h 2025-08-14T21:48:24.2940103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\InlineDeviceGuard.h 2025-08-14T21:48:24.2943470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\InlineEvent.h 2025-08-14T21:48:24.2947168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\InlineStreamGuard.h 2025-08-14T21:48:24.2950662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\LocalDispatchKeySet.h 2025-08-14T21:48:24.2954009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\PyInterpreter.h 2025-08-14T21:48:24.2957565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\PyInterpreterHooks.h 2025-08-14T21:48:24.2961040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\PyObjectSlot.h 2025-08-14T21:48:24.2964433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\PythonDispatcherTLS.h 2025-08-14T21:48:24.2967846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\SizesAndStrides.h 2025-08-14T21:48:24.2971986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\TorchDispatchModeTLS.h 2025-08-14T21:48:24.2976041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\VirtualGuardImpl.h 2025-08-14T21:48:24.2986526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAAlgorithm.h 2025-08-14T21:48:24.2989944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAAllocatorConfig.h 2025-08-14T21:48:24.2993923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDACachingAllocator.h 2025-08-14T21:48:24.2997848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDADeviceAssertion.h 2025-08-14T21:48:24.3007520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDADeviceAssertionHost.h 2025-08-14T21:48:24.3011438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAException.h 2025-08-14T21:48:24.3015339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAFunctions.h 2025-08-14T21:48:24.3019424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAGraphsC10Utils.h 2025-08-14T21:48:24.3024064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAGuard.h 2025-08-14T21:48:24.3027468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAMacros.h 2025-08-14T21:48:24.3030979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAMathCompat.h 2025-08-14T21:48:24.3034633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAMiscFunctions.h 2025-08-14T21:48:24.3038135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAStream.h 2025-08-14T21:48:24.3041671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\driver_api.h 2025-08-14T21:48:24.3049985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\impl\CUDAGuardImpl.h 2025-08-14T21:48:24.3053651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\impl\CUDATest.h 2025-08-14T21:48:24.3061135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\macros\cmake_macros.h 2025-08-14T21:48:24.3064650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\macros\Export.h 2025-08-14T21:48:24.3068134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\macros\Macros.h 2025-08-14T21:48:24.3075005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\atomic.h 2025-08-14T21:48:24.3078331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\common.h 2025-08-14T21:48:24.3081860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\expm1f.h 2025-08-14T21:48:24.3085339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\indexing.h 2025-08-14T21:48:24.3089397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\random.h 2025-08-14T21:48:24.3092788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\reduction_utils.h 2025-08-14T21:48:24.3100845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\special_math.h 2025-08-14T21:48:24.3104424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\utils.h 2025-08-14T21:48:24.3111570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\mobile\CPUCachingAllocator.h 2025-08-14T21:48:24.3114911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\mobile\CPUProfilingAllocator.h 2025-08-14T21:48:24.3126275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\test\util\complex_math_test_common.h 2025-08-14T21:48:24.3129929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\test\util\complex_test_common.h 2025-08-14T21:48:24.3133141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\test\util\Macros.h 2025-08-14T21:48:24.3141321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\AbortHandler.h 2025-08-14T21:48:24.3144769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\accumulate.h 2025-08-14T21:48:24.3148069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\AlignOf.h 2025-08-14T21:48:24.3151259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ApproximateClock.h 2025-08-14T21:48:24.3159100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Array.h 2025-08-14T21:48:24.3162630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ArrayRef.h 2025-08-14T21:48:24.3165917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Backtrace.h 2025-08-14T21:48:24.3169278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\BFloat16-inl.h 2025-08-14T21:48:24.3172634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\BFloat16-math.h 2025-08-14T21:48:24.3175943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\BFloat16.h 2025-08-14T21:48:24.3179299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\bits.h 2025-08-14T21:48:24.3182539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Bitset.h 2025-08-14T21:48:24.3185819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\bit_cast.h 2025-08-14T21:48:24.3188983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\C++17.h 2025-08-14T21:48:24.3192484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\CallOnce.h 2025-08-14T21:48:24.3195965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\complex.h 2025-08-14T21:48:24.3199514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\complex_math.h 2025-08-14T21:48:24.3202980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\complex_utils.h 2025-08-14T21:48:24.3206512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ConstexprCrc.h 2025-08-14T21:48:24.3209978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\copysign.h 2025-08-14T21:48:24.3213783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\DeadlockDetection.h 2025-08-14T21:48:24.3217341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Deprecated.h 2025-08-14T21:48:24.3220890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\DimVector.h 2025-08-14T21:48:24.3224447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\DynamicCounter.h 2025-08-14T21:48:24.3247105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Enumerate.h 2025-08-14T21:48:24.3250569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\env.h 2025-08-14T21:48:24.3253848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\error.h 2025-08-14T21:48:24.3257231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Exception.h 2025-08-14T21:48:24.3260849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ExclusivelyOwned.h 2025-08-14T21:48:24.3265010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ExclusivelyOwnedTensorTraits.h 2025-08-14T21:48:24.3268583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\FbcodeMaps.h 2025-08-14T21:48:24.3272010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Flags.h 2025-08-14T21:48:24.3276196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\flat_hash_map.h 2025-08-14T21:48:24.3280388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float4_e2m1fn_x2.h 2025-08-14T21:48:24.3283907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e4m3fn-inl.h 2025-08-14T21:48:24.3292639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e4m3fn.h 2025-08-14T21:48:24.3296316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e4m3fnuz-inl.h 2025-08-14T21:48:24.3300483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e4m3fnuz.h 2025-08-14T21:48:24.3304432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e5m2-inl.h 2025-08-14T21:48:24.3308274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e5m2.h 2025-08-14T21:48:24.3311921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e5m2fnuz-inl.h 2025-08-14T21:48:24.3315846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e5m2fnuz.h 2025-08-14T21:48:24.3319589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e8m0fnu-inl.h 2025-08-14T21:48:24.3323207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e8m0fnu.h 2025-08-14T21:48:24.3332745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\floating_point_utils.h 2025-08-14T21:48:24.3336735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\FunctionRef.h 2025-08-14T21:48:24.3339922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Gauge.h 2025-08-14T21:48:24.3343481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\generic_math.h 2025-08-14T21:48:24.3346982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Half-inl.h 2025-08-14T21:48:24.3352800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Half.h 2025-08-14T21:48:24.3356458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\hash.h 2025-08-14T21:48:24.3360177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\IdWrapper.h 2025-08-14T21:48:24.3363822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\int128.h 2025-08-14T21:48:24.3367733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\IntrusiveList.h 2025-08-14T21:48:24.3371238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\intrusive_ptr.h 2025-08-14T21:48:24.3374931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\irange.h 2025-08-14T21:48:24.3378878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Lazy.h 2025-08-14T21:48:24.3382172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\LeftRight.h 2025-08-14T21:48:24.3391239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\llvmMathExtras.h 2025-08-14T21:48:24.3395804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Load.h 2025-08-14T21:48:24.3400030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Logging.h 2025-08-14T21:48:24.3404013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\logging_is_google_glog.h 2025-08-14T21:48:24.3408179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\logging_is_not_google_glog.h 2025-08-14T21:48:24.3412337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\MathConstants.h 2025-08-14T21:48:24.3416663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\MaybeOwned.h 2025-08-14T21:48:24.3420704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Metaprogramming.h 2025-08-14T21:48:24.3424430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\NetworkFlow.h 2025-08-14T21:48:24.3428023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\numa.h 2025-08-14T21:48:24.3432035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Optional.h 2025-08-14T21:48:24.3446762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\OptionalArrayRef.h 2025-08-14T21:48:24.3450220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\order_preserving_flat_hash_map.h 2025-08-14T21:48:24.3454462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\overflows.h 2025-08-14T21:48:24.3458083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\overloaded.h 2025-08-14T21:48:24.3461678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ParallelGuard.h 2025-08-14T21:48:24.3465258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\python_stub.h 2025-08-14T21:48:24.3468830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\qint32.h 2025-08-14T21:48:24.3471965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\qint8.h 2025-08-14T21:48:24.3475224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\quint2x4.h 2025-08-14T21:48:24.3479058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\quint4x2.h 2025-08-14T21:48:24.3482397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\quint8.h 2025-08-14T21:48:24.3485743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Registry.h 2025-08-14T21:48:24.3489230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\safe_numerics.h 2025-08-14T21:48:24.3498783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ScopeExit.h 2025-08-14T21:48:24.3502207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Semaphore.h 2025-08-14T21:48:24.3505916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\signal_handler.h 2025-08-14T21:48:24.3509719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\SmallBuffer.h 2025-08-14T21:48:24.3513197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\SmallVector.h 2025-08-14T21:48:24.3517066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\sparse_bitset.h 2025-08-14T21:48:24.3520673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ssize.h 2025-08-14T21:48:24.3524136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\static_tracepoint.h 2025-08-14T21:48:24.3528130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\static_tracepoint_elfx86.h 2025-08-14T21:48:24.3531894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\strides.h 2025-08-14T21:48:24.3535315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\StringUtil.h 2025-08-14T21:48:24.3544841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\string_utils.h 2025-08-14T21:48:24.3547989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\string_view.h 2025-08-14T21:48:24.3551432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\strong_type.h 2025-08-14T21:48:24.3555207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Synchronized.h 2025-08-14T21:48:24.3558975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\tempfile.h 2025-08-14T21:48:24.3562758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ThreadLocal.h 2025-08-14T21:48:24.3566502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ThreadLocalDebugInfo.h 2025-08-14T21:48:24.3570486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\thread_name.h 2025-08-14T21:48:24.3573681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Type.h 2025-08-14T21:48:24.3576988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\TypeCast.h 2025-08-14T21:48:24.3580300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\typeid.h 2025-08-14T21:48:24.3583776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\TypeIndex.h 2025-08-14T21:48:24.3587628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\TypeList.h 2025-08-14T21:48:24.3590750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\TypeSafeSignMath.h 2025-08-14T21:48:24.3594914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\TypeTraits.h 2025-08-14T21:48:24.3598414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Unicode.h 2025-08-14T21:48:24.3601861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\UniqueVoidPtr.h 2025-08-14T21:48:24.3605239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Unroll.h 2025-08-14T21:48:24.3608686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\WaitCounter.h 2025-08-14T21:48:24.3612221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\WaitCounterDynamicBackend.h 2025-08-14T21:48:24.3617239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\win32-headers.h 2025-08-14T21:48:24.3636536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUCachingAllocator.h 2025-08-14T21:48:24.3640379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUDeviceProp.h 2025-08-14T21:48:24.3643831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUException.h 2025-08-14T21:48:24.3647191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUFunctions.h 2025-08-14T21:48:24.3655291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUMacros.h 2025-08-14T21:48:24.3658681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUStream.h 2025-08-14T21:48:24.3665255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\impl\XPUGuardImpl.h 2025-08-14T21:48:24.3676243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\test\impl\XPUTest.h 2025-08-14T21:48:24.3690319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\core\common.h 2025-08-14T21:48:24.3693651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\core\macros.h 2025-08-14T21:48:24.3696949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\core\timer.h 2025-08-14T21:48:24.3703973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\perfkernels\batch_box_cox_vec.h 2025-08-14T21:48:24.3707672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\perfkernels\common.h 2025-08-14T21:48:24.3711072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\perfkernels\embedding_lookup_idx.h 2025-08-14T21:48:24.3718281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\crc_alt.h 2025-08-14T21:48:24.3722111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\file_adapter.h 2025-08-14T21:48:24.3725639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\inline_container.h 2025-08-14T21:48:24.3729198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\in_memory_adapter.h 2025-08-14T21:48:24.3738503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\istream_adapter.h 2025-08-14T21:48:24.3741873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\read_adapter_interface.h 2025-08-14T21:48:24.3746051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\versions.h 2025-08-14T21:48:24.3753700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\fixed_divisor.h 2025-08-14T21:48:24.3757138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\proto_wrap.h 2025-08-14T21:48:24.3760613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\string_utils.h 2025-08-14T21:48:24.3774018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\pthreadpool-cpp.h 2025-08-14T21:48:24.3777565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\pthreadpool.h 2025-08-14T21:48:24.3780913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\ThreadPool.h 2025-08-14T21:48:24.3790981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\ThreadPoolCommon.h 2025-08-14T21:48:24.3794616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\thread_pool_guard.h 2025-08-14T21:48:24.3798927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\WorkersPool.h 2025-08-14T21:48:24.3808288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\args.h 2025-08-14T21:48:24.3811637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\base.h 2025-08-14T21:48:24.3815461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\chrono.h 2025-08-14T21:48:24.3819589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\color.h 2025-08-14T21:48:24.3823357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\compile.h 2025-08-14T21:48:24.3827041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\core.h 2025-08-14T21:48:24.3830594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\format-inl.h 2025-08-14T21:48:24.3840415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\format.h 2025-08-14T21:48:24.3844639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\os.h 2025-08-14T21:48:24.3848057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\ostream.h 2025-08-14T21:48:24.3851372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\printf.h 2025-08-14T21:48:24.3854718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\ranges.h 2025-08-14T21:48:24.3858001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\std.h 2025-08-14T21:48:24.3861476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\xchar.h 2025-08-14T21:48:24.3869083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fp16\bitcasts.h 2025-08-14T21:48:24.3872723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fp16\fp16.h 2025-08-14T21:48:24.3876287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fp16\psimd.h 2025-08-14T21:48:24.3889428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\any.h 2025-08-14T21:48:24.3893260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\any.pb.h 2025-08-14T21:48:24.3897091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\api.pb.h 2025-08-14T21:48:24.3901497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\arena.h 2025-08-14T21:48:24.3905582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\arenastring.h 2025-08-14T21:48:24.3914986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\arena_impl.h 2025-08-14T21:48:24.3918933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\descriptor.h 2025-08-14T21:48:24.3923647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\descriptor.pb.h 2025-08-14T21:48:24.3930797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\descriptor_database.h 2025-08-14T21:48:24.3934375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\duration.pb.h 2025-08-14T21:48:24.3938020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\dynamic_message.h 2025-08-14T21:48:24.3941437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\empty.pb.h 2025-08-14T21:48:24.3944914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\extension_set.h 2025-08-14T21:48:24.3948947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\extension_set_inl.h 2025-08-14T21:48:24.3952409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\field_mask.pb.h 2025-08-14T21:48:24.3955875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\generated_enum_reflection.h 2025-08-14T21:48:24.3959631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\generated_enum_util.h 2025-08-14T21:48:24.3963474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\generated_message_reflection.h 2025-08-14T21:48:24.3967030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\generated_message_table_driven.h 2025-08-14T21:48:24.3970500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\generated_message_util.h 2025-08-14T21:48:24.3980535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\has_bits.h 2025-08-14T21:48:24.3983893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\implicit_weak_message.h 2025-08-14T21:48:24.3987412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\inlined_string_field.h 2025-08-14T21:48:24.3991068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map.h 2025-08-14T21:48:24.3994654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_entry.h 2025-08-14T21:48:24.3998192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_entry_lite.h 2025-08-14T21:48:24.4001988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_field.h 2025-08-14T21:48:24.4005378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_field_inl.h 2025-08-14T21:48:24.4008931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_field_lite.h 2025-08-14T21:48:24.4012596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_type_handler.h 2025-08-14T21:48:24.4021401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\message.h 2025-08-14T21:48:24.4024988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\message_lite.h 2025-08-14T21:48:24.4028744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\metadata.h 2025-08-14T21:48:24.4032139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\metadata_lite.h 2025-08-14T21:48:24.4035649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\parse_context.h 2025-08-14T21:48:24.4039312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\port.h 2025-08-14T21:48:24.4042680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\reflection.h 2025-08-14T21:48:24.4046135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\reflection_ops.h 2025-08-14T21:48:24.4049613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\repeated_field.h 2025-08-14T21:48:24.4054139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\service.h 2025-08-14T21:48:24.4057648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\source_context.pb.h 2025-08-14T21:48:24.4061262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\struct.pb.h 2025-08-14T21:48:24.4069953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\text_format.h 2025-08-14T21:48:24.4073487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\timestamp.pb.h 2025-08-14T21:48:24.4076969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\type.pb.h 2025-08-14T21:48:24.4081060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\unknown_field_set.h 2025-08-14T21:48:24.4084903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\wire_format.h 2025-08-14T21:48:24.4088373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\wire_format_lite.h 2025-08-14T21:48:24.4092076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\wrappers.pb.h 2025-08-14T21:48:24.4099990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\code_generator.h 2025-08-14T21:48:24.4103328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\command_line_interface.h 2025-08-14T21:48:24.4106704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\importer.h 2025-08-14T21:48:24.4110115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\parser.h 2025-08-14T21:48:24.4113467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\plugin.h 2025-08-14T21:48:24.4122240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\plugin.pb.h 2025-08-14T21:48:24.4129460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\cpp\cpp_generator.h 2025-08-14T21:48:24.4136408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\csharp\csharp_generator.h 2025-08-14T21:48:24.4140055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\csharp\csharp_names.h 2025-08-14T21:48:24.4147691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\java\java_generator.h 2025-08-14T21:48:24.4151145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\java\java_names.h 2025-08-14T21:48:24.4158321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\js\js_generator.h 2025-08-14T21:48:24.4161797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\js\well_known_types_embed.h 2025-08-14T21:48:24.4169002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\objectivec\objectivec_generator.h 2025-08-14T21:48:24.4172737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\objectivec\objectivec_helpers.h 2025-08-14T21:48:24.4181118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\php\php_generator.h 2025-08-14T21:48:24.4188328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\python\python_generator.h 2025-08-14T21:48:24.4195625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\ruby\ruby_generator.h 2025-08-14T21:48:24.4204759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\coded_stream.h 2025-08-14T21:48:24.4208945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\gzip_stream.h 2025-08-14T21:48:24.4212546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\io_win32.h 2025-08-14T21:48:24.4215897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\printer.h 2025-08-14T21:48:24.4219796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\strtod.h 2025-08-14T21:48:24.4228743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\tokenizer.h 2025-08-14T21:48:24.4232271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\zero_copy_stream.h 2025-08-14T21:48:24.4235815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\zero_copy_stream_impl.h 2025-08-14T21:48:24.4239392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\zero_copy_stream_impl_lite.h 2025-08-14T21:48:24.4248158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\bytestream.h 2025-08-14T21:48:24.4251825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\callback.h 2025-08-14T21:48:24.4255265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\casts.h 2025-08-14T21:48:24.4258540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\common.h 2025-08-14T21:48:24.4261956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\fastmem.h 2025-08-14T21:48:24.4265257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\hash.h 2025-08-14T21:48:24.4273794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\logging.h 2025-08-14T21:48:24.4277317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\macros.h 2025-08-14T21:48:24.4281106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\map_util.h 2025-08-14T21:48:24.4284516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\mutex.h 2025-08-14T21:48:24.4288368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\once.h 2025-08-14T21:48:24.4291871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\platform_macros.h 2025-08-14T21:48:24.4295358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\port.h 2025-08-14T21:48:24.4298876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\status.h 2025-08-14T21:48:24.4302496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\stl_util.h 2025-08-14T21:48:24.4305839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\stringpiece.h 2025-08-14T21:48:24.4309280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\strutil.h 2025-08-14T21:48:24.4312862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\template_util.h 2025-08-14T21:48:24.4338263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\delimited_message_util.h 2025-08-14T21:48:24.4341727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\field_comparator.h 2025-08-14T21:48:24.4345103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\field_mask_util.h 2025-08-14T21:48:24.4353813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\json_util.h 2025-08-14T21:48:24.4357183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\message_differencer.h 2025-08-14T21:48:24.4360996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\time_util.h 2025-08-14T21:48:24.4364380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\type_resolver.h 2025-08-14T21:48:24.4367946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\type_resolver_util.h 2025-08-14T21:48:24.4377191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\AbstractConfig.h 2025-08-14T21:48:24.4380997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ActivityProfilerInterface.h 2025-08-14T21:48:24.4384805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ActivityTraceInterface.h 2025-08-14T21:48:24.4395294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ActivityType.h 2025-08-14T21:48:24.4399275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ClientInterface.h 2025-08-14T21:48:24.4403141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\Config.h 2025-08-14T21:48:24.4406819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\GenericTraceActivity.h 2025-08-14T21:48:24.4410237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\IActivityProfiler.h 2025-08-14T21:48:24.4413683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ILoggerObserver.h 2025-08-14T21:48:24.4417269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ITraceActivity.h 2025-08-14T21:48:24.4420870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\libkineto.h 2025-08-14T21:48:24.4424442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\LoggingAPI.h 2025-08-14T21:48:24.4427895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\output_base.h 2025-08-14T21:48:24.4431458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ThreadUtil.h 2025-08-14T21:48:24.4435322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\time_since_epoch.h 2025-08-14T21:48:24.4439032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\TraceSpan.h 2025-08-14T21:48:24.4446783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\legacy\ittnotify.h 2025-08-14T21:48:24.4454454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\mimalloc-2.2\mimalloc-new-delete.h 2025-08-14T21:48:24.4458078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\mimalloc-2.2\mimalloc-override.h 2025-08-14T21:48:24.4461514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\mimalloc-2.2\mimalloc-stats.h 2025-08-14T21:48:24.4469758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\mimalloc-2.2\mimalloc.h 2025-08-14T21:48:24.4482062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl.h 2025-08-14T21:48:24.4486308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl.hpp 2025-08-14T21:48:24.4493228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_common.h 2025-08-14T21:48:24.4496537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_common.hpp 2025-08-14T21:48:24.4499833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_common_types.h 2025-08-14T21:48:24.4508282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_config.h 2025-08-14T21:48:24.4511553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_debug.h 2025-08-14T21:48:24.4514946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph.h 2025-08-14T21:48:24.4518512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph.hpp 2025-08-14T21:48:24.4522173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph_ocl.h 2025-08-14T21:48:24.4525601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph_ocl.hpp 2025-08-14T21:48:24.4529646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph_sycl.h 2025-08-14T21:48:24.4533145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph_sycl.hpp 2025-08-14T21:48:24.4536612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph_types.h 2025-08-14T21:48:24.4540161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ocl.h 2025-08-14T21:48:24.4543482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ocl.hpp 2025-08-14T21:48:24.4546764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ocl_types.h 2025-08-14T21:48:24.4550172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_sycl.h 2025-08-14T21:48:24.4553549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_sycl.hpp 2025-08-14T21:48:24.4557056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_sycl_types.h 2025-08-14T21:48:24.4560879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_threadpool.h 2025-08-14T21:48:24.4571484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_threadpool.hpp 2025-08-14T21:48:24.4575246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_threadpool_iface.hpp 2025-08-14T21:48:24.4578807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_types.h 2025-08-14T21:48:24.4582622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ukernel.h 2025-08-14T21:48:24.4586086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ukernel.hpp 2025-08-14T21:48:24.4589586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ukernel_types.h 2025-08-14T21:48:24.4593086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_version.h 2025-08-14T21:48:24.4598214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_version_hash.h 2025-08-14T21:48:24.4608539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\attr.h 2025-08-14T21:48:24.4612445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\buffer_info.h 2025-08-14T21:48:24.4615743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\cast.h 2025-08-14T21:48:24.4619551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\chrono.h 2025-08-14T21:48:24.4622758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\common.h 2025-08-14T21:48:24.4626000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\complex.h 2025-08-14T21:48:24.4635835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\eigen.h 2025-08-14T21:48:24.4639396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\embed.h 2025-08-14T21:48:24.4642713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\eval.h 2025-08-14T21:48:24.4645904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\functional.h 2025-08-14T21:48:24.4649155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\gil.h 2025-08-14T21:48:24.4652470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\gil_safe_call_once.h 2025-08-14T21:48:24.4655883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\iostream.h 2025-08-14T21:48:24.4659130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\numpy.h 2025-08-14T21:48:24.4663222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\operators.h 2025-08-14T21:48:24.4666635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\options.h 2025-08-14T21:48:24.4670041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\pybind11.h 2025-08-14T21:48:24.4674363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\pytypes.h 2025-08-14T21:48:24.4678168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\stl.h 2025-08-14T21:48:24.4681529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\stl_bind.h 2025-08-14T21:48:24.4685417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\type_caster_pyobject_ptr.h 2025-08-14T21:48:24.4688852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\typing.h 2025-08-14T21:48:24.4695911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\class.h 2025-08-14T21:48:24.4699455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\common.h 2025-08-14T21:48:24.4703014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\cpp_conduit.h 2025-08-14T21:48:24.4706755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\descr.h 2025-08-14T21:48:24.4710176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\exception_translation.h 2025-08-14T21:48:24.4718926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\init.h 2025-08-14T21:48:24.4723063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\internals.h 2025-08-14T21:48:24.4727114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\typeid.h 2025-08-14T21:48:24.4730588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\type_caster_base.h 2025-08-14T21:48:24.4734347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\value_and_holder.h 2025-08-14T21:48:24.4741724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\eigen\common.h 2025-08-14T21:48:24.4745027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\eigen\matrix.h 2025-08-14T21:48:24.4748609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\eigen\tensor.h 2025-08-14T21:48:24.4755961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\stl\filesystem.h 2025-08-14T21:48:24.4765512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\custom_class.h 2025-08-14T21:48:24.4768958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\custom_class_detail.h 2025-08-14T21:48:24.4778360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\extension.h 2025-08-14T21:48:24.4778910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\library.h 2025-08-14T21:48:24.4785674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\script.h 2025-08-14T21:48:24.4794400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\copy_utils.h 2025-08-14T21:48:24.4797986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\CudaIPCTypes.h 2025-08-14T21:48:24.4801606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\DataLoader.h 2025-08-14T21:48:24.4804971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Device.h 2025-08-14T21:48:24.4813374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\DeviceAccelerator.h 2025-08-14T21:48:24.4816772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Dtype.h 2025-08-14T21:48:24.4820113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\DynamicTypes.h 2025-08-14T21:48:24.4823619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Event.h 2025-08-14T21:48:24.4826905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Exceptions.h 2025-08-14T21:48:24.4830634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Export.h 2025-08-14T21:48:24.4833996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Generator.h 2025-08-14T21:48:24.4837575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\itt.h 2025-08-14T21:48:24.4840936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\itt_wrapper.h 2025-08-14T21:48:24.4844627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Layout.h 2025-08-14T21:48:24.4847952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\MemoryFormat.h 2025-08-14T21:48:24.4851970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Module.h 2025-08-14T21:48:24.4856009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\PyInterpreter.h 2025-08-14T21:48:24.4859408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\PyInterpreterHooks.h 2025-08-14T21:48:24.4862962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\python_dimname.h 2025-08-14T21:48:24.4866420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\python_headers.h 2025-08-14T21:48:24.4869837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\QScheme.h 2025-08-14T21:48:24.4873298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\serialization.h 2025-08-14T21:48:24.4876784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Size.h 2025-08-14T21:48:24.4880320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Storage.h 2025-08-14T21:48:24.4889065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\StorageMethods.h 2025-08-14T21:48:24.4893106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\StorageSharing.h 2025-08-14T21:48:24.4896961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Stream.h 2025-08-14T21:48:24.4900868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\THConcat.h 2025-08-14T21:48:24.4904547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\THP.h 2025-08-14T21:48:24.4907973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\TypeInfo.h 2025-08-14T21:48:24.4911711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Types.h 2025-08-14T21:48:24.4914732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils.h 2025-08-14T21:48:24.4929733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\all.h 2025-08-14T21:48:24.4933149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\arg.h 2025-08-14T21:48:24.4936487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\autograd.h 2025-08-14T21:48:24.4940023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\cuda.h 2025-08-14T21:48:24.4943528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data.h 2025-08-14T21:48:24.4947174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\enum.h 2025-08-14T21:48:24.4950459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\expanding_array.h 2025-08-14T21:48:24.4960119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\fft.h 2025-08-14T21:48:24.4963849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\imethod.h 2025-08-14T21:48:24.4967213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\jit.h 2025-08-14T21:48:24.4970506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\mps.h 2025-08-14T21:48:24.4973878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nested.h 2025-08-14T21:48:24.4977170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn.h 2025-08-14T21:48:24.4980711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim.h 2025-08-14T21:48:24.4984097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\ordered_dict.h 2025-08-14T21:48:24.4987636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\python.h 2025-08-14T21:48:24.4991130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\serialize.h 2025-08-14T21:48:24.4994767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\sparse.h 2025-08-14T21:48:24.4997886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\special.h 2025-08-14T21:48:24.5001544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\torch.h 2025-08-14T21:48:24.5004905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\types.h 2025-08-14T21:48:24.5008213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\utils.h 2025-08-14T21:48:24.5012084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\version.h 2025-08-14T21:48:24.5015545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\xpu.h 2025-08-14T21:48:24.5023211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\dataloader.h 2025-08-14T21:48:24.5026646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\dataloader_options.h 2025-08-14T21:48:24.5030151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets.h 2025-08-14T21:48:24.5033505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\example.h 2025-08-14T21:48:24.5036822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\iterator.h 2025-08-14T21:48:24.5045768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers.h 2025-08-14T21:48:24.5049128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms.h 2025-08-14T21:48:24.5052606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\worker_exception.h 2025-08-14T21:48:24.5059831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\dataloader\base.h 2025-08-14T21:48:24.5064128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\dataloader\stateful.h 2025-08-14T21:48:24.5067690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\dataloader\stateless.h 2025-08-14T21:48:24.5074987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\base.h 2025-08-14T21:48:24.5078262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\chunk.h 2025-08-14T21:48:24.5081745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\map.h 2025-08-14T21:48:24.5085023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\mnist.h 2025-08-14T21:48:24.5088337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\shared.h 2025-08-14T21:48:24.5091848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\stateful.h 2025-08-14T21:48:24.5095140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\tensor.h 2025-08-14T21:48:24.5107973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\detail\data_shuttle.h 2025-08-14T21:48:24.5111389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\detail\queue.h 2025-08-14T21:48:24.5114805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\detail\sequencers.h 2025-08-14T21:48:24.5122567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\base.h 2025-08-14T21:48:24.5126074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\custom_batch_request.h 2025-08-14T21:48:24.5129521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\distributed.h 2025-08-14T21:48:24.5133258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\random.h 2025-08-14T21:48:24.5136540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\sequential.h 2025-08-14T21:48:24.5144702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\serialize.h 2025-08-14T21:48:24.5148275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\stream.h 2025-08-14T21:48:24.5155856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms\base.h 2025-08-14T21:48:24.5159767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms\collate.h 2025-08-14T21:48:24.5163123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms\lambda.h 2025-08-14T21:48:24.5166564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms\stack.h 2025-08-14T21:48:24.5169991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms\tensor.h 2025-08-14T21:48:24.5178527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\detail\static.h 2025-08-14T21:48:24.5182065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\detail\TensorDataContainer.h 2025-08-14T21:48:24.5190090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nativert\ModelRunnerHandle.h 2025-08-14T21:48:24.5197417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\cloneable.h 2025-08-14T21:48:24.5201212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional.h 2025-08-14T21:48:24.5204569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\init.h 2025-08-14T21:48:24.5208061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\module.h 2025-08-14T21:48:24.5211757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules.h 2025-08-14T21:48:24.5222368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options.h 2025-08-14T21:48:24.5226196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\pimpl-inl.h 2025-08-14T21:48:24.5229447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\pimpl.h 2025-08-14T21:48:24.5233192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\utils.h 2025-08-14T21:48:24.5241366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\activation.h 2025-08-14T21:48:24.5245296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\batchnorm.h 2025-08-14T21:48:24.5248882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\conv.h 2025-08-14T21:48:24.5252223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\distance.h 2025-08-14T21:48:24.5261079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\dropout.h 2025-08-14T21:48:24.5264190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\embedding.h 2025-08-14T21:48:24.5267724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\fold.h 2025-08-14T21:48:24.5271157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\instancenorm.h 2025-08-14T21:48:24.5274693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\linear.h 2025-08-14T21:48:24.5278239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\loss.h 2025-08-14T21:48:24.5282244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\normalization.h 2025-08-14T21:48:24.5285960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\padding.h 2025-08-14T21:48:24.5289449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\pixelshuffle.h 2025-08-14T21:48:24.5292986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\pooling.h 2025-08-14T21:48:24.5296877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\upsampling.h 2025-08-14T21:48:24.5300300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\vision.h 2025-08-14T21:48:24.5308671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\activation.h 2025-08-14T21:48:24.5312277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\adaptive.h 2025-08-14T21:48:24.5315700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\batchnorm.h 2025-08-14T21:48:24.5319173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\common.h 2025-08-14T21:48:24.5322766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\conv.h 2025-08-14T21:48:24.5332540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\distance.h 2025-08-14T21:48:24.5335842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\dropout.h 2025-08-14T21:48:24.5339506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\embedding.h 2025-08-14T21:48:24.5343371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\fold.h 2025-08-14T21:48:24.5346838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\instancenorm.h 2025-08-14T21:48:24.5350393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\linear.h 2025-08-14T21:48:24.5353734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\loss.h 2025-08-14T21:48:24.5358048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\normalization.h 2025-08-14T21:48:24.5378037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\padding.h 2025-08-14T21:48:24.5381481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\pixelshuffle.h 2025-08-14T21:48:24.5385120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\pooling.h 2025-08-14T21:48:24.5388750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\rnn.h 2025-08-14T21:48:24.5392459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\transformer.h 2025-08-14T21:48:24.5396417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\transformercoder.h 2025-08-14T21:48:24.5400618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\transformerlayer.h 2025-08-14T21:48:24.5404490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\upsampling.h 2025-08-14T21:48:24.5408053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\utils.h 2025-08-14T21:48:24.5411596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\_functions.h 2025-08-14T21:48:24.5419480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\any.h 2025-08-14T21:48:24.5423074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\any_module_holder.h 2025-08-14T21:48:24.5426823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\any_value.h 2025-08-14T21:48:24.5431485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\functional.h 2025-08-14T21:48:24.5439846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\moduledict.h 2025-08-14T21:48:24.5443444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\modulelist.h 2025-08-14T21:48:24.5446975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\named_any.h 2025-08-14T21:48:24.5450822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\parameterdict.h 2025-08-14T21:48:24.5454340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\parameterlist.h 2025-08-14T21:48:24.5457924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\sequential.h 2025-08-14T21:48:24.5466709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\activation.h 2025-08-14T21:48:24.5470728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\adaptive.h 2025-08-14T21:48:24.5474756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\batchnorm.h 2025-08-14T21:48:24.5478348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\conv.h 2025-08-14T21:48:24.5481793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\distance.h 2025-08-14T21:48:24.5490216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\dropout.h 2025-08-14T21:48:24.5493528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\embedding.h 2025-08-14T21:48:24.5497157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\fold.h 2025-08-14T21:48:24.5500493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\instancenorm.h 2025-08-14T21:48:24.5503750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\linear.h 2025-08-14T21:48:24.5507352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\loss.h 2025-08-14T21:48:24.5510868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\normalization.h 2025-08-14T21:48:24.5514541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\padding.h 2025-08-14T21:48:24.5517734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\pixelshuffle.h 2025-08-14T21:48:24.5521320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\pooling.h 2025-08-14T21:48:24.5524680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\rnn.h 2025-08-14T21:48:24.5528228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\transformer.h 2025-08-14T21:48:24.5532207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\transformercoder.h 2025-08-14T21:48:24.5535620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\transformerlayer.h 2025-08-14T21:48:24.5539167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\upsampling.h 2025-08-14T21:48:24.5542959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\vision.h 2025-08-14T21:48:24.5551054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\parallel\data_parallel.h 2025-08-14T21:48:24.5558191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\utils\clip_grad.h 2025-08-14T21:48:24.5561696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\utils\convert_parameters.h 2025-08-14T21:48:24.5565606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\utils\rnn.h 2025-08-14T21:48:24.5573639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\adagrad.h 2025-08-14T21:48:24.5577306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\adam.h 2025-08-14T21:48:24.5580583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\adamw.h 2025-08-14T21:48:24.5583881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\lbfgs.h 2025-08-14T21:48:24.5587117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\optimizer.h 2025-08-14T21:48:24.5590479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\rmsprop.h 2025-08-14T21:48:24.5598890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\serialize.h 2025-08-14T21:48:24.5602361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\sgd.h 2025-08-14T21:48:24.5609435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\schedulers\lr_scheduler.h 2025-08-14T21:48:24.5613282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\schedulers\reduce_on_plateau_scheduler.h 2025-08-14T21:48:24.5616920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\schedulers\step_lr.h 2025-08-14T21:48:24.5629522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\python\init.h 2025-08-14T21:48:24.5637141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\serialize\archive.h 2025-08-14T21:48:24.5640606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\serialize\input-archive.h 2025-08-14T21:48:24.5644041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\serialize\output-archive.h 2025-08-14T21:48:24.5647539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\serialize\tensor.h 2025-08-14T21:48:24.5662559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\anomaly_mode.h 2025-08-14T21:48:24.5666200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\autograd.h 2025-08-14T21:48:24.5669674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\autograd_not_implemented_fallback.h 2025-08-14T21:48:24.5673004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\cpp_hook.h 2025-08-14T21:48:24.5681225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\custom_function.h 2025-08-14T21:48:24.5684604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\edge.h 2025-08-14T21:48:24.5687950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\engine.h 2025-08-14T21:48:24.5691172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\forward_grad.h 2025-08-14T21:48:24.5694484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\function.h 2025-08-14T21:48:24.5698041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\FunctionsManual.h 2025-08-14T21:48:24.5701781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\function_hook.h 2025-08-14T21:48:24.5705437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\grad_mode.h 2025-08-14T21:48:24.5709328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\graph_task.h 2025-08-14T21:48:24.5713210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\InferenceMode.h 2025-08-14T21:48:24.5716640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\input_buffer.h 2025-08-14T21:48:24.5720301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\input_metadata.h 2025-08-14T21:48:24.5723867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\jit_decomp_interface.h 2025-08-14T21:48:24.5727465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\profiler.h 2025-08-14T21:48:24.5730848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\profiler_kineto.h 2025-08-14T21:48:24.5734737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\profiler_legacy.h 2025-08-14T21:48:24.5738291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\profiler_python.h 2025-08-14T21:48:24.5741835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_anomaly_mode.h 2025-08-14T21:48:24.5751483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_autograd.h 2025-08-14T21:48:24.5754939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_cpp_function.h 2025-08-14T21:48:24.5758452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_engine.h 2025-08-14T21:48:24.5762154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_enum_tag.h 2025-08-14T21:48:24.5765703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_fft_functions.h 2025-08-14T21:48:24.5769540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_function.h 2025-08-14T21:48:24.5773236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_hook.h 2025-08-14T21:48:24.5777236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_legacy_variable.h 2025-08-14T21:48:24.5781749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_linalg_functions.h 2025-08-14T21:48:24.5790244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_nested_functions.h 2025-08-14T21:48:24.5793950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_nn_functions.h 2025-08-14T21:48:24.5797654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_saved_variable_hooks.h 2025-08-14T21:48:24.5801312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_sparse_functions.h 2025-08-14T21:48:24.5805659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_special_functions.h 2025-08-14T21:48:24.5809300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_torch_functions.h 2025-08-14T21:48:24.5812828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_variable.h 2025-08-14T21:48:24.5816528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_variable_indexing.h 2025-08-14T21:48:24.5820105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\record_function_ops.h 2025-08-14T21:48:24.5823671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\saved_variable.h 2025-08-14T21:48:24.5827143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\saved_variable_hooks.h 2025-08-14T21:48:24.5835379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\symbolic.h 2025-08-14T21:48:24.5838843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\variable.h 2025-08-14T21:48:24.5843146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\VariableTypeUtils.h 2025-08-14T21:48:24.5846093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\variable_info.h 2025-08-14T21:48:24.5854202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\accumulate_grad.h 2025-08-14T21:48:24.5857764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\basic_ops.h 2025-08-14T21:48:24.5861218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\comm.h 2025-08-14T21:48:24.5864764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\pybind.h 2025-08-14T21:48:24.5873548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\tensor.h 2025-08-14T21:48:24.5878344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\utils.h 2025-08-14T21:48:24.5890586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\Functions.h 2025-08-14T21:48:24.5898815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\python_functions.h 2025-08-14T21:48:24.5902582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\python_return_types.h 2025-08-14T21:48:24.5925717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\VariableType.h 2025-08-14T21:48:24.5929515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\variable_factories.h 2025-08-14T21:48:24.5933338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\ViewFuncs.h 2025-08-14T21:48:24.5942474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\error_messages.h 2025-08-14T21:48:24.5945967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\grad_layout_contract.h 2025-08-14T21:48:24.5949391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\lambda_post_hook.h 2025-08-14T21:48:24.5952917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\python_arg_parsing.h 2025-08-14T21:48:24.5962235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\warnings.h 2025-08-14T21:48:24.5965416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\wrap_outputs.h 2025-08-14T21:48:24.5974239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cpu\Module.h 2025-08-14T21:48:24.5981341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\comm.h 2025-08-14T21:48:24.5984688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\CUDAPluggableAllocator.h 2025-08-14T21:48:24.5987875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\device_set.h 2025-08-14T21:48:24.5991226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\Event.h 2025-08-14T21:48:24.5994450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\GdsFile.h 2025-08-14T21:48:24.6004166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\memory_snapshot.h 2025-08-14T21:48:24.6007501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\Module.h 2025-08-14T21:48:24.6010734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\nccl.h 2025-08-14T21:48:24.6013990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\python_comm.h 2025-08-14T21:48:24.6017541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\python_nccl.h 2025-08-14T21:48:24.6021068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\Stream.h 2025-08-14T21:48:24.6024320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\THCP.h 2025-08-14T21:48:24.6027491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\utils.h 2025-08-14T21:48:24.6039335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\autograd.h 2025-08-14T21:48:24.6042786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\python_autograd.h 2025-08-14T21:48:24.6046048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\utils.h 2025-08-14T21:48:24.6053271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\context\container.h 2025-08-14T21:48:24.6057408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\context\context.h 2025-08-14T21:48:24.6063974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\engine\dist_engine.h 2025-08-14T21:48:24.6076808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\functions\recvrpc_backward.h 2025-08-14T21:48:24.6080436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\functions\sendrpc_backward.h 2025-08-14T21:48:24.6087823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\autograd_metadata.h 2025-08-14T21:48:24.6091587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\cleanup_autograd_context_req.h 2025-08-14T21:48:24.6095605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\cleanup_autograd_context_resp.h 2025-08-14T21:48:24.6104304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\propagate_gradients_req.h 2025-08-14T21:48:24.6107746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\propagate_gradients_resp.h 2025-08-14T21:48:24.6111246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_autograd.h 2025-08-14T21:48:24.6115077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_profiling_req.h 2025-08-14T21:48:24.6118846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_profiling_resp.h 2025-08-14T21:48:24.6122602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\rref_backward_req.h 2025-08-14T21:48:24.6126148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\rref_backward_resp.h 2025-08-14T21:48:24.6134722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Backend.hpp 2025-08-14T21:48:24.6138344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Backoff.hpp 2025-08-14T21:48:24.6141660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\c10d.h 2025-08-14T21:48:24.6144906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\comm.hpp 2025-08-14T21:48:24.6148225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\debug.h 2025-08-14T21:48:24.6151552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\default_comm_hooks.hpp 2025-08-14T21:48:24.6160687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\error.h 2025-08-14T21:48:24.6164355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\exception.h 2025-08-14T21:48:24.6167701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\FakeProcessGroup.hpp 2025-08-14T21:48:24.6171255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\FileStore.hpp 2025-08-14T21:48:24.6175801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\FlightRecorder.hpp 2025-08-14T21:48:24.6178746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\FlightRecorderDetail.hpp 2025-08-14T21:48:24.6182259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Functional.hpp 2025-08-14T21:48:24.6185642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\GlooDeviceFactory.hpp 2025-08-14T21:48:24.6189159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\GroupRegistry.hpp 2025-08-14T21:48:24.6193088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\HashStore.hpp 2025-08-14T21:48:24.6196603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\logger.hpp 2025-08-14T21:48:24.6200089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\logging.h 2025-08-14T21:48:24.6204494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\NanCheck.hpp 2025-08-14T21:48:24.6206977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\NCCLUtils.hpp 2025-08-14T21:48:24.6210697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ParamCommsUtils.hpp 2025-08-14T21:48:24.6214415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\PrefixStore.hpp 2025-08-14T21:48:24.6217915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroup.hpp 2025-08-14T21:48:24.6227932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupGloo.hpp 2025-08-14T21:48:24.6230732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupGlooDetail.hpp 2025-08-14T21:48:24.6234475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupMPI.hpp 2025-08-14T21:48:24.6238368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupNCCL.hpp 2025-08-14T21:48:24.6242434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupUCC.hpp 2025-08-14T21:48:24.6246288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupWrapper.hpp 2025-08-14T21:48:24.6250850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\PyProcessGroup.hpp 2025-08-14T21:48:24.6253711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\python_comm_hook.h 2025-08-14T21:48:24.6257409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\RankLocal.hpp 2025-08-14T21:48:24.6266193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\reducer.hpp 2025-08-14T21:48:24.6269755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\reducer_timer.hpp 2025-08-14T21:48:24.6273980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\sequence_num.hpp 2025-08-14T21:48:24.6276834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\socket.h 2025-08-14T21:48:24.6281266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\socket_fmt.h 2025-08-14T21:48:24.6285706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Store.hpp 2025-08-14T21:48:24.6288115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\TCPStore.hpp 2025-08-14T21:48:24.6291582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\TCPStoreBackend.hpp 2025-08-14T21:48:24.6295044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\TraceUtils.h 2025-08-14T21:48:24.6298781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Types.hpp 2025-08-14T21:48:24.6302297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\UCCTracing.hpp 2025-08-14T21:48:24.6306029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\UCCUtils.hpp 2025-08-14T21:48:24.6314588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\UnixSockUtils.hpp 2025-08-14T21:48:24.6317656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Utils.hpp 2025-08-14T21:48:24.6321487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\WinSockUtils.hpp 2025-08-14T21:48:24.6325941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Work.hpp 2025-08-14T21:48:24.6332582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\control_collectives\ControlCollectives.hpp 2025-08-14T21:48:24.6337329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\control_collectives\StoreCollectives.hpp 2025-08-14T21:48:24.6343871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\control_plane\Handlers.hpp 2025-08-14T21:48:24.6347443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\control_plane\WorkerServer.hpp 2025-08-14T21:48:24.6355103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\cuda\CUDAEventCache.hpp 2025-08-14T21:48:24.6358424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\cuda\StreamBlock.hpp 2025-08-14T21:48:24.6362108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\cuda\utils.hpp 2025-08-14T21:48:24.6370401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\quantization\quantization.h 2025-08-14T21:48:24.6374012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\quantization\quantization_gpu.h 2025-08-14T21:48:24.6377999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\quantization\quantization_utils.h 2025-08-14T21:48:24.6390816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemory-inl.h 2025-08-14T21:48:24.6395220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemory.hpp 2025-08-14T21:48:24.6397959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemoryTypes.hpp 2025-08-14T21:48:24.6406980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemoryUtils.hpp 2025-08-14T21:48:24.6411141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\DMAConnectivity.hpp 2025-08-14T21:48:24.6415720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\intra_node_comm.hpp 2025-08-14T21:48:24.6419726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\SymmetricMemory.hpp 2025-08-14T21:48:24.6429869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\agent_utils.h 2025-08-14T21:48:24.6433943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\message.h 2025-08-14T21:48:24.6438055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\python_call.h 2025-08-14T21:48:24.6441888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\python_functions.h 2025-08-14T21:48:24.6474371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\python_remote_call.h 2025-08-14T21:48:24.6474664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\python_resp.h 2025-08-14T21:48:24.6474979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\python_rpc_handler.h 2025-08-14T21:48:24.6475253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\py_rref.h 2025-08-14T21:48:24.6485774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\request_callback.h 2025-08-14T21:48:24.6489831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\request_callback_impl.h 2025-08-14T21:48:24.6493623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\request_callback_no_python.h 2025-08-14T21:48:24.6497341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rpc.h 2025-08-14T21:48:24.6500794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rpc_agent.h 2025-08-14T21:48:24.6505332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rpc_command_base.h 2025-08-14T21:48:24.6508184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rref_context.h 2025-08-14T21:48:24.6511764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rref_impl.h 2025-08-14T21:48:24.6515968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rref_proto.h 2025-08-14T21:48:24.6519619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\script_call.h 2025-08-14T21:48:24.6523372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\script_remote_call.h 2025-08-14T21:48:24.6528313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\script_resp.h 2025-08-14T21:48:24.6536448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\tensorpipe_agent.h 2025-08-14T21:48:24.6540027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\tensorpipe_utils.h 2025-08-14T21:48:24.6544416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\torchscript_functions.h 2025-08-14T21:48:24.6546971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\types.h 2025-08-14T21:48:24.6550477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\unpickled_python_call.h 2025-08-14T21:48:24.6554625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\unpickled_python_remote_call.h 2025-08-14T21:48:24.6557560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\utils.h 2025-08-14T21:48:24.6564693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\metrics\RpcMetricsHandler.h 2025-08-14T21:48:24.6571990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\profiler\remote_profiler_manager.h 2025-08-14T21:48:24.6575747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\profiler\server_process_global_profiler.h 2025-08-14T21:48:24.6583418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\testing\faulty_tensorpipe_agent.h 2025-08-14T21:48:24.6586813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\testing\testing.h 2025-08-14T21:48:24.6595403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\cache_entry.h 2025-08-14T21:48:24.6598780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\compiled_autograd.h 2025-08-14T21:48:24.6602759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\cpp_shim.h 2025-08-14T21:48:24.6606003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\cpython_defs.h 2025-08-14T21:48:24.6615295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\cpython_includes.h 2025-08-14T21:48:24.6618670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\debug_macros.h 2025-08-14T21:48:24.6621931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\eval_frame.h 2025-08-14T21:48:24.6625468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\eval_frame_cpp.h 2025-08-14T21:48:24.6628864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\extra_state.h 2025-08-14T21:48:24.6632889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\framelocals_mapping.h 2025-08-14T21:48:24.6636175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\guards.h 2025-08-14T21:48:24.6639622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\init.h 2025-08-14T21:48:24.6643013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\python_compiled_autograd.h 2025-08-14T21:48:24.6646356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\utils.h 2025-08-14T21:48:24.6653904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\export\example_upgraders.h 2025-08-14T21:48:24.6657387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\export\pt2_archive_constants.h 2025-08-14T21:48:24.6660519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\export\pybind.h 2025-08-14T21:48:24.6663899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\export\upgrader.h 2025-08-14T21:48:24.6671013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\functorch\init.h 2025-08-14T21:48:24.6677899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\fx\node.h 2025-08-14T21:48:24.6685625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\array_ref_impl.h 2025-08-14T21:48:24.6689035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_prefix.h 2025-08-14T21:48:24.6693021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\inductor_ops.h 2025-08-14T21:48:24.6696531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\static_cuda_launcher.h 2025-08-14T21:48:24.6708645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_eager\kernel_holder.h 2025-08-14T21:48:24.6712582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_eager\kernel_meta_info.h 2025-08-14T21:48:24.6720109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\array_ref.h 2025-08-14T21:48:24.6724051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\common.h 2025-08-14T21:48:24.6726821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\cpu.h 2025-08-14T21:48:24.6730189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\cuda.h 2025-08-14T21:48:24.6733620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\mps.h 2025-08-14T21:48:24.6744961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\xpu.h 2025-08-14T21:48:24.6752962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_package\model_package_loader.h 2025-08-14T21:48:24.6756072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_package\pybind.h 2025-08-14T21:48:24.6764690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner.h 2025-08-14T21:48:24.6767143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_cpu.h 2025-08-14T21:48:24.6770838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_cuda.h 2025-08-14T21:48:24.6779332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_mps.h 2025-08-14T21:48:24.6782990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_xpu.h 2025-08-14T21:48:24.6787478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\pybind.h 2025-08-14T21:48:24.6793946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\arrayref_tensor.h 2025-08-14T21:48:24.6797565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\constant_type.h 2025-08-14T21:48:24.6801426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\device_utils.h 2025-08-14T21:48:24.6810707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\interface.h 2025-08-14T21:48:24.6813228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\mini_array_ref.h 2025-08-14T21:48:24.6816618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\model.h 2025-08-14T21:48:24.6820117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\model_base.h 2025-08-14T21:48:24.6824259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\model_container.h 2025-08-14T21:48:24.6828139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\scalar_to_tensor.h 2025-08-14T21:48:24.6831745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\sycl_runtime_wrappers.h 2025-08-14T21:48:24.6835270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\thread_local.h 2025-08-14T21:48:24.6839349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\utils.h 2025-08-14T21:48:24.6842526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\utils_cuda.h 2025-08-14T21:48:24.6846284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\utils_xpu.h 2025-08-14T21:48:24.6854534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\mkldnn_tensor.h 2025-08-14T21:48:24.6858272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\oss_proxy_executor.h 2025-08-14T21:48:24.6861934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\proxy_executor.h 2025-08-14T21:48:24.6870218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\tensor_converter.h 2025-08-14T21:48:24.6874382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\utils.h 2025-08-14T21:48:24.6880458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\macros.h 2025-08-14T21:48:24.6883899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\shim.h 2025-08-14T21:48:24.6887272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\shim_cpu.h 2025-08-14T21:48:24.6891840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\shim_deprecated.h 2025-08-14T21:48:24.6894141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\shim_mps.h 2025-08-14T21:48:24.6897799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\shim_xpu.h 2025-08-14T21:48:24.6911420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_aten.h 2025-08-14T21:48:24.6915561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_cpu.h 2025-08-14T21:48:24.6919567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_cuda.h 2025-08-14T21:48:24.6927831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_mps.h 2025-08-14T21:48:24.6931311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_xpu.h 2025-08-14T21:48:24.6939857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\array_ref.h 2025-08-14T21:48:24.6943722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\common.h 2025-08-14T21:48:24.6947100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\cpu.h 2025-08-14T21:48:24.6950183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\cuda.h 2025-08-14T21:48:24.6953714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\mps.h 2025-08-14T21:48:24.6962919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\xpu.h 2025-08-14T21:48:24.6969981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\cpu.h 2025-08-14T21:48:24.6973140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\cuda.h 2025-08-14T21:48:24.6976441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\mps.h 2025-08-14T21:48:24.6980039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\xpu.h 2025-08-14T21:48:24.6988598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\instruction_counter\Module.h 2025-08-14T21:48:24.6996169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\jit_log.h 2025-08-14T21:48:24.6999806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\jit_opt_limit.h 2025-08-14T21:48:24.7003371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\resource_guard.h 2025-08-14T21:48:24.7010030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\api\compilation_unit.h 2025-08-14T21:48:24.7013356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\api\function_impl.h 2025-08-14T21:48:24.7016940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\api\method.h 2025-08-14T21:48:24.7020621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\api\module.h 2025-08-14T21:48:24.7023814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\api\object.h 2025-08-14T21:48:24.7040219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend.h 2025-08-14T21:48:24.7043579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_debug_handler.h 2025-08-14T21:48:24.7046771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_debug_info.h 2025-08-14T21:48:24.7050169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_detail.h 2025-08-14T21:48:24.7059046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_exception.h 2025-08-14T21:48:24.7062701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_init.h 2025-08-14T21:48:24.7066063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_interface.h 2025-08-14T21:48:24.7069731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_preprocess.h 2025-08-14T21:48:24.7074080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_resolver.h 2025-08-14T21:48:24.7086980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\cpp\context.h 2025-08-14T21:48:24.7094467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLCompiler.h 2025-08-14T21:48:24.7098098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLExecutor.h 2025-08-14T21:48:24.7102447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLFeatureProvider.h 2025-08-14T21:48:24.7111098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLModelWrapper.h 2025-08-14T21:48:24.7114869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLTensorSpec.h 2025-08-14T21:48:24.7123943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\xnnpack\xnnpack_graph_builder.h 2025-08-14T21:48:24.7131966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\xnnpack\compiler\xnn_compiler.h 2025-08-14T21:48:24.7138604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\xnnpack\executor\xnn_executor.h 2025-08-14T21:48:24.7146590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\xnnpack\serialization\serializer.h 2025-08-14T21:48:24.7158483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\cuda\interface.h 2025-08-14T21:48:24.7165882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\arg_spec.h 2025-08-14T21:48:24.7169275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\codegen.h 2025-08-14T21:48:24.7172563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\compiler.h 2025-08-14T21:48:24.7176197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\executor.h 2025-08-14T21:48:24.7179858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\fallback.h 2025-08-14T21:48:24.7183878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\fused_kernel.h 2025-08-14T21:48:24.7193178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\interface.h 2025-08-14T21:48:24.7196752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\kernel_cache.h 2025-08-14T21:48:24.7200383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\kernel_spec.h 2025-08-14T21:48:24.7204066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\partition_desc.h 2025-08-14T21:48:24.7207558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\tensor_desc.h 2025-08-14T21:48:24.7211254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\tensor_info.h 2025-08-14T21:48:24.7219068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\cpu\fused_kernel.h 2025-08-14T21:48:24.7222135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\cpu\resource_strings.h 2025-08-14T21:48:24.7226187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\cpu\temp_file.h 2025-08-14T21:48:24.7233911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\cuda\fused_kernel.h 2025-08-14T21:48:24.7237628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\cuda\resource_strings.h 2025-08-14T21:48:24.7245758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\decompose_silu.h 2025-08-14T21:48:24.7249365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\defer_size_check.h 2025-08-14T21:48:24.7253326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\graph_fuser.h 2025-08-14T21:48:24.7256434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\graph_helper.h 2025-08-14T21:48:24.7265477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\guard_shape.h 2025-08-14T21:48:24.7269119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\interface.h 2025-08-14T21:48:24.7273016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\kernel.h 2025-08-14T21:48:24.7276954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\layout_propagation.h 2025-08-14T21:48:24.7280041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\LlgaTensorImpl.h 2025-08-14T21:48:24.7283650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\operator.h 2025-08-14T21:48:24.7287339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\prepare_binary.h 2025-08-14T21:48:24.7297013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\cuda\cuda.h 2025-08-14T21:48:24.7304150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\builtin_functions.h 2025-08-14T21:48:24.7307993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\canonicalize_modified_loop.h 2025-08-14T21:48:24.7311662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\concrete_module_type.h 2025-08-14T21:48:24.7319531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\convert_to_ssa.h 2025-08-14T21:48:24.7323311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\edit_distance.h 2025-08-14T21:48:24.7326638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\error_report.h 2025-08-14T21:48:24.7330501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\exit_transforms.h 2025-08-14T21:48:24.7334629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\function_schema_parser.h 2025-08-14T21:48:24.7337327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\inline_loop_condition.h 2025-08-14T21:48:24.7341028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\ir_emitter.h 2025-08-14T21:48:24.7344775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\lexer.h 2025-08-14T21:48:24.7348515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\mini_environment.h 2025-08-14T21:48:24.7352620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\name_mangler.h 2025-08-14T21:48:24.7355610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\parser.h 2025-08-14T21:48:24.7359162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\parser_constants.h 2025-08-14T21:48:24.7362981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\parse_string_literal.h 2025-08-14T21:48:24.7366546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\resolver.h 2025-08-14T21:48:24.7370875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\schema_matching.h 2025-08-14T21:48:24.7375687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\schema_type_parser.h 2025-08-14T21:48:24.7378455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\script_type_parser.h 2025-08-14T21:48:24.7388032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\source_range.h 2025-08-14T21:48:24.7391665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\source_ref.h 2025-08-14T21:48:24.7395164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\strtod.h 2025-08-14T21:48:24.7398812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\sugared_value.h 2025-08-14T21:48:24.7402517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\tracer.h 2025-08-14T21:48:24.7405798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\tree.h 2025-08-14T21:48:24.7409510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\tree_views.h 2025-08-14T21:48:24.7414199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\versioned_symbols.h 2025-08-14T21:48:24.7421227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\alias_analysis.h 2025-08-14T21:48:24.7424593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\attributes.h 2025-08-14T21:48:24.7428018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\constants.h 2025-08-14T21:48:24.7431929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\graph_node_list.h 2025-08-14T21:48:24.7441895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\graph_utils.h 2025-08-14T21:48:24.7445489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\ir.h 2025-08-14T21:48:24.7449266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\irparser.h 2025-08-14T21:48:24.7452396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\ir_views.h 2025-08-14T21:48:24.7455495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\named_value.h 2025-08-14T21:48:24.7458845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\node_hashing.h 2025-08-14T21:48:24.7462181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\scope.h 2025-08-14T21:48:24.7465438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\subgraph_matcher.h 2025-08-14T21:48:24.7469027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\type_hashing.h 2025-08-14T21:48:24.7476684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\code.h 2025-08-14T21:48:24.7480035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\debug_info.h 2025-08-14T21:48:24.7483357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\file_format.h 2025-08-14T21:48:24.7486724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\flatbuffer_loader.h 2025-08-14T21:48:24.7495662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\frame.h 2025-08-14T21:48:24.7498911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\function.h 2025-08-14T21:48:24.7502363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\import.h 2025-08-14T21:48:24.7505592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\import_data.h 2025-08-14T21:48:24.7509463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\import_export_common.h 2025-08-14T21:48:24.7512991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\interpreter.h 2025-08-14T21:48:24.7516302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\method.h 2025-08-14T21:48:24.7519778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\module.h 2025-08-14T21:48:24.7523107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\observer.h 2025-08-14T21:48:24.7526404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\parse_bytecode.h 2025-08-14T21:48:24.7544463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\parse_operators.h 2025-08-14T21:48:24.7548315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\prim_ops_registery.h 2025-08-14T21:48:24.7551732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\profiler_edge.h 2025-08-14T21:48:24.7555271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\promoted_prim_ops.h 2025-08-14T21:48:24.7558722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\quantization.h 2025-08-14T21:48:24.7562640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\register_ops_common_utils.h 2025-08-14T21:48:24.7566240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\type_parser.h 2025-08-14T21:48:24.7569634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\upgrader_mobile.h 2025-08-14T21:48:24.7581937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\compatibility\backport.h 2025-08-14T21:48:24.7585839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\compatibility\backport_manager.h 2025-08-14T21:48:24.7589906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\compatibility\model_compatibility.h 2025-08-14T21:48:24.7598710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\compatibility\runtime_compatibility.h 2025-08-14T21:48:24.7606734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\BuildFeatureTracer.h 2025-08-14T21:48:24.7610272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\CustomClassTracer.h 2025-08-14T21:48:24.7613809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\KernelDTypeTracer.h 2025-08-14T21:48:24.7622587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\MobileModelRunner.h 2025-08-14T21:48:24.7626052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\OperatorCallTracer.h 2025-08-14T21:48:24.7629350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\TensorUtils.h 2025-08-14T21:48:24.7633075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\TracerRunner.h 2025-08-14T21:48:24.7640795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\nnc\aot_compiler.h 2025-08-14T21:48:24.7644701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\nnc\context.h 2025-08-14T21:48:24.7647771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\nnc\registry.h 2025-08-14T21:48:24.7655072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\train\export_data.h 2025-08-14T21:48:24.7658515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\train\random.h 2025-08-14T21:48:24.7662032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\train\sequential.h 2025-08-14T21:48:24.7668930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\train\optim\sgd.h 2025-08-14T21:48:24.7677223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\operator_upgraders\upgraders.h 2025-08-14T21:48:24.7681259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\operator_upgraders\upgraders_entry.h 2025-08-14T21:48:24.7684732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\operator_upgraders\utils.h 2025-08-14T21:48:24.7688095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\operator_upgraders\version_map.h 2025-08-14T21:48:24.7702960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\add_if_then_else.h 2025-08-14T21:48:24.7706218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\annotate_warns.h 2025-08-14T21:48:24.7709752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\autocast.h 2025-08-14T21:48:24.7713074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\bailout_graph.h 2025-08-14T21:48:24.7726238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\batch_mm.h 2025-08-14T21:48:24.7730357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\canonicalize.h 2025-08-14T21:48:24.7732969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\canonicalize_graph_fuser_ops.h 2025-08-14T21:48:24.7736535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\check_strict_fusion.h 2025-08-14T21:48:24.7740493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\clear_profiling.h 2025-08-14T21:48:24.7744073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\clear_undefinedness.h 2025-08-14T21:48:24.7748532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\common_subexpression_elimination.h 2025-08-14T21:48:24.7751355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\concat_opt.h 2025-08-14T21:48:24.7755106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\constant_pooling.h 2025-08-14T21:48:24.7758415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\constant_propagation.h 2025-08-14T21:48:24.7762318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\create_autodiff_subgraphs.h 2025-08-14T21:48:24.7765816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\create_functional_graphs.h 2025-08-14T21:48:24.7769326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\dead_code_elimination.h 2025-08-14T21:48:24.7772930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\decompose_ops.h 2025-08-14T21:48:24.7777022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\device_type_analysis.h 2025-08-14T21:48:24.7786582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\dtype_analysis.h 2025-08-14T21:48:24.7790036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\eliminate_no_ops.h 2025-08-14T21:48:24.7794417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\erase_number_types.h 2025-08-14T21:48:24.7797079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\fixup_trace_scope_blocks.h 2025-08-14T21:48:24.7800934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\fold_conv_bn.h 2025-08-14T21:48:24.7804291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\fold_linear_bn.h 2025-08-14T21:48:24.7807821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\freeze_module.h 2025-08-14T21:48:24.7811796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_concat_linear.h 2025-08-14T21:48:24.7815144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_conv_add_relu_fusion.h 2025-08-14T21:48:24.7823719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_conv_folding.h 2025-08-14T21:48:24.7828849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_graph_optimizations.h 2025-08-14T21:48:24.7831436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_linear_folding.h 2025-08-14T21:48:24.7835188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_linear_transpose.h 2025-08-14T21:48:24.7838671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_ops_to_mkldnn.h 2025-08-14T21:48:24.7842418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\fuse_linear.h 2025-08-14T21:48:24.7846300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\fuse_relu.h 2025-08-14T21:48:24.7849966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\graph_fuser.h 2025-08-14T21:48:24.7853712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\graph_rewrite_helper.h 2025-08-14T21:48:24.7861642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\guard_elimination.h 2025-08-14T21:48:24.7865975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\hoist_conv_packed_params.h 2025-08-14T21:48:24.7869650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\inliner.h 2025-08-14T21:48:24.7873157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\inline_autodiff_subgraphs.h 2025-08-14T21:48:24.7876526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\inline_forked_closures.h 2025-08-14T21:48:24.7880889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\inline_fork_wait.h 2025-08-14T21:48:24.7883864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\inplace_check.h 2025-08-14T21:48:24.7888219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\insert_guards.h 2025-08-14T21:48:24.7892555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\integer_value_refinement.h 2025-08-14T21:48:24.7899790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\lift_closures.h 2025-08-14T21:48:24.7904122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\liveness.h 2025-08-14T21:48:24.7906845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\loop_unrolling.h 2025-08-14T21:48:24.7927479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\lower_grad_of.h 2025-08-14T21:48:24.7928137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\lower_graph.h 2025-08-14T21:48:24.7928784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\lower_tuples.h 2025-08-14T21:48:24.7929421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\metal_rewrite.h 2025-08-14T21:48:24.7930083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\mkldnn_rewrite.h 2025-08-14T21:48:24.7930769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\mobile_optimizer_type.h 2025-08-14T21:48:24.7934307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\normalize_ops.h 2025-08-14T21:48:24.7947961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onednn_graph_fuser.h 2025-08-14T21:48:24.7951687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx.h 2025-08-14T21:48:24.7955168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\pass_manager.h 2025-08-14T21:48:24.7959203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\peephole.h 2025-08-14T21:48:24.7962856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\peephole_alias_sensitive.h 2025-08-14T21:48:24.7966495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\peephole_dict_idioms.h 2025-08-14T21:48:24.7969920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\peephole_list_idioms.h 2025-08-14T21:48:24.7973601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\peephole_non_tensor.h 2025-08-14T21:48:24.7978418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\prepack_folding.h 2025-08-14T21:48:24.7980732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\refine_tuple_types.h 2025-08-14T21:48:24.7984220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_dropout.h 2025-08-14T21:48:24.7993325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_exceptions.h 2025-08-14T21:48:24.7996905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_expands.h 2025-08-14T21:48:24.8000825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_inplace_ops.h 2025-08-14T21:48:24.8004171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_mutation.h 2025-08-14T21:48:24.8008082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_redundant_profiles.h 2025-08-14T21:48:24.8011761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\replacement_of_old_operators.h 2025-08-14T21:48:24.8015406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\requires_grad_analysis.h 2025-08-14T21:48:24.8018939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\restore_mutation.h 2025-08-14T21:48:24.8022618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\shape_analysis.h 2025-08-14T21:48:24.8031595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\specialize_autogradzero.h 2025-08-14T21:48:24.8035201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\subgraph_rewrite.h 2025-08-14T21:48:24.8038579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\symbolic_shape_analysis.h 2025-08-14T21:48:24.8042428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\symbolic_shape_cache.h 2025-08-14T21:48:24.8045829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\symbolic_shape_runtime_fusion.h 2025-08-14T21:48:24.8049548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\tensorexpr_fuser.h 2025-08-14T21:48:24.8053184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\update_differentiable_graph_requires_grad.h 2025-08-14T21:48:24.8056827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\value_refinement_utils.h 2025-08-14T21:48:24.8060604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\variadic_ops.h 2025-08-14T21:48:24.8065460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\vulkan_rewrite.h 2025-08-14T21:48:24.8067817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\xnnpack_rewrite.h 2025-08-14T21:48:24.8075602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\dbr_quantization\remove_redundant_aliases.h 2025-08-14T21:48:24.8084151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\cast_all_constant_to_floating.h 2025-08-14T21:48:24.8087929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\constant_fold.h 2025-08-14T21:48:24.8092203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\constant_map.h 2025-08-14T21:48:24.8095834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\deduplicate_initializers.h 2025-08-14T21:48:24.8105115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\eliminate_unused_items.h 2025-08-14T21:48:24.8108584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\eval_peephole.h 2025-08-14T21:48:24.8111996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\fixup_onnx_controlflow.h 2025-08-14T21:48:24.8115601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\function_extraction.h 2025-08-14T21:48:24.8119575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\function_substitution.h 2025-08-14T21:48:24.8123248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\helper.h 2025-08-14T21:48:24.8126719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\list_model_parameters.h 2025-08-14T21:48:24.8130525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\naming.h 2025-08-14T21:48:24.8133930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\onnx_log.h 2025-08-14T21:48:24.8137352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\peephole.h 2025-08-14T21:48:24.8140760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\prepare_division_for_onnx.h 2025-08-14T21:48:24.8144470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\preprocess_for_onnx.h 2025-08-14T21:48:24.8148567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\remove_inplace_ops_for_onnx.h 2025-08-14T21:48:24.8152027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\scalar_type_analysis.h 2025-08-14T21:48:24.8155452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\shape_type_inference.h 2025-08-14T21:48:24.8159077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\unpack_quantized_weights.h 2025-08-14T21:48:24.8173419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\autograd_function_process.h 2025-08-14T21:48:24.8175930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\common.h 2025-08-14T21:48:24.8179754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\pattern_conversion.h 2025-08-14T21:48:24.8187981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\pattern_encapsulation.h 2025-08-14T21:48:24.8197183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\dedup_module_uses.h 2025-08-14T21:48:24.8201885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\finalize.h 2025-08-14T21:48:24.8204771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\fusion_passes.h 2025-08-14T21:48:24.8208395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\helper.h 2025-08-14T21:48:24.8219308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\insert_observers.h 2025-08-14T21:48:24.8222019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\insert_quant_dequant.h 2025-08-14T21:48:24.8226195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\quantization_patterns.h 2025-08-14T21:48:24.8230856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\quantization_type.h 2025-08-14T21:48:24.8234123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\register_packed_params.h 2025-08-14T21:48:24.8242912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\utils\check_alias_annotation.h 2025-08-14T21:48:24.8246255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\utils\memory_dag.h 2025-08-14T21:48:24.8249647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\utils\optimization_utils.h 2025-08-14T21:48:24.8258630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\utils\op_registry.h 2025-08-14T21:48:24.8262167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\utils\subgraph_utils.h 2025-08-14T21:48:24.8271421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\init.h 2025-08-14T21:48:24.8274834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\module_python.h 2025-08-14T21:48:24.8278653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\pybind.h 2025-08-14T21:48:24.8283322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\pybind_utils.h 2025-08-14T21:48:24.8285979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_arg_flatten.h 2025-08-14T21:48:24.8297356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_custom_class.h 2025-08-14T21:48:24.8301012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_dict.h 2025-08-14T21:48:24.8306045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_ir.h 2025-08-14T21:48:24.8309154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_ivalue.h 2025-08-14T21:48:24.8313008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_list.h 2025-08-14T21:48:24.8316967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_sugared_value.h 2025-08-14T21:48:24.8320231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_tracer.h 2025-08-14T21:48:24.8324266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_tree_views.h 2025-08-14T21:48:24.8329751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\script_init.h 2025-08-14T21:48:24.8331964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\update_graph_executor_opt.h 2025-08-14T21:48:24.8335620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\utf8_decoding_ignore.h 2025-08-14T21:48:24.8344508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\argument_spec.h 2025-08-14T21:48:24.8348096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\autodiff.h 2025-08-14T21:48:24.8352558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\calculate_necessary_args.h 2025-08-14T21:48:24.8355499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\custom_operator.h 2025-08-14T21:48:24.8364254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\decomposition_registry.h 2025-08-14T21:48:24.8367516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\decomposition_registry_util.h 2025-08-14T21:48:24.8371191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\exception_message.h 2025-08-14T21:48:24.8375672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\graph_executor.h 2025-08-14T21:48:24.8378742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\graph_executor_impl.h 2025-08-14T21:48:24.8382683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\graph_iterator.h 2025-08-14T21:48:24.8387178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\instruction.h 2025-08-14T21:48:24.8389968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\interpreter.h 2025-08-14T21:48:24.8393549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\jit_exception.h 2025-08-14T21:48:24.8396937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\jit_trace.h 2025-08-14T21:48:24.8400688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\logging.h 2025-08-14T21:48:24.8404819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\operator.h 2025-08-14T21:48:24.8407770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\operator_options.h 2025-08-14T21:48:24.8411377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\print_handler.h 2025-08-14T21:48:24.8415034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\profiling_graph_executor_impl.h 2025-08-14T21:48:24.8421543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\profiling_record.h 2025-08-14T21:48:24.8428786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\register_ops_utils.h 2025-08-14T21:48:24.8432346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\script_profile.h 2025-08-14T21:48:24.8446991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\serialized_shape_function_registry.h 2025-08-14T21:48:24.8447783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\shape_function_registry.h 2025-08-14T21:48:24.8448535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\simple_graph_executor_impl.h 2025-08-14T21:48:24.8449284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\slice_indices_adjust.h 2025-08-14T21:48:24.8452902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\symbolic_script.h 2025-08-14T21:48:24.8455650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\symbolic_shape_registry.h 2025-08-14T21:48:24.8459515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\symbolic_shape_registry_util.h 2025-08-14T21:48:24.8468093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\vararg_functions.h 2025-08-14T21:48:24.8471606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\variable_tensor_list.h 2025-08-14T21:48:24.8479486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\interpreter\can_emit_inline.h 2025-08-14T21:48:24.8483441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\interpreter\code_impl.h 2025-08-14T21:48:24.8487059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\interpreter\frame.h 2025-08-14T21:48:24.8490480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\interpreter\preprocess_graph.h 2025-08-14T21:48:24.8503798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\fusion.h 2025-08-14T21:48:24.8507137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\impl.h 2025-08-14T21:48:24.8510688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\init.h 2025-08-14T21:48:24.8514088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\memory_planner.h 2025-08-14T21:48:24.8517774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\ops.h 2025-08-14T21:48:24.8521178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\passes.h 2025-08-14T21:48:24.8530196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\ProcessedNodeInputs.h 2025-08-14T21:48:24.8533773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\processed_node_wrapper.h 2025-08-14T21:48:24.8537230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\static_method.h 2025-08-14T21:48:24.8540762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\te_wrapper.h 2025-08-14T21:48:24.8549794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\callstack_debug_info_serialization.h 2025-08-14T21:48:24.8553499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\export.h 2025-08-14T21:48:24.8556970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\export_bytecode.h 2025-08-14T21:48:24.8566111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\flatbuffer_serializer.h 2025-08-14T21:48:24.8570114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\flatbuffer_serializer_jit.h 2025-08-14T21:48:24.8573453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import.h 2025-08-14T21:48:24.8576648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import_export_constants.h 2025-08-14T21:48:24.8580167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import_export_functions.h 2025-08-14T21:48:24.8583753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import_export_helpers.h 2025-08-14T21:48:24.8587570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import_read.h 2025-08-14T21:48:24.8591170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import_source.h 2025-08-14T21:48:24.8594774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\mobile_bytecode_generated.h 2025-08-14T21:48:24.8598869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\onnx.h 2025-08-14T21:48:24.8602319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\pickle.h 2025-08-14T21:48:24.8605681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\pickler.h 2025-08-14T21:48:24.8609192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\pickler_helper.h 2025-08-14T21:48:24.8612813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\python_print.h 2025-08-14T21:48:24.8616173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\source_range_serialization.h 2025-08-14T21:48:24.8619910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\source_range_serialization_impl.h 2025-08-14T21:48:24.8623470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\storage_context.h 2025-08-14T21:48:24.8632111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\type_name_uniquer.h 2025-08-14T21:48:24.8635517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\unpickler.h 2025-08-14T21:48:24.8661539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\analysis.h 2025-08-14T21:48:24.8664857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\block_codegen.h 2025-08-14T21:48:24.8668408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\bounds_inference.h 2025-08-14T21:48:24.8672023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\bounds_overlap.h 2025-08-14T21:48:24.8681264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\codegen.h 2025-08-14T21:48:24.8684780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\cpp_codegen.h 2025-08-14T21:48:24.8688887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\cpp_intrinsics.h 2025-08-14T21:48:24.8692697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\cuda_codegen.h 2025-08-14T21:48:24.8696393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\cuda_random.h 2025-08-14T21:48:24.8699874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\eval.h 2025-08-14T21:48:24.8703246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\exceptions.h 2025-08-14T21:48:24.8706689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\expr.h 2025-08-14T21:48:24.8710297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\external_functions.h 2025-08-14T21:48:24.8713886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\external_functions_core.h 2025-08-14T21:48:24.8717493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\external_functions_registry.h 2025-08-14T21:48:24.8721097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\fwd_decls.h 2025-08-14T21:48:24.8725461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\graph_opt.h 2025-08-14T21:48:24.8729053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\half_support.h 2025-08-14T21:48:24.8732349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\hash_provider.h 2025-08-14T21:48:24.8735846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\intrinsic_symbols.h 2025-08-14T21:48:24.8739280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir.h 2025-08-14T21:48:24.8748035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_cloner.h 2025-08-14T21:48:24.8751436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_mutator.h 2025-08-14T21:48:24.8754930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_printer.h 2025-08-14T21:48:24.8758451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_simplifier.h 2025-08-14T21:48:24.8762384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_verifier.h 2025-08-14T21:48:24.8765904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_visitor.h 2025-08-14T21:48:24.8769132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\kernel.h 2025-08-14T21:48:24.8772497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\llvm_codegen.h 2025-08-14T21:48:24.8776062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\llvm_jit.h 2025-08-14T21:48:24.8779937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\loopnest.h 2025-08-14T21:48:24.8783525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\loopnest_randomization.h 2025-08-14T21:48:24.8794804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\lowerings.h 2025-08-14T21:48:24.8798501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\mem_dependency_checker.h 2025-08-14T21:48:24.8802386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\reduction.h 2025-08-14T21:48:24.8806167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\registerizer.h 2025-08-14T21:48:24.8809586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\stmt.h 2025-08-14T21:48:24.8813236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\tensor.h 2025-08-14T21:48:24.8817649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\tensorexpr_init.h 2025-08-14T21:48:24.8820478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\types.h 2025-08-14T21:48:24.8824086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\unique_name_manager.h 2025-08-14T21:48:24.8827530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\var_substitutor.h 2025-08-14T21:48:24.8836016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\conv2d.h 2025-08-14T21:48:24.8840750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\matmul.h 2025-08-14T21:48:24.8843152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\misc.h 2025-08-14T21:48:24.8846794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\norm.h 2025-08-14T21:48:24.8850247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\operators.h 2025-08-14T21:48:24.8859030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\pointwise.h 2025-08-14T21:48:24.8863709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\quantization.h 2025-08-14T21:48:24.8866328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\reduction.h 2025-08-14T21:48:24.8870036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\softmax.h 2025-08-14T21:48:24.8878284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\testing\catch_utils.hpp 2025-08-14T21:48:24.8881981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\testing\file_check.h 2025-08-14T21:48:24.8886590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\testing\hooks_for_testing.h 2025-08-14T21:48:24.8898522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\backend\backend_data.h 2025-08-14T21:48:24.8901996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\backend\backend_device.h 2025-08-14T21:48:24.8907072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\backend\backend_interface.h 2025-08-14T21:48:24.8911449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\backend\lowering_context.h 2025-08-14T21:48:24.8926887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\cache.h 2025-08-14T21:48:24.8944329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\config.h 2025-08-14T21:48:24.8944957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\debug_util.h 2025-08-14T21:48:24.8945598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\dynamic_ir.h 2025-08-14T21:48:24.8946188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\hash.h 2025-08-14T21:48:24.8954143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\helpers.h 2025-08-14T21:48:24.8957545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ir.h 2025-08-14T21:48:24.8962194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ir_builder.h 2025-08-14T21:48:24.8964690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ir_dump_util.h 2025-08-14T21:48:24.8968324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ir_metadata.h 2025-08-14T21:48:24.8972092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ir_util.h 2025-08-14T21:48:24.8975626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\lazy_graph_executor.h 2025-08-14T21:48:24.8979254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\metrics.h 2025-08-14T21:48:24.8983064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\multi_wait.h 2025-08-14T21:48:24.8986341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\permutation_util.h 2025-08-14T21:48:24.8989761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\shape.h 2025-08-14T21:48:24.8993079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\shape_inference.h 2025-08-14T21:48:24.8996719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\tensor.h 2025-08-14T21:48:24.9000148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\tensor_impl.h 2025-08-14T21:48:24.9003853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\tensor_util.h 2025-08-14T21:48:24.9008067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\thread_pool.h 2025-08-14T21:48:24.9011685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\trie.h 2025-08-14T21:48:24.9015234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\unique.h 2025-08-14T21:48:24.9018548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\util.h 2025-08-14T21:48:24.9033353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\internal_ops\ltc_ops.h 2025-08-14T21:48:24.9040892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ops\arithmetic_ir_ops.h 2025-08-14T21:48:24.9044524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ops\utils.h 2025-08-14T21:48:24.9053021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\generated\LazyIr.h 2025-08-14T21:48:24.9059126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\generated\LazyNativeFunctions.h 2025-08-14T21:48:24.9062948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\generated\LazyNonNativeIr.h 2025-08-14T21:48:24.9070599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\python\init.h 2025-08-14T21:48:24.9074144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\python\python_util.h 2025-08-14T21:48:24.9086085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\config.h 2025-08-14T21:48:24.9089545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\dynamic_ir.h 2025-08-14T21:48:24.9093827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ir_builder.h 2025-08-14T21:48:24.9097241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\tensor_aten_ops.h 2025-08-14T21:48:24.9166144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_autograd_functions.h 2025-08-14T21:48:24.9170251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_backend_impl.h 2025-08-14T21:48:24.9173827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_eager_fallback.h 2025-08-14T21:48:24.9177265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_lowering_context.h 2025-08-14T21:48:24.9180740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_node.h 2025-08-14T21:48:24.9185008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_node_lowering.h 2025-08-14T21:48:24.9191437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ops\device_data.h 2025-08-14T21:48:24.9195697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ops\generic.h 2025-08-14T21:48:24.9199060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ops\to_copy.h 2025-08-14T21:48:24.9207281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\monitor\counters.h 2025-08-14T21:48:24.9210532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\monitor\events.h 2025-08-14T21:48:24.9213795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\monitor\python_init.h 2025-08-14T21:48:24.9221837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\mps\Module.h 2025-08-14T21:48:24.9228564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\mtia\Module.h 2025-08-14T21:48:24.9235083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\mtia\profiler\MTIAMemoryProfiler.h 2025-08-14T21:48:24.9244106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\multiprocessing\init.h 2025-08-14T21:48:24.9251095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\onnx\back_compat.h 2025-08-14T21:48:24.9254616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\onnx\init.h 2025-08-14T21:48:24.9258107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\onnx\onnx.h 2025-08-14T21:48:24.9266219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\api.h 2025-08-14T21:48:24.9269519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\collection.h 2025-08-14T21:48:24.9273124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\combined_traceback.h 2025-08-14T21:48:24.9276603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\containers.h 2025-08-14T21:48:24.9346055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\data_flow.h 2025-08-14T21:48:24.9350028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\events.h 2025-08-14T21:48:24.9353657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\kineto_client_interface.h 2025-08-14T21:48:24.9357108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\kineto_shim.h 2025-08-14T21:48:24.9360884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\perf-inl.h 2025-08-14T21:48:24.9365026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\perf.h 2025-08-14T21:48:24.9368657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\util.h 2025-08-14T21:48:24.9375952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\orchestration\observer.h 2025-08-14T21:48:24.9380163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\orchestration\python_tracer.h 2025-08-14T21:48:24.9383640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\orchestration\vulkan.h 2025-08-14T21:48:24.9391037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\python\combined_traceback.h 2025-08-14T21:48:24.9394698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\python\init.h 2025-08-14T21:48:24.9398995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\python\pybind.h 2025-08-14T21:48:24.9405506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\standalone\execution_trace_observer.h 2025-08-14T21:48:24.9410658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\standalone\itt_observer.h 2025-08-14T21:48:24.9413486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\standalone\nvtx_observer.h 2025-08-14T21:48:24.9495739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\standalone\privateuse1_observer.h 2025-08-14T21:48:24.9504090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\stubs\base.h 2025-08-14T21:48:24.9511873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\action.h 2025-08-14T21:48:24.9515253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\communicate.h 2025-08-14T21:48:24.9518958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\debug_info.h 2025-08-14T21:48:24.9537113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\dwarf_enums.h 2025-08-14T21:48:24.9593967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\dwarf_symbolize_enums.h 2025-08-14T21:48:24.9597427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\eh_frame_hdr.h 2025-08-14T21:48:24.9600813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\fast_symbolizer.h 2025-08-14T21:48:24.9604312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\fde.h 2025-08-14T21:48:24.9607743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\lexer.h 2025-08-14T21:48:24.9611769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\line_number_program.h 2025-08-14T21:48:24.9615496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\mem_file.h 2025-08-14T21:48:24.9618493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\range_table.h 2025-08-14T21:48:24.9622233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\sections.h 2025-08-14T21:48:24.9625855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\unwind.h 2025-08-14T21:48:24.9629079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\unwinder.h 2025-08-14T21:48:24.9632395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\unwind_error.h 2025-08-14T21:48:24.9646751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\stable\accelerator.h 2025-08-14T21:48:24.9650686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\stable\library.h 2025-08-14T21:48:24.9654227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\stable\ops.h 2025-08-14T21:48:24.9657527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\stable\tensor.h 2025-08-14T21:48:24.9664810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\tensor\python_tensor.h 2025-08-14T21:48:24.9672641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\byte_order.h 2025-08-14T21:48:24.9676051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\cpp_stacktraces.h 2025-08-14T21:48:24.9679526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\cuda_enabled.h 2025-08-14T21:48:24.9682986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\device_lazy_init.h 2025-08-14T21:48:24.9691704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\disable_torch_function.h 2025-08-14T21:48:24.9695396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\generated_serialization_types.h 2025-08-14T21:48:24.9699812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\init.h 2025-08-14T21:48:24.9703552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\invalid_arguments.h 2025-08-14T21:48:24.9707525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\nested.h 2025-08-14T21:48:24.9710581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\numpy_stub.h 2025-08-14T21:48:24.9713832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\object_ptr.h 2025-08-14T21:48:24.9717276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\out_types.h 2025-08-14T21:48:24.9720937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\pybind.h 2025-08-14T21:48:24.9724482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\pycfunction_helpers.h 2025-08-14T21:48:24.9727952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\pyobject_preservation.h 2025-08-14T21:48:24.9731365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\pythoncapi_compat.h 2025-08-14T21:48:24.9734995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_arg_parser.h 2025-08-14T21:48:24.9738602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_compat.h 2025-08-14T21:48:24.9742481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_dispatch.h 2025-08-14T21:48:24.9747135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_numbers.h 2025-08-14T21:48:24.9754416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_raii.h 2025-08-14T21:48:24.9758021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_scalars.h 2025-08-14T21:48:24.9761678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_strings.h 2025-08-14T21:48:24.9765155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_stub.h 2025-08-14T21:48:24.9768791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_symnode.h 2025-08-14T21:48:24.9772467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_torch_function_mode.h 2025-08-14T21:48:24.9776386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_tuples.h 2025-08-14T21:48:24.9780369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\schema_info.h 2025-08-14T21:48:24.9784126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\six.h 2025-08-14T21:48:24.9787734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\structseq.h 2025-08-14T21:48:24.9797329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_apply.h 2025-08-14T21:48:24.9801304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_dtypes.h 2025-08-14T21:48:24.9804681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_flatten.h 2025-08-14T21:48:24.9808252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_layouts.h 2025-08-14T21:48:24.9811741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_list.h 2025-08-14T21:48:24.9815483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_memoryformats.h 2025-08-14T21:48:24.9819134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_new.h 2025-08-14T21:48:24.9824104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_numpy.h 2025-08-14T21:48:24.9826514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_qschemes.h 2025-08-14T21:48:24.9837110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_types.h 2025-08-14T21:48:24.9841996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\throughput_benchmark-inl.h 2025-08-14T21:48:24.9844485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\throughput_benchmark.h 2025-08-14T21:48:24.9848384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\torch_dispatch_mode.h 2025-08-14T21:48:24.9851628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\variadic.h 2025-08-14T21:48:24.9855350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\verbose.h 2025-08-14T21:48:24.9865252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\xpu\Event.h 2025-08-14T21:48:24.9868516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\xpu\Module.h 2025-08-14T21:48:24.9871970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\xpu\Stream.h 2025-08-14T21:48:24.9885017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\core\ScalarType.h 2025-08-14T21:48:24.9895851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\cpu\vec\intrinsics.h 2025-08-14T21:48:24.9899418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\cpu\vec\vec_half.h 2025-08-14T21:48:24.9906224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\cpu\vec\vec256\missing_vld1_neon.h 2025-08-14T21:48:24.9910008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\cpu\vec\vec256\missing_vst1_neon.h 2025-08-14T21:48:24.9919088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\macros\cmake_macros.h 2025-08-14T21:48:24.9922926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\macros\Export.h 2025-08-14T21:48:24.9926694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\macros\Macros.h 2025-08-14T21:48:24.9935943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\BFloat16.h 2025-08-14T21:48:24.9940070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\bits.h 2025-08-14T21:48:24.9943580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\bit_cast.h 2025-08-14T21:48:24.9947209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\complex.h 2025-08-14T21:48:24.9950993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Exception.h 2025-08-14T21:48:24.9954864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float4_e2m1fn_x2.h 2025-08-14T21:48:24.9963913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_e4m3fn.h 2025-08-14T21:48:24.9982833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_e4m3fnuz.h 2025-08-14T21:48:24.9986325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_e5m2.h 2025-08-14T21:48:24.9989838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_e5m2fnuz.h 2025-08-14T21:48:24.9993558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_e8m0fnu.h 2025-08-14T21:48:24.9997526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_fnuz_cvt.h 2025-08-14T21:48:25.0001440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\floating_point_utils.h 2025-08-14T21:48:25.0005242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Half.h 2025-08-14T21:48:25.0008536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\qint32.h 2025-08-14T21:48:25.0011904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\qint8.h 2025-08-14T21:48:25.0015326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\quint2x4.h 2025-08-14T21:48:25.0018588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\quint4x2.h 2025-08-14T21:48:25.0022256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\quint8.h 2025-08-14T21:48:25.0025899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\shim_utils.h 2025-08-14T21:48:25.0029272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\TypeSafeSignMath.h 2025-08-14T21:48:25.0041610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\annotations.py 2025-08-14T21:48:25.0044721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\frontend.py 2025-08-14T21:48:25.0048257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\generate_bytecode.py 2025-08-14T21:48:25.0051787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\quantized.py 2025-08-14T21:48:25.0061997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\supported_ops.py 2025-08-14T21:48:25.0065739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\unsupported_tensor_ops.py 2025-08-14T21:48:25.0069201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_async.py 2025-08-14T21:48:25.0072881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_await.py 2025-08-14T21:48:25.0076260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_builtins.py 2025-08-14T21:48:25.0079669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_check.py 2025-08-14T21:48:25.0083338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_dataclass_impls.py 2025-08-14T21:48:25.0086764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_decompositions.py 2025-08-14T21:48:25.0090452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_decomposition_utils.py 2025-08-14T21:48:25.0093882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_freeze.py 2025-08-14T21:48:25.0097258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_fuser.py 2025-08-14T21:48:25.0100595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_ir_utils.py 2025-08-14T21:48:25.0103700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_logging.py 2025-08-14T21:48:25.0106984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_monkeytype_config.py 2025-08-14T21:48:25.0110504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_pickle.py 2025-08-14T21:48:25.0113949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_recursive.py 2025-08-14T21:48:25.0117690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_script.py 2025-08-14T21:48:25.0121558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_script.pyi 2025-08-14T21:48:25.0125099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_serialization.py 2025-08-14T21:48:25.0138445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_shape_functions.py 2025-08-14T21:48:25.0138617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_state.py 2025-08-14T21:48:25.0141260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_trace.py 2025-08-14T21:48:25.0144644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__init__.py 2025-08-14T21:48:25.0151997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\mobile\__init__.py 2025-08-14T21:48:25.0159288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\mobile\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:25.0166881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_passes\_property_propagation.py 2025-08-14T21:48:25.0170589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_passes\__init__.py 2025-08-14T21:48:25.0176840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_passes\__pycache__\_property_propagation.cpython-39.pyc 2025-08-14T21:48:25.0180838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_passes\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:25.0188865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\annotations.cpython-39.pyc 2025-08-14T21:48:25.0192311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\frontend.cpython-39.pyc 2025-08-14T21:48:25.0195841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\generate_bytecode.cpython-39.pyc 2025-08-14T21:48:25.0205925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\quantized.cpython-39.pyc 2025-08-14T21:48:25.0210023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\supported_ops.cpython-39.pyc 2025-08-14T21:48:25.0213726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\unsupported_tensor_ops.cpython-39.pyc 2025-08-14T21:48:25.0217040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_async.cpython-39.pyc 2025-08-14T21:48:25.0220616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_await.cpython-39.pyc 2025-08-14T21:48:25.0224406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_builtins.cpython-39.pyc 2025-08-14T21:48:25.0227547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_check.cpython-39.pyc 2025-08-14T21:48:25.0231458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_dataclass_impls.cpython-39.pyc 2025-08-14T21:48:25.0235045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_decompositions.cpython-39.pyc 2025-08-14T21:48:25.0240220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_decomposition_utils.cpython-39.pyc 2025-08-14T21:48:25.0242978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_freeze.cpython-39.pyc 2025-08-14T21:48:25.0246603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_fuser.cpython-39.pyc 2025-08-14T21:48:25.0250073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_ir_utils.cpython-39.pyc 2025-08-14T21:48:25.0254092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_logging.cpython-39.pyc 2025-08-14T21:48:25.0264144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_monkeytype_config.cpython-39.pyc 2025-08-14T21:48:25.0268158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_pickle.cpython-39.pyc 2025-08-14T21:48:25.0271470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_recursive.cpython-39.pyc 2025-08-14T21:48:25.0275103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_script.cpython-39.pyc 2025-08-14T21:48:25.0278935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_serialization.cpython-39.pyc 2025-08-14T21:48:25.0283279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_shape_functions.cpython-39.pyc 2025-08-14T21:48:25.0287250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_state.cpython-39.pyc 2025-08-14T21:48:25.0291915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_trace.cpython-39.pyc 2025-08-14T21:48:25.0300303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:25.0309374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\aoti_custom_ops.dll 2025-08-14T21:48:25.0314951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\aoti_custom_ops.lib 2025-08-14T21:48:25.0318842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\backend_with_compiler.dll 2025-08-14T21:48:25.0330016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\backend_with_compiler.lib 2025-08-14T21:48:25.0333758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\c10.dll 2025-08-14T21:48:25.0343815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\c10.lib 2025-08-14T21:48:25.0351378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\cpuinfo.lib 2025-08-14T21:48:25.0356342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\dnnl.lib 2025-08-14T21:48:25.3889327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\fmt.lib 2025-08-14T21:48:25.3899822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\jitbackend_test.dll 2025-08-14T21:48:25.3905525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\jitbackend_test.lib 2025-08-14T21:48:25.3909759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\kineto.lib 2025-08-14T21:48:25.4031013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libittnotify.lib 2025-08-14T21:48:25.4036319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libprotobuf-lite.lib 2025-08-14T21:48:25.4066730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libprotobuf.lib 2025-08-14T21:48:25.4261875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libprotoc.lib 2025-08-14T21:48:25.4474288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\microkernels-prod.lib 2025-08-14T21:48:25.4492736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\pthreadpool.lib 2025-08-14T21:48:25.4497894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\shm.dll 2025-08-14T21:48:25.4501528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\shm.lib 2025-08-14T21:48:25.4505716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\sleef.lib 2025-08-14T21:48:25.4558250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch.dll 2025-08-14T21:48:25.4562071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch.lib 2025-08-14T21:48:25.4565509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torchbind_test.dll 2025-08-14T21:48:25.4578037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torchbind_test.lib 2025-08-14T21:48:25.4581694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch_cpu.dll 2025-08-14T21:48:25.5940700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch_cpu.lib 2025-08-14T21:48:25.6099731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch_global_deps.dll 2025-08-14T21:48:25.6104319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch_python.dll 2025-08-14T21:48:25.6194866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch_python.lib 2025-08-14T21:48:25.6201518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\XNNPACK.lib 2025-08-14T21:48:25.6220935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\_C.lib 2025-08-14T21:48:25.6229386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libshm\alloc_info.h 2025-08-14T21:48:25.6233140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libshm\err.h 2025-08-14T21:48:25.6238142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libshm\libshm.h 2025-08-14T21:48:25.6242866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libshm\socket.h 2025-08-14T21:48:25.6251275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libshm_windows\libshm.h 2025-08-14T21:48:25.6260518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\linalg\__init__.py 2025-08-14T21:48:25.6268911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\linalg\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:25.6277634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\_docs.py 2025-08-14T21:48:25.6281795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\_ops.py 2025-08-14T21:48:25.6285310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\__init__.py 2025-08-14T21:48:25.6294559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\binary.py 2025-08-14T21:48:25.6298285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\core.py 2025-08-14T21:48:25.6302385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\creation.py 2025-08-14T21:48:25.6306173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\passthrough.py 2025-08-14T21:48:25.6310929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\reductions.py 2025-08-14T21:48:25.6454374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\unary.py 2025-08-14T21:48:25.6459316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\_ops_refs.py 2025-08-14T21:48:25.6465221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__init__.py 2025-08-14T21:48:25.6476730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\binary.cpython-39.pyc 2025-08-14T21:48:25.6481823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\core.cpython-39.pyc 2025-08-14T21:48:25.6488243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\creation.cpython-39.pyc 2025-08-14T21:48:25.6628941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\passthrough.cpython-39.pyc 2025-08-14T21:48:25.6632972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\reductions.cpython-39.pyc 2025-08-14T21:48:25.6637629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\unary.cpython-39.pyc 2025-08-14T21:48:25.6641681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\_ops_refs.cpython-39.pyc 2025-08-14T21:48:25.6645105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.1836440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\__pycache__\_docs.cpython-39.pyc 2025-08-14T21:48:26.1840349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\__pycache__\_ops.cpython-39.pyc 2025-08-14T21:48:26.1844303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.2021080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\monitor\__init__.py 2025-08-14T21:48:26.2028712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\monitor\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.2037059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\event.py 2025-08-14T21:48:26.2041090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\profiler.py 2025-08-14T21:48:26.2044527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\__init__.py 2025-08-14T21:48:26.2051461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\__pycache__\event.cpython-39.pyc 2025-08-14T21:48:26.2055214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\__pycache__\profiler.cpython-39.pyc 2025-08-14T21:48:26.2058748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.2194150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\memory.py 2025-08-14T21:48:26.2197063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\_utils.py 2025-08-14T21:48:26.2200722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\__init__.py 2025-08-14T21:48:26.2207621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\__pycache__\memory.cpython-39.pyc 2025-08-14T21:48:26.2211222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:48:26.2215393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.2370112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\pool.py 2025-08-14T21:48:26.2373618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\queue.py 2025-08-14T21:48:26.2377937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\reductions.py 2025-08-14T21:48:26.2381732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\spawn.py 2025-08-14T21:48:26.2385280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\_atfork.py 2025-08-14T21:48:26.2511272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__init__.py 2025-08-14T21:48:26.2520490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\pool.cpython-39.pyc 2025-08-14T21:48:26.2524325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\queue.cpython-39.pyc 2025-08-14T21:48:26.2528011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\reductions.cpython-39.pyc 2025-08-14T21:48:26.2699181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\spawn.cpython-39.pyc 2025-08-14T21:48:26.2702783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\_atfork.cpython-39.pyc 2025-08-14T21:48:26.2706310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.2714761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\__init__.py 2025-08-14T21:48:26.2721886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\nested_int.py 2025-08-14T21:48:26.2725343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\nested_tensor.py 2025-08-14T21:48:26.2728953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\ops.py 2025-08-14T21:48:26.2733106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\sdpa.py 2025-08-14T21:48:26.2940100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__init__.py 2025-08-14T21:48:26.2946180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__pycache__\nested_int.cpython-39.pyc 2025-08-14T21:48:26.2950402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__pycache__\nested_tensor.cpython-39.pyc 2025-08-14T21:48:26.2954447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__pycache__\ops.cpython-39.pyc 2025-08-14T21:48:26.3115230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__pycache__\sdpa.cpython-39.pyc 2025-08-14T21:48:26.3118666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.3127832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.3138024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\common_types.py 2025-08-14T21:48:26.3142153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\cpp.py 2025-08-14T21:48:26.3146485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\functional.py 2025-08-14T21:48:26.3152051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\functional.pyi 2025-08-14T21:48:26.3293065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\grad.py 2025-08-14T21:48:26.3296471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\init.py 2025-08-14T21:48:26.3300009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parameter.py 2025-08-14T21:48:26.3303783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parameter.pyi 2025-08-14T21:48:26.3307474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\_reduction.py 2025-08-14T21:48:26.3311012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__init__.py 2025-08-14T21:48:26.3317939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\bias.py 2025-08-14T21:48:26.3321649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\flex_attention.py 2025-08-14T21:48:26.3325470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\_utils.py 2025-08-14T21:48:26.3328754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\__init__.py 2025-08-14T21:48:26.3454135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\experimental\_paged_attention.py 2025-08-14T21:48:26.3457474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\experimental\__init__.py 2025-08-14T21:48:26.3467520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\experimental\__pycache__\_paged_attention.cpython-39.pyc 2025-08-14T21:48:26.3470988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\experimental\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.3480083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\__pycache__\bias.cpython-39.pyc 2025-08-14T21:48:26.3483768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\__pycache__\flex_attention.cpython-39.pyc 2025-08-14T21:48:26.3487519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:48:26.3620799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.3628298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\backends\thnn.py 2025-08-14T21:48:26.3631841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\backends\__init__.py 2025-08-14T21:48:26.3638734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\backends\__pycache__\thnn.cpython-39.pyc 2025-08-14T21:48:26.3642479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\backends\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.3651279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\__init__.py 2025-08-14T21:48:26.3658049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\modules\fused.py 2025-08-14T21:48:26.3661369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\modules\__init__.py 2025-08-14T21:48:26.3668212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\modules\__pycache__\fused.cpython-39.pyc 2025-08-14T21:48:26.3671972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.3680063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\__init__.py 2025-08-14T21:48:26.3686681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\conv_fused.py 2025-08-14T21:48:26.3690074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\linear_fused.py 2025-08-14T21:48:26.3693612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\linear_relu.py 2025-08-14T21:48:26.3696837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\__init__.py 2025-08-14T21:48:26.3832603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\__pycache__\conv_fused.cpython-39.pyc 2025-08-14T21:48:26.3836068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\__pycache__\linear_fused.cpython-39.pyc 2025-08-14T21:48:26.3840151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\__pycache__\linear_relu.cpython-39.pyc 2025-08-14T21:48:26.4002747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.4363002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.4373052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\__init__.py 2025-08-14T21:48:26.4382641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\__init__.py 2025-08-14T21:48:26.4391022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\modules\linear_relu.py 2025-08-14T21:48:26.6767402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\modules\__init__.py 2025-08-14T21:48:26.6774928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\modules\__pycache__\linear_relu.cpython-39.pyc 2025-08-14T21:48:26.6779913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.6787811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.6795561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\bn_relu.py 2025-08-14T21:48:26.6799502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\conv_relu.py 2025-08-14T21:48:26.6802850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\linear_relu.py 2025-08-14T21:48:26.6806296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\__init__.py 2025-08-14T21:48:26.6825051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\__pycache__\bn_relu.cpython-39.pyc 2025-08-14T21:48:26.6829104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\__pycache__\conv_relu.cpython-39.pyc 2025-08-14T21:48:26.6832741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\__pycache__\linear_relu.cpython-39.pyc 2025-08-14T21:48:26.6847477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.6855470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.6876369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.6884725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\activation.py 2025-08-14T21:48:26.6888538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\adaptive.py 2025-08-14T21:48:26.6891893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\batchnorm.py 2025-08-14T21:48:26.6895509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\channelshuffle.py 2025-08-14T21:48:26.6910281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\container.py 2025-08-14T21:48:26.6914079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\conv.py 2025-08-14T21:48:26.6918373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\distance.py 2025-08-14T21:48:26.6922011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\dropout.py 2025-08-14T21:48:26.6925612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\flatten.py 2025-08-14T21:48:26.6928878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\fold.py 2025-08-14T21:48:26.6932348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\instancenorm.py 2025-08-14T21:48:26.6935829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\lazy.py 2025-08-14T21:48:26.6939175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\linear.py 2025-08-14T21:48:26.6942760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\loss.py 2025-08-14T21:48:26.6946862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\module.py 2025-08-14T21:48:26.6950982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\normalization.py 2025-08-14T21:48:26.6954530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\padding.py 2025-08-14T21:48:26.6957923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\pixelshuffle.py 2025-08-14T21:48:26.6961550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\pooling.py 2025-08-14T21:48:26.6965143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\rnn.py 2025-08-14T21:48:26.6968922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\sparse.py 2025-08-14T21:48:26.6972377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\transformer.py 2025-08-14T21:48:26.6975957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\upsampling.py 2025-08-14T21:48:26.6979775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\utils.py 2025-08-14T21:48:26.6983304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\_functions.py 2025-08-14T21:48:26.6986817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__init__.py 2025-08-14T21:48:26.6994638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\activation.cpython-39.pyc 2025-08-14T21:48:26.6998486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\adaptive.cpython-39.pyc 2025-08-14T21:48:26.7002216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\batchnorm.cpython-39.pyc 2025-08-14T21:48:26.7018388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\channelshuffle.cpython-39.pyc 2025-08-14T21:48:26.7022310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\container.cpython-39.pyc 2025-08-14T21:48:26.7026106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\conv.cpython-39.pyc 2025-08-14T21:48:26.7029882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\distance.cpython-39.pyc 2025-08-14T21:48:26.7033919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\dropout.cpython-39.pyc 2025-08-14T21:48:26.7037521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\flatten.cpython-39.pyc 2025-08-14T21:48:26.7041154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\fold.cpython-39.pyc 2025-08-14T21:48:26.7044708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\instancenorm.cpython-39.pyc 2025-08-14T21:48:26.7048402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\lazy.cpython-39.pyc 2025-08-14T21:48:26.7052331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\linear.cpython-39.pyc 2025-08-14T21:48:26.7056056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\loss.cpython-39.pyc 2025-08-14T21:48:26.7060172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\module.cpython-39.pyc 2025-08-14T21:48:26.7064207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\normalization.cpython-39.pyc 2025-08-14T21:48:26.7067792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\padding.cpython-39.pyc 2025-08-14T21:48:26.7083505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\pixelshuffle.cpython-39.pyc 2025-08-14T21:48:26.7086621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\pooling.cpython-39.pyc 2025-08-14T21:48:26.7090505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\rnn.cpython-39.pyc 2025-08-14T21:48:26.7094219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\sparse.cpython-39.pyc 2025-08-14T21:48:26.7097806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\transformer.cpython-39.pyc 2025-08-14T21:48:26.7101370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\upsampling.cpython-39.pyc 2025-08-14T21:48:26.7104776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:26.7108343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\_functions.cpython-39.pyc 2025-08-14T21:48:26.7111760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.7132109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\comm.py 2025-08-14T21:48:26.7135372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\data_parallel.py 2025-08-14T21:48:26.7138712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\distributed.py 2025-08-14T21:48:26.7142670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\parallel_apply.py 2025-08-14T21:48:26.7156671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\replicate.py 2025-08-14T21:48:26.7160096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\scatter_gather.py 2025-08-14T21:48:26.7163385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\_functions.py 2025-08-14T21:48:26.7167522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__init__.py 2025-08-14T21:48:26.7176514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\comm.cpython-39.pyc 2025-08-14T21:48:26.7180883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\data_parallel.cpython-39.pyc 2025-08-14T21:48:26.7185305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\distributed.cpython-39.pyc 2025-08-14T21:48:26.7202597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\parallel_apply.cpython-39.pyc 2025-08-14T21:48:26.7207075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\replicate.cpython-39.pyc 2025-08-14T21:48:26.7211583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\scatter_gather.cpython-39.pyc 2025-08-14T21:48:26.7216069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\_functions.cpython-39.pyc 2025-08-14T21:48:26.7221063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.7230537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\__init__.py 2025-08-14T21:48:26.7238222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\__init__.py 2025-08-14T21:48:26.7245609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\modules\linear.py 2025-08-14T21:48:26.7248905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\modules\__init__.py 2025-08-14T21:48:26.7255860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\modules\__pycache__\linear.cpython-39.pyc 2025-08-14T21:48:26.7259388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.7266768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.7274319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\conv.py 2025-08-14T21:48:26.7277764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\embedding_ops.py 2025-08-14T21:48:26.7281268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\linear.py 2025-08-14T21:48:26.7284614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\__init__.py 2025-08-14T21:48:26.7302577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\__pycache__\conv.cpython-39.pyc 2025-08-14T21:48:26.7305912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\__pycache__\embedding_ops.cpython-39.pyc 2025-08-14T21:48:26.7309425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\__pycache__\linear.cpython-39.pyc 2025-08-14T21:48:26.7323356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.7330941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.7339632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\__init__.py 2025-08-14T21:48:26.7354501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\activation.py 2025-08-14T21:48:26.7355537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\rnn.py 2025-08-14T21:48:26.7358291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\__init__.py 2025-08-14T21:48:26.7365121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\__pycache__\activation.cpython-39.pyc 2025-08-14T21:48:26.7368757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\__pycache__\rnn.cpython-39.pyc 2025-08-14T21:48:26.7372253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.7391308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.7399943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\functional.py 2025-08-14T21:48:26.7403369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\__init__.py 2025-08-14T21:48:26.7410372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\__init__.py 2025-08-14T21:48:26.7417337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\conv.py 2025-08-14T21:48:26.7420442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\linear.py 2025-08-14T21:48:26.7423891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\rnn.py 2025-08-14T21:48:26.7427249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\__init__.py 2025-08-14T21:48:26.7433993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\__pycache__\conv.cpython-39.pyc 2025-08-14T21:48:26.7437475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\__pycache__\linear.cpython-39.pyc 2025-08-14T21:48:26.7441091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\__pycache__\rnn.cpython-39.pyc 2025-08-14T21:48:26.7455262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.7462947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.7470604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\activation.py 2025-08-14T21:48:26.7473854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\batchnorm.py 2025-08-14T21:48:26.7477169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\conv.py 2025-08-14T21:48:26.7481031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\dropout.py 2025-08-14T21:48:26.7484322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\embedding_ops.py 2025-08-14T21:48:26.7497956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\functional_modules.py 2025-08-14T21:48:26.7501283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\linear.py 2025-08-14T21:48:26.7504842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\normalization.py 2025-08-14T21:48:26.7508414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\rnn.py 2025-08-14T21:48:26.7511936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\utils.py 2025-08-14T21:48:26.7515142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__init__.py 2025-08-14T21:48:26.7522502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\activation.cpython-39.pyc 2025-08-14T21:48:26.7526080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\batchnorm.cpython-39.pyc 2025-08-14T21:48:26.7529795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\conv.cpython-39.pyc 2025-08-14T21:48:26.7544803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\dropout.cpython-39.pyc 2025-08-14T21:48:26.7548772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\embedding_ops.cpython-39.pyc 2025-08-14T21:48:26.7552893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\functional_modules.cpython-39.pyc 2025-08-14T21:48:26.7556783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\linear.cpython-39.pyc 2025-08-14T21:48:26.7561042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\normalization.cpython-39.pyc 2025-08-14T21:48:26.7565129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\rnn.cpython-39.pyc 2025-08-14T21:48:26.7569865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:26.7573588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.7593058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\__init__.py 2025-08-14T21:48:26.7600227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\conv.py 2025-08-14T21:48:26.7603557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\linear.py 2025-08-14T21:48:26.7606922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\rnn.py 2025-08-14T21:48:26.7610286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\sparse.py 2025-08-14T21:48:26.7613511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\utils.py 2025-08-14T21:48:26.7616653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__init__.py 2025-08-14T21:48:26.7634569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\conv.cpython-39.pyc 2025-08-14T21:48:26.7638167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\linear.cpython-39.pyc 2025-08-14T21:48:26.7642111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\rnn.cpython-39.pyc 2025-08-14T21:48:26.7655557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\sparse.cpython-39.pyc 2025-08-14T21:48:26.7659171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:26.7662565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.7670234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.7678607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\__pycache__\functional.cpython-39.pyc 2025-08-14T21:48:26.7682092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.7690433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\clip_grad.py 2025-08-14T21:48:26.7693984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\convert_parameters.py 2025-08-14T21:48:26.7697297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\fusion.py 2025-08-14T21:48:26.7700669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\init.py 2025-08-14T21:48:26.7704036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\memory_format.py 2025-08-14T21:48:26.7717709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\parametrizations.py 2025-08-14T21:48:26.7721150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\parametrize.py 2025-08-14T21:48:26.7724602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\prune.py 2025-08-14T21:48:26.7728056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\rnn.py 2025-08-14T21:48:26.7731411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\spectral_norm.py 2025-08-14T21:48:26.7734780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\stateless.py 2025-08-14T21:48:26.7738072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\weight_norm.py 2025-08-14T21:48:26.7741402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_deprecation_utils.py 2025-08-14T21:48:26.7745254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_named_member_accessor.py 2025-08-14T21:48:26.7748756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_per_sample_grad.py 2025-08-14T21:48:26.7752677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__init__.py 2025-08-14T21:48:26.7760086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\conv_expanded_weights.py 2025-08-14T21:48:26.7763469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\conv_utils.py 2025-08-14T21:48:26.7766885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\embedding_expanded_weights.py 2025-08-14T21:48:26.7780403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\expanded_weights_impl.py 2025-08-14T21:48:26.7784068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\expanded_weights_utils.py 2025-08-14T21:48:26.7787537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\group_norm_expanded_weights.py 2025-08-14T21:48:26.7791034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\instance_norm_expanded_weights.py 2025-08-14T21:48:26.7794540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\layer_norm_expanded_weights.py 2025-08-14T21:48:26.7798057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\linear_expanded_weights.py 2025-08-14T21:48:26.7801598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__init__.py 2025-08-14T21:48:26.7810005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\conv_expanded_weights.cpython-39.pyc 2025-08-14T21:48:26.7813554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\conv_utils.cpython-39.pyc 2025-08-14T21:48:26.7817109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\embedding_expanded_weights.cpython-39.pyc 2025-08-14T21:48:26.7831595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\expanded_weights_impl.cpython-39.pyc 2025-08-14T21:48:26.7835073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\expanded_weights_utils.cpython-39.pyc 2025-08-14T21:48:26.7838560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\group_norm_expanded_weights.cpython-39.pyc 2025-08-14T21:48:26.7842769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\instance_norm_expanded_weights.cpython-39.pyc 2025-08-14T21:48:26.7846437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\layer_norm_expanded_weights.cpython-39.pyc 2025-08-14T21:48:26.7850303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\linear_expanded_weights.cpython-39.pyc 2025-08-14T21:48:26.7853956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.7862270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\clip_grad.cpython-39.pyc 2025-08-14T21:48:26.7865748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\convert_parameters.cpython-39.pyc 2025-08-14T21:48:26.7869441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\fusion.cpython-39.pyc 2025-08-14T21:48:26.7883585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\init.cpython-39.pyc 2025-08-14T21:48:26.7887196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\memory_format.cpython-39.pyc 2025-08-14T21:48:26.7890801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\parametrizations.cpython-39.pyc 2025-08-14T21:48:26.7894429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\parametrize.cpython-39.pyc 2025-08-14T21:48:26.7898519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\prune.cpython-39.pyc 2025-08-14T21:48:26.7902249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\rnn.cpython-39.pyc 2025-08-14T21:48:26.7906076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\spectral_norm.cpython-39.pyc 2025-08-14T21:48:26.7909706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\stateless.cpython-39.pyc 2025-08-14T21:48:26.7913170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\weight_norm.cpython-39.pyc 2025-08-14T21:48:26.7916851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\_deprecation_utils.cpython-39.pyc 2025-08-14T21:48:26.7920603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\_named_member_accessor.cpython-39.pyc 2025-08-14T21:48:26.7924124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\_per_sample_grad.cpython-39.pyc 2025-08-14T21:48:26.7927821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.7936443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\common_types.cpython-39.pyc 2025-08-14T21:48:26.7975616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\cpp.cpython-39.pyc 2025-08-14T21:48:26.7979188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\functional.cpython-39.pyc 2025-08-14T21:48:26.7989370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\grad.cpython-39.pyc 2025-08-14T21:48:26.7993049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\init.cpython-39.pyc 2025-08-14T21:48:26.7996691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\parameter.cpython-39.pyc 2025-08-14T21:48:26.8000661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\_reduction.cpython-39.pyc 2025-08-14T21:48:26.8004342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.8012786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\numa\binding.py 2025-08-14T21:48:26.8016294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\numa\__init__.py 2025-08-14T21:48:26.8022966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\numa\__pycache__\binding.cpython-39.pyc 2025-08-14T21:48:26.8026441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\numa\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.8035106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\errors.py 2025-08-14T21:48:26.8038468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\operators.py 2025-08-14T21:48:26.8042548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_helper.py 2025-08-14T21:48:26.8047212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset10.py 2025-08-14T21:48:26.8061943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset11.py 2025-08-14T21:48:26.8065726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset12.py 2025-08-14T21:48:26.8069479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset13.py 2025-08-14T21:48:26.8072952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset14.py 2025-08-14T21:48:26.8076756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset15.py 2025-08-14T21:48:26.8080530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset16.py 2025-08-14T21:48:26.8084120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset17.py 2025-08-14T21:48:26.8087558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset18.py 2025-08-14T21:48:26.8091141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset19.py 2025-08-14T21:48:26.8094751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset20.py 2025-08-14T21:48:26.8098280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset7.py 2025-08-14T21:48:26.8101808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset8.py 2025-08-14T21:48:26.8105354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset9.py 2025-08-14T21:48:26.8110829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\utils.py 2025-08-14T21:48:26.8114862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\verification.py 2025-08-14T21:48:26.8118874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_constants.py 2025-08-14T21:48:26.8133488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_experimental.py 2025-08-14T21:48:26.8136887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_flags.py 2025-08-14T21:48:26.8140919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_globals.py 2025-08-14T21:48:26.8144267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_onnx_supported_ops.py 2025-08-14T21:48:26.8147706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_type_utils.py 2025-08-14T21:48:26.8151273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__init__.py 2025-08-14T21:48:26.8158960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\_dtype_mappings.py 2025-08-14T21:48:26.8162387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\_impl.py 2025-08-14T21:48:26.8165630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\_symbolic_impl.py 2025-08-14T21:48:26.8168898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\__init__.py 2025-08-14T21:48:26.8186437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\__pycache__\_dtype_mappings.cpython-39.pyc 2025-08-14T21:48:26.8189919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\__pycache__\_impl.cpython-39.pyc 2025-08-14T21:48:26.8193410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\__pycache__\_symbolic_impl.cpython-39.pyc 2025-08-14T21:48:26.8208689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.8217489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\jit_utils.py 2025-08-14T21:48:26.8221142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\onnx_proto_utils.py 2025-08-14T21:48:26.8224511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\registration.py 2025-08-14T21:48:26.8237986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\_exporter_legacy.py 2025-08-14T21:48:26.8241524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\_lazy_import.py 2025-08-14T21:48:26.8245048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__init__.py 2025-08-14T21:48:26.8251524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_analysis.py 2025-08-14T21:48:26.8255000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_building.py 2025-08-14T21:48:26.8258551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_capture_strategies.py 2025-08-14T21:48:26.8262032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_compat.py 2025-08-14T21:48:26.8275668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_constants.py 2025-08-14T21:48:26.8279301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_core.py 2025-08-14T21:48:26.8282925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_decomp.py 2025-08-14T21:48:26.8287424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_dispatching.py 2025-08-14T21:48:26.8290816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_dynamic_shapes.py 2025-08-14T21:48:26.8294301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_errors.py 2025-08-14T21:48:26.8297671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_flags.py 2025-08-14T21:48:26.8300998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_fx_passes.py 2025-08-14T21:48:26.8304459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_ir_passes.py 2025-08-14T21:48:26.8307901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_isolated.py 2025-08-14T21:48:26.8311391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_onnx_program.py 2025-08-14T21:48:26.8314892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_registration.py 2025-08-14T21:48:26.8318582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_reporting.py 2025-08-14T21:48:26.8322031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_schemas.py 2025-08-14T21:48:26.8325642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_tensors.py 2025-08-14T21:48:26.8328929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_testing.py 2025-08-14T21:48:26.8332367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_type_casting.py 2025-08-14T21:48:26.8335829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_verification.py 2025-08-14T21:48:26.8339247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__init__.py 2025-08-14T21:48:26.8357172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\_tensor_typing.py 2025-08-14T21:48:26.8360859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\_torchlib_registry.py 2025-08-14T21:48:26.8364299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\__init__.py 2025-08-14T21:48:26.8381151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\core.py 2025-08-14T21:48:26.8384547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\hop.py 2025-08-14T21:48:26.8387807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\nn.py 2025-08-14T21:48:26.8391275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\symbolic.py 2025-08-14T21:48:26.8394608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\symops.py 2025-08-14T21:48:26.8398561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__init__.py 2025-08-14T21:48:26.8415807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\core.cpython-39.pyc 2025-08-14T21:48:26.8419645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\hop.cpython-39.pyc 2025-08-14T21:48:26.8423283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\nn.cpython-39.pyc 2025-08-14T21:48:26.8437532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\symbolic.cpython-39.pyc 2025-08-14T21:48:26.8441265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\symops.cpython-39.pyc 2025-08-14T21:48:26.8444819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.8452959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\__pycache__\_tensor_typing.cpython-39.pyc 2025-08-14T21:48:26.8456699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\__pycache__\_torchlib_registry.cpython-39.pyc 2025-08-14T21:48:26.8460237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.8480054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_analysis.cpython-39.pyc 2025-08-14T21:48:26.8483659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_building.cpython-39.pyc 2025-08-14T21:48:26.8488000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_capture_strategies.cpython-39.pyc 2025-08-14T21:48:26.8502089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_compat.cpython-39.pyc 2025-08-14T21:48:26.8505731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_constants.cpython-39.pyc 2025-08-14T21:48:26.8509288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_core.cpython-39.pyc 2025-08-14T21:48:26.8513686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_decomp.cpython-39.pyc 2025-08-14T21:48:26.8517435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_dispatching.cpython-39.pyc 2025-08-14T21:48:26.8521142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_dynamic_shapes.cpython-39.pyc 2025-08-14T21:48:26.8524797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_errors.cpython-39.pyc 2025-08-14T21:48:26.8528390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_flags.cpython-39.pyc 2025-08-14T21:48:26.8531850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_fx_passes.cpython-39.pyc 2025-08-14T21:48:26.8535503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_ir_passes.cpython-39.pyc 2025-08-14T21:48:26.8540110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_isolated.cpython-39.pyc 2025-08-14T21:48:26.8543676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_onnx_program.cpython-39.pyc 2025-08-14T21:48:26.8547179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_registration.cpython-39.pyc 2025-08-14T21:48:26.8550877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_reporting.cpython-39.pyc 2025-08-14T21:48:26.8564911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_schemas.cpython-39.pyc 2025-08-14T21:48:26.8568996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_tensors.cpython-39.pyc 2025-08-14T21:48:26.8572536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_testing.cpython-39.pyc 2025-08-14T21:48:26.8576287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_type_casting.cpython-39.pyc 2025-08-14T21:48:26.8579840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_verification.cpython-39.pyc 2025-08-14T21:48:26.8583909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.8594304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\patcher.py 2025-08-14T21:48:26.8597715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\serialization.py 2025-08-14T21:48:26.8601298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\type_utils.py 2025-08-14T21:48:26.8604837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\_pass.py 2025-08-14T21:48:26.8609879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__init__.py 2025-08-14T21:48:26.8723933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\type_promotion.py 2025-08-14T21:48:26.8727441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\_utils.py 2025-08-14T21:48:26.8730768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\__init__.py 2025-08-14T21:48:26.8738487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\__pycache__\type_promotion.cpython-39.pyc 2025-08-14T21:48:26.8742453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:48:26.8746403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.8879617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__pycache__\patcher.cpython-39.pyc 2025-08-14T21:48:26.8882903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__pycache__\serialization.cpython-39.pyc 2025-08-14T21:48:26.8886489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__pycache__\type_utils.cpython-39.pyc 2025-08-14T21:48:26.9008110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__pycache__\_pass.cpython-39.pyc 2025-08-14T21:48:26.9011598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.9020494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\jit_utils.cpython-39.pyc 2025-08-14T21:48:26.9024226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\onnx_proto_utils.cpython-39.pyc 2025-08-14T21:48:26.9027867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\registration.cpython-39.pyc 2025-08-14T21:48:26.9168725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\_exporter_legacy.cpython-39.pyc 2025-08-14T21:48:26.9172190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\_lazy_import.cpython-39.pyc 2025-08-14T21:48:26.9176211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:26.9186288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\errors.cpython-39.pyc 2025-08-14T21:48:26.9190156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\operators.cpython-39.pyc 2025-08-14T21:48:26.9194144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_helper.cpython-39.pyc 2025-08-14T21:48:26.9324093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset10.cpython-39.pyc 2025-08-14T21:48:26.9327744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset11.cpython-39.pyc 2025-08-14T21:48:26.9331796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset12.cpython-39.pyc 2025-08-14T21:48:26.9335439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset13.cpython-39.pyc 2025-08-14T21:48:26.9339257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset14.cpython-39.pyc 2025-08-14T21:48:26.9343196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset15.cpython-39.pyc 2025-08-14T21:48:26.9347213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset16.cpython-39.pyc 2025-08-14T21:48:26.9352215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset17.cpython-39.pyc 2025-08-14T21:48:26.9355857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset18.cpython-39.pyc 2025-08-14T21:48:26.9360778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset19.cpython-39.pyc 2025-08-14T21:48:26.9364605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset20.cpython-39.pyc 2025-08-14T21:48:26.9368645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset7.cpython-39.pyc 2025-08-14T21:48:26.9372441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset8.cpython-39.pyc 2025-08-14T21:48:27.4476271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset9.cpython-39.pyc 2025-08-14T21:48:27.4481331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:27.4485192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\verification.cpython-39.pyc 2025-08-14T21:48:27.4489843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_constants.cpython-39.pyc 2025-08-14T21:48:27.4493729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_experimental.cpython-39.pyc 2025-08-14T21:48:27.4498313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_flags.cpython-39.pyc 2025-08-14T21:48:27.4502078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_globals.cpython-39.pyc 2025-08-14T21:48:27.4505777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_onnx_supported_ops.cpython-39.pyc 2025-08-14T21:48:27.4509363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_type_utils.cpython-39.pyc 2025-08-14T21:48:27.4513399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:27.7362252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\adadelta.py 2025-08-14T21:48:27.7365090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\adagrad.py 2025-08-14T21:48:27.7368843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\adam.py 2025-08-14T21:48:27.7372222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\adamax.py 2025-08-14T21:48:27.7375514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\adamw.py 2025-08-14T21:48:27.7378718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\asgd.py 2025-08-14T21:48:27.7382037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\lbfgs.py 2025-08-14T21:48:27.7587440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\lr_scheduler.py 2025-08-14T21:48:27.7591339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\nadam.py 2025-08-14T21:48:27.7594969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\optimizer.py 2025-08-14T21:48:27.7598686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\radam.py 2025-08-14T21:48:27.7602117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\rmsprop.py 2025-08-14T21:48:27.7605726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\rprop.py 2025-08-14T21:48:27.7610341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\sgd.py 2025-08-14T21:48:27.7614077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\sparse_adam.py 2025-08-14T21:48:27.7617866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\swa_utils.py 2025-08-14T21:48:27.7621807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_adafactor.py 2025-08-14T21:48:27.7625769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_functional.py 2025-08-14T21:48:27.7629780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__init__.py 2025-08-14T21:48:27.7637663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_multi_tensor\__init__.py 2025-08-14T21:48:27.7641280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_multi_tensor\__init__.pyi 2025-08-14T21:48:27.7648566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_multi_tensor\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:27.7656463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\adadelta.cpython-39.pyc 2025-08-14T21:48:27.7660119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\adagrad.cpython-39.pyc 2025-08-14T21:48:27.7663584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\adam.cpython-39.pyc 2025-08-14T21:48:27.7774260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\adamax.cpython-39.pyc 2025-08-14T21:48:27.7777723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\adamw.cpython-39.pyc 2025-08-14T21:48:27.7781415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\asgd.cpython-39.pyc 2025-08-14T21:48:27.7784986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\lbfgs.cpython-39.pyc 2025-08-14T21:48:27.7788677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\lr_scheduler.cpython-39.pyc 2025-08-14T21:48:27.7792320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\nadam.cpython-39.pyc 2025-08-14T21:48:27.7795790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\optimizer.cpython-39.pyc 2025-08-14T21:48:27.7799506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\radam.cpython-39.pyc 2025-08-14T21:48:27.7803155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\rmsprop.cpython-39.pyc 2025-08-14T21:48:27.7806764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\rprop.cpython-39.pyc 2025-08-14T21:48:27.7810267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\sgd.cpython-39.pyc 2025-08-14T21:48:27.7813719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\sparse_adam.cpython-39.pyc 2025-08-14T21:48:27.7817217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\swa_utils.cpython-39.pyc 2025-08-14T21:48:27.7820719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\_adafactor.cpython-39.pyc 2025-08-14T21:48:27.8400417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\_functional.cpython-39.pyc 2025-08-14T21:48:27.8404216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:27.8414617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\file_structure_representation.py 2025-08-14T21:48:27.8417975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\find_file_dependencies.py 2025-08-14T21:48:27.8421455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\glob_group.py 2025-08-14T21:48:27.8430719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\importer.py 2025-08-14T21:48:27.8434214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\package_exporter.py 2025-08-14T21:48:27.8438712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\package_importer.py 2025-08-14T21:48:27.8442301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_digraph.py 2025-08-14T21:48:27.8445789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_directory_reader.py 2025-08-14T21:48:27.8451607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_importlib.py 2025-08-14T21:48:27.8455139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_mangling.py 2025-08-14T21:48:27.8458613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_mock.py 2025-08-14T21:48:27.8462118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_package_pickler.py 2025-08-14T21:48:27.8465564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_package_unpickler.py 2025-08-14T21:48:27.8469059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_stdlib.py 2025-08-14T21:48:27.8472477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__init__.py 2025-08-14T21:48:27.8479592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\find_first_use_of_broken_modules.py 2025-08-14T21:48:27.8483494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\is_from_package.py 2025-08-14T21:48:27.8486706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\trace_dependencies.py 2025-08-14T21:48:27.8512192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\__init__.py 2025-08-14T21:48:27.8519575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\__pycache__\find_first_use_of_broken_modules.cpython-39.pyc 2025-08-14T21:48:27.8523177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\__pycache__\is_from_package.cpython-39.pyc 2025-08-14T21:48:27.8526771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\__pycache__\trace_dependencies.cpython-39.pyc 2025-08-14T21:48:27.8535791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:27.8544073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\file_structure_representation.cpython-39.pyc 2025-08-14T21:48:27.8547891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\find_file_dependencies.cpython-39.pyc 2025-08-14T21:48:27.8551428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\glob_group.cpython-39.pyc 2025-08-14T21:48:27.8559944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\importer.cpython-39.pyc 2025-08-14T21:48:27.8563545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\package_exporter.cpython-39.pyc 2025-08-14T21:48:27.8568184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\package_importer.cpython-39.pyc 2025-08-14T21:48:27.8571918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_digraph.cpython-39.pyc 2025-08-14T21:48:27.8575468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_directory_reader.cpython-39.pyc 2025-08-14T21:48:27.8579028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_importlib.cpython-39.pyc 2025-08-14T21:48:27.8582673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_mangling.cpython-39.pyc 2025-08-14T21:48:27.8586105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_mock.cpython-39.pyc 2025-08-14T21:48:27.8589752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_package_pickler.cpython-39.pyc 2025-08-14T21:48:27.8593906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_package_unpickler.cpython-39.pyc 2025-08-14T21:48:27.8597402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_stdlib.cpython-39.pyc 2025-08-14T21:48:27.8601121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:27.8609734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\itt.py 2025-08-14T21:48:27.8613043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\profiler.py 2025-08-14T21:48:27.8616544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\python_tracer.py 2025-08-14T21:48:27.8619901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\_memory_profiler.py 2025-08-14T21:48:27.8624231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\_pattern_matcher.py 2025-08-14T21:48:27.8633000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\_utils.py 2025-08-14T21:48:27.8636829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__init__.py 2025-08-14T21:48:27.8644375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\itt.cpython-39.pyc 2025-08-14T21:48:27.8647903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\profiler.cpython-39.pyc 2025-08-14T21:48:27.8651633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\python_tracer.cpython-39.pyc 2025-08-14T21:48:27.8660143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\_memory_profiler.cpython-39.pyc 2025-08-14T21:48:27.8664126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\_pattern_matcher.cpython-39.pyc 2025-08-14T21:48:27.8667610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:48:27.8671106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:27.8679161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fake_quantize.py 2025-08-14T21:48:27.8682651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fuser_method_mappings.py 2025-08-14T21:48:27.8686104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fuse_modules.py 2025-08-14T21:48:27.8694611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\observer.py 2025-08-14T21:48:27.8698623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\qconfig.py 2025-08-14T21:48:27.8702134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\quantization_mappings.py 2025-08-14T21:48:27.8705490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\quantize.py 2025-08-14T21:48:27.8708790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\quantize_fx.py 2025-08-14T21:48:27.8712370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\quantize_jit.py 2025-08-14T21:48:27.8715619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\quant_type.py 2025-08-14T21:48:27.8719183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\stubs.py 2025-08-14T21:48:27.8722560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\utils.py 2025-08-14T21:48:27.8725909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\_numeric_suite.py 2025-08-14T21:48:27.8729510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\_numeric_suite_fx.py 2025-08-14T21:48:27.8732997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\_quantized_conversions.py 2025-08-14T21:48:27.8736471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__init__.py 2025-08-14T21:48:27.8743301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\convert.py 2025-08-14T21:48:27.8746501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\fuse.py 2025-08-14T21:48:27.8749774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\fusion_patterns.py 2025-08-14T21:48:27.8753102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\graph_module.py 2025-08-14T21:48:27.8756809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\match_utils.py 2025-08-14T21:48:27.8765466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\pattern_utils.py 2025-08-14T21:48:27.8768886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\prepare.py 2025-08-14T21:48:27.8772419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\quantization_patterns.py 2025-08-14T21:48:27.8775830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\quantization_types.py 2025-08-14T21:48:27.8779145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\utils.py 2025-08-14T21:48:27.8782548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\_equalize.py 2025-08-14T21:48:27.8786040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__init__.py 2025-08-14T21:48:27.8793454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\convert.cpython-39.pyc 2025-08-14T21:48:27.8796896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\fuse.cpython-39.pyc 2025-08-14T21:48:27.8800431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\fusion_patterns.cpython-39.pyc 2025-08-14T21:48:27.8808941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\graph_module.cpython-39.pyc 2025-08-14T21:48:27.8812972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\match_utils.cpython-39.pyc 2025-08-14T21:48:27.8816436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\pattern_utils.cpython-39.pyc 2025-08-14T21:48:27.8819916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\prepare.cpython-39.pyc 2025-08-14T21:48:27.8823527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\quantization_patterns.cpython-39.pyc 2025-08-14T21:48:27.8827192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\quantization_types.cpython-39.pyc 2025-08-14T21:48:27.8830692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:27.8834190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\_equalize.cpython-39.pyc 2025-08-14T21:48:27.8837750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:27.8846461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\fake_quantize.cpython-39.pyc 2025-08-14T21:48:27.8849909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\fuser_method_mappings.cpython-39.pyc 2025-08-14T21:48:27.8853596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\fuse_modules.cpython-39.pyc 2025-08-14T21:48:27.8862452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\observer.cpython-39.pyc 2025-08-14T21:48:27.8865783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\qconfig.cpython-39.pyc 2025-08-14T21:48:27.8869202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\quantization_mappings.cpython-39.pyc 2025-08-14T21:48:27.8872662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\quantize.cpython-39.pyc 2025-08-14T21:48:27.8876098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\quantize_fx.cpython-39.pyc 2025-08-14T21:48:27.8879839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\quantize_jit.cpython-39.pyc 2025-08-14T21:48:27.8883668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\quant_type.cpython-39.pyc 2025-08-14T21:48:27.8887177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\stubs.cpython-39.pyc 2025-08-14T21:48:27.8890787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:27.8894284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\_numeric_suite.cpython-39.pyc 2025-08-14T21:48:27.8897781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\_numeric_suite_fx.cpython-39.pyc 2025-08-14T21:48:27.8901418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\_quantized_conversions.cpython-39.pyc 2025-08-14T21:48:27.8904971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:27.8925393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\ATen\ATenConfig.cmake 2025-08-14T21:48:27.8932214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Caffe2Config.cmake 2025-08-14T21:48:27.8935916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Caffe2Targets-release.cmake 2025-08-14T21:48:27.8939273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Caffe2Targets.cmake 2025-08-14T21:48:27.8948558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\FindCUDAToolkit.cmake 2025-08-14T21:48:27.8952221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\FindCUDSS.cmake 2025-08-14T21:48:27.8955662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\FindCUSPARSELT.cmake 2025-08-14T21:48:27.8959191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\FindSYCLToolkit.cmake 2025-08-14T21:48:27.8966532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDA.cmake 2025-08-14T21:48:27.8970068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDNN.cmake 2025-08-14T21:48:27.8982658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\CMakeInitializeConfigs.cmake 2025-08-14T21:48:27.8986464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA.cmake 2025-08-14T21:48:27.8990713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindPackageMessage.cmake 2025-08-14T21:48:27.9002077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\make2cmake.cmake 2025-08-14T21:48:27.9006420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\parse_cubin.cmake 2025-08-14T21:48:27.9009986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\run_nvcc.cmake 2025-08-14T21:48:27.9018705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\select_compute_arch.cmake 2025-08-14T21:48:27.9026631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\cuda.cmake 2025-08-14T21:48:27.9030731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\gflags.cmake 2025-08-14T21:48:27.9034279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\glog.cmake 2025-08-14T21:48:27.9037594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\LoadHIP.cmake 2025-08-14T21:48:27.9045325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\mkl.cmake 2025-08-14T21:48:27.9048927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\mkldnn.cmake 2025-08-14T21:48:27.9052496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\protobuf.cmake 2025-08-14T21:48:27.9056005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\utils.cmake 2025-08-14T21:48:27.9059778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\xpu.cmake 2025-08-14T21:48:27.9067695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Torch\TorchConfig.cmake 2025-08-14T21:48:27.9071175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Torch\TorchConfigVersion.cmake 2025-08-14T21:48:27.9081499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\__init__.py 2025-08-14T21:48:27.9087351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\windows\windows.py 2025-08-14T21:48:27.9090760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\windows\__init__.py 2025-08-14T21:48:27.9097760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\windows\__pycache__\windows.cpython-39.pyc 2025-08-14T21:48:27.9102199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\windows\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:27.9109947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:27.9127105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\semi_structured.py 2025-08-14T21:48:27.9131800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\_semi_structured_conversions.py 2025-08-14T21:48:27.9135752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\_semi_structured_ops.py 2025-08-14T21:48:27.9144246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\_triton_ops.py 2025-08-14T21:48:27.9148718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\_triton_ops_meta.py 2025-08-14T21:48:27.9155511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__init__.py 2025-08-14T21:48:27.9163037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\semi_structured.cpython-39.pyc 2025-08-14T21:48:27.9167207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\_semi_structured_conversions.cpython-39.pyc 2025-08-14T21:48:27.9170597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\_semi_structured_ops.cpython-39.pyc 2025-08-14T21:48:27.9178608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\_triton_ops.cpython-39.pyc 2025-08-14T21:48:27.9182416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\_triton_ops_meta.cpython-39.pyc 2025-08-14T21:48:27.9186969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:27.9195618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\special\__init__.py 2025-08-14T21:48:27.9201602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\special\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:27.9211715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\apply_utils_test.exe 2025-08-14T21:48:27.9216936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\atest.exe 2025-08-14T21:48:27.9222902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\backend_fallback_test.exe 2025-08-14T21:48:27.9227948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\basic.exe 2025-08-14T21:48:27.9238289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\broadcast_test.exe 2025-08-14T21:48:27.9243691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_accumulate_test.exe 2025-08-14T21:48:27.9248649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_AllocatorConfig_test.exe 2025-08-14T21:48:27.9253549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_ArrayRef_test.exe 2025-08-14T21:48:27.9258533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_bfloat16_test.exe 2025-08-14T21:48:27.9263555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Bitset_test.exe 2025-08-14T21:48:27.9268492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_bit_cast_test.exe 2025-08-14T21:48:27.9273463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_CompileTimeFunctionPointer_test.exe 2025-08-14T21:48:27.9278934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_complex_math_test.exe 2025-08-14T21:48:27.9284187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_complex_test.exe 2025-08-14T21:48:27.9290177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_ConstexprCrc_test.exe 2025-08-14T21:48:27.9295386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_cow_test.exe 2025-08-14T21:48:27.9300605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_DeadlockDetection_test.exe 2025-08-14T21:48:27.9305802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_DeviceGuard_test.exe 2025-08-14T21:48:27.9315227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Device_test.exe 2025-08-14T21:48:27.9320265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_DispatchKeySet_test.exe 2025-08-14T21:48:27.9325383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Enumerate_test.exe 2025-08-14T21:48:27.9330287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_error_test.exe 2025-08-14T21:48:27.9335118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_exception_test.exe 2025-08-14T21:48:27.9340056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_flags_test.exe 2025-08-14T21:48:27.9345061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_generic_math_test.exe 2025-08-14T21:48:27.9349942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Half_test.exe 2025-08-14T21:48:27.9355121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_InlineDeviceGuard_test.exe 2025-08-14T21:48:27.9367992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_InlineStreamGuard_test.exe 2025-08-14T21:48:27.9374160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_IntrusiveList_test.exe 2025-08-14T21:48:27.9379224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_intrusive_ptr_benchmark.exe 2025-08-14T21:48:27.9383830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_intrusive_ptr_test.exe 2025-08-14T21:48:27.9394336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_irange_test.exe 2025-08-14T21:48:27.9400568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_lazy_test.exe 2025-08-14T21:48:27.9405583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_LeftRight_test.exe 2025-08-14T21:48:27.9410814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_logging_test.exe 2025-08-14T21:48:27.9420904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Metaprogramming_test.exe 2025-08-14T21:48:27.9425833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_NetworkFlow_test.exe 2025-08-14T21:48:27.9430720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_optional_test.exe 2025-08-14T21:48:27.9436510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_ordered_preserving_dict_test.exe 2025-08-14T21:48:27.9442556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_registry_test.exe 2025-08-14T21:48:27.9448785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Scalar_test.exe 2025-08-14T21:48:27.9453976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Semaphore_test.exe 2025-08-14T21:48:27.9459033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_SizesAndStrides_test.exe 2025-08-14T21:48:27.9464189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_small_vector_test.exe 2025-08-14T21:48:27.9479488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_ssize_test.exe 2025-08-14T21:48:27.9484430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_StreamGuard_test.exe 2025-08-14T21:48:27.9489509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_string_util_test.exe 2025-08-14T21:48:27.9495390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_string_view_test.exe 2025-08-14T21:48:27.9499771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_SymInt_test.exe 2025-08-14T21:48:27.9505227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Synchronized_test.exe 2025-08-14T21:48:27.9510471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_tempfile_test.exe 2025-08-14T21:48:27.9515256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_ThreadLocal_test.exe 2025-08-14T21:48:27.9532446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_typeid_test.exe 2025-08-14T21:48:27.9537459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_TypeIndex_test.exe 2025-08-14T21:48:27.9542801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_TypeList_test.exe 2025-08-14T21:48:27.9547910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_TypeTraits_test.exe 2025-08-14T21:48:27.9553286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\CppSignature_test.exe 2025-08-14T21:48:27.9558719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\cpu_allocator_test.exe 2025-08-14T21:48:27.9563968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\cpu_generator_test.exe 2025-08-14T21:48:27.9569909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\cpu_profiling_allocator_test.exe 2025-08-14T21:48:27.9574943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\cpu_rng_test.exe 2025-08-14T21:48:27.9587919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\Dict_test.exe 2025-08-14T21:48:27.9594104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\Dimname_test.exe 2025-08-14T21:48:27.9599421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\dlconvertor_test.exe 2025-08-14T21:48:27.9604919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\extension_backend_test.exe 2025-08-14T21:48:27.9611044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\half_test.exe 2025-08-14T21:48:27.9616540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\IListRef_test.exe 2025-08-14T21:48:27.9624562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\inline_container_test.exe 2025-08-14T21:48:27.9629105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\ivalue_test.exe 2025-08-14T21:48:27.9636996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\KernelFunction_test.exe 2025-08-14T21:48:27.9649258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\kernel_function_legacy_test.exe 2025-08-14T21:48:27.9656816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\kernel_function_test.exe 2025-08-14T21:48:27.9664499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\kernel_lambda_legacy_test.exe 2025-08-14T21:48:27.9671929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\kernel_lambda_test.exe 2025-08-14T21:48:27.9679053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\kernel_stackbased_test.exe 2025-08-14T21:48:27.9684798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\lazy_tensor_test.exe 2025-08-14T21:48:27.9690287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\legacy_vmap_test.exe 2025-08-14T21:48:27.9697205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\List_test.exe 2025-08-14T21:48:27.9703762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\make_boxed_from_unboxed_functor_test.exe 2025-08-14T21:48:27.9710642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\math_kernel_test.exe 2025-08-14T21:48:27.9716585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\MaybeOwned_test.exe 2025-08-14T21:48:27.9722556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\memory_format_test.exe 2025-08-14T21:48:27.9727664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\memory_overlapping_test.exe 2025-08-14T21:48:27.9732864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\mobile_memory_cleanup.exe 2025-08-14T21:48:27.9738379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\NamedTensor_test.exe 2025-08-14T21:48:27.9744178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\native_test.exe 2025-08-14T21:48:27.9754147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\operators_test.exe 2025-08-14T21:48:27.9759101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\operator_name_test.exe 2025-08-14T21:48:27.9764579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\op_allowlist_test.exe 2025-08-14T21:48:27.9769404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\op_registration_test.exe 2025-08-14T21:48:27.9785795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\packedtensoraccessor_test.exe 2025-08-14T21:48:27.9790945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\pow_test.exe 2025-08-14T21:48:27.9815429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\quantized_test.exe 2025-08-14T21:48:27.9827853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\reduce_ops_test.exe 2025-08-14T21:48:27.9831486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\reportMemoryUsage_test.exe 2025-08-14T21:48:27.9836979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\scalar_tensor_test.exe 2025-08-14T21:48:27.9843705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\scalar_test.exe 2025-08-14T21:48:27.9849102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\StorageUtils_test.exe 2025-08-14T21:48:27.9854834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\stride_properties_test.exe 2025-08-14T21:48:27.9859526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\tensor_iterator_test.exe 2025-08-14T21:48:27.9866937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\test_parallel.exe 2025-08-14T21:48:27.9872538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\thread_init_test.exe 2025-08-14T21:48:27.9877837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\type_ptr_test.exe 2025-08-14T21:48:27.9882722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\type_test.exe 2025-08-14T21:48:27.9895822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\undefined_tensor_test.exe 2025-08-14T21:48:27.9900403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\verify_api_visibility.exe 2025-08-14T21:48:27.9905545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\weakref_test.exe 2025-08-14T21:48:27.9911099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\wrapdim_test.exe 2025-08-14T21:48:27.9917184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\xla_tensor_test.exe 2025-08-14T21:48:27.9932016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_comparison.py 2025-08-14T21:48:27.9936469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_creation.py 2025-08-14T21:48:27.9940043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_utils.py 2025-08-14T21:48:27.9944250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\__init__.py 2025-08-14T21:48:27.9957624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\autocast_test_lists.py 2025-08-14T21:48:27.9961400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\autograd_function_db.py 2025-08-14T21:48:27.9965412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\check_kernel_launches.py 2025-08-14T21:48:27.9974512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_cuda.py 2025-08-14T21:48:27.9978039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_device_type.py 2025-08-14T21:48:27.9981947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_distributed.py 2025-08-14T21:48:27.9985703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_dist_composable.py 2025-08-14T21:48:27.9989367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_dtype.py 2025-08-14T21:48:27.9992783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_fsdp.py 2025-08-14T21:48:27.9996514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_jit.py 2025-08-14T21:48:28.0000440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_methods_invocations.py 2025-08-14T21:48:28.0010501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_mkldnn.py 2025-08-14T21:48:28.0014271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_modules.py 2025-08-14T21:48:28.0018782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_mps.py 2025-08-14T21:48:28.0022682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_nn.py 2025-08-14T21:48:28.0027200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_optimizers.py 2025-08-14T21:48:28.0031500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_pruning.py 2025-08-14T21:48:28.0035252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_quantization.py 2025-08-14T21:48:28.0045473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_quantized.py 2025-08-14T21:48:28.0048379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_subclass.py 2025-08-14T21:48:28.0052054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_utils.py 2025-08-14T21:48:28.0057140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\composite_compliance.py 2025-08-14T21:48:28.0060877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\custom_op_db.py 2025-08-14T21:48:28.0064664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\custom_tensor.py 2025-08-14T21:48:28.0068255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\dist_utils.py 2025-08-14T21:48:28.0071964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\dynamo_test_failures.py 2025-08-14T21:48:28.0075653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\fake_config_module.py 2025-08-14T21:48:28.0079559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\fake_config_module2.py 2025-08-14T21:48:28.0083203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\fake_config_module3.py 2025-08-14T21:48:28.0092506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\hop_db.py 2025-08-14T21:48:28.0095908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\hypothesis_utils.py 2025-08-14T21:48:28.0099583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\inductor_utils.py 2025-08-14T21:48:28.0103742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\jit_metaprogramming_utils.py 2025-08-14T21:48:28.0107307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\jit_utils.py 2025-08-14T21:48:28.0111141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\logging_tensor.py 2025-08-14T21:48:28.0114660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\logging_utils.py 2025-08-14T21:48:28.0118237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\quantization_torch_package_models.py 2025-08-14T21:48:28.0122025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\static_module.py 2025-08-14T21:48:28.0125867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\subclasses.py 2025-08-14T21:48:28.0135298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\torchbind_impls.py 2025-08-14T21:48:28.0138596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\triton_utils.py 2025-08-14T21:48:28.0142081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\two_tensor.py 2025-08-14T21:48:28.0145652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__init__.py 2025-08-14T21:48:28.0152648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\codegen\__init__.py 2025-08-14T21:48:28.0159572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\codegen\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.0167192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\network1.py 2025-08-14T21:48:28.0170391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\network2.py 2025-08-14T21:48:28.0173570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\__init__.py 2025-08-14T21:48:28.0180953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\__pycache__\network1.cpython-39.pyc 2025-08-14T21:48:28.0184366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\__pycache__\network2.cpython-39.pyc 2025-08-14T21:48:28.0187814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.0201240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\checkpoint_utils.py 2025-08-14T21:48:28.0204571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\common_state_dict.py 2025-08-14T21:48:28.0208053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\ddp_under_dist_autograd_test.py 2025-08-14T21:48:28.0218683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\distributed_test.py 2025-08-14T21:48:28.0224831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\distributed_utils.py 2025-08-14T21:48:28.0228217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\fake_pg.py 2025-08-14T21:48:28.0231571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\multi_threaded_pg.py 2025-08-14T21:48:28.0235220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc_utils.py 2025-08-14T21:48:28.0238731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__init__.py 2025-08-14T21:48:28.0245373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\__init__.py 2025-08-14T21:48:28.0251119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\api\remote_module_test.py 2025-08-14T21:48:28.0254857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\api\__init__.py 2025-08-14T21:48:28.0261423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\api\__pycache__\remote_module_test.cpython-39.pyc 2025-08-14T21:48:28.0264992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\api\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.0272268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.0280412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\dist_autograd_test.py 2025-08-14T21:48:28.0284311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\dist_optimizer_test.py 2025-08-14T21:48:28.0287870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\faulty_agent_rpc_test.py 2025-08-14T21:48:28.0295899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\faulty_rpc_agent_test_fixture.py 2025-08-14T21:48:28.0299412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\rpc_agent_test_fixture.py 2025-08-14T21:48:28.0302823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\rpc_test.py 2025-08-14T21:48:28.0307351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\tensorpipe_rpc_agent_test_fixture.py 2025-08-14T21:48:28.0310823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__init__.py 2025-08-14T21:48:28.0316950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\parameter_server_test.py 2025-08-14T21:48:28.0320852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\reinforcement_learning_rpc_test.py 2025-08-14T21:48:28.0324168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\__init__.py 2025-08-14T21:48:28.0335623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\__pycache__\parameter_server_test.cpython-39.pyc 2025-08-14T21:48:28.0339527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\__pycache__\reinforcement_learning_rpc_test.cpython-39.pyc 2025-08-14T21:48:28.0343118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.0356238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\dist_autograd_test.py 2025-08-14T21:48:28.0360105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\rpc_test.py 2025-08-14T21:48:28.0364480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\rpc_test_faulty.py 2025-08-14T21:48:28.0368038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\__init__.py 2025-08-14T21:48:28.0380818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\__pycache__\dist_autograd_test.cpython-39.pyc 2025-08-14T21:48:28.0384404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\__pycache__\rpc_test.cpython-39.pyc 2025-08-14T21:48:28.0388243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\__pycache__\rpc_test_faulty.cpython-39.pyc 2025-08-14T21:48:28.0396768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.0405124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\dist_autograd_test.cpython-39.pyc 2025-08-14T21:48:28.0409198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\dist_optimizer_test.cpython-39.pyc 2025-08-14T21:48:28.0413707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\faulty_agent_rpc_test.cpython-39.pyc 2025-08-14T21:48:28.0422413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\faulty_rpc_agent_test_fixture.cpython-39.pyc 2025-08-14T21:48:28.0426221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\rpc_agent_test_fixture.cpython-39.pyc 2025-08-14T21:48:28.0430137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\rpc_test.cpython-39.pyc 2025-08-14T21:48:28.0435114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\tensorpipe_rpc_agent_test_fixture.cpython-39.pyc 2025-08-14T21:48:28.0438745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.0447402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\test_common.py 2025-08-14T21:48:28.0450906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\__init__.py 2025-08-14T21:48:28.0457878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\_test_ops_common.py 2025-08-14T21:48:28.0461538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\_test_st_common.py 2025-08-14T21:48:28.0465734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\__init__.py 2025-08-14T21:48:28.0479712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\__pycache__\_test_ops_common.cpython-39.pyc 2025-08-14T21:48:28.0483446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\__pycache__\_test_st_common.cpython-39.pyc 2025-08-14T21:48:28.0487160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.0504413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\__pycache__\test_common.cpython-39.pyc 2025-08-14T21:48:28.0508220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.0516452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_tensor\common_dtensor.py 2025-08-14T21:48:28.0520018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_tensor\__init__.py 2025-08-14T21:48:28.0526155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_tensor\__pycache__\common_dtensor.cpython-39.pyc 2025-08-14T21:48:28.0529657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_tensor\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.0538565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\checkpoint_utils.cpython-39.pyc 2025-08-14T21:48:28.0542604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\common_state_dict.cpython-39.pyc 2025-08-14T21:48:28.0546483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\ddp_under_dist_autograd_test.cpython-39.pyc 2025-08-14T21:48:28.0556432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\distributed_test.cpython-39.pyc 2025-08-14T21:48:28.0561705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\distributed_utils.cpython-39.pyc 2025-08-14T21:48:28.0565370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\fake_pg.cpython-39.pyc 2025-08-14T21:48:28.0569178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\multi_threaded_pg.cpython-39.pyc 2025-08-14T21:48:28.0573115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\rpc_utils.cpython-39.pyc 2025-08-14T21:48:28.0576597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.0585230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\generated\annotated_fn_args.py 2025-08-14T21:48:28.0593353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\generated\__init__.py 2025-08-14T21:48:28.0599909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\generated\__pycache__\annotated_fn_args.cpython-39.pyc 2025-08-14T21:48:28.0604171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\generated\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.0612084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\core.py 2025-08-14T21:48:28.0616145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\refs.py 2025-08-14T21:48:28.0619564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\utils.py 2025-08-14T21:48:28.0622774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\__init__.py 2025-08-14T21:48:28.0629606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\fft.py 2025-08-14T21:48:28.0633113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\linalg.py 2025-08-14T21:48:28.0637078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\nested.py 2025-08-14T21:48:28.0641911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\signal.py 2025-08-14T21:48:28.0645549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\sparse.py 2025-08-14T21:48:28.0649058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\special.py 2025-08-14T21:48:28.0657936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\_masked.py 2025-08-14T21:48:28.0662033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__init__.py 2025-08-14T21:48:28.0669393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\fft.cpython-39.pyc 2025-08-14T21:48:28.0673112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\linalg.cpython-39.pyc 2025-08-14T21:48:28.0676499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\nested.cpython-39.pyc 2025-08-14T21:48:28.0684655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\signal.cpython-39.pyc 2025-08-14T21:48:28.0688345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\sparse.cpython-39.pyc 2025-08-14T21:48:28.0691852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\special.cpython-39.pyc 2025-08-14T21:48:28.0695466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\_masked.cpython-39.pyc 2025-08-14T21:48:28.0698998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.0712562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\__pycache__\core.cpython-39.pyc 2025-08-14T21:48:28.0716317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\__pycache__\refs.cpython-39.pyc 2025-08-14T21:48:28.0720205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:28.0730309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.0737897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\aot_autograd.py 2025-08-14T21:48:28.0741245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\autograd_registration.py 2025-08-14T21:48:28.0744523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\fake_tensor.py 2025-08-14T21:48:28.0747939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\generate_tests.py 2025-08-14T21:48:28.0760352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\make_fx.py 2025-08-14T21:48:28.0763654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__init__.py 2025-08-14T21:48:28.0770756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\aot_autograd.cpython-39.pyc 2025-08-14T21:48:28.0774390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\autograd_registration.cpython-39.pyc 2025-08-14T21:48:28.0777749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\fake_tensor.cpython-39.pyc 2025-08-14T21:48:28.0786442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\generate_tests.cpython-39.pyc 2025-08-14T21:48:28.0790007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\make_fx.cpython-39.pyc 2025-08-14T21:48:28.0794458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.0802683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\future_div.py 2025-08-14T21:48:28.0807032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\no_future_div.py 2025-08-14T21:48:28.0810395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\__init__.py 2025-08-14T21:48:28.0821740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\__pycache__\future_div.cpython-39.pyc 2025-08-14T21:48:28.0825313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\__pycache__\no_future_div.cpython-39.pyc 2025-08-14T21:48:28.0828762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.0844342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\autocast_test_lists.cpython-39.pyc 2025-08-14T21:48:28.0847909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\autograd_function_db.cpython-39.pyc 2025-08-14T21:48:28.0851635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\check_kernel_launches.cpython-39.pyc 2025-08-14T21:48:28.0861610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_cuda.cpython-39.pyc 2025-08-14T21:48:28.0865126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_device_type.cpython-39.pyc 2025-08-14T21:48:28.0868817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_distributed.cpython-39.pyc 2025-08-14T21:48:28.0872748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_dist_composable.cpython-39.pyc 2025-08-14T21:48:28.0876259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_dtype.cpython-39.pyc 2025-08-14T21:48:28.0879759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_fsdp.cpython-39.pyc 2025-08-14T21:48:28.0883670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_jit.cpython-39.pyc 2025-08-14T21:48:28.0887187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_methods_invocations.cpython-39.pyc 2025-08-14T21:48:28.0895169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_mkldnn.cpython-39.pyc 2025-08-14T21:48:28.0899022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_modules.cpython-39.pyc 2025-08-14T21:48:28.0903422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_mps.cpython-39.pyc 2025-08-14T21:48:28.0907336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_nn.cpython-39.pyc 2025-08-14T21:48:28.0912699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_optimizers.cpython-39.pyc 2025-08-14T21:48:28.0921037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_pruning.cpython-39.pyc 2025-08-14T21:48:28.0924803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_quantization.cpython-39.pyc 2025-08-14T21:48:28.0929039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_quantized.cpython-39.pyc 2025-08-14T21:48:28.0932821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_subclass.cpython-39.pyc 2025-08-14T21:48:28.0936752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_utils.cpython-39.pyc 2025-08-14T21:48:28.0941794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\composite_compliance.cpython-39.pyc 2025-08-14T21:48:28.0945622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\custom_op_db.cpython-39.pyc 2025-08-14T21:48:28.0949393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\custom_tensor.cpython-39.pyc 2025-08-14T21:48:28.0953910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\dist_utils.cpython-39.pyc 2025-08-14T21:48:28.0957720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\dynamo_test_failures.cpython-39.pyc 2025-08-14T21:48:28.0961799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\fake_config_module.cpython-39.pyc 2025-08-14T21:48:28.0969637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\fake_config_module2.cpython-39.pyc 2025-08-14T21:48:28.0973308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\fake_config_module3.cpython-39.pyc 2025-08-14T21:48:28.0976880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\hop_db.cpython-39.pyc 2025-08-14T21:48:28.0980445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\hypothesis_utils.cpython-39.pyc 2025-08-14T21:48:28.0984419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\inductor_utils.cpython-39.pyc 2025-08-14T21:48:28.0987890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\jit_metaprogramming_utils.cpython-39.pyc 2025-08-14T21:48:28.0992314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\jit_utils.cpython-39.pyc 2025-08-14T21:48:28.0996113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\logging_tensor.cpython-39.pyc 2025-08-14T21:48:28.1028925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\logging_utils.cpython-39.pyc 2025-08-14T21:48:28.1032574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\quantization_torch_package_models.cpython-39.pyc 2025-08-14T21:48:28.1036358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\static_module.cpython-39.pyc 2025-08-14T21:48:28.1040126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\subclasses.cpython-39.pyc 2025-08-14T21:48:28.1044035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\torchbind_impls.cpython-39.pyc 2025-08-14T21:48:28.1047699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\triton_utils.cpython-39.pyc 2025-08-14T21:48:28.1051355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\two_tensor.cpython-39.pyc 2025-08-14T21:48:28.1054894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.1071670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\__pycache__\_comparison.cpython-39.pyc 2025-08-14T21:48:28.1076086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\__pycache__\_creation.cpython-39.pyc 2025-08-14T21:48:28.1079907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:48:28.1087829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.1096621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\backend_registration.py 2025-08-14T21:48:28.1100298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\bundled_inputs.py 2025-08-14T21:48:28.1103858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\checkpoint.py 2025-08-14T21:48:28.1107904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\collect_env.py 2025-08-14T21:48:28.1116493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\cpp_backtrace.py 2025-08-14T21:48:28.1120702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\cpp_extension.py 2025-08-14T21:48:28.1125532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\deterministic.py 2025-08-14T21:48:28.1129003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\dlpack.py 2025-08-14T21:48:28.1132450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\file_baton.py 2025-08-14T21:48:28.1135830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\flop_counter.py 2025-08-14T21:48:28.1139379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hooks.py 2025-08-14T21:48:28.1142740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\mkldnn.py 2025-08-14T21:48:28.1146115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\mobile_optimizer.py 2025-08-14T21:48:28.1149543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_zoo.py 2025-08-14T21:48:28.1153562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\module_tracker.py 2025-08-14T21:48:28.1157551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\show_pickle.py 2025-08-14T21:48:28.1161180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\throughput_benchmark.py 2025-08-14T21:48:28.1164618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\weak.py 2025-08-14T21:48:28.1168104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_appending_byte_serializer.py 2025-08-14T21:48:28.1171601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_backport_slots.py 2025-08-14T21:48:28.1175153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_config_module.py 2025-08-14T21:48:28.1183804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_config_typing.pyi 2025-08-14T21:48:28.1187226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_content_store.py 2025-08-14T21:48:28.1190813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_contextlib.py 2025-08-14T21:48:28.1194463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_cpp_embed_headers.py 2025-08-14T21:48:28.1198666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_cpp_extension_versioner.py 2025-08-14T21:48:28.1202145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_cxx_pytree.py 2025-08-14T21:48:28.1205583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_device.py 2025-08-14T21:48:28.1209083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_dtype_abbrs.py 2025-08-14T21:48:28.1212465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_exposed_in.py 2025-08-14T21:48:28.1215932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_filelock.py 2025-08-14T21:48:28.1225425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_foreach_utils.py 2025-08-14T21:48:28.1229290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_functools.py 2025-08-14T21:48:28.1233084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_get_clean_triton.py 2025-08-14T21:48:28.1236380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_helion.py 2025-08-14T21:48:28.1239842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_import_utils.py 2025-08-14T21:48:28.1243260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_mode_utils.py 2025-08-14T21:48:28.1246559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_ordered_set.py 2025-08-14T21:48:28.1250090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_python_dispatch.py 2025-08-14T21:48:28.1253581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_pytree.py 2025-08-14T21:48:28.1257511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_stats.py 2025-08-14T21:48:28.1265000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_thunk.py 2025-08-14T21:48:28.1268548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_traceback.py 2025-08-14T21:48:28.1271976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_triton.py 2025-08-14T21:48:28.1275274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_typing_utils.py 2025-08-14T21:48:28.1278674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_zip.py 2025-08-14T21:48:28.1282181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__init__.py 2025-08-14T21:48:28.1289207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\backcompat\__init__.py 2025-08-14T21:48:28.1296671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\backcompat\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.1304130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\__init__.py 2025-08-14T21:48:28.1311032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\compare.py 2025-08-14T21:48:28.1314013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\fuzzer.py 2025-08-14T21:48:28.1317214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\op_benchmark.py 2025-08-14T21:48:28.1320521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\simple_timeit.py 2025-08-14T21:48:28.1323913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\spectral_ops_fuzz_test.py 2025-08-14T21:48:28.1333053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__init__.py 2025-08-14T21:48:28.1339976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\compare.cpython-39.pyc 2025-08-14T21:48:28.1343760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\fuzzer.cpython-39.pyc 2025-08-14T21:48:28.1347258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\op_benchmark.cpython-39.pyc 2025-08-14T21:48:28.1356291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\simple_timeit.cpython-39.pyc 2025-08-14T21:48:28.1360781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\spectral_ops_fuzz_test.cpython-39.pyc 2025-08-14T21:48:28.1364234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.1371939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\binary.py 2025-08-14T21:48:28.1375188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\sparse_binary.py 2025-08-14T21:48:28.1378590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\sparse_unary.py 2025-08-14T21:48:28.1382466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\spectral.py 2025-08-14T21:48:28.1390797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\unary.py 2025-08-14T21:48:28.1393981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__init__.py 2025-08-14T21:48:28.1400401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\binary.cpython-39.pyc 2025-08-14T21:48:28.1404166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\sparse_binary.cpython-39.pyc 2025-08-14T21:48:28.1407644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\sparse_unary.cpython-39.pyc 2025-08-14T21:48:28.1415668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\spectral.cpython-39.pyc 2025-08-14T21:48:28.1419060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\unary.cpython-39.pyc 2025-08-14T21:48:28.1422760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.1430357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\common.py 2025-08-14T21:48:28.1433681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\compare.py 2025-08-14T21:48:28.1437166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\compile.py 2025-08-14T21:48:28.1440481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\cpp_jit.py 2025-08-14T21:48:28.1443678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\fuzzer.py 2025-08-14T21:48:28.1447026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\sparse_fuzzer.py 2025-08-14T21:48:28.1455299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\timeit_template.cpp 2025-08-14T21:48:28.1458706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\timer.py 2025-08-14T21:48:28.1462273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\_stubs.py 2025-08-14T21:48:28.1465522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__init__.py 2025-08-14T21:48:28.1471682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\callgrind.h 2025-08-14T21:48:28.1475418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\compat_bindings.cpp 2025-08-14T21:48:28.1479007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\timer_callgrind_template.cpp 2025-08-14T21:48:28.1487113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\timer_interface.py 2025-08-14T21:48:28.1491357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\valgrind.h 2025-08-14T21:48:28.1497232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\__init__.py 2025-08-14T21:48:28.1503725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\__pycache__\timer_interface.cpython-39.pyc 2025-08-14T21:48:28.1507428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.1515764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\common.cpython-39.pyc 2025-08-14T21:48:28.1519169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\compare.cpython-39.pyc 2025-08-14T21:48:28.1522662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\compile.cpython-39.pyc 2025-08-14T21:48:28.1530835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\cpp_jit.cpython-39.pyc 2025-08-14T21:48:28.1534415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\fuzzer.cpython-39.pyc 2025-08-14T21:48:28.1537995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\sparse_fuzzer.cpython-39.pyc 2025-08-14T21:48:28.1541422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\timer.cpython-39.pyc 2025-08-14T21:48:28.1545267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\_stubs.cpython-39.pyc 2025-08-14T21:48:28.1548872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.1562030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.1569994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\bottleneck\__init__.py 2025-08-14T21:48:28.1572615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\bottleneck\__main__.py 2025-08-14T21:48:28.1579423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\bottleneck\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.1583114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\bottleneck\__pycache__\__main__.cpython-39.pyc 2025-08-14T21:48:28.1591191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\backward_compatibility.py 2025-08-14T21:48:28.1594733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\dataloader.py 2025-08-14T21:48:28.1598453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\dataset.py 2025-08-14T21:48:28.1601969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\distributed.py 2025-08-14T21:48:28.1609765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\graph.py 2025-08-14T21:48:28.1613239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\graph_settings.py 2025-08-14T21:48:28.1616444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\sampler.py 2025-08-14T21:48:28.1620047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__init__.py 2025-08-14T21:48:28.1627555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\datapipe.py 2025-08-14T21:48:28.1631061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\datapipe.pyi 2025-08-14T21:48:28.1634572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\gen_pyi.py 2025-08-14T21:48:28.1638009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\_decorator.py 2025-08-14T21:48:28.1641913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\_hook_iterator.py 2025-08-14T21:48:28.1650760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\_typing.py 2025-08-14T21:48:28.1654917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__init__.py 2025-08-14T21:48:28.1662590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\dataframes.py 2025-08-14T21:48:28.1666830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\dataframe_wrapper.py 2025-08-14T21:48:28.1670486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\datapipes.py 2025-08-14T21:48:28.1678694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\structures.py 2025-08-14T21:48:28.1682274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__init__.py 2025-08-14T21:48:28.1689409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__pycache__\dataframes.cpython-39.pyc 2025-08-14T21:48:28.1693249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__pycache__\dataframe_wrapper.cpython-39.pyc 2025-08-14T21:48:28.1697016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__pycache__\datapipes.cpython-39.pyc 2025-08-14T21:48:28.1705141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__pycache__\structures.cpython-39.pyc 2025-08-14T21:48:28.1708775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.1716478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\callable.py 2025-08-14T21:48:28.1719938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\combinatorics.py 2025-08-14T21:48:28.1723505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\combining.py 2025-08-14T21:48:28.1727034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\filelister.py 2025-08-14T21:48:28.1736310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\fileopener.py 2025-08-14T21:48:28.1739686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\grouping.py 2025-08-14T21:48:28.1742961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\routeddecoder.py 2025-08-14T21:48:28.1746325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\selecting.py 2025-08-14T21:48:28.1749688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\sharding.py 2025-08-14T21:48:28.1752961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\streamreader.py 2025-08-14T21:48:28.1756988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\utils.py 2025-08-14T21:48:28.1760551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__init__.py 2025-08-14T21:48:28.1768493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\callable.cpython-39.pyc 2025-08-14T21:48:28.1771943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\combinatorics.cpython-39.pyc 2025-08-14T21:48:28.1775362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\combining.cpython-39.pyc 2025-08-14T21:48:28.1784545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\filelister.cpython-39.pyc 2025-08-14T21:48:28.1787957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\fileopener.cpython-39.pyc 2025-08-14T21:48:28.1791442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\grouping.cpython-39.pyc 2025-08-14T21:48:28.1795226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\routeddecoder.cpython-39.pyc 2025-08-14T21:48:28.1799585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\selecting.cpython-39.pyc 2025-08-14T21:48:28.1803116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\sharding.cpython-39.pyc 2025-08-14T21:48:28.1806585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\streamreader.cpython-39.pyc 2025-08-14T21:48:28.1810071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:28.1813704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.1821354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\callable.py 2025-08-14T21:48:28.1824688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\combinatorics.py 2025-08-14T21:48:28.1828054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\combining.py 2025-08-14T21:48:28.1831474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\grouping.py 2025-08-14T21:48:28.1834837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\utils.py 2025-08-14T21:48:28.1843170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__init__.py 2025-08-14T21:48:28.1850131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\callable.cpython-39.pyc 2025-08-14T21:48:28.1853736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\combinatorics.cpython-39.pyc 2025-08-14T21:48:28.1857189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\combining.cpython-39.pyc 2025-08-14T21:48:28.1865187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\grouping.cpython-39.pyc 2025-08-14T21:48:28.1869020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:28.1872476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.1880120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\common.py 2025-08-14T21:48:28.1883415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\decoder.py 2025-08-14T21:48:28.1887472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\snapshot.py 2025-08-14T21:48:28.1890870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\__init__.py 2025-08-14T21:48:28.1897044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\__pycache__\common.cpython-39.pyc 2025-08-14T21:48:28.1900785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\__pycache__\decoder.cpython-39.pyc 2025-08-14T21:48:28.1904265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\__pycache__\snapshot.cpython-39.pyc 2025-08-14T21:48:28.1912276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.1920162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\datapipe.cpython-39.pyc 2025-08-14T21:48:28.1923922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\gen_pyi.cpython-39.pyc 2025-08-14T21:48:28.1927950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\_decorator.cpython-39.pyc 2025-08-14T21:48:28.1935992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\_hook_iterator.cpython-39.pyc 2025-08-14T21:48:28.1939482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\_typing.cpython-39.pyc 2025-08-14T21:48:28.1942843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.1951497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\collate.py 2025-08-14T21:48:28.1954937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\fetch.py 2025-08-14T21:48:28.1958240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\pin_memory.py 2025-08-14T21:48:28.1961742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\signal_handling.py 2025-08-14T21:48:28.1965122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\worker.py 2025-08-14T21:48:28.1973200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__init__.py 2025-08-14T21:48:28.1980278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\collate.cpython-39.pyc 2025-08-14T21:48:28.1983903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\fetch.cpython-39.pyc 2025-08-14T21:48:28.1987514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\pin_memory.cpython-39.pyc 2025-08-14T21:48:28.1996004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\signal_handling.cpython-39.pyc 2025-08-14T21:48:28.1999836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\worker.cpython-39.pyc 2025-08-14T21:48:28.2003333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.2011582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\backward_compatibility.cpython-39.pyc 2025-08-14T21:48:28.2015605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\dataloader.cpython-39.pyc 2025-08-14T21:48:28.2019290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\dataset.cpython-39.pyc 2025-08-14T21:48:28.2029165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\distributed.cpython-39.pyc 2025-08-14T21:48:28.2032738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\graph.cpython-39.pyc 2025-08-14T21:48:28.2036222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\graph_settings.cpython-39.pyc 2025-08-14T21:48:28.2039976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\sampler.cpython-39.pyc 2025-08-14T21:48:28.2043511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.2051597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\constants.py 2025-08-14T21:48:28.2055129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\cuda_to_hip_mappings.py 2025-08-14T21:48:28.2060733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\hipify_python.py 2025-08-14T21:48:28.2064573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\version.py 2025-08-14T21:48:28.2073303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__init__.py 2025-08-14T21:48:28.2080709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__pycache__\constants.cpython-39.pyc 2025-08-14T21:48:28.2084983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__pycache__\cuda_to_hip_mappings.cpython-39.pyc 2025-08-14T21:48:28.2089852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__pycache__\hipify_python.cpython-39.pyc 2025-08-14T21:48:28.2098285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__pycache__\version.cpython-39.pyc 2025-08-14T21:48:28.2101765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.2125819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\jit\log_extract.py 2025-08-14T21:48:28.2129179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\jit\__init__.py 2025-08-14T21:48:28.2135782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\jit\__pycache__\log_extract.cpython-39.pyc 2025-08-14T21:48:28.2139359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\jit\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.2146866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\code.js 2025-08-14T21:48:28.2150941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\htm.mjs 2025-08-14T21:48:28.2154753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\preact.mjs 2025-08-14T21:48:28.2158757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\skeleton.html 2025-08-14T21:48:28.2162651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\__init__.py 2025-08-14T21:48:28.2171360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\__main__.py 2025-08-14T21:48:28.2178495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.2182129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\__pycache__\__main__.cpython-39.pyc 2025-08-14T21:48:28.2189925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\serialization\config.py 2025-08-14T21:48:28.2193446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\serialization\__init__.py 2025-08-14T21:48:28.2200617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\serialization\__pycache__\config.cpython-39.pyc 2025-08-14T21:48:28.2204490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\serialization\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.2211937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\summary.py 2025-08-14T21:48:28.2215482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\writer.py 2025-08-14T21:48:28.2219068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_convert_np.py 2025-08-14T21:48:28.2222466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_embedding.py 2025-08-14T21:48:28.2230952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_onnx_graph.py 2025-08-14T21:48:28.2234338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_proto_graph.py 2025-08-14T21:48:28.2237771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_pytorch_graph.py 2025-08-14T21:48:28.2242042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_utils.py 2025-08-14T21:48:28.2245358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__init__.py 2025-08-14T21:48:28.2252661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\summary.cpython-39.pyc 2025-08-14T21:48:28.2256245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\writer.cpython-39.pyc 2025-08-14T21:48:28.2259772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_convert_np.cpython-39.pyc 2025-08-14T21:48:28.2268628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_embedding.cpython-39.pyc 2025-08-14T21:48:28.2272069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_onnx_graph.cpython-39.pyc 2025-08-14T21:48:28.2275969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_proto_graph.cpython-39.pyc 2025-08-14T21:48:28.2279592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_pytorch_graph.cpython-39.pyc 2025-08-14T21:48:28.2283079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:48:28.2287169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.2294743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\viz\_cycles.py 2025-08-14T21:48:28.2298056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\viz\__init__.py 2025-08-14T21:48:28.2304662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\viz\__pycache__\_cycles.cpython-39.pyc 2025-08-14T21:48:28.2308075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\viz\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.2316125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_strobelight\cli_function_profiler.py 2025-08-14T21:48:28.2319681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_strobelight\__init__.py 2025-08-14T21:48:28.2325760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_strobelight\__pycache__\cli_function_profiler.cpython-39.pyc 2025-08-14T21:48:28.2329265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_strobelight\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.2337728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\functions.py 2025-08-14T21:48:28.2341299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\interp.py 2025-08-14T21:48:28.2344565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\numbers.py 2025-08-14T21:48:28.2347758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\printers.py 2025-08-14T21:48:28.2351156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\reference.py 2025-08-14T21:48:28.2359814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\singleton_int.py 2025-08-14T21:48:28.2363126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\solve.py 2025-08-14T21:48:28.2366719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\symbol.py 2025-08-14T21:48:28.2369972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\value_ranges.py 2025-08-14T21:48:28.2374884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__init__.py 2025-08-14T21:48:28.2380629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\functions.cpython-39.pyc 2025-08-14T21:48:28.2384102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\interp.cpython-39.pyc 2025-08-14T21:48:28.2387476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\numbers.cpython-39.pyc 2025-08-14T21:48:28.2395324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\printers.cpython-39.pyc 2025-08-14T21:48:28.2398899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\reference.cpython-39.pyc 2025-08-14T21:48:28.2402446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\singleton_int.cpython-39.pyc 2025-08-14T21:48:28.2406249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\solve.cpython-39.pyc 2025-08-14T21:48:28.2409784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\symbol.cpython-39.pyc 2025-08-14T21:48:28.2413241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\value_ranges.cpython-39.pyc 2025-08-14T21:48:28.2416757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.2425280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\backend_registration.cpython-39.pyc 2025-08-14T21:48:28.2428680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\bundled_inputs.cpython-39.pyc 2025-08-14T21:48:28.2432264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\checkpoint.cpython-39.pyc 2025-08-14T21:48:28.2441018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\collect_env.cpython-39.pyc 2025-08-14T21:48:28.2444517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\cpp_backtrace.cpython-39.pyc 2025-08-14T21:48:28.2448076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\cpp_extension.cpython-39.pyc 2025-08-14T21:48:28.2451893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\deterministic.cpython-39.pyc 2025-08-14T21:48:28.2455336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\dlpack.cpython-39.pyc 2025-08-14T21:48:28.2458789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\file_baton.cpython-39.pyc 2025-08-14T21:48:28.2462394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\flop_counter.cpython-39.pyc 2025-08-14T21:48:28.2465910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\hooks.cpython-39.pyc 2025-08-14T21:48:28.2469445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\mkldnn.cpython-39.pyc 2025-08-14T21:48:28.2472837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\mobile_optimizer.cpython-39.pyc 2025-08-14T21:48:28.2476238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\model_zoo.cpython-39.pyc 2025-08-14T21:48:28.2479852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\module_tracker.cpython-39.pyc 2025-08-14T21:48:28.2483297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\show_pickle.cpython-39.pyc 2025-08-14T21:48:28.2486958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\throughput_benchmark.cpython-39.pyc 2025-08-14T21:48:28.2494825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\weak.cpython-39.pyc 2025-08-14T21:48:28.2498390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_appending_byte_serializer.cpython-39.pyc 2025-08-14T21:48:28.2501791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_backport_slots.cpython-39.pyc 2025-08-14T21:48:28.2505838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_config_module.cpython-39.pyc 2025-08-14T21:48:28.2511379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_content_store.cpython-39.pyc 2025-08-14T21:48:28.2517213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_contextlib.cpython-39.pyc 2025-08-14T21:48:28.2522574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_cpp_embed_headers.cpython-39.pyc 2025-08-14T21:48:28.2535060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_cpp_extension_versioner.cpython-39.pyc 2025-08-14T21:48:28.2539530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_cxx_pytree.cpython-39.pyc 2025-08-14T21:48:28.2544592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_device.cpython-39.pyc 2025-08-14T21:48:28.2549585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_dtype_abbrs.cpython-39.pyc 2025-08-14T21:48:28.2554596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_exposed_in.cpython-39.pyc 2025-08-14T21:48:28.2559131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_filelock.cpython-39.pyc 2025-08-14T21:48:28.2563077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_foreach_utils.cpython-39.pyc 2025-08-14T21:48:28.2567057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_functools.cpython-39.pyc 2025-08-14T21:48:28.2570610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_get_clean_triton.cpython-39.pyc 2025-08-14T21:48:28.7682232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_helion.cpython-39.pyc 2025-08-14T21:48:28.7686801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_import_utils.cpython-39.pyc 2025-08-14T21:48:28.7690854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_mode_utils.cpython-39.pyc 2025-08-14T21:48:28.7694553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_ordered_set.cpython-39.pyc 2025-08-14T21:48:28.7698288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_python_dispatch.cpython-39.pyc 2025-08-14T21:48:28.7702170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_pytree.cpython-39.pyc 2025-08-14T21:48:28.7705985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_stats.cpython-39.pyc 2025-08-14T21:48:28.7709718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_thunk.cpython-39.pyc 2025-08-14T21:48:28.7943497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_traceback.cpython-39.pyc 2025-08-14T21:48:28.7946724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_triton.cpython-39.pyc 2025-08-14T21:48:28.7950215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_typing_utils.cpython-39.pyc 2025-08-14T21:48:28.7953799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_zip.cpython-39.pyc 2025-08-14T21:48:28.7957382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.7967997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\memory.py 2025-08-14T21:48:28.7971282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\random.py 2025-08-14T21:48:28.7975110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\streams.py 2025-08-14T21:48:28.7978436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\_gpu_trace.py 2025-08-14T21:48:28.7981767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\_utils.py 2025-08-14T21:48:28.7984991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__init__.py 2025-08-14T21:48:28.7997936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\memory.cpython-39.pyc 2025-08-14T21:48:28.8001203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\random.cpython-39.pyc 2025-08-14T21:48:28.8004596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\streams.cpython-39.pyc 2025-08-14T21:48:28.8012619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\_gpu_trace.cpython-39.pyc 2025-08-14T21:48:28.8016233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:48:28.8019580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.8027194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_awaits\__init__.py 2025-08-14T21:48:28.8034092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_awaits\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.8042035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_aoti.pyi 2025-08-14T21:48:28.8045500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_autograd.pyi 2025-08-14T21:48:28.8048946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_cpu.pyi 2025-08-14T21:48:28.8052167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_cudnn.pyi 2025-08-14T21:48:28.8055964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_cusparselt.pyi 2025-08-14T21:48:28.8063974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_distributed_autograd.pyi 2025-08-14T21:48:28.8067514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_distributed_c10d.pyi 2025-08-14T21:48:28.8074142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_distributed_rpc.pyi 2025-08-14T21:48:28.8077849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_distributed_rpc_testing.pyi 2025-08-14T21:48:28.8081624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_functions.pyi 2025-08-14T21:48:28.8085256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_functorch.pyi 2025-08-14T21:48:28.8088911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_instruction_counter.pyi 2025-08-14T21:48:28.8092295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_itt.pyi 2025-08-14T21:48:28.8095834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_jit_tree_views.pyi 2025-08-14T21:48:28.8099335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_lazy.pyi 2025-08-14T21:48:28.8102730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_lazy_ts_backend.pyi 2025-08-14T21:48:28.8106910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_monitor.pyi 2025-08-14T21:48:28.8110352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_nn.pyi 2025-08-14T21:48:28.8113857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_nvtx.pyi 2025-08-14T21:48:28.8117618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_onnx.pyi 2025-08-14T21:48:28.8120825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_profiler.pyi 2025-08-14T21:48:28.8124372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_VariableFunctions.pyi 2025-08-14T21:48:28.8134954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_verbose.pyi 2025-08-14T21:48:28.8143912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\__init__.pyi 2025-08-14T21:48:28.8153335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_dynamo\compiled_autograd.pyi 2025-08-14T21:48:28.8157071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_dynamo\eval_frame.pyi 2025-08-14T21:48:28.8160573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_dynamo\guards.pyi 2025-08-14T21:48:28.8164181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_dynamo\__init__.pyi 2025-08-14T21:48:28.8171299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_export\pt2_archive_constants.pyi 2025-08-14T21:48:28.8174888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_export\__init__.pyi 2025-08-14T21:48:28.8183412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\autograd.py 2025-08-14T21:48:28.8187271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\impl.py 2025-08-14T21:48:28.8191599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\__init__.py 2025-08-14T21:48:28.8198691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\__pycache__\autograd.cpython-39.pyc 2025-08-14T21:48:28.8202837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\__pycache__\impl.cpython-39.pyc 2025-08-14T21:48:28.8206973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.8220289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C_flatbuffer\__init__.pyi 2025-08-14T21:48:28.8227697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\decompositions.py 2025-08-14T21:48:28.8231966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\decompositions_for_jvp.py 2025-08-14T21:48:28.8235929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\decompositions_for_rng.py 2025-08-14T21:48:28.8243857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\__init__.py 2025-08-14T21:48:28.8252241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\__pycache__\decompositions.cpython-39.pyc 2025-08-14T21:48:28.8257786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\__pycache__\decompositions_for_jvp.cpython-39.pyc 2025-08-14T21:48:28.8262376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\__pycache__\decompositions_for_rng.cpython-39.pyc 2025-08-14T21:48:28.8270864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.8279336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dispatch\python.py 2025-08-14T21:48:28.8282948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dispatch\__init__.py 2025-08-14T21:48:28.8288816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dispatch\__pycache__\python.cpython-39.pyc 2025-08-14T21:48:28.8292297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dispatch\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.8300330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\bytecode_analysis.py 2025-08-14T21:48:28.8303737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\bytecode_transformation.py 2025-08-14T21:48:28.8307622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\cache_size.py 2025-08-14T21:48:28.8315669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\callback.py 2025-08-14T21:48:28.8319350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\codegen.py 2025-08-14T21:48:28.8322486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\code_context.py 2025-08-14T21:48:28.8325945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\compiled_autograd.py 2025-08-14T21:48:28.8329599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\comptime.py 2025-08-14T21:48:28.8333199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\config.py 2025-08-14T21:48:28.8336466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\convert_frame.py 2025-08-14T21:48:28.8340500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\create_parameter_op.py 2025-08-14T21:48:28.8343727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\current_scope_id.py 2025-08-14T21:48:28.8347372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\debug_utils.py 2025-08-14T21:48:28.8350959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\decorators.py 2025-08-14T21:48:28.8354575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\device_interface.py 2025-08-14T21:48:28.8357972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\distributed.py 2025-08-14T21:48:28.8361529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\eval_frame.py 2025-08-14T21:48:28.8365540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\exc.py 2025-08-14T21:48:28.8369091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\external_utils.py 2025-08-14T21:48:28.8372533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\funcname_cache.py 2025-08-14T21:48:28.8376276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\graph_break_hints.py 2025-08-14T21:48:28.8386530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\graph_break_registry.json 2025-08-14T21:48:28.8390570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\graph_deduplication.py 2025-08-14T21:48:28.8394739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\graph_region_tracker.py 2025-08-14T21:48:28.8398168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\graph_utils.py 2025-08-14T21:48:28.8401954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\guards.py 2025-08-14T21:48:28.8406934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\hooks.py 2025-08-14T21:48:28.8410287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\logging.py 2025-08-14T21:48:28.8413691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\metrics_context.py 2025-08-14T21:48:28.8417428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\mutation_guard.py 2025-08-14T21:48:28.8421272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\output_graph.py 2025-08-14T21:48:28.8425848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\package.py 2025-08-14T21:48:28.8434078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\pgo.py 2025-08-14T21:48:28.8437576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\precompile_context.py 2025-08-14T21:48:28.8441069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\profiler.py 2025-08-14T21:48:28.8444358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\replay_record.py 2025-08-14T21:48:28.8447900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\resume_execution.py 2025-08-14T21:48:28.8451529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\side_effects.py 2025-08-14T21:48:28.8455115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\source.py 2025-08-14T21:48:28.8458614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\symbolic_convert.py 2025-08-14T21:48:28.8462965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\tensor_version_op.py 2025-08-14T21:48:28.8466363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\testing.py 2025-08-14T21:48:28.8469785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\test_case.py 2025-08-14T21:48:28.8473226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\test_dont_skip_tracing_functions.py 2025-08-14T21:48:28.8481362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\test_minifier_common.py 2025-08-14T21:48:28.8484941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\trace_rules.py 2025-08-14T21:48:28.8489164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\types.py 2025-08-14T21:48:28.8492550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\utils.py 2025-08-14T21:48:28.8497060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\_trace_wrapped_higher_order_op.py 2025-08-14T21:48:28.8500510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__init__.py 2025-08-14T21:48:28.8507357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\common.py 2025-08-14T21:48:28.8510628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\cudagraphs.py 2025-08-14T21:48:28.8532168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\debugging.py 2025-08-14T21:48:28.8536305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\distributed.py 2025-08-14T21:48:28.8544304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\inductor.py 2025-08-14T21:48:28.8547554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\onnxrt.py 2025-08-14T21:48:28.8551189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\registry.py 2025-08-14T21:48:28.8554323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\tensorrt.py 2025-08-14T21:48:28.8557510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\torchxla.py 2025-08-14T21:48:28.8560821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\tvm.py 2025-08-14T21:48:28.8564085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__init__.py 2025-08-14T21:48:28.8570408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\common.cpython-39.pyc 2025-08-14T21:48:28.8574174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\cudagraphs.cpython-39.pyc 2025-08-14T21:48:28.8577707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\debugging.cpython-39.pyc 2025-08-14T21:48:28.8586060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\distributed.cpython-39.pyc 2025-08-14T21:48:28.8589492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\inductor.cpython-39.pyc 2025-08-14T21:48:28.8593668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\onnxrt.cpython-39.pyc 2025-08-14T21:48:28.8598086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\registry.cpython-39.pyc 2025-08-14T21:48:28.8602032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\tensorrt.cpython-39.pyc 2025-08-14T21:48:28.8605609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\torchxla.cpython-39.pyc 2025-08-14T21:48:28.8609692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\tvm.cpython-39.pyc 2025-08-14T21:48:28.8612839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.8621471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\builtins.py 2025-08-14T21:48:28.8625188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\functools.py 2025-08-14T21:48:28.8628506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\fx.py 2025-08-14T21:48:28.8631697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\itertools.py 2025-08-14T21:48:28.8640429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\loader.py 2025-08-14T21:48:28.8644243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\operator.py 2025-08-14T21:48:28.8647595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\os.py 2025-08-14T21:48:28.8650915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\pytree.py 2025-08-14T21:48:28.8654956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\struct.py 2025-08-14T21:48:28.8658253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\sys.py 2025-08-14T21:48:28.8661747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\tensor.py 2025-08-14T21:48:28.8665146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__init__.py 2025-08-14T21:48:28.8672488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\builtins.cpython-39.pyc 2025-08-14T21:48:28.8676518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\functools.cpython-39.pyc 2025-08-14T21:48:28.8680326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\fx.cpython-39.pyc 2025-08-14T21:48:28.8690164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\itertools.cpython-39.pyc 2025-08-14T21:48:28.8694149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\loader.cpython-39.pyc 2025-08-14T21:48:28.8698195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\operator.cpython-39.pyc 2025-08-14T21:48:28.8702071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\os.cpython-39.pyc 2025-08-14T21:48:28.8706121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\pytree.cpython-39.pyc 2025-08-14T21:48:28.8710039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\struct.cpython-39.pyc 2025-08-14T21:48:28.8714063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\sys.cpython-39.pyc 2025-08-14T21:48:28.8718404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\tensor.cpython-39.pyc 2025-08-14T21:48:28.8722050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.8730108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\after_aot.py 2025-08-14T21:48:28.8733912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\after_dynamo.py 2025-08-14T21:48:28.8737479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\aoti.py 2025-08-14T21:48:28.8740764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\__init__.py 2025-08-14T21:48:28.8751785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\__pycache__\after_aot.cpython-39.pyc 2025-08-14T21:48:28.8755729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\__pycache__\after_dynamo.cpython-39.pyc 2025-08-14T21:48:28.8759309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\__pycache__\aoti.cpython-39.pyc 2025-08-14T21:48:28.8768620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.8777282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\base.py 2025-08-14T21:48:28.8780754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\builder.py 2025-08-14T21:48:28.8784990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\builtin.py 2025-08-14T21:48:28.8788813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\constant.py 2025-08-14T21:48:28.8792337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\ctx_manager.py 2025-08-14T21:48:28.8801956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\dicts.py 2025-08-14T21:48:28.8805730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\distributed.py 2025-08-14T21:48:28.8809350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\functions.py 2025-08-14T21:48:28.8813137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\higher_order_ops.py 2025-08-14T21:48:28.8817194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\iter.py 2025-08-14T21:48:28.8820524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\lazy.py 2025-08-14T21:48:28.8823752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\lists.py 2025-08-14T21:48:28.8827133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\misc.py 2025-08-14T21:48:28.8830749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\nn_module.py 2025-08-14T21:48:28.8834628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\optimizer.py 2025-08-14T21:48:28.8838352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\script_object.py 2025-08-14T21:48:28.8841824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\sdpa.py 2025-08-14T21:48:28.8845179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\tensor.py 2025-08-14T21:48:28.8848800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\torch.py 2025-08-14T21:48:28.8852483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\torch_function.py 2025-08-14T21:48:28.8855971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\user_defined.py 2025-08-14T21:48:28.8859805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__init__.py 2025-08-14T21:48:28.8868074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\base.cpython-39.pyc 2025-08-14T21:48:28.8871400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\builder.cpython-39.pyc 2025-08-14T21:48:28.8875122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\builtin.cpython-39.pyc 2025-08-14T21:48:28.8883226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\constant.cpython-39.pyc 2025-08-14T21:48:28.8886650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\ctx_manager.cpython-39.pyc 2025-08-14T21:48:28.8890310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\dicts.cpython-39.pyc 2025-08-14T21:48:28.8893877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\distributed.cpython-39.pyc 2025-08-14T21:48:28.8897319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\functions.cpython-39.pyc 2025-08-14T21:48:28.8901284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\higher_order_ops.cpython-39.pyc 2025-08-14T21:48:28.8905006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\iter.cpython-39.pyc 2025-08-14T21:48:28.8908497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\lazy.cpython-39.pyc 2025-08-14T21:48:28.8911923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\lists.cpython-39.pyc 2025-08-14T21:48:28.8915672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\misc.cpython-39.pyc 2025-08-14T21:48:28.8919866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\nn_module.cpython-39.pyc 2025-08-14T21:48:28.8923382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\optimizer.cpython-39.pyc 2025-08-14T21:48:28.8927090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\script_object.cpython-39.pyc 2025-08-14T21:48:28.8930562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\sdpa.cpython-39.pyc 2025-08-14T21:48:28.8938430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\tensor.cpython-39.pyc 2025-08-14T21:48:28.8942745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\torch.cpython-39.pyc 2025-08-14T21:48:28.8946501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\torch_function.cpython-39.pyc 2025-08-14T21:48:28.8950074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\user_defined.cpython-39.pyc 2025-08-14T21:48:28.8953899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.8963006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\bytecode_analysis.cpython-39.pyc 2025-08-14T21:48:28.8966409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\bytecode_transformation.cpython-39.pyc 2025-08-14T21:48:28.8969934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\cache_size.cpython-39.pyc 2025-08-14T21:48:28.8977826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\callback.cpython-39.pyc 2025-08-14T21:48:28.8981212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\codegen.cpython-39.pyc 2025-08-14T21:48:28.8984694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\code_context.cpython-39.pyc 2025-08-14T21:48:28.8989335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\compiled_autograd.cpython-39.pyc 2025-08-14T21:48:28.8992525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\comptime.cpython-39.pyc 2025-08-14T21:48:28.8995992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\config.cpython-39.pyc 2025-08-14T21:48:28.8999797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\convert_frame.cpython-39.pyc 2025-08-14T21:48:28.9003474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\create_parameter_op.cpython-39.pyc 2025-08-14T21:48:28.9007328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\current_scope_id.cpython-39.pyc 2025-08-14T21:48:28.9010955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\debug_utils.cpython-39.pyc 2025-08-14T21:48:28.9014698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\decorators.cpython-39.pyc 2025-08-14T21:48:28.9018471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\device_interface.cpython-39.pyc 2025-08-14T21:48:28.9022124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\distributed.cpython-39.pyc 2025-08-14T21:48:28.9030718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\eval_frame.cpython-39.pyc 2025-08-14T21:48:28.9045849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\exc.cpython-39.pyc 2025-08-14T21:48:28.9050266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\external_utils.cpython-39.pyc 2025-08-14T21:48:28.9054581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\funcname_cache.cpython-39.pyc 2025-08-14T21:48:28.9058919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\graph_break_hints.cpython-39.pyc 2025-08-14T21:48:28.9062744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\graph_deduplication.cpython-39.pyc 2025-08-14T21:48:28.9066818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\graph_region_tracker.cpython-39.pyc 2025-08-14T21:48:28.9070819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\graph_utils.cpython-39.pyc 2025-08-14T21:48:28.9081014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\guards.cpython-39.pyc 2025-08-14T21:48:28.9085141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\hooks.cpython-39.pyc 2025-08-14T21:48:28.9089095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\logging.cpython-39.pyc 2025-08-14T21:48:28.9092965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\metrics_context.cpython-39.pyc 2025-08-14T21:48:28.9096683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\mutation_guard.cpython-39.pyc 2025-08-14T21:48:28.9100247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\output_graph.cpython-39.pyc 2025-08-14T21:48:28.9104180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\package.cpython-39.pyc 2025-08-14T21:48:28.9107953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\pgo.cpython-39.pyc 2025-08-14T21:48:28.9111722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\precompile_context.cpython-39.pyc 2025-08-14T21:48:28.9119805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\profiler.cpython-39.pyc 2025-08-14T21:48:28.9123565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\replay_record.cpython-39.pyc 2025-08-14T21:48:28.9131898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\resume_execution.cpython-39.pyc 2025-08-14T21:48:28.9132619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\side_effects.cpython-39.pyc 2025-08-14T21:48:28.9135315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\source.cpython-39.pyc 2025-08-14T21:48:28.9139012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\symbolic_convert.cpython-39.pyc 2025-08-14T21:48:28.9143121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\tensor_version_op.cpython-39.pyc 2025-08-14T21:48:28.9146878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\testing.cpython-39.pyc 2025-08-14T21:48:28.9159861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\test_case.cpython-39.pyc 2025-08-14T21:48:28.9163627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\test_dont_skip_tracing_functions.cpython-39.pyc 2025-08-14T21:48:28.9167197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\test_minifier_common.cpython-39.pyc 2025-08-14T21:48:28.9170791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\trace_rules.cpython-39.pyc 2025-08-14T21:48:28.9175135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\types.cpython-39.pyc 2025-08-14T21:48:28.9178429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:28.9183342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\_trace_wrapped_higher_order_op.cpython-39.pyc 2025-08-14T21:48:28.9187165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.9202148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\converter.py 2025-08-14T21:48:28.9206113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\error.py 2025-08-14T21:48:28.9209834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\non_strict_utils.py 2025-08-14T21:48:28.9213403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_base.py 2025-08-14T21:48:28.9221434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\tools.py 2025-08-14T21:48:28.9224793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\utils.py 2025-08-14T21:48:28.9228474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\verifier.py 2025-08-14T21:48:28.9231992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\wrappers.py 2025-08-14T21:48:28.9235289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__init__.py 2025-08-14T21:48:28.9242265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\case.py 2025-08-14T21:48:28.9245269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\gen_example.py 2025-08-14T21:48:28.9248787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\logging.py 2025-08-14T21:48:28.9252102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\__init__.py 2025-08-14T21:48:28.9259518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\assume_constant_result.py 2025-08-14T21:48:28.9263455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\autograd_function.py 2025-08-14T21:48:28.9266725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\class_method.py 2025-08-14T21:48:28.9274746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_branch_class_method.py 2025-08-14T21:48:28.9278221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_branch_nested_function.py 2025-08-14T21:48:28.9281837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_branch_nonlocal_variables.py 2025-08-14T21:48:28.9285235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_closed_over_variable.py 2025-08-14T21:48:28.9288651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_operands.py 2025-08-14T21:48:28.9292258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_predicate.py 2025-08-14T21:48:28.9295976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\constrain_as_size_example.py 2025-08-14T21:48:28.9299460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\constrain_as_value_example.py 2025-08-14T21:48:28.9302931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\decorator.py 2025-08-14T21:48:28.9307143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dictionary.py 2025-08-14T21:48:28.9311308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_assert.py 2025-08-14T21:48:28.9314781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_constructor.py 2025-08-14T21:48:28.9318335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_if_guard.py 2025-08-14T21:48:28.9322121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_map.py 2025-08-14T21:48:28.9325642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_round.py 2025-08-14T21:48:28.9333376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_slicing.py 2025-08-14T21:48:28.9337003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_view.py 2025-08-14T21:48:28.9340553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\fn_with_kwargs.py 2025-08-14T21:48:28.9344008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\list_contains.py 2025-08-14T21:48:28.9347560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\list_unpack.py 2025-08-14T21:48:28.9351070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\model_attr_mutation.py 2025-08-14T21:48:28.9354784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\nested_function.py 2025-08-14T21:48:28.9358457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\null_context_manager.py 2025-08-14T21:48:28.9366284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\optional_input.py 2025-08-14T21:48:28.9369929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\pytree_flatten.py 2025-08-14T21:48:28.9373518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\scalar_output.py 2025-08-14T21:48:28.9377000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\specialized_attribute.py 2025-08-14T21:48:28.9380399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\static_for_loop.py 2025-08-14T21:48:28.9384058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\static_if.py 2025-08-14T21:48:28.9387549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\tensor_setattr.py 2025-08-14T21:48:28.9391036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\type_reflection_method.py 2025-08-14T21:48:28.9394469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\unsupported_operator.py 2025-08-14T21:48:28.9403780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\user_input_mutation.py 2025-08-14T21:48:28.9406990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__init__.py 2025-08-14T21:48:28.9415813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\assume_constant_result.cpython-39.pyc 2025-08-14T21:48:28.9419753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\autograd_function.cpython-39.pyc 2025-08-14T21:48:28.9423338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\class_method.cpython-39.pyc 2025-08-14T21:48:28.9432236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_branch_class_method.cpython-39.pyc 2025-08-14T21:48:28.9436598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_branch_nested_function.cpython-39.pyc 2025-08-14T21:48:28.9440317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_branch_nonlocal_variables.cpython-39.pyc 2025-08-14T21:48:28.9443875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_closed_over_variable.cpython-39.pyc 2025-08-14T21:48:28.9447610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_operands.cpython-39.pyc 2025-08-14T21:48:28.9451210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_predicate.cpython-39.pyc 2025-08-14T21:48:28.9454877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\constrain_as_size_example.cpython-39.pyc 2025-08-14T21:48:28.9458462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\constrain_as_value_example.cpython-39.pyc 2025-08-14T21:48:28.9461950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\decorator.cpython-39.pyc 2025-08-14T21:48:28.9465705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dictionary.cpython-39.pyc 2025-08-14T21:48:28.9469732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_assert.cpython-39.pyc 2025-08-14T21:48:28.9473205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_constructor.cpython-39.pyc 2025-08-14T21:48:28.9477501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_if_guard.cpython-39.pyc 2025-08-14T21:48:28.9486989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_map.cpython-39.pyc 2025-08-14T21:48:28.9490549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_round.cpython-39.pyc 2025-08-14T21:48:28.9494651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_slicing.cpython-39.pyc 2025-08-14T21:48:28.9498402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_view.cpython-39.pyc 2025-08-14T21:48:28.9502045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\fn_with_kwargs.cpython-39.pyc 2025-08-14T21:48:28.9505761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\list_contains.cpython-39.pyc 2025-08-14T21:48:28.9510359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\list_unpack.cpython-39.pyc 2025-08-14T21:48:28.9517970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\model_attr_mutation.cpython-39.pyc 2025-08-14T21:48:28.9522089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\nested_function.cpython-39.pyc 2025-08-14T21:48:28.9525536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\null_context_manager.cpython-39.pyc 2025-08-14T21:48:28.9529670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\optional_input.cpython-39.pyc 2025-08-14T21:48:28.9533287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\pytree_flatten.cpython-39.pyc 2025-08-14T21:48:28.9536712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\scalar_output.cpython-39.pyc 2025-08-14T21:48:28.9540438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\specialized_attribute.cpython-39.pyc 2025-08-14T21:48:28.9544054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\static_for_loop.cpython-39.pyc 2025-08-14T21:48:28.9557040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\static_if.cpython-39.pyc 2025-08-14T21:48:28.9561414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\tensor_setattr.cpython-39.pyc 2025-08-14T21:48:28.9565228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\type_reflection_method.cpython-39.pyc 2025-08-14T21:48:28.9569059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\unsupported_operator.cpython-39.pyc 2025-08-14T21:48:28.9572796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\user_input_mutation.cpython-39.pyc 2025-08-14T21:48:28.9576581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.9591572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\__pycache__\case.cpython-39.pyc 2025-08-14T21:48:28.9595060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\__pycache__\gen_example.cpython-39.pyc 2025-08-14T21:48:28.9598967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\__pycache__\logging.cpython-39.pyc 2025-08-14T21:48:28.9607573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.9615556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\add_runtime_assertions_for_constraints_pass.py 2025-08-14T21:48:28.9619356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\collect_tracepoints_pass.py 2025-08-14T21:48:28.9622631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\constant_folding.py 2025-08-14T21:48:28.9630882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\functionalize_side_effectful_ops_pass.py 2025-08-14T21:48:28.9634516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\insert_custom_op_guards.py 2025-08-14T21:48:28.9638116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\lift_constants_pass.py 2025-08-14T21:48:28.9657781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\remove_runtime_assertions.py 2025-08-14T21:48:28.9661311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\replace_autocast_with_hop_pass.py 2025-08-14T21:48:28.9664830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\replace_quantized_ops_with_standard_ops_pass.py 2025-08-14T21:48:28.9668460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\replace_set_grad_with_hop_pass.py 2025-08-14T21:48:28.9672264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\replace_view_ops_with_view_copy_ops_pass.py 2025-08-14T21:48:28.9675713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\replace_with_hop_pass_util.py 2025-08-14T21:48:28.9679457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\_node_metadata_hook.py 2025-08-14T21:48:28.9683549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__init__.py 2025-08-14T21:48:28.9691384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\add_runtime_assertions_for_constraints_pass.cpython-39.pyc 2025-08-14T21:48:28.9694788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\collect_tracepoints_pass.cpython-39.pyc 2025-08-14T21:48:28.9704003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\constant_folding.cpython-39.pyc 2025-08-14T21:48:28.9707657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\functionalize_side_effectful_ops_pass.cpython-39.pyc 2025-08-14T21:48:28.9711632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\insert_custom_op_guards.cpython-39.pyc 2025-08-14T21:48:28.9716194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\lift_constants_pass.cpython-39.pyc 2025-08-14T21:48:28.9720176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\remove_runtime_assertions.cpython-39.pyc 2025-08-14T21:48:28.9723795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\replace_autocast_with_hop_pass.cpython-39.pyc 2025-08-14T21:48:28.9731080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\replace_quantized_ops_with_standard_ops_pass.cpython-39.pyc 2025-08-14T21:48:28.9732304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\replace_set_grad_with_hop_pass.cpython-39.pyc 2025-08-14T21:48:28.9735664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\replace_view_ops_with_view_copy_ops_pass.cpython-39.pyc 2025-08-14T21:48:28.9739392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\replace_with_hop_pass_util.cpython-39.pyc 2025-08-14T21:48:28.9743097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\_node_metadata_hook.cpython-39.pyc 2025-08-14T21:48:28.9746830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.9755763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\node_metadata.py 2025-08-14T21:48:28.9758965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\proxy_value.py 2025-08-14T21:48:28.9762252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\__init__.py 2025-08-14T21:48:28.9774842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\__pycache__\node_metadata.cpython-39.pyc 2025-08-14T21:48:28.9778314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\__pycache__\proxy_value.cpython-39.pyc 2025-08-14T21:48:28.9782119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.9793557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\dynamic_shapes.py 2025-08-14T21:48:28.9796872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\export_schema.thrift 2025-08-14T21:48:28.9800234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\schema.py 2025-08-14T21:48:28.9803568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\schema.yaml 2025-08-14T21:48:28.9813338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\schema_check.py 2025-08-14T21:48:28.9816756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\serialize.py 2025-08-14T21:48:28.9821529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\union.py 2025-08-14T21:48:28.9825075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__init__.py 2025-08-14T21:48:28.9831333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\dynamic_shapes.cpython-39.pyc 2025-08-14T21:48:28.9834783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\schema.cpython-39.pyc 2025-08-14T21:48:28.9838311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\schema_check.cpython-39.pyc 2025-08-14T21:48:28.9846864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\serialize.cpython-39.pyc 2025-08-14T21:48:28.9851012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\union.cpython-39.pyc 2025-08-14T21:48:28.9854480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.9862571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\converter.cpython-39.pyc 2025-08-14T21:48:28.9866503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\error.cpython-39.pyc 2025-08-14T21:48:28.9870131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\non_strict_utils.cpython-39.pyc 2025-08-14T21:48:28.9878853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\pass_base.cpython-39.pyc 2025-08-14T21:48:28.9882931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\tools.cpython-39.pyc 2025-08-14T21:48:28.9886323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:28.9889897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\verifier.cpython-39.pyc 2025-08-14T21:48:28.9893573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\wrappers.cpython-39.pyc 2025-08-14T21:48:28.9897012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:28.9905180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\aot_autograd.py 2025-08-14T21:48:28.9909032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\apis.py 2025-08-14T21:48:28.9912443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\autograd_function.py 2025-08-14T21:48:28.9915936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\batch_norm_replacement.py 2025-08-14T21:48:28.9924753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\benchmark_utils.py 2025-08-14T21:48:28.9928321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\compilers.py 2025-08-14T21:48:28.9931969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\compile_utils.py 2025-08-14T21:48:28.9935356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\config.py 2025-08-14T21:48:28.9938681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\deprecated.py 2025-08-14T21:48:28.9942184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\eager_transforms.py 2025-08-14T21:48:28.9945914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\functional_call.py 2025-08-14T21:48:28.9949357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\fx_minifier.py 2025-08-14T21:48:28.9952809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\make_functional.py 2025-08-14T21:48:28.9956560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\partitioners.py 2025-08-14T21:48:28.9960901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\pyfunctorch.py 2025-08-14T21:48:28.9964331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\python_key.py 2025-08-14T21:48:28.9967775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\pytree_hacks.py 2025-08-14T21:48:28.9971349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\top_operators_github_usage.py 2025-08-14T21:48:28.9974811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\utils.py 2025-08-14T21:48:28.9978176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\vmap.py 2025-08-14T21:48:28.9982130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__init__.py 2025-08-14T21:48:28.9994424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\ac_logging_utils.py 2025-08-14T21:48:28.9997926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\graph_info_provider.py 2025-08-14T21:48:29.0001386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\knapsack.py 2025-08-14T21:48:29.0009554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\knapsack_evaluator.py 2025-08-14T21:48:29.0013000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__init__.py 2025-08-14T21:48:29.0020410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__pycache__\ac_logging_utils.cpython-39.pyc 2025-08-14T21:48:29.0023942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__pycache__\graph_info_provider.cpython-39.pyc 2025-08-14T21:48:29.0027772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__pycache__\knapsack.cpython-39.pyc 2025-08-14T21:48:29.0035601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__pycache__\knapsack_evaluator.cpython-39.pyc 2025-08-14T21:48:29.0039279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.0047264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\autograd_cache.py 2025-08-14T21:48:29.0051173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\collect_metadata_analysis.py 2025-08-14T21:48:29.0056614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\descriptors.py 2025-08-14T21:48:29.0063503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\frontend_utils.py 2025-08-14T21:48:29.0067769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\functional_utils.py 2025-08-14T21:48:29.0071235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\fx_utils.py 2025-08-14T21:48:29.0074645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\graph_capture.py 2025-08-14T21:48:29.0078910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\graph_capture_wrappers.py 2025-08-14T21:48:29.0082387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\graph_compile.py 2025-08-14T21:48:29.0086260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\input_output_analysis.py 2025-08-14T21:48:29.0089844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\logging_utils.py 2025-08-14T21:48:29.0093548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\runtime_wrappers.py 2025-08-14T21:48:29.0097493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\schemas.py 2025-08-14T21:48:29.0101082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\subclass_parametrization.py 2025-08-14T21:48:29.0104619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\subclass_utils.py 2025-08-14T21:48:29.0108205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\utils.py 2025-08-14T21:48:29.0111602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__init__.py 2025-08-14T21:48:29.0120607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\autograd_cache.cpython-39.pyc 2025-08-14T21:48:29.0124016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\collect_metadata_analysis.cpython-39.pyc 2025-08-14T21:48:29.0127828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\descriptors.cpython-39.pyc 2025-08-14T21:48:29.0137345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\frontend_utils.cpython-39.pyc 2025-08-14T21:48:29.0140374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\functional_utils.cpython-39.pyc 2025-08-14T21:48:29.0144035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\fx_utils.cpython-39.pyc 2025-08-14T21:48:29.0147968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\graph_capture.cpython-39.pyc 2025-08-14T21:48:29.0151696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\graph_capture_wrappers.cpython-39.pyc 2025-08-14T21:48:29.0155670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\graph_compile.cpython-39.pyc 2025-08-14T21:48:29.0159587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\input_output_analysis.cpython-39.pyc 2025-08-14T21:48:29.0162991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\logging_utils.cpython-39.pyc 2025-08-14T21:48:29.0166675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\runtime_wrappers.cpython-39.pyc 2025-08-14T21:48:29.0170174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\schemas.cpython-39.pyc 2025-08-14T21:48:29.0174361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\subclass_parametrization.cpython-39.pyc 2025-08-14T21:48:29.0178228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\subclass_utils.cpython-39.pyc 2025-08-14T21:48:29.0181937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:29.0190059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.0199321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\aot_autograd.cpython-39.pyc 2025-08-14T21:48:29.0202957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\apis.cpython-39.pyc 2025-08-14T21:48:29.0206717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\autograd_function.cpython-39.pyc 2025-08-14T21:48:29.0214992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\batch_norm_replacement.cpython-39.pyc 2025-08-14T21:48:29.0218764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\benchmark_utils.cpython-39.pyc 2025-08-14T21:48:29.0222261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\compilers.cpython-39.pyc 2025-08-14T21:48:29.0226917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\compile_utils.cpython-39.pyc 2025-08-14T21:48:29.0229837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\config.cpython-39.pyc 2025-08-14T21:48:29.0233640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\deprecated.cpython-39.pyc 2025-08-14T21:48:29.0237136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\eager_transforms.cpython-39.pyc 2025-08-14T21:48:29.0241349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\functional_call.cpython-39.pyc 2025-08-14T21:48:29.0245710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\fx_minifier.cpython-39.pyc 2025-08-14T21:48:29.0250089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\make_functional.cpython-39.pyc 2025-08-14T21:48:29.0253176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\partitioners.cpython-39.pyc 2025-08-14T21:48:29.0257325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\pyfunctorch.cpython-39.pyc 2025-08-14T21:48:29.0260849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\python_key.cpython-39.pyc 2025-08-14T21:48:29.0269686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\pytree_hacks.cpython-39.pyc 2025-08-14T21:48:29.0273265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\top_operators_github_usage.cpython-39.pyc 2025-08-14T21:48:29.0276892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:29.0280722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\vmap.cpython-39.pyc 2025-08-14T21:48:29.0284144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.0292772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\aoti_call_delegate.py 2025-08-14T21:48:29.0296826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\associative_scan.py 2025-08-14T21:48:29.0300734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\auto_functionalize.py 2025-08-14T21:48:29.0309111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\base_hop.py 2025-08-14T21:48:29.0312375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\cond.py 2025-08-14T21:48:29.0315731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\effects.py 2025-08-14T21:48:29.0319227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\executorch_call_delegate.py 2025-08-14T21:48:29.0322617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\flat_apply.py 2025-08-14T21:48:29.0325944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\flex_attention.py 2025-08-14T21:48:29.0329472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\foreach_map.py 2025-08-14T21:48:29.0333010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\hints_wrap.py 2025-08-14T21:48:29.0336337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\invoke_subgraph.py 2025-08-14T21:48:29.0339990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\map.py 2025-08-14T21:48:29.0343308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\out_dtype.py 2025-08-14T21:48:29.0346751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\run_const_graph.py 2025-08-14T21:48:29.0350146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\scan.py 2025-08-14T21:48:29.0353821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\schema.py 2025-08-14T21:48:29.0357155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\strict_mode.py 2025-08-14T21:48:29.0361501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\torchbind.py 2025-08-14T21:48:29.0364974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\triton_kernel_wrap.py 2025-08-14T21:48:29.0368902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\utils.py 2025-08-14T21:48:29.0373128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\while_loop.py 2025-08-14T21:48:29.0381785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\wrap.py 2025-08-14T21:48:29.0385141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\_invoke_quant.py 2025-08-14T21:48:29.0389052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__init__.py 2025-08-14T21:48:29.0397641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\aoti_call_delegate.cpython-39.pyc 2025-08-14T21:48:29.0401307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\associative_scan.cpython-39.pyc 2025-08-14T21:48:29.0404973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\auto_functionalize.cpython-39.pyc 2025-08-14T21:48:29.0413420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\base_hop.cpython-39.pyc 2025-08-14T21:48:29.0416968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\cond.cpython-39.pyc 2025-08-14T21:48:29.0420516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\effects.cpython-39.pyc 2025-08-14T21:48:29.0424133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\executorch_call_delegate.cpython-39.pyc 2025-08-14T21:48:29.0427502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\flat_apply.cpython-39.pyc 2025-08-14T21:48:29.0430923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\flex_attention.cpython-39.pyc 2025-08-14T21:48:29.0434553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\foreach_map.cpython-39.pyc 2025-08-14T21:48:29.0438376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\hints_wrap.cpython-39.pyc 2025-08-14T21:48:29.0441993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\invoke_subgraph.cpython-39.pyc 2025-08-14T21:48:29.0445588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\map.cpython-39.pyc 2025-08-14T21:48:29.0448953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\out_dtype.cpython-39.pyc 2025-08-14T21:48:29.0452445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\run_const_graph.cpython-39.pyc 2025-08-14T21:48:29.0455918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\scan.cpython-39.pyc 2025-08-14T21:48:29.0459606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\schema.cpython-39.pyc 2025-08-14T21:48:29.0467842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\strict_mode.cpython-39.pyc 2025-08-14T21:48:29.0471366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\torchbind.cpython-39.pyc 2025-08-14T21:48:29.0475436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\triton_kernel_wrap.cpython-39.pyc 2025-08-14T21:48:29.0478843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:29.0483246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\while_loop.cpython-39.pyc 2025-08-14T21:48:29.0486831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\wrap.cpython-39.pyc 2025-08-14T21:48:29.0490341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\_invoke_quant.cpython-39.pyc 2025-08-14T21:48:29.0494004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.0508473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analyze_preserves_zero_mask.py 2025-08-14T21:48:29.0511989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\aoti_eager.py 2025-08-14T21:48:29.0515545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\async_compile.py 2025-08-14T21:48:29.0523966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autotune_process.py 2025-08-14T21:48:29.0527586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\await_utils.py 2025-08-14T21:48:29.0531011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\bounds.py 2025-08-14T21:48:29.0534618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\choices.py 2025-08-14T21:48:29.0538190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codecache.py 2025-08-14T21:48:29.0542759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\comms.py 2025-08-14T21:48:29.0546540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\comm_analysis.py 2025-08-14T21:48:29.0550144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\comm_lowering.py 2025-08-14T21:48:29.0553597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compiler_bisector.py 2025-08-14T21:48:29.0557201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_fx.py 2025-08-14T21:48:29.0561418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_fx_async.py 2025-08-14T21:48:29.0566012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_fx_ext.py 2025-08-14T21:48:29.0569307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_fx_subproc.py 2025-08-14T21:48:29.0573147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\config.py 2025-08-14T21:48:29.0576831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\constant_folding.py 2025-08-14T21:48:29.0580475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\cpp_builder.py 2025-08-14T21:48:29.0584279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\cpu_vec_isa.py 2025-08-14T21:48:29.0587830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\cudagraph_trees.py 2025-08-14T21:48:29.0598399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\cudagraph_utils.py 2025-08-14T21:48:29.0602016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\custom_graph_pass.py 2025-08-14T21:48:29.0605499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\debug.py 2025-08-14T21:48:29.0610088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\decomposition.py 2025-08-14T21:48:29.0613842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\dependencies.py 2025-08-14T21:48:29.0617489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\dtype_propagation.py 2025-08-14T21:48:29.0621252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\exc.py 2025-08-14T21:48:29.0624931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\extern_node_serializer.py 2025-08-14T21:48:29.0628455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\freezing.py 2025-08-14T21:48:29.0631968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\freezing_utils.py 2025-08-14T21:48:29.0635537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fuzzer.py 2025-08-14T21:48:29.0643466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_utils.py 2025-08-14T21:48:29.0647332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\graph.py 2025-08-14T21:48:29.0651998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\hooks.py 2025-08-14T21:48:29.0655458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\index_propagation.py 2025-08-14T21:48:29.0659072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\inductor_prims.py 2025-08-14T21:48:29.0662512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\ir.py 2025-08-14T21:48:29.0667589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\jagged_lowerings.py 2025-08-14T21:48:29.0671267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel_inputs.py 2025-08-14T21:48:29.0674755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\loop_body.py 2025-08-14T21:48:29.0678594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\lowering.py 2025-08-14T21:48:29.0683573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\memory.py 2025-08-14T21:48:29.0687529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\metrics.py 2025-08-14T21:48:29.0690805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\mkldnn_ir.py 2025-08-14T21:48:29.0700276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\mkldnn_lowerings.py 2025-08-14T21:48:29.0703984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\mock_cache.py 2025-08-14T21:48:29.0707573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\ops_handler.py 2025-08-14T21:48:29.0711135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\optimize_indexing.py 2025-08-14T21:48:29.0714739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\output_code.py 2025-08-14T21:48:29.0718530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\pattern_matcher.py 2025-08-14T21:48:29.0723909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\quantized_lowerings.py 2025-08-14T21:48:29.0728030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\remote_cache.py 2025-08-14T21:48:29.0731996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\remote_gemm_autotune_cache.py 2025-08-14T21:48:29.0765563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\scheduler.py 2025-08-14T21:48:29.0769985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\script.ld 2025-08-14T21:48:29.0773572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\select_algorithm.py 2025-08-14T21:48:29.0778278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\sizevars.py 2025-08-14T21:48:29.0781836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\standalone_compile.py 2025-08-14T21:48:29.0785557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\subgraph_lowering.py 2025-08-14T21:48:29.0789258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\template_heuristics.py 2025-08-14T21:48:29.0793146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\template_registry.py 2025-08-14T21:48:29.0796694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\test_case.py 2025-08-14T21:48:29.0800323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\test_operators.py 2025-08-14T21:48:29.0808737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\tiling_utils.py 2025-08-14T21:48:29.0812132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\triton_bundler.py 2025-08-14T21:48:29.0815587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\utils.py 2025-08-14T21:48:29.0819643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\virtualized.py 2025-08-14T21:48:29.0823363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\wrapper_benchmark.py 2025-08-14T21:48:29.0826811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__autotune_main__.py 2025-08-14T21:48:29.0830287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__init__.py 2025-08-14T21:48:29.0837648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\device_info.py 2025-08-14T21:48:29.0841122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\profile_analysis.py 2025-08-14T21:48:29.0844668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\__init__.py 2025-08-14T21:48:29.0855757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\__pycache__\device_info.cpython-39.pyc 2025-08-14T21:48:29.0859575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\__pycache__\profile_analysis.cpython-39.pyc 2025-08-14T21:48:29.0863157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.0876840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\autoheuristic.py 2025-08-14T21:48:29.0880355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\autoheuristic_utils.py 2025-08-14T21:48:29.0884473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\learnedheuristic_interface.py 2025-08-14T21:48:29.0894932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\learned_heuristic_controller.py 2025-08-14T21:48:29.0899202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__init__.py 2025-08-14T21:48:29.0905342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\_MixedMMA100.py 2025-08-14T21:48:29.0908710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\_MixedMMH100.py 2025-08-14T21:48:29.0912063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\_MMRankingA100.py 2025-08-14T21:48:29.0920585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\_MMRankingH100.py 2025-08-14T21:48:29.0924175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\_PadMMA100.py 2025-08-14T21:48:29.0927915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__init__.py 2025-08-14T21:48:29.0934341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\_MixedMMA100.cpython-39.pyc 2025-08-14T21:48:29.0938018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\_MixedMMH100.cpython-39.pyc 2025-08-14T21:48:29.0942413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\_MMRankingA100.cpython-39.pyc 2025-08-14T21:48:29.0950716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\_MMRankingH100.cpython-39.pyc 2025-08-14T21:48:29.0954350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\_PadMMA100.cpython-39.pyc 2025-08-14T21:48:29.0958007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.0966804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__pycache__\autoheuristic.cpython-39.pyc 2025-08-14T21:48:29.0970544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__pycache__\autoheuristic_utils.cpython-39.pyc 2025-08-14T21:48:29.0974201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__pycache__\learnedheuristic_interface.cpython-39.pyc 2025-08-14T21:48:29.0982443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__pycache__\learned_heuristic_controller.cpython-39.pyc 2025-08-14T21:48:29.0985831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.0995405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\aoti_hipify_utils.py 2025-08-14T21:48:29.0999125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\block_analysis.py 2025-08-14T21:48:29.1002655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\common.py 2025-08-14T21:48:29.1006658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp.py 2025-08-14T21:48:29.1011354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_bmm_template.py 2025-08-14T21:48:29.1021364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_flex_attention_template.py 2025-08-14T21:48:29.1024952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_gemm_template.py 2025-08-14T21:48:29.1029116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_grouped_gemm_template.py 2025-08-14T21:48:29.1032783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_micro_gemm.py 2025-08-14T21:48:29.1036494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_template.py 2025-08-14T21:48:29.1041272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_template_kernel.py 2025-08-14T21:48:29.1044952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_utils.py 2025-08-14T21:48:29.1048433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_wrapper_cpu.py 2025-08-14T21:48:29.1052678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_wrapper_cpu_array_ref.py 2025-08-14T21:48:29.1056368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_wrapper_gpu.py 2025-08-14T21:48:29.1059921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_wrapper_mps.py 2025-08-14T21:48:29.1063473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpu_device_op_overrides.py 2025-08-14T21:48:29.1067112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda_combined_scheduling.py 2025-08-14T21:48:29.1071077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\debug_utils.py 2025-08-14T21:48:29.1080055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\halide.py 2025-08-14T21:48:29.1083715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\memory_planning.py 2025-08-14T21:48:29.1087337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mps.py 2025-08-14T21:48:29.1091049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mps_device_op_overrides.py 2025-08-14T21:48:29.1094520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\multi_kernel.py 2025-08-14T21:48:29.1098946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\python_wrapper_mtia.py 2025-08-14T21:48:29.1102614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\simd.py 2025-08-14T21:48:29.1106517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\simd_kernel_features.py 2025-08-14T21:48:29.1110543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\subgraph.py 2025-08-14T21:48:29.1114052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\triton.py 2025-08-14T21:48:29.1118580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\triton_combo_kernel.py 2025-08-14T21:48:29.1122594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\triton_split_scan.py 2025-08-14T21:48:29.1131685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\triton_utils.py 2025-08-14T21:48:29.1135149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\wrapper.py 2025-08-14T21:48:29.1139763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\wrapper_fxir.py 2025-08-14T21:48:29.1143331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__init__.py 2025-08-14T21:48:29.1150892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\aoti_runtime\interface.cpp 2025-08-14T21:48:29.1158472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cuda_cpp_scheduling.py 2025-08-14T21:48:29.1162240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cuda_env.py 2025-08-14T21:48:29.1165730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cuda_kernel.py 2025-08-14T21:48:29.1170277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cuda_template.py 2025-08-14T21:48:29.1179599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_cache.py 2025-08-14T21:48:29.1183129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_presets.py 2025-08-14T21:48:29.1186590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_python_evt.py 2025-08-14T21:48:29.1190515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_utils.py 2025-08-14T21:48:29.1194212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\device_op_overrides.py 2025-08-14T21:48:29.1197650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\gemm_template.py 2025-08-14T21:48:29.1201841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\serialization.py 2025-08-14T21:48:29.1205339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__init__.py 2025-08-14T21:48:29.1213257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\evt_extensions.py 2025-08-14T21:48:29.1217000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\gemm_operation_extensions.py 2025-08-14T21:48:29.1220780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\__init__.py 2025-08-14T21:48:29.1232853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\__init__.py 2025-08-14T21:48:29.1238988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\cuda.py 2025-08-14T21:48:29.1242486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\cudart.py 2025-08-14T21:48:29.1245878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\__init__.py 2025-08-14T21:48:29.1252990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\__pycache__\cuda.cpython-39.pyc 2025-08-14T21:48:29.1256661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\__pycache__\cudart.cpython-39.pyc 2025-08-14T21:48:29.1260448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.1272945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\pydot\__init__.py 2025-08-14T21:48:29.1280457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\pydot\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.1287962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy\special.py 2025-08-14T21:48:29.1291284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy\__init__.py 2025-08-14T21:48:29.1298541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy\__pycache__\special.cpython-39.pyc 2025-08-14T21:48:29.1301968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.1315483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.1323733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\__pycache__\evt_extensions.cpython-39.pyc 2025-08-14T21:48:29.1327408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\__pycache__\gemm_operation_extensions.cpython-39.pyc 2025-08-14T21:48:29.1331018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.1345017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cuda_cpp_scheduling.cpython-39.pyc 2025-08-14T21:48:29.1348137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cuda_env.cpython-39.pyc 2025-08-14T21:48:29.1351746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cuda_kernel.cpython-39.pyc 2025-08-14T21:48:29.1360976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cuda_template.cpython-39.pyc 2025-08-14T21:48:29.1364391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cutlass_cache.cpython-39.pyc 2025-08-14T21:48:29.1368747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cutlass_presets.cpython-39.pyc 2025-08-14T21:48:29.1372842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cutlass_python_evt.cpython-39.pyc 2025-08-14T21:48:29.1376060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cutlass_utils.cpython-39.pyc 2025-08-14T21:48:29.1380353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\device_op_overrides.cpython-39.pyc 2025-08-14T21:48:29.1383993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\gemm_template.cpython-39.pyc 2025-08-14T21:48:29.1387793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\serialization.cpython-39.pyc 2025-08-14T21:48:29.1391395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.1399905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mtia\device_op_overrides.py 2025-08-14T21:48:29.1403349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mtia\__init__.py 2025-08-14T21:48:29.1409522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mtia\__pycache__\device_op_overrides.cpython-39.pyc 2025-08-14T21:48:29.1413042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mtia\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.1420549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\ck_conv_template.py 2025-08-14T21:48:29.1424093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\ck_template.py 2025-08-14T21:48:29.1427643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\ck_tile_template.py 2025-08-14T21:48:29.1431531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\ck_tile_universal_gemm_template.py 2025-08-14T21:48:29.1439999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\ck_universal_gemm_template.py 2025-08-14T21:48:29.1444327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\compile_command.py 2025-08-14T21:48:29.1447845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_benchmark_request.py 2025-08-14T21:48:29.1451282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_cpp_scheduling.py 2025-08-14T21:48:29.1454943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_kernel.py 2025-08-14T21:48:29.1458640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_template.py 2025-08-14T21:48:29.1462117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_template_buffer.py 2025-08-14T21:48:29.1466024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_utils.py 2025-08-14T21:48:29.1470043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__init__.py 2025-08-14T21:48:29.1476439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\ck_conv_template.cpython-39.pyc 2025-08-14T21:48:29.1481640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\ck_template.cpython-39.pyc 2025-08-14T21:48:29.1484507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\ck_tile_template.cpython-39.pyc 2025-08-14T21:48:29.1493289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\ck_tile_universal_gemm_template.cpython-39.pyc 2025-08-14T21:48:29.1496592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\ck_universal_gemm_template.cpython-39.pyc 2025-08-14T21:48:29.1500280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\compile_command.cpython-39.pyc 2025-08-14T21:48:29.1505043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_benchmark_request.cpython-39.pyc 2025-08-14T21:48:29.1507578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_cpp_scheduling.cpython-39.pyc 2025-08-14T21:48:29.1511177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_kernel.cpython-39.pyc 2025-08-14T21:48:29.1514722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_template.cpython-39.pyc 2025-08-14T21:48:29.1518872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_template_buffer.cpython-39.pyc 2025-08-14T21:48:29.1522564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_utils.cpython-39.pyc 2025-08-14T21:48:29.1526126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.1534793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\xpu\device_op_overrides.py 2025-08-14T21:48:29.1538741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\xpu\__init__.py 2025-08-14T21:48:29.1545018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\xpu\__pycache__\device_op_overrides.cpython-39.pyc 2025-08-14T21:48:29.1548321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\xpu\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.1556973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\aoti_hipify_utils.cpython-39.pyc 2025-08-14T21:48:29.1560338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\block_analysis.cpython-39.pyc 2025-08-14T21:48:29.1563886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\common.cpython-39.pyc 2025-08-14T21:48:29.1573537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp.cpython-39.pyc 2025-08-14T21:48:29.1578069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_bmm_template.cpython-39.pyc 2025-08-14T21:48:29.1581906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_flex_attention_template.cpython-39.pyc 2025-08-14T21:48:29.1585586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_gemm_template.cpython-39.pyc 2025-08-14T21:48:29.1589297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_grouped_gemm_template.cpython-39.pyc 2025-08-14T21:48:29.1592999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_micro_gemm.cpython-39.pyc 2025-08-14T21:48:29.1596838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_template.cpython-39.pyc 2025-08-14T21:48:29.1600917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_template_kernel.cpython-39.pyc 2025-08-14T21:48:29.1604862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_utils.cpython-39.pyc 2025-08-14T21:48:29.1608908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_wrapper_cpu.cpython-39.pyc 2025-08-14T21:48:29.1612777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_wrapper_cpu_array_ref.cpython-39.pyc 2025-08-14T21:48:29.1616443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_wrapper_gpu.cpython-39.pyc 2025-08-14T21:48:29.1621230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_wrapper_mps.cpython-39.pyc 2025-08-14T21:48:29.1629701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpu_device_op_overrides.cpython-39.pyc 2025-08-14T21:48:29.1633523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cuda_combined_scheduling.cpython-39.pyc 2025-08-14T21:48:29.1637106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\debug_utils.cpython-39.pyc 2025-08-14T21:48:29.1640727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\halide.cpython-39.pyc 2025-08-14T21:48:29.1644577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\memory_planning.cpython-39.pyc 2025-08-14T21:48:29.1648229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\mps.cpython-39.pyc 2025-08-14T21:48:29.1651924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\mps_device_op_overrides.cpython-39.pyc 2025-08-14T21:48:29.1655993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\multi_kernel.cpython-39.pyc 2025-08-14T21:48:29.1664283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\python_wrapper_mtia.cpython-39.pyc 2025-08-14T21:48:29.1669335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\simd.cpython-39.pyc 2025-08-14T21:48:29.1674126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\simd_kernel_features.cpython-39.pyc 2025-08-14T21:48:29.1678074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\subgraph.cpython-39.pyc 2025-08-14T21:48:29.1681728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\triton.cpython-39.pyc 2025-08-14T21:48:29.1686571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\triton_combo_kernel.cpython-39.pyc 2025-08-14T21:48:29.1690426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\triton_split_scan.cpython-39.pyc 2025-08-14T21:48:29.1694236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\triton_utils.cpython-39.pyc 2025-08-14T21:48:29.1703024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\wrapper.cpython-39.pyc 2025-08-14T21:48:29.1707227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\wrapper_fxir.cpython-39.pyc 2025-08-14T21:48:29.1711033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.1722130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\subproc_pool.py 2025-08-14T21:48:29.1725350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\tracked_process_pool.py 2025-08-14T21:48:29.1729086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\utils.py 2025-08-14T21:48:29.1732404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__init__.py 2025-08-14T21:48:29.1739975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__main__.py 2025-08-14T21:48:29.1746779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__pycache__\subproc_pool.cpython-39.pyc 2025-08-14T21:48:29.1750566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__pycache__\tracked_process_pool.cpython-39.pyc 2025-08-14T21:48:29.1754057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:29.1763193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.1767791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__pycache__\__main__.cpython-39.pyc 2025-08-14T21:48:29.1776577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\b2b_gemm.py 2025-08-14T21:48:29.1780247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\binary_folding.py 2025-08-14T21:48:29.1783436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\bucketing.py 2025-08-14T21:48:29.1787450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\ddp_fusion.py 2025-08-14T21:48:29.1796564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\decompose_mem_bound_mm.py 2025-08-14T21:48:29.1800068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\dedupe_symint_uses.py 2025-08-14T21:48:29.1803495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\efficient_conv_bn_eval.py 2025-08-14T21:48:29.1807153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\freezing_patterns.py 2025-08-14T21:48:29.1810502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\fsdp.py 2025-08-14T21:48:29.1814057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\fuse_attention.py 2025-08-14T21:48:29.1817773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\group_batch_fusion.py 2025-08-14T21:48:29.1821494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\joint_graph.py 2025-08-14T21:48:29.1825038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\micro_pipeline_tp.py 2025-08-14T21:48:29.1828610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\misc_patterns.py 2025-08-14T21:48:29.1832035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\mkldnn_fusion.py 2025-08-14T21:48:29.1836012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\numeric_utils.py 2025-08-14T21:48:29.1839582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\pad_mm.py 2025-08-14T21:48:29.1842963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\post_grad.py 2025-08-14T21:48:29.1846860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\pre_grad.py 2025-08-14T21:48:29.1850287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\quantization.py 2025-08-14T21:48:29.1854418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\reinplace.py 2025-08-14T21:48:29.1862556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\replace_random.py 2025-08-14T21:48:29.1883340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\split_cat.py 2025-08-14T21:48:29.1886950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__init__.py 2025-08-14T21:48:29.1896294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\addmm_gelu_pattern.py 2025-08-14T21:48:29.1899846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\addmm_gelu_pattern_2.py 2025-08-14T21:48:29.1903376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\addmm_pattern.py 2025-08-14T21:48:29.1912121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\addmm_relu_pattern.py 2025-08-14T21:48:29.1916675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\addmm_relu_pattern_2.py 2025-08-14T21:48:29.1920266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\bmm_pattern.py 2025-08-14T21:48:29.1924109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\mm_pattern.py 2025-08-14T21:48:29.1927450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_1.py 2025-08-14T21:48:29.1931153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_10.py 2025-08-14T21:48:29.1934663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_11.py 2025-08-14T21:48:29.1938208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_12.py 2025-08-14T21:48:29.1941722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_13.py 2025-08-14T21:48:29.1945637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_14.py 2025-08-14T21:48:29.1949203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_15.py 2025-08-14T21:48:29.1953395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_16.py 2025-08-14T21:48:29.1957757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_17.py 2025-08-14T21:48:29.1961812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_18.py 2025-08-14T21:48:29.1965645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_19.py 2025-08-14T21:48:29.1975092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_2.py 2025-08-14T21:48:29.1978706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_20.py 2025-08-14T21:48:29.1982360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_21.py 2025-08-14T21:48:29.1986011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_22.py 2025-08-14T21:48:29.1989689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_23.py 2025-08-14T21:48:29.1993529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_24.py 2025-08-14T21:48:29.1997173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_3.py 2025-08-14T21:48:29.2000970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_4.py 2025-08-14T21:48:29.2004545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_5.py 2025-08-14T21:48:29.2008206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_6.py 2025-08-14T21:48:29.2011819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_7.py 2025-08-14T21:48:29.2020786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_8.py 2025-08-14T21:48:29.2024527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_9.py 2025-08-14T21:48:29.2028329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__init__.py 2025-08-14T21:48:29.2039853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\addmm_gelu_pattern.cpython-39.pyc 2025-08-14T21:48:29.2043973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\addmm_gelu_pattern_2.cpython-39.pyc 2025-08-14T21:48:29.2047863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\addmm_pattern.cpython-39.pyc 2025-08-14T21:48:29.2056658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\addmm_relu_pattern.cpython-39.pyc 2025-08-14T21:48:29.2059749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\addmm_relu_pattern_2.cpython-39.pyc 2025-08-14T21:48:29.2063480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\bmm_pattern.cpython-39.pyc 2025-08-14T21:48:29.2067341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\mm_pattern.cpython-39.pyc 2025-08-14T21:48:29.2071176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_1.cpython-39.pyc 2025-08-14T21:48:29.2074884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_10.cpython-39.pyc 2025-08-14T21:48:29.2078504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_11.cpython-39.pyc 2025-08-14T21:48:29.2082270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_12.cpython-39.pyc 2025-08-14T21:48:29.2085905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_13.cpython-39.pyc 2025-08-14T21:48:29.2089630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_14.cpython-39.pyc 2025-08-14T21:48:29.2093540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_15.cpython-39.pyc 2025-08-14T21:48:29.2097327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_16.cpython-39.pyc 2025-08-14T21:48:29.2101360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_17.cpython-39.pyc 2025-08-14T21:48:29.2109969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_18.cpython-39.pyc 2025-08-14T21:48:29.2114034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_19.cpython-39.pyc 2025-08-14T21:48:29.2117368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_2.cpython-39.pyc 2025-08-14T21:48:29.2121508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_20.cpython-39.pyc 2025-08-14T21:48:29.2125908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_21.cpython-39.pyc 2025-08-14T21:48:29.2128903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_22.cpython-39.pyc 2025-08-14T21:48:29.2132779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_23.cpython-39.pyc 2025-08-14T21:48:29.2137603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_24.cpython-39.pyc 2025-08-14T21:48:29.2141081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_3.cpython-39.pyc 2025-08-14T21:48:29.2145423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_4.cpython-39.pyc 2025-08-14T21:48:29.2149266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_5.cpython-39.pyc 2025-08-14T21:48:29.2153035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_6.cpython-39.pyc 2025-08-14T21:48:29.2157105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_7.cpython-39.pyc 2025-08-14T21:48:29.2166275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_8.cpython-39.pyc 2025-08-14T21:48:29.2170002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_9.cpython-39.pyc 2025-08-14T21:48:29.2173793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.2186244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\b2b_gemm.cpython-39.pyc 2025-08-14T21:48:29.2190135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\binary_folding.cpython-39.pyc 2025-08-14T21:48:29.2193780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\bucketing.cpython-39.pyc 2025-08-14T21:48:29.2202644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\ddp_fusion.cpython-39.pyc 2025-08-14T21:48:29.2206332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\decompose_mem_bound_mm.cpython-39.pyc 2025-08-14T21:48:29.2209878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\dedupe_symint_uses.cpython-39.pyc 2025-08-14T21:48:29.2214247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\efficient_conv_bn_eval.cpython-39.pyc 2025-08-14T21:48:29.2219004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\freezing_patterns.cpython-39.pyc 2025-08-14T21:48:29.2231972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\fsdp.cpython-39.pyc 2025-08-14T21:48:29.2237657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\fuse_attention.cpython-39.pyc 2025-08-14T21:48:29.2243021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\group_batch_fusion.cpython-39.pyc 2025-08-14T21:48:29.2248465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\joint_graph.cpython-39.pyc 2025-08-14T21:48:29.2253875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\micro_pipeline_tp.cpython-39.pyc 2025-08-14T21:48:29.2260915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\misc_patterns.cpython-39.pyc 2025-08-14T21:48:29.2266404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\mkldnn_fusion.cpython-39.pyc 2025-08-14T21:48:29.2271933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\numeric_utils.cpython-39.pyc 2025-08-14T21:48:29.2281998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\pad_mm.cpython-39.pyc 2025-08-14T21:48:29.2285477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\post_grad.cpython-39.pyc 2025-08-14T21:48:29.2289343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\pre_grad.cpython-39.pyc 2025-08-14T21:48:29.2293544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\quantization.cpython-39.pyc 2025-08-14T21:48:29.2298455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\reinplace.cpython-39.pyc 2025-08-14T21:48:29.2302189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\replace_random.cpython-39.pyc 2025-08-14T21:48:29.2305968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\split_cat.cpython-39.pyc 2025-08-14T21:48:29.2310055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.2318935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\bmm.py 2025-08-14T21:48:29.2322281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\conv.py 2025-08-14T21:48:29.2325775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\mm.py 2025-08-14T21:48:29.2330035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\mm_common.py 2025-08-14T21:48:29.2333593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\mm_grouped.py 2025-08-14T21:48:29.2342174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\mm_plus_mm.py 2025-08-14T21:48:29.2346008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__init__.py 2025-08-14T21:48:29.2352820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\common.py 2025-08-14T21:48:29.2356081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\flex_attention.py 2025-08-14T21:48:29.2359751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\flex_cpu.py 2025-08-14T21:48:29.2363100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\flex_decoding.py 2025-08-14T21:48:29.2366514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__init__.py 2025-08-14T21:48:29.2378823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\templates\common.py.jinja 2025-08-14T21:48:29.2382305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\templates\flex_attention.py.jinja 2025-08-14T21:48:29.2385826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\templates\flex_backwards.py.jinja 2025-08-14T21:48:29.2394013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\templates\flex_decode.py.jinja 2025-08-14T21:48:29.2397460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\templates\utilities.py.jinja 2025-08-14T21:48:29.2405033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__pycache__\common.cpython-39.pyc 2025-08-14T21:48:29.2408652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__pycache__\flex_attention.cpython-39.pyc 2025-08-14T21:48:29.2412240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__pycache__\flex_cpu.cpython-39.pyc 2025-08-14T21:48:29.2421094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__pycache__\flex_decoding.cpython-39.pyc 2025-08-14T21:48:29.2424523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.2432213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\bmm.cpython-39.pyc 2025-08-14T21:48:29.2435662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\conv.cpython-39.pyc 2025-08-14T21:48:29.2439045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\mm.cpython-39.pyc 2025-08-14T21:48:29.2447666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\mm_common.cpython-39.pyc 2025-08-14T21:48:29.2451132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\mm_grouped.cpython-39.pyc 2025-08-14T21:48:29.2454632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\mm_plus_mm.cpython-39.pyc 2025-08-14T21:48:29.2458085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.2465948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\build_package.py 2025-08-14T21:48:29.2469695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\package.py 2025-08-14T21:48:29.2473718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\__init__.py 2025-08-14T21:48:29.2480742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\__pycache__\build_package.cpython-39.pyc 2025-08-14T21:48:29.2484225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\__pycache__\package.cpython-39.pyc 2025-08-14T21:48:29.2487655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.2500362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\autotune_cache.py 2025-08-14T21:48:29.2504192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\benchmarking.py 2025-08-14T21:48:29.2507467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\cache_dir_utils.py 2025-08-14T21:48:29.2511084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\compile_tasks.py 2025-08-14T21:48:29.2519356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\coordinate_descent_tuner.py 2025-08-14T21:48:29.2523210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\debug_utils.py 2025-08-14T21:48:29.2526523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\halide_helpers.py 2025-08-14T21:48:29.2529962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\hints.py 2025-08-14T21:48:29.2534113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\runtime_utils.py 2025-08-14T21:48:29.2537786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\static_cuda_launcher.py 2025-08-14T21:48:29.2541449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\triton_compat.py 2025-08-14T21:48:29.2545013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\triton_helpers.py 2025-08-14T21:48:29.2548469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\triton_heuristics.py 2025-08-14T21:48:29.2552682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__init__.py 2025-08-14T21:48:29.2559486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\autotune_cache.cpython-39.pyc 2025-08-14T21:48:29.2563229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\benchmarking.cpython-39.pyc 2025-08-14T21:48:29.2566730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\cache_dir_utils.cpython-39.pyc 2025-08-14T21:48:29.2575141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\compile_tasks.cpython-39.pyc 2025-08-14T21:48:29.2578973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\coordinate_descent_tuner.cpython-39.pyc 2025-08-14T21:48:29.2582330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\debug_utils.cpython-39.pyc 2025-08-14T21:48:29.2585851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\halide_helpers.cpython-39.pyc 2025-08-14T21:48:29.2589412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\hints.cpython-39.pyc 2025-08-14T21:48:29.2592873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\runtime_utils.cpython-39.pyc 2025-08-14T21:48:29.2596966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\static_cuda_launcher.cpython-39.pyc 2025-08-14T21:48:29.2600444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\triton_compat.cpython-39.pyc 2025-08-14T21:48:29.2604280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\triton_helpers.cpython-39.pyc 2025-08-14T21:48:29.2607940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\triton_heuristics.cpython-39.pyc 2025-08-14T21:48:29.2611772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.2621153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\analyze_preserves_zero_mask.cpython-39.pyc 2025-08-14T21:48:29.2624745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\aoti_eager.cpython-39.pyc 2025-08-14T21:48:29.2628879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\async_compile.cpython-39.pyc 2025-08-14T21:48:29.2638010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\autotune_process.cpython-39.pyc 2025-08-14T21:48:29.2641677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\await_utils.cpython-39.pyc 2025-08-14T21:48:29.2645349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\bounds.cpython-39.pyc 2025-08-14T21:48:29.2648841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\choices.cpython-39.pyc 2025-08-14T21:48:29.2652352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\codecache.cpython-39.pyc 2025-08-14T21:48:29.2656420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\comms.cpython-39.pyc 2025-08-14T21:48:29.2660319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\comm_analysis.cpython-39.pyc 2025-08-14T21:48:29.2663936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\comm_lowering.cpython-39.pyc 2025-08-14T21:48:29.2667530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\compiler_bisector.cpython-39.pyc 2025-08-14T21:48:29.2671239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\compile_fx.cpython-39.pyc 2025-08-14T21:48:29.2675533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\compile_fx_async.cpython-39.pyc 2025-08-14T21:48:29.2679705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\compile_fx_ext.cpython-39.pyc 2025-08-14T21:48:29.2683660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\compile_fx_subproc.cpython-39.pyc 2025-08-14T21:48:29.2692652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\config.cpython-39.pyc 2025-08-14T21:48:29.2696367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\constant_folding.cpython-39.pyc 2025-08-14T21:48:29.2699858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\cpp_builder.cpython-39.pyc 2025-08-14T21:48:29.2703813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\cpu_vec_isa.cpython-39.pyc 2025-08-14T21:48:29.2707758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\cudagraph_trees.cpython-39.pyc 2025-08-14T21:48:29.2711878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\cudagraph_utils.cpython-39.pyc 2025-08-14T21:48:29.2715491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\custom_graph_pass.cpython-39.pyc 2025-08-14T21:48:29.2719989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\debug.cpython-39.pyc 2025-08-14T21:48:29.2728732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\decomposition.cpython-39.pyc 2025-08-14T21:48:29.2732414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\dependencies.cpython-39.pyc 2025-08-14T21:48:29.2736532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\dtype_propagation.cpython-39.pyc 2025-08-14T21:48:29.2740047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\exc.cpython-39.pyc 2025-08-14T21:48:29.2743768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\extern_node_serializer.cpython-39.pyc 2025-08-14T21:48:29.2747301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\freezing.cpython-39.pyc 2025-08-14T21:48:29.2751034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\freezing_utils.cpython-39.pyc 2025-08-14T21:48:29.2754715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\fuzzer.cpython-39.pyc 2025-08-14T21:48:29.2758367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\fx_utils.cpython-39.pyc 2025-08-14T21:48:29.2769968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\graph.cpython-39.pyc 2025-08-14T21:48:29.2773711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\hooks.cpython-39.pyc 2025-08-14T21:48:29.2777268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\index_propagation.cpython-39.pyc 2025-08-14T21:48:29.2780813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\inductor_prims.cpython-39.pyc 2025-08-14T21:48:29.2784493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\ir.cpython-39.pyc 2025-08-14T21:48:29.2790916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\jagged_lowerings.cpython-39.pyc 2025-08-14T21:48:29.2794644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\kernel_inputs.cpython-39.pyc 2025-08-14T21:48:29.2798413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\loop_body.cpython-39.pyc 2025-08-14T21:48:29.2810090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\lowering.cpython-39.pyc 2025-08-14T21:48:29.2814482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\memory.cpython-39.pyc 2025-08-14T21:48:29.2818053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\metrics.cpython-39.pyc 2025-08-14T21:48:29.2821759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\mkldnn_ir.cpython-39.pyc 2025-08-14T21:48:29.2825347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\mkldnn_lowerings.cpython-39.pyc 2025-08-14T21:48:29.2829236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\mock_cache.cpython-39.pyc 2025-08-14T21:48:29.2832706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\ops_handler.cpython-39.pyc 2025-08-14T21:48:29.2836415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\optimize_indexing.cpython-39.pyc 2025-08-14T21:48:29.2844345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\output_code.cpython-39.pyc 2025-08-14T21:48:29.2847847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\pattern_matcher.cpython-39.pyc 2025-08-14T21:48:29.2851892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\quantized_lowerings.cpython-39.pyc 2025-08-14T21:48:29.2855392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\remote_cache.cpython-39.pyc 2025-08-14T21:48:29.2859948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\remote_gemm_autotune_cache.cpython-39.pyc 2025-08-14T21:48:29.2863554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\scheduler.cpython-39.pyc 2025-08-14T21:48:29.2868065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\select_algorithm.cpython-39.pyc 2025-08-14T21:48:29.2872091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\sizevars.cpython-39.pyc 2025-08-14T21:48:29.2880635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\standalone_compile.cpython-39.pyc 2025-08-14T21:48:29.2884296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\subgraph_lowering.cpython-39.pyc 2025-08-14T21:48:29.2887907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\template_heuristics.cpython-39.pyc 2025-08-14T21:48:29.2891780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\template_registry.cpython-39.pyc 2025-08-14T21:48:29.2895339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\test_case.cpython-39.pyc 2025-08-14T21:48:29.2898950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\test_operators.cpython-39.pyc 2025-08-14T21:48:29.2902398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\tiling_utils.cpython-39.pyc 2025-08-14T21:48:29.2906206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\triton_bundler.cpython-39.pyc 2025-08-14T21:48:29.2914914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:29.2919013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\virtualized.cpython-39.pyc 2025-08-14T21:48:29.2922646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\wrapper_benchmark.cpython-39.pyc 2025-08-14T21:48:29.2926194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\__autotune_main__.cpython-39.pyc 2025-08-14T21:48:29.2929703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.2940649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\closure.py 2025-08-14T21:48:29.2944402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\computation.py 2025-08-14T21:48:29.2947860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\config.py 2025-08-14T21:48:29.2951481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\debug.py 2025-08-14T21:48:29.2954771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\device_context.py 2025-08-14T21:48:29.2963028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\extract_compiled_graph.py 2025-08-14T21:48:29.2966318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\ir_cache.py 2025-08-14T21:48:29.2969603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\metrics.py 2025-08-14T21:48:29.2972897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\tensor_factory_functions.py 2025-08-14T21:48:29.2976877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\ts_backend.py 2025-08-14T21:48:29.2980343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__init__.py 2025-08-14T21:48:29.2988275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\closure.cpython-39.pyc 2025-08-14T21:48:29.2991661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\computation.cpython-39.pyc 2025-08-14T21:48:29.2995099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\config.cpython-39.pyc 2025-08-14T21:48:29.3003872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\debug.cpython-39.pyc 2025-08-14T21:48:29.3007106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\device_context.cpython-39.pyc 2025-08-14T21:48:29.3010675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\extract_compiled_graph.cpython-39.pyc 2025-08-14T21:48:29.3014260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\ir_cache.cpython-39.pyc 2025-08-14T21:48:29.3035601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\metrics.cpython-39.pyc 2025-08-14T21:48:29.3039290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\tensor_factory_functions.cpython-39.pyc 2025-08-14T21:48:29.3042872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\ts_backend.cpython-39.pyc 2025-08-14T21:48:29.3046228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.3058315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\autograd.py 2025-08-14T21:48:29.3061996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\custom_ops.py 2025-08-14T21:48:29.3065877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\fake_class_registry.py 2025-08-14T21:48:29.3069490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\fake_impl.py 2025-08-14T21:48:29.3078401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\fake_profile.py 2025-08-14T21:48:29.3081784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\infer_schema.py 2025-08-14T21:48:29.3085594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\simple_registry.py 2025-08-14T21:48:29.3089041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\triton.py 2025-08-14T21:48:29.3092404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\utils.py 2025-08-14T21:48:29.3095769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__init__.py 2025-08-14T21:48:29.3108107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\autograd.cpython-39.pyc 2025-08-14T21:48:29.3108937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\custom_ops.cpython-39.pyc 2025-08-14T21:48:29.3110522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\fake_class_registry.cpython-39.pyc 2025-08-14T21:48:29.3118906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\fake_impl.cpython-39.pyc 2025-08-14T21:48:29.3122509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\fake_profile.cpython-39.pyc 2025-08-14T21:48:29.3126048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\infer_schema.cpython-39.pyc 2025-08-14T21:48:29.3130332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\simple_registry.cpython-39.pyc 2025-08-14T21:48:29.3134256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\triton.cpython-39.pyc 2025-08-14T21:48:29.3137961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:29.3141711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.3150139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\scribe.py 2025-08-14T21:48:29.3153807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\structured.py 2025-08-14T21:48:29.3157290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\_internal.py 2025-08-14T21:48:29.3161503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\_registrations.py 2025-08-14T21:48:29.3174458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__init__.py 2025-08-14T21:48:29.3178120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__pycache__\scribe.cpython-39.pyc 2025-08-14T21:48:29.3181752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__pycache__\structured.cpython-39.pyc 2025-08-14T21:48:29.3186513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__pycache__\_internal.cpython-39.pyc 2025-08-14T21:48:29.3193568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__pycache__\_registrations.cpython-39.pyc 2025-08-14T21:48:29.3198338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.3205284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\fft.py 2025-08-14T21:48:29.3208395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\linalg.py 2025-08-14T21:48:29.3211759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\random.py 2025-08-14T21:48:29.3215027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_binary_ufuncs_impl.py 2025-08-14T21:48:29.3218275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_casting_dicts.py 2025-08-14T21:48:29.3226422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_dtypes.py 2025-08-14T21:48:29.3229751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_dtypes_impl.py 2025-08-14T21:48:29.3233037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_funcs.py 2025-08-14T21:48:29.3236457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_funcs_impl.py 2025-08-14T21:48:29.3240493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_getlimits.py 2025-08-14T21:48:29.3243767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_ndarray.py 2025-08-14T21:48:29.3247517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_normalizations.py 2025-08-14T21:48:29.3251035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_reductions_impl.py 2025-08-14T21:48:29.3254358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_ufuncs.py 2025-08-14T21:48:29.3258131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_unary_ufuncs_impl.py 2025-08-14T21:48:29.3262285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_util.py 2025-08-14T21:48:29.3265476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__init__.py 2025-08-14T21:48:29.3272309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\testing\utils.py 2025-08-14T21:48:29.3276381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\testing\__init__.py 2025-08-14T21:48:29.3283156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\testing\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:29.3286973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\testing\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.3295380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\fft.cpython-39.pyc 2025-08-14T21:48:29.3298921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\linalg.cpython-39.pyc 2025-08-14T21:48:29.3302432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\random.cpython-39.pyc 2025-08-14T21:48:29.3310237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_binary_ufuncs_impl.cpython-39.pyc 2025-08-14T21:48:29.3313595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_casting_dicts.cpython-39.pyc 2025-08-14T21:48:29.3317137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_dtypes.cpython-39.pyc 2025-08-14T21:48:29.3320693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_dtypes_impl.cpython-39.pyc 2025-08-14T21:48:29.3324108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_funcs.cpython-39.pyc 2025-08-14T21:48:29.3327560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_funcs_impl.cpython-39.pyc 2025-08-14T21:48:29.3331442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_getlimits.cpython-39.pyc 2025-08-14T21:48:29.3335056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_ndarray.cpython-39.pyc 2025-08-14T21:48:29.3338632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_normalizations.cpython-39.pyc 2025-08-14T21:48:29.3342060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_reductions_impl.cpython-39.pyc 2025-08-14T21:48:29.3345517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_ufuncs.cpython-39.pyc 2025-08-14T21:48:29.3349015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_unary_ufuncs_impl.cpython-39.pyc 2025-08-14T21:48:29.3352494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_util.cpython-39.pyc 2025-08-14T21:48:29.3356004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.3369029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\context.py 2025-08-14T21:48:29.3372359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\debug_prims.py 2025-08-14T21:48:29.3375820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\executor.py 2025-08-14T21:48:29.3379050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\rng_prims.py 2025-08-14T21:48:29.3382366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__init__.py 2025-08-14T21:48:29.3394722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__pycache__\context.cpython-39.pyc 2025-08-14T21:48:29.3398271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__pycache__\debug_prims.cpython-39.pyc 2025-08-14T21:48:29.3402013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__pycache__\executor.cpython-39.pyc 2025-08-14T21:48:29.3410334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__pycache__\rng_prims.cpython-39.pyc 2025-08-14T21:48:29.3413778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.3421608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims_common\wrappers.py 2025-08-14T21:48:29.3424958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims_common\__init__.py 2025-08-14T21:48:29.3432101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims_common\__pycache__\wrappers.cpython-39.pyc 2025-08-14T21:48:29.3435949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims_common\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.3444076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\fft.py 2025-08-14T21:48:29.3447468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\_conversions.py 2025-08-14T21:48:29.3450843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\__init__.py 2025-08-14T21:48:29.3459408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\linalg\__init__.py 2025-08-14T21:48:29.3466124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\linalg\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.3473977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\nn\__init__.py 2025-08-14T21:48:29.3480625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\nn\functional\__init__.py 2025-08-14T21:48:29.3487417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\nn\functional\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.3494914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\nn\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.3508632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\special\__init__.py 2025-08-14T21:48:29.3515282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\special\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.3522819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\__pycache__\fft.cpython-39.pyc 2025-08-14T21:48:29.3526244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\__pycache__\_conversions.cpython-39.pyc 2025-08-14T21:48:29.3529762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.3578488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\cli_function_profiler.py 2025-08-14T21:48:29.3579141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\compile_time_profiler.py 2025-08-14T21:48:29.3579708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\__init__.py 2025-08-14T21:48:29.3580376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\__pycache__\cli_function_profiler.cpython-39.pyc 2025-08-14T21:48:29.3581186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\__pycache__\compile_time_profiler.cpython-39.pyc 2025-08-14T21:48:29.3581928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.3586726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\fake_impls.py 2025-08-14T21:48:29.3590934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\fake_tensor.py 2025-08-14T21:48:29.3595785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\fake_utils.py 2025-08-14T21:48:29.3604362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\functional_tensor.py 2025-08-14T21:48:29.3607738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\meta_utils.py 2025-08-14T21:48:29.3611782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\schema_check_mode.py 2025-08-14T21:48:29.3615358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\_fake_tensor_utils.py 2025-08-14T21:48:29.3618903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__init__.py 2025-08-14T21:48:29.3626401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\fake_impls.cpython-39.pyc 2025-08-14T21:48:29.3630054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\fake_tensor.cpython-39.pyc 2025-08-14T21:48:29.3634252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\fake_utils.cpython-39.pyc 2025-08-14T21:48:29.3642276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\functional_tensor.cpython-39.pyc 2025-08-14T21:48:29.3645728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\meta_utils.cpython-39.pyc 2025-08-14T21:48:29.3649305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\schema_check_mode.cpython-39.pyc 2025-08-14T21:48:29.3652920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\_fake_tensor_utils.cpython-39.pyc 2025-08-14T21:48:29.3656262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.3664621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\__init__.py 2025-08-14T21:48:29.3670354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\version.py 2025-08-14T21:48:29.3673866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\_structures.py 2025-08-14T21:48:29.3677744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\__init__.py 2025-08-14T21:48:29.3689520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\__pycache__\version.cpython-39.pyc 2025-08-14T21:48:29.3693121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\__pycache__\_structures.cpython-39.pyc 2025-08-14T21:48:29.3696697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.3708570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.3717136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\functional.cpython-39.pyc 2025-08-14T21:48:29.3721969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\hub.cpython-39.pyc 2025-08-14T21:48:29.3726371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\library.cpython-39.pyc 2025-08-14T21:48:29.3736747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\overrides.cpython-39.pyc 2025-08-14T21:48:29.3741297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\quasirandom.cpython-39.pyc 2025-08-14T21:48:29.3744880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\random.cpython-39.pyc 2025-08-14T21:48:29.3748349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\return_types.cpython-39.pyc 2025-08-14T21:48:29.3752426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\serialization.cpython-39.pyc 2025-08-14T21:48:29.3756927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\storage.cpython-39.pyc 2025-08-14T21:48:29.3761102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\torch_version.cpython-39.pyc 2025-08-14T21:48:29.3765308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\types.cpython-39.pyc 2025-08-14T21:48:29.3769309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\version.cpython-39.pyc 2025-08-14T21:48:29.3773363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_appdirs.cpython-39.pyc 2025-08-14T21:48:29.3777569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_classes.cpython-39.pyc 2025-08-14T21:48:29.3781462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_compile.cpython-39.pyc 2025-08-14T21:48:29.3785060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_custom_ops.cpython-39.pyc 2025-08-14T21:48:29.3788733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_environment.cpython-39.pyc 2025-08-14T21:48:29.3799380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_guards.cpython-39.pyc 2025-08-14T21:48:29.3803131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_jit_internal.cpython-39.pyc 2025-08-14T21:48:29.3807375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_linalg_utils.cpython-39.pyc 2025-08-14T21:48:29.3810777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_lobpcg.cpython-39.pyc 2025-08-14T21:48:29.3814278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_lowrank.cpython-39.pyc 2025-08-14T21:48:29.3817971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_meta_registrations.cpython-39.pyc 2025-08-14T21:48:29.3822527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_namedtensor_internals.cpython-39.pyc 2025-08-14T21:48:29.3826200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_ops.cpython-39.pyc 2025-08-14T21:48:29.3834722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_python_dispatcher.cpython-39.pyc 2025-08-14T21:48:29.3838259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_size_docs.cpython-39.pyc 2025-08-14T21:48:29.3842096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_sources.cpython-39.pyc 2025-08-14T21:48:29.3845516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_storage_docs.cpython-39.pyc 2025-08-14T21:48:29.3848984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_streambase.cpython-39.pyc 2025-08-14T21:48:29.3852543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_tensor.cpython-39.pyc 2025-08-14T21:48:29.3857181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_tensor_docs.cpython-39.pyc 2025-08-14T21:48:29.3861580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_tensor_str.cpython-39.pyc 2025-08-14T21:48:29.3865902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_thread_safe_fork.cpython-39.pyc 2025-08-14T21:48:29.3875476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_torch_docs.cpython-39.pyc 2025-08-14T21:48:29.3881327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:48:29.3884747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_utils_internal.cpython-39.pyc 2025-08-14T21:48:29.3888198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_VF.cpython-39.pyc 2025-08-14T21:48:29.3892160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_vmap_internals.cpython-39.pyc 2025-08-14T21:48:29.3895673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_weights_only_unpickler.cpython-39.pyc 2025-08-14T21:48:29.3899121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\__config__.cpython-39.pyc 2025-08-14T21:48:29.3902634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\__future__.cpython-39.pyc 2025-08-14T21:48:29.3915094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:29.3923857Z 13440 File(s) copied 2025-08-14T21:48:29.5472166Z ********************************************************************** 2025-08-14T21:48:29.5472608Z ** Visual Studio 2022 Developer Command Prompt v17.8.22 2025-08-14T21:48:29.5472954Z ** Copyright (c) 2022 Microsoft Corporation 2025-08-14T21:48:29.5473267Z ********************************************************************** 2025-08-14T21:48:30.1735083Z [vcvarsall.bat] Environment initialized for: 'x64' 2025-08-14T21:48:30.1770351Z 2025-08-14T21:48:30.1770866Z (base) C:\actions-runner\_work\pytorch\pytorch>popd 2025-08-14T21:48:30.1774847Z 2025-08-14T21:48:30.1775138Z (base) C:\actions-runner\_work\pytorch\pytorch>set DISTUTILS_USE_SDK=1 2025-08-14T21:48:30.1777923Z 2025-08-14T21:48:30.1778268Z (base) C:\actions-runner\_work\pytorch\pytorch>if not "0" == "1" goto cuda_build_end 2025-08-14T21:48:30.1781210Z 2025-08-14T21:48:30.1782459Z (base) C:\actions-runner\_work\pytorch\pytorch>set PYTHONPATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build; 2025-08-14T21:48:30.1784479Z 2025-08-14T21:48:30.1784998Z (base) C:\actions-runner\_work\pytorch\pytorch>set 2025-08-14T21:48:30.1976195Z ACTIONS_ID_TOKEN_REQUEST_TOKEN=*** 2025-08-14T21:48:30.1977399Z ACTIONS_ID_TOKEN_REQUEST_URL=https://run-actions-3-azure-eastus.actions.githubusercontent.com/35//idtoken/eb633651-a2d8-43a7-b851-b43ceeb8c5b6/e15b5e5f-47e0-5be9-b0de-90b5fce8f49a?api-version=2.0 2025-08-14T21:48:30.1978671Z ACTIONS_RUNNER_HOOK_JOB_COMPLETED=C:\actions-runner\jobcompleted.ps1 2025-08-14T21:48:30.1979077Z ALLUSERSPROFILE=C:\ProgramData 2025-08-14T21:48:30.1979459Z ALPINE_IMAGE=308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-08-14T21:48:30.1979879Z APPDATA=C:\Users\runneruser\AppData\Roaming 2025-08-14T21:48:30.1980170Z AWS_DEFAULT_REGION=us-east-1 2025-08-14T21:48:30.1980408Z AWS_EXECUTION_ENV=EC2 2025-08-14T21:48:30.1980634Z BUILD_ENVIRONMENT=win-vs2022-cpu-py3 2025-08-14T21:48:30.1980892Z CI=true 2025-08-14T21:48:30.1981078Z CommandPromptType=Native 2025-08-14T21:48:30.1981357Z COMMONPROGRAMFILES=C:\Program Files\Common Files 2025-08-14T21:48:30.1981688Z COMPUTERNAME=EC2AMAZ-VK08H34 2025-08-14T21:48:30.1982012Z COMSPEC=C:\Windows\system32\cmd.exe 2025-08-14T21:48:30.1982372Z CONDA_BUILD=C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:48:30.1982756Z CONDA_DEFAULT_ENV=base 2025-08-14T21:48:30.1983021Z CONDA_EXE=C:\Jenkins\Miniconda3\Scripts\conda.exe 2025-08-14T21:48:30.1983415Z CONDA_INSTALL=C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:48:30.1983868Z CONDA_PARENT_DIR=C:\Jenkins 2025-08-14T21:48:30.1984121Z CONDA_PREFIX=C:\Jenkins\Miniconda3 2025-08-14T21:48:30.1984409Z CONDA_PROMPT_MODIFIER=(base) 2025-08-14T21:48:30.1984694Z CONDA_PYTHON_EXE=C:\Jenkins\Miniconda3\python.exe 2025-08-14T21:48:30.1985146Z CONDA_RUN=C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:48:30.1985546Z CONDA_SHLVL=1 2025-08-14T21:48:30.1985752Z CONTINUE_THROUGH_ERROR=True 2025-08-14T21:48:30.1986092Z CUDA_PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.9 2025-08-14T21:48:30.1986688Z CUDA_PATH_V12_6=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-08-14T21:48:30.1987176Z CUDA_PATH_V12_8=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.8 2025-08-14T21:48:30.1987649Z CUDA_PATH_V12_9=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.9 2025-08-14T21:48:30.1988023Z CUDA_VERSION=cpu 2025-08-14T21:48:30.1988256Z ChocolateyInstall=C:\ProgramData\chocolatey 2025-08-14T21:48:30.1988638Z CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files 2025-08-14T21:48:30.1989030Z CommonProgramW6432=C:\Program Files\Common Files 2025-08-14T21:48:30.1989497Z DevEnvDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\ 2025-08-14T21:48:30.1989924Z DISTUTILS_USE_SDK=1 2025-08-14T21:48:30.1990177Z DriverData=C:\Windows\System32\Drivers\DriverData 2025-08-14T21:48:30.1990494Z EC2LAUNCH_TELEMETRY=1 2025-08-14T21:48:30.1990865Z ExtensionSdkDir=C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs 2025-08-14T21:48:30.1993050Z EXTERNAL_INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um 2025-08-14T21:48:30.1995072Z Framework40Version=v4.0 2025-08-14T21:48:30.1995344Z FrameworkDir=C:\Windows\Microsoft.NET\Framework64\ 2025-08-14T21:48:30.1995714Z FrameworkDir64=C:\Windows\Microsoft.NET\Framework64\ 2025-08-14T21:48:30.1996046Z FrameworkVersion=v4.0.30319 2025-08-14T21:48:30.1996293Z FrameworkVersion64=v4.0.30319 2025-08-14T21:48:30.1996533Z GITHUB_ACTION=test 2025-08-14T21:48:30.1996725Z GITHUB_ACTIONS=true 2025-08-14T21:48:30.1996926Z GITHUB_ACTION_REF= 2025-08-14T21:48:30.1997128Z GITHUB_ACTION_REPOSITORY= 2025-08-14T21:48:30.1997369Z GITHUB_ACTOR=pytorchmergebot 2025-08-14T21:48:30.1997614Z GITHUB_ACTOR_ID=97764156 2025-08-14T21:48:30.1997939Z GITHUB_API_URL=https://api.github.com 2025-08-14T21:48:30.1998291Z GITHUB_BASE_REF= 2025-08-14T21:48:30.1998737Z GITHUB_ENV=C:\actions-runner\_work\_temp\_runner_file_commands\set_env_44eab417-38ff-4f1c-9bfa-e2edb9e4240d 2025-08-14T21:48:30.1999251Z GITHUB_EVENT_NAME=push 2025-08-14T21:48:30.1999597Z GITHUB_EVENT_PATH=C:\actions-runner\_work\_temp\_github_workflow\event.json 2025-08-14T21:48:30.2000057Z GITHUB_GRAPHQL_URL=https://api.github.com/graphql 2025-08-14T21:48:30.2000363Z GITHUB_HEAD_REF= 2025-08-14T21:48:30.2000562Z GITHUB_JOB=test 2025-08-14T21:48:30.2001081Z GITHUB_OUTPUT=C:\actions-runner\_work\_temp\_runner_file_commands\set_output_44eab417-38ff-4f1c-9bfa-e2edb9e4240d 2025-08-14T21:48:30.2001932Z GITHUB_PATH=C:\actions-runner\_work\_temp\_runner_file_commands\add_path_44eab417-38ff-4f1c-9bfa-e2edb9e4240d 2025-08-14T21:48:30.2002454Z GITHUB_REF=refs/heads/main 2025-08-14T21:48:30.2002691Z GITHUB_REF_NAME=main 2025-08-14T21:48:30.2002908Z GITHUB_REF_PROTECTED=true 2025-08-14T21:48:30.2003133Z GITHUB_REF_TYPE=branch 2025-08-14T21:48:30.2003370Z GITHUB_REPOSITORY=pytorch/pytorch 2025-08-14T21:48:30.2003637Z GITHUB_REPOSITORY_ID=65600975 2025-08-14T21:48:30.2003977Z GITHUB_REPOSITORY_OWNER=pytorch 2025-08-14T21:48:30.2004230Z GITHUB_REPOSITORY_OWNER_ID=21003710 2025-08-14T21:48:30.2004498Z GITHUB_RETENTION_DAYS=90 2025-08-14T21:48:30.2004741Z GITHUB_RUN_ATTEMPT=1 2025-08-14T21:48:30.2004948Z GITHUB_RUN_ID=16976255045 2025-08-14T21:48:30.2005179Z GITHUB_RUN_NUMBER=140204 2025-08-14T21:48:30.2005421Z GITHUB_SERVER_URL=https://github.com 2025-08-14T21:48:30.2005736Z GITHUB_SHA=1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T21:48:30.2006402Z GITHUB_STATE=C:\actions-runner\_work\_temp\_runner_file_commands\save_state_44eab417-38ff-4f1c-9bfa-e2edb9e4240d 2025-08-14T21:48:30.2007231Z GITHUB_STEP_SUMMARY=C:\actions-runner\_work\_temp\_runner_file_commands\step_summary_44eab417-38ff-4f1c-9bfa-e2edb9e4240d 2025-08-14T21:48:30.2007816Z GITHUB_TRIGGERING_ACTOR=pytorchmergebot 2025-08-14T21:48:30.2008114Z GITHUB_WORKFLOW=trunk 2025-08-14T21:48:30.2008490Z GITHUB_WORKFLOW_REF=pytorch/pytorch/.github/workflows/trunk.yml@refs/heads/main 2025-08-14T21:48:30.2008988Z GITHUB_WORKFLOW_SHA=1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T21:48:30.2009404Z GITHUB_WORKSPACE=C:\actions-runner\_work\pytorch\pytorch 2025-08-14T21:48:30.2009735Z GIT_DEFAULT_BRANCH=main 2025-08-14T21:48:30.2009963Z HOME=C:\Users\runneruser 2025-08-14T21:48:30.2011909Z INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um 2025-08-14T21:48:30.2014112Z INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-08-14T21:48:30.2014642Z INSTALL_WINDOWS_SDK=1 2025-08-14T21:48:30.2014852Z JOB_ID=48128743919 2025-08-14T21:48:30.2015223Z JOB_NAME=win-vs2022-cpu-py3 / test (default, 1, 3, lf.windows.4xlarge.nonephemeral) 2025-08-14T21:48:30.2016440Z LIB=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\lib\x64;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64;C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64 2025-08-14T21:48:30.2018585Z LIBPATH=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\lib\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\lib\x86\store\references;C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.19041.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.19041.0;C:\Windows\Microsoft.NET\Framework64\v4.0.30319 2025-08-14T21:48:30.2020549Z LOCALAPPDATA=C:\Users\runneruser\AppData\Local 2025-08-14T21:48:30.2020954Z NETFXSDKDir=C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\ 2025-08-14T21:48:30.2021294Z NO_TD=False 2025-08-14T21:48:30.2021482Z NO_TEST_TIMEOUT=False 2025-08-14T21:48:30.2021687Z NUMBER_OF_PROCESSORS=16 2025-08-14T21:48:30.2021901Z NUM_TEST_SHARDS=3 2025-08-14T21:48:30.2022110Z OLDPWD=C:/16976255045/build-results 2025-08-14T21:48:30.2022353Z OS=Windows_NT 2025-08-14T21:48:30.2028698Z PATH=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\Linux\bin\ConnectionManagerExe 2025-08-14T21:48:30.2035507Z PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC 2025-08-14T21:48:30.2035844Z Platform=x64 2025-08-14T21:48:30.2036043Z PROCESSOR_ARCHITECTURE=AMD64 2025-08-14T21:48:30.2036416Z PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 85 Stepping 7, GenuineIntel 2025-08-14T21:48:30.2036799Z PROCESSOR_LEVEL=6 2025-08-14T21:48:30.2037062Z PROCESSOR_REVISION=5507 2025-08-14T21:48:30.2037382Z PROGRAMFILES=C:\Program Files 2025-08-14T21:48:30.2037678Z PROJECT_DIR=C:/actions-runner/_work/pytorch/pytorch 2025-08-14T21:48:30.2038057Z PROJECT_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch 2025-08-14T21:48:30.2038456Z PROMPT=(base) $P$G 2025-08-14T21:48:30.2038656Z PR_NUMBER= 2025-08-14T21:48:30.2039101Z PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules;C:\Program Files\WindowsPowerShell\Modules 2025-08-14T21:48:30.2039655Z PUBLIC=C:\Users\Public 2025-08-14T21:48:30.2040669Z *** 2025-08-14T21:48:30.2040982Z PYTHONPATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build; 2025-08-14T21:48:30.2041376Z PYTHON_VERSION=3.9 2025-08-14T21:48:30.2041638Z PYTORCH_FINAL_PACKAGE_DIR=C:/16976255045/build-results/ 2025-08-14T21:48:30.2042102Z PYTORCH_FINAL_PACKAGE_DIR_WIN=C:\16976255045\build-results\ 2025-08-14T21:48:30.2042502Z PYTORCH_TEST_CUDA_MEM_LEAK_CHECK=0 2025-08-14T21:48:30.2042785Z PYTORCH_TEST_RERUN_DISABLED_TESTS=0 2025-08-14T21:48:30.2043110Z ProgramData=C:\ProgramData 2025-08-14T21:48:30.2043418Z ProgramFiles(x86)=C:\Program Files (x86) 2025-08-14T21:48:30.2043741Z ProgramW6432=C:\Program Files 2025-08-14T21:48:30.2043990Z REENABLED_ISSUES= 2025-08-14T21:48:30.2044297Z RUNNER_ARCH=X64 2025-08-14T21:48:30.2044503Z RUNNER_ENVIRONMENT=self-hosted 2025-08-14T21:48:30.2044767Z RUNNER_NAME=i-0598cc65f7dec76e0 2025-08-14T21:48:30.2045002Z RUNNER_OS=Windows 2025-08-14T21:48:30.2045240Z RUNNER_TEMP=C:\actions-runner\_work\_temp 2025-08-14T21:48:30.2045558Z RUNNER_TOOL_CACHE=C:\actions-runner\_work\_tool 2025-08-14T21:48:30.2045946Z RUNNER_TRACKING_ID=github_32e13185-0e9c-4df0-ad3a-2f72d890c9b5 2025-08-14T21:48:30.2046333Z RUNNER_WORKSPACE=C:\actions-runner\_work\pytorch 2025-08-14T21:48:30.2046818Z SCRIPT_HELPERS_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-08-14T21:48:30.2047298Z SHA1=1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T21:48:30.2047579Z SHARD_NUMBER=1 2025-08-14T21:48:30.2047766Z SHLVL=2 2025-08-14T21:48:30.2048004Z SSL_CERT_FILE=C:\Jenkins\Miniconda3\Library\ssl\cacert.pem 2025-08-14T21:48:30.2048333Z SYSTEMDRIVE=C: 2025-08-14T21:48:30.2048528Z SYSTEMROOT=C:\Windows 2025-08-14T21:48:30.2048772Z TEMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:48:30.2049040Z TERM=xterm-256color 2025-08-14T21:48:30.2049293Z TEST_CONFIG=default 2025-08-14T21:48:30.2049658Z TEST_DIR=C:/actions-runner/_work/pytorch/pytorch/test 2025-08-14T21:48:30.2050050Z TEST_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\test 2025-08-14T21:48:30.2050373Z TEST_SHOWLOCALS=False 2025-08-14T21:48:30.2050623Z TMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:48:30.2050934Z TMPDIR=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:48:30.2051285Z TMP_DIR=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-08-14T21:48:30.2051728Z TMP_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp 2025-08-14T21:48:30.2052082Z TORCH_CUDA_ARCH_LIST=8.6 2025-08-14T21:48:30.2052430Z TORCH_SERIALIZATION_DEBUG=1 2025-08-14T21:48:30.2052662Z UCRTVersion=10.0.19041.0 2025-08-14T21:48:30.2052973Z UniversalCRTSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-08-14T21:48:30.2053330Z UPDATEFILE=update.finished 2025-08-14T21:48:30.2053585Z USERDOMAIN=EC2AMAZ-VK08H34 2025-08-14T21:48:30.2053819Z USERNAME=runneruser 2025-08-14T21:48:30.2054031Z USERPROFILE=C:\Users\runneruser 2025-08-14T21:48:30.2054284Z USE_CUDA=0 2025-08-14T21:48:30.2054664Z VCIDEInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\ 2025-08-14T21:48:30.2055327Z VCINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\ 2025-08-14T21:48:30.2056021Z VCToolsInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\ 2025-08-14T21:48:30.2056775Z VCToolsRedistDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Redist\MSVC\14.38.33130\ 2025-08-14T21:48:30.2057287Z VCToolsVersion=14.38.33130 2025-08-14T21:48:30.2057525Z VC_PRODUCT=BuildTools 2025-08-14T21:48:30.2057735Z VC_VERSION= 2025-08-14T21:48:30.2057906Z VC_YEAR=2022 2025-08-14T21:48:30.2058119Z VERBOSE_ARG='SilentlyContinue' 2025-08-14T21:48:30.2058363Z VERBOSE_TEST_LOGS=False 2025-08-14T21:48:30.2058597Z VisualStudioVersion=17.0 2025-08-14T21:48:30.2059008Z VS170COMNTOOLS=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\ 2025-08-14T21:48:30.2059471Z VSCMD_ARG_app_plat=Desktop 2025-08-14T21:48:30.2059696Z VSCMD_ARG_HOST_ARCH=x64 2025-08-14T21:48:30.2059915Z VSCMD_ARG_TGT_ARCH=x64 2025-08-14T21:48:30.2060121Z VSCMD_VER=17.8.22 2025-08-14T21:48:30.2060447Z VSINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\ 2025-08-14T21:48:30.2060890Z VS_VERSION=17.4.1 2025-08-14T21:48:30.2061078Z WINDIR=C:\Windows 2025-08-14T21:48:30.2061669Z 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-14T21:48:30.2062377Z WindowsSdkBinPath=C:\Program Files (x86)\Windows Kits\10\bin\ 2025-08-14T21:48:30.2062809Z WindowsSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-08-14T21:48:30.2063148Z WindowsSDKLibVersion=10.0.19041.0\ 2025-08-14T21:48:30.2063631Z WindowsSdkVerBinPath=C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\ 2025-08-14T21:48:30.2064063Z WindowsSDKVersion=10.0.19041.0\ 2025-08-14T21:48:30.2064562Z WindowsSDK_ExecutablePath_x64=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\ 2025-08-14T21:48:30.2065362Z WindowsSDK_ExecutablePath_x86=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\ 2025-08-14T21:48:30.2066086Z _=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/test_python_shard.bat 2025-08-14T21:48:30.2066565Z __CONDA_OPENSLL_CERT_FILE_SET="1" 2025-08-14T21:48:30.2066881Z __DOTNET_ADD_64BIT=1 2025-08-14T21:48:30.2067104Z __DOTNET_PREFERRED_BITNESS=64 2025-08-14T21:48:30.2070247Z __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-14T21:48:30.2073427Z 2025-08-14T21:48:30.2073615Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-14T21:48:30.2074091Z echo "setup pytorch env failed" 2025-08-14T21:48:30.2074335Z echo 0 2025-08-14T21:48:30.2074507Z exit /b 2025-08-14T21:48:30.2074662Z ) 2025-08-14T21:48:30.2074761Z 2025-08-14T21:48:30.2074922Z (base) C:\actions-runner\_work\pytorch\pytorch>pushd test 2025-08-14T21:48:30.2075180Z 2025-08-14T21:48:30.2075597Z (base) C:\actions-runner\_work\pytorch\pytorch\test>set GFLAGS_EXE="C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\gflags.exe" 2025-08-14T21:48:30.2076105Z 2025-08-14T21:48:30.2076506Z (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-14T21:48:30.2077093Z echo Some smoke tests 2025-08-14T21:48:30.2077461Z "C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\gflags.exe" /i python.exe +sls 2025-08-14T21:48:30.2078239Z python C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\run_python_nn_smoketests.py 2025-08-14T21:48:30.2078853Z if ERRORLEVEL 1 goto fail 2025-08-14T21:48:30.2079307Z "C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\gflags.exe" /i python.exe -sls 2025-08-14T21:48:30.2079736Z if ERRORLEVEL 1 goto fail 2025-08-14T21:48:30.2079952Z ) ) 2025-08-14T21:48:30.2080126Z Some smoke tests 2025-08-14T21:48:30.2080419Z Current Registry Settings for python.exe executable are: 00000002 2025-08-14T21:48:30.2080792Z sls - Show Loader Snaps 2025-08-14T21:48:39.4313990Z Checking that torch is available 2025-08-14T21:48:39.4314358Z Command: python -c import torch 2025-08-14T21:48:39.4314613Z Checking that MKL is available 2025-08-14T21:48:39.4315023Z Command: python -c import torch; exit(0 if torch.backends.mkl.is_available() else 1) 2025-08-14T21:48:39.4432360Z Current Registry Settings for python.exe executable are: 00000000 2025-08-14T21:48:39.4446004Z 2025-08-14T21:48:39.4446609Z (base) C:\actions-runner\_work\pytorch\pytorch\test>echo Copying over test times file 2025-08-14T21:48:39.4447353Z Copying over test times file 2025-08-14T21:48:39.4448561Z 2025-08-14T21:48:39.4449357Z (base) C:\actions-runner\_work\pytorch\pytorch\test>robocopy /E "C:\16976255045\build-results\\.additional_ci_files" "C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files" 2025-08-14T21:48:39.4593255Z 2025-08-14T21:48:39.4593702Z ------------------------------------------------------------------------------- 2025-08-14T21:48:39.4599433Z ROBOCOPY :: Robust File Copy for Windows 2025-08-14T21:48:39.4599960Z ------------------------------------------------------------------------------- 2025-08-14T21:48:39.4600237Z 2025-08-14T21:48:39.4600370Z Started : Thursday, August 14, 2025 9:48:39 PM 2025-08-14T21:48:39.4600735Z Source : C:\16976255045\build-results\.additional_ci_files\ 2025-08-14T21:48:39.4601180Z Dest : C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files\ 2025-08-14T21:48:39.4601473Z 2025-08-14T21:48:39.4601546Z Files : *.* 2025-08-14T21:48:39.4601731Z 2025-08-14T21:48:39.4601990Z Options : *.* /S /E /DCOPY:DA /COPY:DAT /R:1000000 /W:30 2025-08-14T21:48:39.4602231Z 2025-08-14T21:48:39.4602378Z ------------------------------------------------------------------------------ 2025-08-14T21:48:39.4603514Z 2025-08-14T21:48:39.4610672Z 2 C:\16976255045\build-results\.additional_ci_files\ 2025-08-14T21:48:39.4611487Z *EXTRA File 78697 td_results.json 2025-08-14T21:48:39.4620061Z New File 3.8 m test-class-times.json 2025-08-14T21:48:39.4623226Z 12% 2025-08-14T21:48:39.4626565Z 25% 2025-08-14T21:48:39.4629691Z 38% 2025-08-14T21:48:39.4634050Z 51% 2025-08-14T21:48:39.4636224Z 64% 2025-08-14T21:48:39.4640366Z 77% 2025-08-14T21:48:39.4641938Z 90% 2025-08-14T21:48:39.4644359Z 100% 2025-08-14T21:48:39.4655222Z New File 1.0 m test-times.json 2025-08-14T21:48:39.4657648Z 23% 2025-08-14T21:48:39.4658198Z 47% 2025-08-14T21:48:39.4659732Z 71% 2025-08-14T21:48:39.4661029Z 94% 2025-08-14T21:48:39.4664180Z 100% 2025-08-14T21:48:39.4664301Z 2025-08-14T21:48:39.4664478Z ------------------------------------------------------------------------------ 2025-08-14T21:48:39.4664799Z 2025-08-14T21:48:39.4666063Z Total Copied Skipped Mismatch FAILED Extras 2025-08-14T21:48:39.4666950Z Dirs : 1 0 1 0 0 0 2025-08-14T21:48:39.4667818Z Files : 2 2 0 0 0 1 2025-08-14T21:48:39.4668769Z Bytes : 4.90 m 4.90 m 0 0 0 76.8 k 2025-08-14T21:48:39.4669706Z Times : 0:00:00 0:00:00 0:00:00 0:00:00 2025-08-14T21:48:39.4669962Z 2025-08-14T21:48:39.4670469Z 2025-08-14T21:48:39.4671454Z Speed : 1286033250 Bytes/sec. 2025-08-14T21:48:39.4672455Z Speed : 73587.412 MegaBytes/min. 2025-08-14T21:48:39.4672829Z Ended : Thursday, August 14, 2025 9:48:39 PM 2025-08-14T21:48:39.4673141Z 2025-08-14T21:48:39.4690982Z 2025-08-14T21:48:39.4691414Z (base) C:\actions-runner\_work\pytorch\pytorch\test>echo Run nn tests 2025-08-14T21:48:39.4691971Z Run nn tests 2025-08-14T21:48:39.4693248Z 2025-08-14T21:48:39.4693803Z (base) C:\actions-runner\_work\pytorch\pytorch\test>python run_test.py --exclude-jit-executor --exclude-distributed-tests --shard "1" "3" --verbose 2025-08-14T21:48:49.2927311Z Found test times from artifacts 2025-08-14T21:48:49.3620824Z Found test times from artifacts 2025-08-14T21:48:49.3644102Z Running all tests 2025-08-14T21:48:49.4243900Z Running parallel tests on 3 processes 2025-08-14T21:48:49.4264910Z Name: tests to run (est. time: 90.32min) 2025-08-14T21:48:49.4265243Z Serial tests (49): 2025-08-14T21:48:49.4266086Z test_ci_sanity_check_fail 1/1 2025-08-14T21:48:49.4266739Z doctests 1/1 2025-08-14T21:48:49.4266997Z inductor/test_max_autotune 1/1 2025-08-14T21:48:49.4267276Z inductor/test_flex_attention 1/1 2025-08-14T21:48:49.4267585Z inductor/test_benchmark_fusion 1/1 2025-08-14T21:48:49.4267857Z inductor/test_cutlass_backend 1/1 2025-08-14T21:48:49.4268131Z dynamo/test_fake_distributed 1/1 2025-08-14T21:48:49.4268403Z inductor/test_distributed_patterns 1/1 2025-08-14T21:48:49.4268855Z test_cpp_api_parity 1/1 2025-08-14T21:48:49.4269098Z test_transformers_privateuse1 1/1 2025-08-14T21:48:49.4269374Z test_extension_utils 1/1 2025-08-14T21:48:49.4269610Z test_fx 1/1 2025-08-14T21:48:49.4269815Z test_fake_tensor 1/1 2025-08-14T21:48:49.4270032Z test_openreg 1/1 2025-08-14T21:48:49.4270229Z test_show_pickle 1/1 2025-08-14T21:48:49.4270451Z test_tensorexpr 1/1 2025-08-14T21:48:49.4270649Z test_torch 1/1 2025-08-14T21:48:49.4270839Z test_utils 1/1 2025-08-14T21:48:49.4271032Z test_python_dispatch 1/1 2025-08-14T21:48:49.4271928Z test_dispatch 1/1 2025-08-14T21:48:49.4272555Z test_namedtuple_return_api 1/1 2025-08-14T21:48:49.4272825Z test_multiprocessing 1/2 2025-08-14T21:48:49.4273079Z test_multiprocessing 2/2 2025-08-14T21:48:49.4273321Z test_autograd_fallback 1/1 2025-08-14T21:48:49.4273578Z test_cpp_extensions_mtia_backend 1/1 2025-08-14T21:48:49.4273853Z test_jit_disabled 1/1 2025-08-14T21:48:49.4274112Z functorch/test_memory_efficient_fusion 1/1 2025-08-14T21:48:49.4274401Z test_tensor_creation_ops 1/1 2025-08-14T21:48:49.4274753Z test_autocast 1/1 2025-08-14T21:48:49.4274988Z test_cpp_extensions_stream_and_event 1/1 2025-08-14T21:48:49.4275275Z test_cuda_trace 1/1 2025-08-14T21:48:49.4275485Z test_reductions 1/1 2025-08-14T21:48:49.4275699Z test_native_mha 1/1 2025-08-14T21:48:49.4275960Z test_sort_and_select 1/1 2025-08-14T21:48:49.4276220Z test_cuda_nvml_based_avail 1/1 2025-08-14T21:48:49.4276467Z test_nn 1/1 2025-08-14T21:48:49.4276675Z test_cpp_extensions_jit 1/1 2025-08-14T21:48:49.4276922Z test_overrides 1/1 2025-08-14T21:48:49.4278160Z nn/test_pooling 1/1 2025-08-14T21:48:49.4278548Z test_cuda_primary_ctx 1/1 2025-08-14T21:48:49.4278799Z test_mobile_optimizer 1/1 2025-08-14T21:48:49.4279056Z test_multiprocessing_spawn 1/1 2025-08-14T21:48:49.4279311Z nn/test_convolution 1/1 2025-08-14T21:48:49.4279564Z test_spectral_ops 1/1 2025-08-14T21:48:49.4279809Z distributions/test_distributions 1/1 2025-08-14T21:48:49.4280098Z test_autoload_enable 1/1 2025-08-14T21:48:49.4280348Z test_cpp_extensions_aot_no_ninja 1/1 2025-08-14T21:48:49.4280623Z test_autoload_disable 1/1 2025-08-14T21:48:49.4280882Z test_cpp_extensions_aot_ninja 1/1 2025-08-14T21:48:49.4281149Z Parallel tests (158): 2025-08-14T21:48:49.4281378Z inductor/test_aot_inductor 1/1 2025-08-14T21:48:49.4281627Z dynamo/test_logging 1/1 2025-08-14T21:48:49.4281862Z inductor/test_codecache 1/1 2025-08-14T21:48:49.4282106Z inductor/test_torchinductor 1/1 2025-08-14T21:48:49.4282395Z inductor/test_torchinductor_opinfo 1/1 2025-08-14T21:48:49.4282686Z inductor/test_cudagraph_trees 1/1 2025-08-14T21:48:49.4283985Z dynamo/test_repros 1/1 2025-08-14T21:48:49.4284218Z inductor/test_perf 1/1 2025-08-14T21:48:49.4284457Z dynamo/test_modules 1/1 2025-08-14T21:48:49.4284697Z inductor/test_smoke 1/1 2025-08-14T21:48:49.4284933Z inductor/test_compiled_autograd 1/1 2025-08-14T21:48:49.4285221Z inductor/test_inductor_freezing 1/1 2025-08-14T21:48:49.4285505Z inductor/test_snode_runtime 1/1 2025-08-14T21:48:49.4285766Z dynamo/test_backends 1/1 2025-08-14T21:48:49.4286009Z inductor/test_layout_optim 1/1 2025-08-14T21:48:49.4286285Z inductor/test_mmdecomp 1/1 2025-08-14T21:48:49.4286535Z dynamo/test_aot_autograd 1/1 2025-08-14T21:48:49.4286788Z inductor/test_control_flow 1/1 2025-08-14T21:48:49.4287075Z inductor/test_torchinductor_strided_blocks 1/1 2025-08-14T21:48:49.4287398Z inductor/test_triton_cpu_backend 1/1 2025-08-14T21:48:49.4287678Z inductor/test_flex_decoding 1/1 2025-08-14T21:48:49.4287953Z inductor/test_provenance_tracing 1/1 2025-08-14T21:48:49.4288242Z inductor/test_subgraph_choice 1/1 2025-08-14T21:48:49.4288509Z inductor/test_multi_kernel 1/1 2025-08-14T21:48:49.4289779Z export/test_retraceability 1/1 2025-08-14T21:48:49.4290155Z inductor/test_inductor_annotations 1/1 2025-08-14T21:48:49.4290448Z inductor/test_remote_cache 1/1 2025-08-14T21:48:49.4290703Z inductor/test_fp8 1/1 2025-08-14T21:48:49.4290944Z inductor/test_online_softmax 1/1 2025-08-14T21:48:49.4291256Z export/test_export_training_ir_to_run_decomp 1/1 2025-08-14T21:48:49.4291565Z inductor/test_b2b_gemm 1/1 2025-08-14T21:48:49.4291820Z inductor/test_memory_planning 1/1 2025-08-14T21:48:49.4292083Z dynamo/test_buffers_override 1/1 2025-08-14T21:48:49.4292358Z dynamo/test_fx_passes_pre_grad 1/1 2025-08-14T21:48:49.4292629Z inductor/test_cpu_cpp_wrapper 1/1 2025-08-14T21:48:49.4292910Z dynamo/test_inline_and_install 1/1 2025-08-14T21:48:49.4293191Z dynamo/test_skip_non_tensor 1/1 2025-08-14T21:48:49.4293460Z dynamo/test_recompiles 1/1 2025-08-14T21:48:49.4293736Z export/test_export_with_inline_and_install 1/1 2025-08-14T21:48:49.4294055Z inductor/test_op_dtype_prop 1/1 2025-08-14T21:48:49.4294318Z dynamo/test_sdpa 1/1 2025-08-14T21:48:49.4295553Z dynamo/test_global 1/1 2025-08-14T21:48:49.4295802Z inductor/test_fuzzer 1/1 2025-08-14T21:48:49.4296141Z inductor/test_triton_heuristics 1/1 2025-08-14T21:48:49.4296437Z inductor/test_compile_subprocess 1/1 2025-08-14T21:48:49.4296753Z inductor/test_helion_kernels 1/1 2025-08-14T21:48:49.4297026Z inductor/test_loop_ordering 1/1 2025-08-14T21:48:49.4297307Z inductor/test_fxir_backend 1/1 2025-08-14T21:48:49.4297577Z dynamo/test_install_free_tensors 1/1 2025-08-14T21:48:49.4297876Z export/test_cpp_serdes 1/1 2025-08-14T21:48:49.4298138Z inductor/test_needs_exact_strides 1/1 2025-08-14T21:48:49.4298438Z inductor/test_compile 1/1 2025-08-14T21:48:49.4298803Z dynamo/test_unittest 1/1 2025-08-14T21:48:49.4299116Z inductor/test_torchinductor_codegen_config_overrides 1/1 2025-08-14T21:48:49.4299474Z dynamo/test_modes 1/1 2025-08-14T21:48:49.4299711Z export/test_upgrader 1/1 2025-08-14T21:48:49.4299993Z dynamo/test_backward_higher_order_ops 1/1 2025-08-14T21:48:49.4301324Z inductor/test_auto_functionalize 1/1 2025-08-14T21:48:49.4301637Z dynamo/test_model_output 1/1 2025-08-14T21:48:49.4301949Z dynamo/test_profiler 1/1 2025-08-14T21:48:49.4302203Z dynamo/test_debug_utils 1/1 2025-08-14T21:48:49.4302461Z dynamo/test_package 1/1 2025-08-14T21:48:49.4302705Z dynamo/test_bytecode_utils 1/1 2025-08-14T21:48:49.4302988Z inductor/test_mps_basic 1/1 2025-08-14T21:48:49.4303253Z inductor/test_efficient_conv_bn_eval 1/1 2025-08-14T21:48:49.4303561Z dynamo/test_guard_manager 1/1 2025-08-14T21:48:49.4303835Z dynamo/test_recompile_ux 1/1 2025-08-14T21:48:49.4304116Z test_functionalization_of_rng_ops 1/1 2025-08-14T21:48:49.4304420Z dynamo/test_reorder_logs 1/1 2025-08-14T21:48:49.4304678Z dynamo/test_python_autograd 1/1 2025-08-14T21:48:49.4304952Z xpu/test_gemm 1/1 2025-08-14T21:48:49.4305170Z test_decomp 9/17 2025-08-14T21:48:49.4305401Z test_decomp 16/17 2025-08-14T21:48:49.4305605Z test_decomp 17/17 2025-08-14T21:48:49.4305834Z torch_np/test_basic 1/1 2025-08-14T21:48:49.4307076Z lazy/test_bindings 1/1 2025-08-14T21:48:49.4307334Z test_legacy_vmap 1/1 2025-08-14T21:48:49.4307551Z test_modules 1/1 2025-08-14T21:48:49.4307905Z cpp_extensions/python_agnostic_extension/test/test_python_agnostic 1/1 2025-08-14T21:48:49.4308317Z test_hub 1/1 2025-08-14T21:48:49.4308549Z test_set_default_mobile_cpu_allocator 1/1 2025-08-14T21:48:49.4308847Z test_stateless 1/1 2025-08-14T21:48:49.4309071Z test_numpy_interop 1/1 2025-08-14T21:48:49.4309308Z test_ops 1/9 2025-08-14T21:48:49.4309498Z test_ops 2/9 2025-08-14T21:48:49.4309706Z test_ops 3/9 2025-08-14T21:48:49.4309893Z test_ops 9/9 2025-08-14T21:48:49.4310127Z distributions/test_constraints 1/1 2025-08-14T21:48:49.4310420Z profiler/test_record_function 1/1 2025-08-14T21:48:49.4310803Z nn/test_lazy_modules 1/1 2025-08-14T21:48:49.4311067Z test_jit_fuser_te 1/1 2025-08-14T21:48:49.4311302Z test_segment_reductions 1/1 2025-08-14T21:48:49.4311569Z test_import_stats 1/1 2025-08-14T21:48:49.4312814Z test_masked 1/1 2025-08-14T21:48:49.4313045Z test_cuda_sanitizer 1/1 2025-08-14T21:48:49.4313284Z test_monitor 1/1 2025-08-14T21:48:49.4313518Z profiler/test_cpp_thread 1/1 2025-08-14T21:48:49.4313773Z test_subclass 1/1 2025-08-14T21:48:49.4314006Z profiler/test_profiler 1/1 2025-08-14T21:48:49.4314269Z functorch/test_vmap_registrations 1/1 2025-08-14T21:48:49.4314571Z nn/test_parametrization 1/1 2025-08-14T21:48:49.4314829Z nn/test_pruning 1/1 2025-08-14T21:48:49.4315052Z functorch/test_dims 1/1 2025-08-14T21:48:49.4315288Z test_itt 1/1 2025-08-14T21:48:49.4315519Z torch_np/numpy_tests/core/test_multiarray 1/1 2025-08-14T21:48:49.4315835Z functorch/test_ops 2/8 2025-08-14T21:48:49.4316121Z functorch/test_ops 8/8 2025-08-14T21:48:49.4316379Z functorch/test_aotdispatch 1/7 2025-08-14T21:48:49.4316650Z functorch/test_aotdispatch 3/7 2025-08-14T21:48:49.4317018Z optim/test_swa_utils 1/1 2025-08-14T21:48:49.4317265Z functorch/test_vmap 2/2 2025-08-14T21:48:49.4318611Z nn/test_load_state_dict 1/1 2025-08-14T21:48:49.4318882Z test_shape_ops 1/1 2025-08-14T21:48:49.4319136Z torch_np/numpy_tests/core/test_dtype 1/1 2025-08-14T21:48:49.4319471Z torch_np/numpy_tests/core/test_shape_base 1/1 2025-08-14T21:48:49.4319766Z test_type_info 1/1 2025-08-14T21:48:49.4319993Z test_jit_llga_fuser 1/1 2025-08-14T21:48:49.4320232Z test_indexing 1/1 2025-08-14T21:48:49.4320468Z torch_np/test_function_base 1/1 2025-08-14T21:48:49.4320881Z torch_np/numpy_tests/lib/test_twodim_base 1/1 2025-08-14T21:48:49.4321216Z torch_np/test_scalars_0D_arrays 1/1 2025-08-14T21:48:49.4321487Z nn/test_module_hooks 1/1 2025-08-14T21:48:49.4321739Z test_numa_binding 1/1 2025-08-14T21:48:49.4322011Z torch_np/numpy_tests/core/test_getlimits 1/1 2025-08-14T21:48:49.4322321Z torch_np/test_ndarray_methods 1/1 2025-08-14T21:48:49.4322616Z lazy/test_debug_util 1/1 2025-08-14T21:48:49.4322889Z torch_np/numpy_tests/lib/test_shape_base_ 1/1 2025-08-14T21:48:49.4323233Z torch_np/numpy_tests/linalg/test_linalg 1/1 2025-08-14T21:48:49.4324534Z test_sparse_csr 1/1 2025-08-14T21:48:49.4324764Z test_view_ops 1/1 2025-08-14T21:48:49.4325004Z profiler/test_memory_profiler 1/1 2025-08-14T21:48:49.4325317Z torch_np/numpy_tests/fft/test_pocketfft 1/1 2025-08-14T21:48:49.4325618Z test_function_schema 1/1 2025-08-14T21:48:49.4325915Z torch_np/numpy_tests/lib/test_index_tricks 1/1 2025-08-14T21:48:49.4326242Z test_scatter_gather_ops 1/1 2025-08-14T21:48:49.4326494Z test_serialization 1/1 2025-08-14T21:48:49.4326773Z torch_np/numpy_tests/core/test_dlpack 1/1 2025-08-14T21:48:49.4327070Z test_xnnpack_integration 1/1 2025-08-14T21:48:49.4327363Z torch_np/numpy_tests/fft/test_helper 1/1 2025-08-14T21:48:49.4327650Z test_mkldnn 1/1 2025-08-14T21:48:49.4327874Z test_unary_ufuncs 1/1 2025-08-14T21:48:49.4328150Z torch_np/numpy_tests/core/test_scalar_methods 1/1 2025-08-14T21:48:49.4328476Z nn/test_init 1/1 2025-08-14T21:48:49.4328744Z torch_np/numpy_tests/core/test_numerictypes 1/1 2025-08-14T21:48:49.4330087Z torch_np/numpy_tests/lib/test_arraypad 1/1 2025-08-14T21:48:49.4330415Z test_cuda_multigpu 1/1 2025-08-14T21:48:49.4330654Z test_type_promotion 1/1 2025-08-14T21:48:49.4330940Z torch_np/numpy_tests/lib/test_arraysetops 1/1 2025-08-14T21:48:49.4331247Z test_jit_autocast 1/1 2025-08-14T21:48:49.4331479Z test_dlpack 1/1 2025-08-14T21:48:49.4331711Z profiler/test_profiler_tree 1/1 2025-08-14T21:48:49.4332024Z torch_np/numpy_tests/core/test_scalar_ctors 1/1 2025-08-14T21:48:49.4332337Z profiler/test_torch_tidy 1/1 2025-08-14T21:48:49.4332615Z torch_np/test_reductions 1/1 2025-08-14T21:48:49.4332982Z lazy/test_reuse_ir 1/1 2025-08-14T21:48:49.4333235Z test_functional_autograd_benchmark 1/1 2025-08-14T21:48:49.4333524Z test_prims 1/1 2025-08-14T21:48:49.4333738Z profiler/test_python_tracer 1/1 2025-08-14T21:48:49.4334027Z Name: excluded (est. time: 0.0min) 2025-08-14T21:48:49.4334280Z Serial tests (0): 2025-08-14T21:48:49.4334495Z Parallel tests (0): 2025-08-14T21:48:49.4351655Z Running test_ci_sanity_check_fail 1/1 ... [2025-08-14 21:48:49.434691] 2025-08-14T21:48:49.4353052Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:48:49.4366891Z 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-14 21:48:49.436455] 2025-08-14T21:48:49.4368411Z 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-14T21:48:49.4369210Z Ignoring disabled issues: [''] 2025-08-14T21:49:09.9641476Z Running doctests 1/1 ... [2025-08-14 21:49:09.960350] 2025-08-14T21:49:10.9552704Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-14T21:49:10.9553209Z Uploading artifacts took 0.00 seconds 2025-08-14T21:49:10.9553946Z 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-14T21:49:10.9554764Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-14T21:49:10.9555399Z Registers the function implementation as the fallback for the given key. 2025-08-14T21:49:10.9556820Z 2025-08-14T21:49:10.9557066Z This function only works for a library with global namespace ("_"). 2025-08-14T21:49:10.9557383Z 2025-08-14T21:49:10.9557461Z Args: 2025-08-14T21:49:10.9557846Z fn: function used as fallback for the given dispatch key or :func:`~fallthrough_kernel` 2025-08-14T21:49:10.9558306Z to register a fallthrough. 2025-08-14T21:49:10.9558812Z dispatch_key: dispatch key that the input function should be registered for. By default, it uses 2025-08-14T21:49:10.9559363Z the dispatch key that the library was created with. 2025-08-14T21:49:10.9560003Z with_keyset: flag controlling if the current dispatcher call keyset should be passed as the first argument 2025-08-14T21:49:10.9560739Z to :attr:`fn` when calling. This should be used to create the appropriate keyset for redispatch calls. 2025-08-14T21:49:10.9561140Z 2025-08-14T21:49:10.9561271Z Example:: 2025-08-14T21:49:10.9561397Z 2025-08-14T21:49:10.9561493Z >>> my_lib = Library("_", "IMPL") 2025-08-14T21:49:10.9561818Z >>> def fallback_kernel(op, *args, **kwargs): 2025-08-14T21:49:10.9562156Z >>> # Handle all autocast ops generically 2025-08-14T21:49:10.9562469Z >>> # ... 2025-08-14T21:49:10.9562745Z >>> my_lib.fallback(fallback_kernel, "Autocast") 2025-08-14T21:49:10.9563048Z 2025-08-14T21:49:10.9563585Z Original Error: IndentationError('expected an indented block', ('', 5, 1, 'my_lib.fallback(fallback_kernel, "Autocast")\n')) 2025-08-14T21:49:10.9564106Z 2025-08-14T21:49:10.9564227Z my_lib.fallback(fallback_kernel, "Autocast") 2025-08-14T21:49:10.9564524Z ^ 2025-08-14T21:49:10.9565077Z 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-14T21:49:10.9565863Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-14T21:49:10.9566410Z Register a FakeTensor implementation ("fake impl") for this operator. 2025-08-14T21:49:10.9566721Z 2025-08-14T21:49:10.9566886Z Also sometimes known as a "meta kernel", "abstract impl". 2025-08-14T21:49:10.9567250Z 2025-08-14T21:49:10.9567473Z An "FakeTensor implementation" specifies the behavior of this operator on 2025-08-14T21:49:10.9568002Z Tensors that carry no data ("FakeTensor"). Given some input Tensors with 2025-08-14T21:49:10.9568535Z certain properties (sizes/strides/storage_offset/device), it specifies 2025-08-14T21:49:10.9568989Z what the properties of the output Tensors are. 2025-08-14T21:49:10.9569218Z 2025-08-14T21:49:10.9569426Z The FakeTensor implementation has the same signature as the operator. 2025-08-14T21:49:10.9569942Z It is run for both FakeTensors and meta tensors. To write a FakeTensor 2025-08-14T21:49:10.9570433Z implementation, assume that all Tensor inputs to the operator are 2025-08-14T21:49:10.9570933Z regular CPU/CUDA/Meta tensors, but they do not have storage, and 2025-08-14T21:49:10.9571395Z you are trying to return regular CPU/CUDA/Meta tensor(s) as output. 2025-08-14T21:49:10.9571899Z The FakeTensor implementation must consist of only PyTorch operations 2025-08-14T21:49:10.9572388Z (and may not directly access the storage or data of any input or 2025-08-14T21:49:10.9572821Z intermediate Tensors). 2025-08-14T21:49:10.9572982Z 2025-08-14T21:49:10.9573133Z This API may be used as a decorator (see examples). 2025-08-14T21:49:10.9573370Z 2025-08-14T21:49:10.9573494Z For a detailed guide on custom ops, please see 2025-08-14T21:49:10.9573959Z https://pytorch.org/tutorials/advanced/custom_ops_landing_page.html 2025-08-14T21:49:10.9574266Z 2025-08-14T21:49:10.9574357Z Args: 2025-08-14T21:49:10.9574657Z op_name: Operator name (along with the overload) or OpOverload object. 2025-08-14T21:49:10.9575165Z func: Fake tensor implementation. 2025-08-14T21:49:10.9575548Z lib (Optional[Library]): Library to register the fake tensor to. 2025-08-14T21:49:10.9576006Z allow_override: Flag controlling if we want to override an 2025-08-14T21:49:10.9576429Z existing registered fake impl. This is by default off, 2025-08-14T21:49:10.9576868Z and will error you're trying to register a fake impl to 2025-08-14T21:49:10.9577307Z an operator that already has a fake impl. This also only 2025-08-14T21:49:10.9577719Z applies if the custom operator was not created via 2025-08-14T21:49:10.9578152Z torch.library.custom_op, as overriding and existing fake 2025-08-14T21:49:10.9578526Z impl is already allowed. 2025-08-14T21:49:10.9578739Z 2025-08-14T21:49:10.9578820Z Examples: 2025-08-14T21:49:10.9579016Z >>> import torch 2025-08-14T21:49:10.9579272Z >>> import numpy as np 2025-08-14T21:49:10.9579531Z >>> from torch import Tensor 2025-08-14T21:49:10.9579790Z >>> 2025-08-14T21:49:10.9580073Z >>> # Example 1: an operator without data-dependent output shape 2025-08-14T21:49:10.9580545Z >>> @torch.library.custom_op("mylib::custom_linear", mutates_args=()) 2025-08-14T21:49:10.9581062Z >>> def custom_linear(x: Tensor, weight: Tensor, bias: Tensor) -> Tensor: 2025-08-14T21:49:10.9581524Z >>> raise NotImplementedError("Implementation goes here") 2025-08-14T21:49:10.9581870Z >>> 2025-08-14T21:49:10.9582127Z >>> @torch.library.register_fake("mylib::custom_linear") 2025-08-14T21:49:10.9582508Z >>> def _(x, weight, bias): 2025-08-14T21:49:10.9582778Z >>> assert x.dim() == 2 2025-08-14T21:49:10.9583054Z >>> assert weight.dim() == 2 2025-08-14T21:49:10.9583339Z >>> assert bias.dim() == 1 2025-08-14T21:49:10.9583655Z >>> assert x.shape[1] == weight.shape[1] 2025-08-14T21:49:10.9583982Z >>> assert weight.shape[0] == bias.shape[0] 2025-08-14T21:49:10.9584316Z >>> assert x.device == weight.device 2025-08-14T21:49:10.9584652Z >>> 2025-08-14T21:49:10.9584871Z >>> return (x @ weight.t()) + bias 2025-08-14T21:49:10.9585152Z >>> 2025-08-14T21:49:10.9585405Z >>> with torch._subclasses.fake_tensor.FakeTensorMode(): 2025-08-14T21:49:10.9585770Z >>> x = torch.randn(2, 3) 2025-08-14T21:49:10.9586039Z >>> w = torch.randn(3, 3) 2025-08-14T21:49:10.9586315Z >>> b = torch.randn(3) 2025-08-14T21:49:10.9586606Z >>> y = torch.ops.mylib.custom_linear(x, w, b) 2025-08-14T21:49:10.9586919Z >>> 2025-08-14T21:49:10.9587109Z >>> assert y.shape == (2, 3) 2025-08-14T21:49:10.9587376Z >>> 2025-08-14T21:49:10.9587645Z >>> # Example 2: an operator with data-dependent output shape 2025-08-14T21:49:10.9588112Z >>> @torch.library.custom_op("mylib::custom_nonzero", mutates_args=()) 2025-08-14T21:49:10.9588550Z >>> def custom_nonzero(x: Tensor) -> Tensor: 2025-08-14T21:49:10.9588869Z >>> x_np = x.numpy(force=True) 2025-08-14T21:49:10.9589195Z >>> res = np.stack(np.nonzero(x_np), axis=1) 2025-08-14T21:49:10.9589530Z >>> return torch.tensor(res, device=x.device) 2025-08-14T21:49:10.9589889Z >>> 2025-08-14T21:49:10.9590154Z >>> @torch.library.register_fake("mylib::custom_nonzero") 2025-08-14T21:49:10.9590518Z >>> def _(x): 2025-08-14T21:49:10.9590806Z >>> # Number of nonzero-elements is data-dependent. 2025-08-14T21:49:10.9591175Z >>> # Since we cannot peek at the data in an fake impl, 2025-08-14T21:49:10.9591569Z >>> # we use the ctx object to construct a new symint that 2025-08-14T21:49:10.9591924Z >>> # represents the data-dependent size. 2025-08-14T21:49:10.9592341Z >>> ctx = torch.library.get_ctx() 2025-08-14T21:49:10.9592647Z >>> nnz = ctx.new_dynamic_size() 2025-08-14T21:49:10.9592949Z >>> shape = [nnz, x.dim()] 2025-08-14T21:49:10.9593292Z >>> result = x.new_empty(shape, dtype=torch.int64) 2025-08-14T21:49:10.9593709Z >>> return result 2025-08-14T21:49:10.9593954Z >>> 2025-08-14T21:49:10.9594224Z >>> from torch.fx.experimental.proxy_tensor import make_fx 2025-08-14T21:49:10.9594584Z >>> 2025-08-14T21:49:10.9594795Z >>> x = torch.tensor([0, 1, 2, 3, 4, 0]) 2025-08-14T21:49:10.9595227Z >>> trace = make_fx(torch.ops.mylib.custom_nonzero, tracing_mode="symbolic")(x) 2025-08-14T21:49:10.9595650Z >>> trace.print_readable() 2025-08-14T21:49:10.9595907Z >>> 2025-08-14T21:49:10.9596215Z >>> assert torch.allclose(trace(x), torch.ops.mylib.custom_nonzero(x)) 2025-08-14T21:49:10.9596535Z 2025-08-14T21:49:10.9596607Z 2025-08-14T21:49:10.9597042Z Original Error: IndentationError('expected an indented block', ('', 38, 1, '_._ = None\n')) 2025-08-14T21:49:10.9597469Z 2025-08-14T21:49:10.9597547Z _._ = None 2025-08-14T21:49:10.9597735Z ^ 2025-08-14T21:49:12.4924753Z 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-14T21:49:12.4925644Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-14T21:49:12.4926226Z Returns the computed kernel for a given operator and dispatch key. 2025-08-14T21:49:12.4926522Z 2025-08-14T21:49:12.4926740Z This function retrieves the kernel that would be executed for a given 2025-08-14T21:49:12.4927245Z operator and dispatch key combination. The returned SafeKernelFunction 2025-08-14T21:49:12.4927738Z can be used to call the kernel in a boxed fashion. The intended use 2025-08-14T21:49:12.4928199Z case for this function is to retrieve the original kernel for a given 2025-08-14T21:49:12.4928713Z dispatch key and then register another kernel to the same dispatch key 2025-08-14T21:49:12.4929175Z that calls into the original kernel for certain cases. 2025-08-14T21:49:12.4929422Z 2025-08-14T21:49:12.4929640Z Args: 2025-08-14T21:49:12.4929935Z op: Operator name (along with the overload) or OpOverload object 2025-08-14T21:49:12.4930498Z Can be a string (e.g., "aten::add.Tensor"), an OpOverload, or a CustomOpDef. 2025-08-14T21:49:12.4931038Z dispatch_key (str | torch.DispatchKey): The dispatch key to get the kernel for. 2025-08-14T21:49:12.4931613Z Can be a string (e.g., "CPU", "CUDA") or a DispatchKey enum value. 2025-08-14T21:49:12.4931934Z 2025-08-14T21:49:12.4932010Z Returns: 2025-08-14T21:49:12.4932356Z torch._C._SafeKernelFunction: A safe kernel function that can be used to 2025-08-14T21:49:12.4932751Z call the kernel. 2025-08-14T21:49:12.4932920Z 2025-08-14T21:49:12.4932992Z Raises: 2025-08-14T21:49:12.4933251Z RuntimeError: If the operator does not exist. 2025-08-14T21:49:12.4933483Z 2025-08-14T21:49:12.4933556Z Example: 2025-08-14T21:49:12.4933784Z >>> # Get the CPU kernel for torch.add 2025-08-14T21:49:12.4934161Z >>> kernel = torch.library.get_kernel("aten::add.Tensor", "CPU") 2025-08-14T21:49:12.4934522Z >>> 2025-08-14T21:49:12.4934725Z >>> # You can also use DispatchKey enum 2025-08-14T21:49:12.4935246Z >>> kernel = torch.library.get_kernel("aten::add.Tensor", torch.DispatchKey.CPU) 2025-08-14T21:49:12.4935666Z >>> 2025-08-14T21:49:12.4935865Z >>> # Or use an OpOverload directly 2025-08-14T21:49:12.4936274Z >>> kernel = torch.library.get_kernel(torch.ops.aten.add.Tensor, "CPU") 2025-08-14T21:49:12.4936655Z >>> 2025-08-14T21:49:12.4936956Z >>> # Example: Using get_kernel in a custom op with conditional dispatch 2025-08-14T21:49:12.4937405Z >>> # Get the original kernel for torch.sin 2025-08-14T21:49:12.4938003Z >>> original_sin_kernel = torch.library.get_kernel("aten::sin", "CPU") 2025-08-14T21:49:12.4938395Z >>> 2025-08-14T21:49:12.4938697Z >>> # If input has negative values, use original sin, otherwise return zeros 2025-08-14T21:49:12.4939146Z >>> def conditional_sin_impl(dispatch_keys, x): 2025-08-14T21:49:12.4939450Z >>> if (x < 0).any(): 2025-08-14T21:49:12.4939800Z >>> return original_sin_kernel.call_boxed(dispatch_keys, x) 2025-08-14T21:49:12.4940144Z >>> else: 2025-08-14T21:49:12.4940386Z >>> return torch.zeros_like(x) 2025-08-14T21:49:12.4940664Z >>> 2025-08-14T21:49:12.4940903Z >>> lib = torch.library.Library("aten", "IMPL") 2025-08-14T21:49:12.4941380Z >>> # with_keyset=True so the first argument to the impl is the current DispatchKeySet 2025-08-14T21:49:12.4941880Z >>> which needs to be the first argument to ``kernel.call_boxed`` 2025-08-14T21:49:12.4942338Z >>> lib.impl("sin", conditional_sin_impl, "CPU", with_keyset=True) 2025-08-14T21:49:12.4942695Z >>> 2025-08-14T21:49:12.4942951Z >>> # Test the conditional behavior 2025-08-14T21:49:12.4943302Z >>> x_positive = torch.tensor([1.0, 2.0]) 2025-08-14T21:49:12.4943623Z >>> x_mixed = torch.tensor([-1.0, 2.0]) 2025-08-14T21:49:12.4943914Z >>> torch.sin(x_positive) 2025-08-14T21:49:12.4944190Z tensor([0., 0.]) 2025-08-14T21:49:12.4944436Z >>> torch.sin(x_mixed) 2025-08-14T21:49:12.4944676Z tensor([-0.8415, 0.9093]) 2025-08-14T21:49:12.4951140Z 2025-08-14T21:49:12.4951740Z Original Error: SyntaxError('invalid syntax', ('', 23, 7, 'which needs to be the first argument to ``kernel.call_boxed``\n')) 2025-08-14T21:49:12.4952272Z 2025-08-14T21:49:12.4952443Z which needs to be the first argument to ``kernel.call_boxed`` 2025-08-14T21:49:12.4952786Z ^ 2025-08-14T21:49:12.4953475Z 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-14T21:49:12.4954351Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-14T21:49:12.4955135Z Check if the current accelerator is available at runtime: it was build, all the 2025-08-14T21:49:12.4955714Z required drivers are available and at least one device is visible. 2025-08-14T21:49:12.4956199Z See :ref:`accelerator` for details. 2025-08-14T21:49:12.4956493Z 2025-08-14T21:49:12.4956605Z Returns: 2025-08-14T21:49:12.4957019Z bool: A boolean indicating if there is an available :ref:`accelerator`. 2025-08-14T21:49:12.4957440Z 2025-08-14T21:49:12.4957681Z .. note:: This API delegates to the device-specific version of `is_available`. 2025-08-14T21:49:12.4958349Z On CUDA, when the environment variable ``PYTORCH_NVML_BASED_CUDA_CHECK=1`` is set, 2025-08-14T21:49:12.4959001Z this function will NOT poison fork. Otherwise, it will. For more details, see 2025-08-14T21:49:12.4959528Z :ref:`multiprocessing-poison-fork-note`. 2025-08-14T21:49:12.4959807Z 2025-08-14T21:49:12.4959890Z Example:: 2025-08-14T21:49:12.4960024Z 2025-08-14T21:49:12.4960314Z >>> assert torch.accelerator.is_available() "No available accelerators detected." 2025-08-14T21:49:12.4960886Z 2025-08-14T21:49:12.4961515Z Original Error: SyntaxError('invalid syntax', ('', 1, 41, 'assert torch.accelerator.is_available() "No available accelerators detected."\n')) 2025-08-14T21:49:12.4962199Z 2025-08-14T21:49:12.4962474Z assert torch.accelerator.is_available() "No available accelerators detected." 2025-08-14T21:49:12.4962937Z ^ 2025-08-14T21:49:12.4963707Z 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-14T21:49:12.4964766Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-14T21:49:12.4965322Z Wait for all kernels in all streams on the given device to complete. 2025-08-14T21:49:12.4965658Z 2025-08-14T21:49:12.4965752Z Args: 2025-08-14T21:49:12.4966187Z device (:class:`torch.device`, str, int, optional): device for which to synchronize. It must match 2025-08-14T21:49:12.4966882Z the current :ref:`accelerator` device type. If not given, 2025-08-14T21:49:12.4967440Z use :func:`torch.accelerator.current_device_index` by default. 2025-08-14T21:49:12.4967745Z 2025-08-14T21:49:12.4968073Z .. note:: This function is a no-op if the current :ref:`accelerator` is not initialized. 2025-08-14T21:49:12.4968504Z 2025-08-14T21:49:12.4968628Z Example:: 2025-08-14T21:49:12.4968757Z 2025-08-14T21:49:12.4968880Z >>> # xdoctest: +REQUIRES(env:TORCH_DOCTEST_CUDA) 2025-08-14T21:49:12.4969451Z >>> assert torch.accelerator.is_available() "No available accelerators detected." 2025-08-14T21:49:12.4969967Z >>> start_event = torch.Event(enable_timing=True) 2025-08-14T21:49:12.4970322Z >>> end_event = torch.Event(enable_timing=True) 2025-08-14T21:49:12.4970644Z >>> start_event.record() 2025-08-14T21:49:12.4971050Z >>> tensor = torch.randn(100, device=torch.accelerator.current_accelerator()) 2025-08-14T21:49:12.4971471Z >>> sum = torch.sum(tensor) 2025-08-14T21:49:12.4971755Z >>> end_event.record() 2025-08-14T21:49:12.4972041Z >>> torch.accelerator.synchronize() 2025-08-14T21:49:12.4972403Z >>> elapsed_time_ms = start_event.elapsed_time(end_event) 2025-08-14T21:49:12.4972744Z 2025-08-14T21:49:12.4973325Z Original Error: SyntaxError('invalid syntax', ('', 2, 41, 'assert torch.accelerator.is_available() "No available accelerators detected."\n')) 2025-08-14T21:49:12.4973921Z 2025-08-14T21:49:12.4974161Z assert torch.accelerator.is_available() "No available accelerators detected." 2025-08-14T21:49:12.4974586Z ^ 2025-08-14T21:49:12.7739179Z 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-14T21:49:12.7740157Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-14T21:49:12.7740616Z Retrieves the CUDA runtime API module. 2025-08-14T21:49:12.7740821Z 2025-08-14T21:49:12.7740888Z 2025-08-14T21:49:12.7741118Z This function initializes the CUDA runtime environment if it is not already 2025-08-14T21:49:12.7741673Z initialized and returns the CUDA runtime API module (_cudart). The CUDA 2025-08-14T21:49:12.7742175Z runtime API module provides access to various CUDA runtime functions. 2025-08-14T21:49:12.7742497Z 2025-08-14T21:49:12.7742577Z Args: 2025-08-14T21:49:12.7742771Z ``None`` 2025-08-14T21:49:12.7742890Z 2025-08-14T21:49:12.7742977Z Returns: 2025-08-14T21:49:12.7743223Z module: The CUDA runtime API module (_cudart). 2025-08-14T21:49:12.7743452Z 2025-08-14T21:49:12.7743528Z Raises: 2025-08-14T21:49:12.7743857Z RuntimeError: If CUDA cannot be re-initialized in a forked subprocess. 2025-08-14T21:49:12.7744495Z AssertionError: If PyTorch is not compiled with CUDA support or if libcudart functions are unavailable. 2025-08-14T21:49:12.7745009Z 2025-08-14T21:49:12.7745133Z Example of CUDA operations with profiling: 2025-08-14T21:49:12.7745454Z >>> import torch 2025-08-14T21:49:12.7745716Z >>> from torch.cuda import cudart, check_error 2025-08-14T21:49:12.7746038Z >>> import os 2025-08-14T21:49:12.7746251Z >>> 2025-08-14T21:49:12.7746480Z >>> os.environ["CUDA_PROFILE"] = "1" 2025-08-14T21:49:12.7746749Z >>> 2025-08-14T21:49:12.7746991Z >>> def perform_cuda_operations_with_streams(): 2025-08-14T21:49:12.7747438Z >>> stream = torch.cuda.Stream() 2025-08-14T21:49:12.7747763Z >>> with torch.cuda.stream(stream): 2025-08-14T21:49:12.7748092Z >>> x = torch.randn(100, 100, device='cuda') 2025-08-14T21:49:12.7748443Z >>> y = torch.randn(100, 100, device='cuda') 2025-08-14T21:49:12.7748760Z >>> z = torch.mul(x, y) 2025-08-14T21:49:12.7749023Z >>> return z 2025-08-14T21:49:12.7749268Z >>> 2025-08-14T21:49:12.7749477Z >>> torch.cuda.synchronize() 2025-08-14T21:49:12.7749791Z >>> print("====== Start nsys profiling ======") 2025-08-14T21:49:12.7750129Z >>> check_error(cudart().cudaProfilerStart()) 2025-08-14T21:49:12.7750493Z >>> with torch.autograd.profiler.emit_nvtx(): 2025-08-14T21:49:12.7750854Z >>> result = perform_cuda_operations_with_streams() 2025-08-14T21:49:12.7751209Z >>> print("CUDA operations completed.") 2025-08-14T21:49:12.7751591Z >>> check_error(torch.cuda.cudart().cudaProfilerStop()) 2025-08-14T21:49:12.7751951Z >>> print("====== End nsys profiling ======") 2025-08-14T21:49:12.7752163Z 2025-08-14T21:49:12.7752359Z To run this example and save the profiling information, execute: 2025-08-14T21:49:12.7752983Z >>> $ nvprof --profile-from-start off --csv --print-summary -o trace_name.prof -f -- python cudart_test.py 2025-08-14T21:49:12.7753506Z 2025-08-14T21:49:12.7753731Z This command profiles the CUDA operations in the provided script and saves 2025-08-14T21:49:12.7754263Z the profiling information to a file named `trace_name.prof`. 2025-08-14T21:49:12.7754767Z The `--profile-from-start off` option ensures that profiling starts only 2025-08-14T21:49:12.7755230Z after the `cudaProfilerStart` call in the script. 2025-08-14T21:49:12.7755663Z The `--csv` and `--print-summary` options format the profiling output as a 2025-08-14T21:49:12.7756106Z CSV file and print a summary, respectively. 2025-08-14T21:49:12.7756549Z The `-o` option specifies the output file name, and the `-f` option forces the 2025-08-14T21:49:12.7757025Z overwrite of the output file if it already exists. 2025-08-14T21:49:12.7757348Z 2025-08-14T21:49:12.7758075Z 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-14T21:49:12.7758759Z 2025-08-14T21:49:12.7759077Z $ nvprof --profile-from-start off --csv --print-summary -o trace_name.prof -f -- python cudart_test.py 2025-08-14T21:49:12.7759560Z ^ 2025-08-14T21:49:12.7760379Z 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-14T21:49:12.7761425Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-14T21:49:12.7761752Z 2025-08-14T21:49:12.7761995Z The Activation sparsifier class aims to sparsify/prune activations in a neural 2025-08-14T21:49:12.7762556Z network. The idea is to attach the sparsifier to a layer (or layers) and it 2025-08-14T21:49:12.7763085Z zeroes out the activations based on the mask_fn (or sparsification function) 2025-08-14T21:49:12.7763501Z input by the user. 2025-08-14T21:49:12.7763831Z The mask_fn is applied once all the inputs are aggregated and reduced i.e. 2025-08-14T21:49:12.7764337Z mask = mask_fn(reduce_fn(aggregate_fn(activations))) 2025-08-14T21:49:12.7764575Z 2025-08-14T21:49:12.7764688Z Note:: 2025-08-14T21:49:12.7765084Z The sparsification mask is computed on the input **before it goes through the attached layer**. 2025-08-14T21:49:12.7765496Z 2025-08-14T21:49:12.7765566Z Args: 2025-08-14T21:49:12.7765749Z model (nn.Module): 2025-08-14T21:49:12.7766104Z The model whose layers will be sparsified. The layers that needs to be 2025-08-14T21:49:12.7766736Z sparsified should be added separately using the register_layer() function 2025-08-14T21:49:12.7767180Z aggregate_fn (Optional, Callable): 2025-08-14T21:49:12.7767622Z default aggregate_fn that is used if not specified while registering the layer. 2025-08-14T21:49:12.7768111Z specifies how inputs should be aggregated over time. 2025-08-14T21:49:12.7768642Z The aggregate_fn should usually take 2 torch tensors and return the aggregated tensor. 2025-08-14T21:49:12.7769078Z Example 2025-08-14T21:49:12.7769376Z def add_agg_fn(tensor1, tensor2): return tensor1 + tensor2 2025-08-14T21:49:12.7769738Z reduce_fn (Optional, Callable): 2025-08-14T21:49:12.7770170Z default reduce_fn that is used if not specified while registering the layer. 2025-08-14T21:49:12.7770743Z reduce_fn will be called on the aggregated tensor i.e. the tensor obtained after 2025-08-14T21:49:12.7771182Z calling agg_fn() on all inputs. 2025-08-14T21:49:12.7771489Z Example 2025-08-14T21:49:12.7771817Z def mean_reduce_fn(agg_tensor): return agg_tensor.mean(dim=0) 2025-08-14T21:49:12.7772206Z mask_fn (Optional, Callable): 2025-08-14T21:49:12.7772675Z default mask_fn that is used to create the sparsification mask using the tensor obtained after 2025-08-14T21:49:12.7773296Z calling the reduce_fn(). This is used by default if a custom one is passed in the 2025-08-14T21:49:12.7773716Z register_layer(). 2025-08-14T21:49:12.7774212Z Note that the mask_fn() definition should contain the sparse arguments that is passed in sparse_config 2025-08-14T21:49:12.7774707Z arguments. 2025-08-14T21:49:12.7774966Z features (Optional, list): 2025-08-14T21:49:12.7775274Z default selected features to sparsify. 2025-08-14T21:49:12.7775723Z If this is non-empty, then the mask_fn will be applied for each feature of the input. 2025-08-14T21:49:12.7776175Z For example, 2025-08-14T21:49:12.7776552Z mask = [mask_fn(reduce_fn(aggregated_fn(input[feature])) for feature in features] 2025-08-14T21:49:12.7776980Z feature_dim (Optional, int): 2025-08-14T21:49:12.7777457Z default dimension of input features. Again, features along this dim will be chosen 2025-08-14T21:49:12.7777900Z for sparsification. 2025-08-14T21:49:12.7778179Z sparse_config (Dict): 2025-08-14T21:49:12.7778540Z Default configuration for the mask_fn. This config will be passed 2025-08-14T21:49:12.7778924Z with the mask_fn() 2025-08-14T21:49:12.7779093Z 2025-08-14T21:49:12.7779166Z Example: 2025-08-14T21:49:12.7779358Z >>> # xdoctest: +SKIP 2025-08-14T21:49:12.7779575Z >>> model = SomeModel() 2025-08-14T21:49:12.7779941Z >>> act_sparsifier = ActivationSparsifier(...) # init activation sparsifier 2025-08-14T21:49:12.7780350Z >>> # Initialize aggregate_fn 2025-08-14T21:49:12.7780600Z >>> def agg_fn(x, y): 2025-08-14T21:49:12.7780822Z >>> return x + y 2025-08-14T21:49:12.7781020Z >>> 2025-08-14T21:49:12.7781199Z >>> # Initialize reduce_fn 2025-08-14T21:49:12.7781442Z >>> def reduce_fn(x): 2025-08-14T21:49:12.7781675Z >>> return torch.mean(x, dim=0) 2025-08-14T21:49:12.7781921Z >>> 2025-08-14T21:49:12.7782160Z >>> # Initialize mask_fn 2025-08-14T21:49:12.7782386Z >>> def mask_fn(data): 2025-08-14T21:49:12.7782653Z >>> return torch.eye(data.shape).to(data.device) 2025-08-14T21:49:12.7782940Z >>> 2025-08-14T21:49:12.7783116Z >>> 2025-08-14T21:49:12.7783310Z >>> act_sparsifier.register_layer( 2025-08-14T21:49:12.7783584Z ... model.some_layer, 2025-08-14T21:49:12.7783824Z ... aggregate_fn=agg_fn, 2025-08-14T21:49:12.7784064Z ... reduce_fn=reduce_fn, 2025-08-14T21:49:12.7784304Z ... mask_fn=mask_fn, 2025-08-14T21:49:12.7784612Z ... ) 2025-08-14T21:49:12.7784781Z >>> 2025-08-14T21:49:12.7784959Z >>> # start training process 2025-08-14T21:49:12.7785209Z >>> for _ in [...]: 2025-08-14T21:49:12.7785415Z >>> # epoch starts 2025-08-14T21:49:12.7785709Z >>> # model.forward(), compute_loss() and model.backwards() 2025-08-14T21:49:12.7786040Z >>> # epoch ends 2025-08-14T21:49:12.7786261Z >>> act_sparsifier.step() 2025-08-14T21:49:12.7786629Z >>> # end training process 2025-08-14T21:49:12.7786920Z >>> sparsifier.squash_mask() 2025-08-14T21:49:12.7787091Z 2025-08-14T21:49:12.7787426Z Original Error: IndentationError('expected an indented block', ('', 26, 1, '_._ = None\n')) 2025-08-14T21:49:12.7787850Z 2025-08-14T21:49:12.7787918Z _._ = None 2025-08-14T21:49:12.7788095Z ^ 2025-08-14T21:49:15.9085048Z msg = Cannot scrape callname=DeviceMesh.__getitem__ in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\device_mesh.py line=722. 2025-08-14T21:49:15.9085994Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-14T21:49:15.9086347Z 2025-08-14T21:49:15.9086593Z Slice the current DeviceMesh based on the mesh_dim_names given to create a submesh. 2025-08-14T21:49:15.9087183Z The submesh created consists of the dimensions and the communicators indicated by 2025-08-14T21:49:15.9087620Z ``mesh_dim_names`` 2025-08-14T21:49:15.9087759Z 2025-08-14T21:49:15.9087844Z Args: 2025-08-14T21:49:15.9088249Z mesh_dim_names (Union[str, Tuple[str]]): the name or the tuple of names of the 2025-08-14T21:49:15.9088775Z mesh dimension of the DeviceMesh to create the submesh for. 2025-08-14T21:49:15.9089127Z Returns: 2025-08-14T21:49:15.9089322Z A :class:`DeviceMesh` object 2025-08-14T21:49:15.9089522Z 2025-08-14T21:49:15.9089777Z The following program runs on each process/rank in an SPMD manner in a world size of 8. 2025-08-14T21:49:15.9090224Z In the first example: 2025-08-14T21:49:15.9090578Z Calling mesh_2d["tp"] on rank 0, 1, 2, 3 returns a 1D submesh of DeviceMesh:([0, 1, 2, 3]). 2025-08-14T21:49:15.9091124Z Calling mesh_2d["tp"] on rank 4, 5, 6, 7 returns a 1D submesh of DeviceMesh:([4, 5, 6, 7]). 2025-08-14T21:49:15.9091832Z Calling mesh_2d["dp"] on rank 0, 4 returns a 1D submesh of DeviceMesh:([0, 4]). 2025-08-14T21:49:15.9092339Z Calling mesh_2d["dp"] on rank 1, 5 returns a 1D submesh of DeviceMesh:([1, 5]). 2025-08-14T21:49:15.9092862Z Calling mesh_2d["dp"] on rank 2, 6 returns a 1D submesh of DeviceMesh:([2, 6]). 2025-08-14T21:49:15.9093353Z Calling mesh_2d["dp"] on rank 3, 7 returns a 1D submesh of DeviceMesh:([3, 7]). 2025-08-14T21:49:15.9093660Z 2025-08-14T21:49:15.9093743Z In the second example: 2025-08-14T21:49:15.9094159Z Calling mesh_3d["dp", "cp"] on rank 0, 1, 4, 5 returns a 2D submesh of DeviceMesh:([[0, 1], [4, 5]]). 2025-08-14T21:49:15.9094781Z Calling mesh_3d["dp", "cp"] on rank 2, 3, 6, 7 returns a 2D submesh of DeviceMesh:([[2, 3], [6, 7]]). 2025-08-14T21:49:15.9095355Z Calling mesh_3d["cp", "dp"] on rank 0, 1, 4, 5 returns a 2D submesh of DeviceMesh:([[0, 4], [1, 5]]). 2025-08-14T21:49:15.9095912Z Calling mesh_3d["cp", "dp"] on rank 2, 3, 6, 7 returns a 2D submesh of DeviceMesh:([[2, 6], [3, 7]]). 2025-08-14T21:49:15.9096254Z 2025-08-14T21:49:15.9096355Z Example:: 2025-08-14T21:49:15.9096460Z 2025-08-14T21:49:15.9096546Z >>> # xdoctest: +SKIP("no rank") 2025-08-14T21:49:15.9096970Z >>> from torch.distributed.device_mesh import DeviceMesh 2025-08-14T21:49:15.9097294Z >>> 2025-08-14T21:49:15.9097564Z >>> # Initialize a 2D device mesh as (2, 4) to represent the topology 2025-08-14T21:49:15.9097967Z >>> # of cross-host(dim 0), and within-host (dim 1). 2025-08-14T21:49:15.9098407Z >>> mesh_2d = init_device_mesh(device_type="cuda", (2,4), mesh_dim_names=("dp", "tp")) 2025-08-14T21:49:15.9098824Z >>> tp_mesh = mesh_2d["tp"] 2025-08-14T21:49:15.9099058Z >>> dp_mesh = mesh_2d["dp"] 2025-08-14T21:49:15.9099405Z >>> 2025-08-14T21:49:15.9099583Z >>> # Initialize a 3D mesh. 2025-08-14T21:49:15.9100044Z >>> mesh_3d = init_device_mesh(device_type="cuda", (2,2,2), mesh_dim_names=("dp", "pp", "cp")) 2025-08-14T21:49:15.9100714Z >>> # The order of the mesh_dim_names provided deteremines the order of dimensions in the submesh. 2025-08-14T21:49:15.9101175Z >>> dp_cp_mesh = mesh_3d["dp", "cp"] 2025-08-14T21:49:15.9101463Z >>> cp_dp_mesh = mesh_3d["cp", "dp"] 2025-08-14T21:49:15.9101646Z 2025-08-14T21:49:15.9102230Z 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-14T21:49:15.9102921Z 2025-08-14T21:49:15.9103136Z mesh_2d = init_device_mesh(device_type="cuda", (2,4), mesh_dim_names=("dp", "tp")) 2025-08-14T21:49:15.9103566Z ^ 2025-08-14T21:49:15.9104313Z 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-14T21:49:15.9105172Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-14T21:49:15.9105538Z 2025-08-14T21:49:15.9105787Z Abstract class defining the protocol used by save_state_dict to plan the save process. 2025-08-14T21:49:15.9106199Z 2025-08-14T21:49:15.9106460Z SavePlanners are stateful objects that can be used to customize the whole save process. 2025-08-14T21:49:15.9106820Z 2025-08-14T21:49:15.9107077Z SavePlanner acts as an access proxy to the state_dict, so any transformation done to it 2025-08-14T21:49:15.9107512Z will be visible to the whole process. 2025-08-14T21:49:15.9107706Z 2025-08-14T21:49:15.9107951Z A planner subclass can expect the following sequence of calls during save_state_dict: 2025-08-14T21:49:15.9108295Z 2025-08-14T21:49:15.9108413Z 1) set_up_planner - called on all ranks. 2025-08-14T21:49:15.9108725Z Signals the start of a checkpoint save. 2025-08-14T21:49:15.9108923Z 2025-08-14T21:49:15.9109037Z 2) create_local_plan - called on all ranks. 2025-08-14T21:49:15.9109475Z Process the state_dict and produces a `SavePlan` that will be sent for global planning. 2025-08-14T21:49:15.9110401Z 2025-08-14T21:49:15.9110570Z 3) create_global_plan - called on the coordinator rank only. 2025-08-14T21:49:15.9111015Z Takes the SavePlan from all ranks and make any global decision. 2025-08-14T21:49:15.9111352Z 2025-08-14T21:49:15.9111447Z 4) finish_plan - called on all ranks. 2025-08-14T21:49:15.9111868Z This gives each rank a chance to adjust to global planning decisions. 2025-08-14T21:49:15.9112165Z 2025-08-14T21:49:15.9112299Z 5) resolve_data - called multiple times on each rank 2025-08-14T21:49:15.9112706Z Lookups a value on the `state_dict` for the storage layer to write. 2025-08-14T21:49:15.9113044Z 2025-08-14T21:49:15.9113315Z Users are recommended to extend DefaultSavePlanner instead of this interface directly as 2025-08-14T21:49:15.9113866Z most changes can be expressed by changes in a single method. 2025-08-14T21:49:15.9114126Z 2025-08-14T21:49:15.9114240Z There are 3 usual patterns of extension: 2025-08-14T21:49:15.9114439Z 2025-08-14T21:49:15.9114668Z Rewriting state_dict. This is the simplest way to extend the save process as it 2025-08-14T21:49:15.9115269Z doesn't requite understanding the intrincacies of how SavePlan works: 2025-08-14T21:49:15.9115567Z 2025-08-14T21:49:15.9115669Z >>> # xdoctest: +SKIP("undefined vars") 2025-08-14T21:49:15.9115990Z >>> class RenamePlanner(DefaultSavePlanner): 2025-08-14T21:49:15.9116285Z >>> def set_up_planner( 2025-08-14T21:49:15.9116512Z >>> self, 2025-08-14T21:49:15.9116710Z >>> state_dict: STATE_DICT_TYPE, 2025-08-14T21:49:15.9117041Z >>> storage_meta: Optional[StorageMeta], 2025-08-14T21:49:15.9117376Z >>> is_coordinator: bool, 2025-08-14T21:49:15.9117713Z >>> ) -> None: 2025-08-14T21:49:15.9117930Z >>> # prefix all keys with `foo_`` 2025-08-14T21:49:15.9118356Z >>> super().set_up_planner({"foo_" + k: v for k, v in state_dict.items()}, storage_meta, is_coordinator) 2025-08-14T21:49:15.9118724Z 2025-08-14T21:49:15.9119020Z Modifying local plan and lookup in tandem. This is useful when fine control of how data is persisted 2025-08-14T21:49:15.9119433Z 2025-08-14T21:49:15.9119537Z >>> # xdoctest: +SKIP("undefined vars") 2025-08-14T21:49:15.9119830Z >>> class FP16Planner(DefaultSavePlanner): 2025-08-14T21:49:15.9120123Z >>> def create_local_plan(self): 2025-08-14T21:49:15.9120396Z >>> plan = super().create_local_plan() 2025-08-14T21:49:15.9120689Z >>> for p in plan: 2025-08-14T21:49:15.9120928Z >>> if p.tensor_data is not None: 2025-08-14T21:49:15.9121260Z >>> p.tensor_data.properties.dtype = torch.float16 2025-08-14T21:49:15.9121574Z >>> return plan 2025-08-14T21:49:15.9121777Z >>> 2025-08-14T21:49:15.9121962Z >>> def resolve_data(self, write_item): 2025-08-14T21:49:15.9122263Z >>> item = super().resolve_data(write_item) 2025-08-14T21:49:15.9122755Z >>> return item if write_item.type == WriteItemType.BYTE_IO else item.to(torch.float16) 2025-08-14T21:49:15.9123147Z 2025-08-14T21:49:15.9123446Z Using the global planning step to make central decisions that can't be made individually by each rank 2025-08-14T21:49:15.9123861Z 2025-08-14T21:49:15.9123953Z >>> # xdoctest: +SKIP("undefined vars") 2025-08-14T21:49:15.9124230Z >>> from itertools import zip_longest 2025-08-14T21:49:15.9124509Z >>> from dataclasses import replace 2025-08-14T21:49:15.9124846Z >>> class DDPLoadBalancingPlanner(DefaultSavePlanner): 2025-08-14T21:49:15.9125331Z >>> # This uses the default local plan behavior of having all non-sharded writes in rank 0 2025-08-14T21:49:15.9125796Z >>> # This sample doesn't handle ShardedTensors 2025-08-14T21:49:15.9126114Z >>> def create_global_plan(self, all_plans): 2025-08-14T21:49:15.9126449Z >>> iters = [iter(all_plans[0].items)] * len(all_plans) 2025-08-14T21:49:15.9126762Z >>> items_per_rank = [ 2025-08-14T21:49:15.9127047Z >>> [item for item in items if item is not None] 2025-08-14T21:49:15.9127468Z >>> for items in zip(*zip_longest(*iters), strict=True) 2025-08-14T21:49:15.9127794Z >>> ] 2025-08-14T21:49:15.9127994Z >>> all_plans = [ 2025-08-14T21:49:15.9128228Z >>> replace(plan, items=items) 2025-08-14T21:49:15.9128630Z >>> for plan, items in zip(all_plans, items_per_rank, strict=True) 2025-08-14T21:49:15.9129009Z >>> ] 2025-08-14T21:49:15.9129246Z >>> return super().create_global_plan(all_plans) 2025-08-14T21:49:15.9129470Z 2025-08-14T21:49:15.9129709Z Finally, some planners need to save additional metadata in the checkpoint, this is 2025-08-14T21:49:15.9130295Z accomplished by having each rank contribute their data items in the local plan and 2025-08-14T21:49:15.9130744Z the global planner aggregate them: 2025-08-14T21:49:15.9130926Z 2025-08-14T21:49:15.9131020Z >>> # xdoctest: +SKIP("undefined vars") 2025-08-14T21:49:15.9131359Z >>> class SaveExtraDataPlanner(DefaultSavePlanner): 2025-08-14T21:49:15.9131701Z >>> def create_local_plan(self) -> SavePlan: 2025-08-14T21:49:15.9132016Z >>> plan = super().create_local_plan() 2025-08-14T21:49:15.9132413Z >>> return replace(plan, planner_data="per-rank-data") 2025-08-14T21:49:15.9132736Z >>> 2025-08-14T21:49:15.9133088Z >>> def create_global_plan(self, all_plans: List[SavePlan]) -> Tuple[List[SavePlan], Metadata]: 2025-08-14T21:49:15.9133636Z >>> global_plan, metadata = super().create_global_plan(all_plans) 2025-08-14T21:49:15.9134104Z >>> merged_data = [p.planner_data for p in global_plan] 2025-08-14T21:49:15.9134495Z >>> metadata = replace(metadata, planner_data=merged_data) 2025-08-14T21:49:15.9134993Z >>> return global_plan, metadata 2025-08-14T21:49:15.9135188Z 2025-08-14T21:49:15.9135505Z Original Error: IndentationError('expected an indented block', ('', 9, 0, '_._ = None\n')) 2025-08-14T21:49:15.9135937Z 2025-08-14T21:49:15.9136016Z _._ = None 2025-08-14T21:49:15.9136203Z ^ 2025-08-14T21:49:16.2125758Z 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-14T21:49:16.2126695Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-14T21:49:16.2127032Z 2025-08-14T21:49:16.2127311Z Abstract class defining the protocol used by load_state_dict to plan the load process. 2025-08-14T21:49:16.2127714Z 2025-08-14T21:49:16.2128649Z LoadPlanner are stateful objects that can be used to customize the whole load process. 2025-08-14T21:49:16.2129417Z 2025-08-14T21:49:16.2129686Z LoadPlanner acts as an access proxy to the state_dict, so any transformation done to it 2025-08-14T21:49:16.2130150Z will be visible to the whole process. 2025-08-14T21:49:16.2130344Z 2025-08-14T21:49:16.2130591Z A planner subclass can expect the following sequence of calls during load_state_dict: 2025-08-14T21:49:16.2130962Z 2025-08-14T21:49:16.2131070Z 1) set_up_planner - called on all ranks. 2025-08-14T21:49:16.2131418Z Signals the start of loading a checkpoint. 2025-08-14T21:49:16.2131637Z 2025-08-14T21:49:16.2131746Z 2) create_local_plan - called on all ranks. 2025-08-14T21:49:16.2132226Z Process the state_dict and produces a `LoadPlan` that will be sent for global planning. 2025-08-14T21:49:16.2132586Z 2025-08-14T21:49:16.2132748Z 3) create_global_plan - called on the coordinator rank only. 2025-08-14T21:49:16.2133197Z Takes the LoadPlan from all ranks and make any global decision. 2025-08-14T21:49:16.2133481Z 2025-08-14T21:49:16.2133619Z 4) load_bytes - called multiple times on each rank 2025-08-14T21:49:16.2135091Z This is called once per non-tensor value in state_dict. 2025-08-14T21:49:16.2135353Z 2025-08-14T21:49:16.2135578Z 5) resolve_tensor and commit_tensor - called multiple times on each rank 2025-08-14T21:49:16.2136037Z They are called in pair for each Tensor value in state_dict. 2025-08-14T21:49:16.2136475Z 2025-08-14T21:49:16.2136746Z Users are recommended to extend DefaultLoadPlanner instead of this interface directly as 2025-08-14T21:49:16.2137289Z most changes can be expressed by changes in a single method. 2025-08-14T21:49:16.2137563Z 2025-08-14T21:49:16.2137682Z There are two usual patterns of extension: 2025-08-14T21:49:16.2137889Z 2025-08-14T21:49:16.2138133Z Rewriting state_dict. This is the simplest way to extend the load process as it 2025-08-14T21:49:16.2138690Z doesn't requite understanding the intrincacies of how LoadPlan works. We need 2025-08-14T21:49:16.2139236Z to keep a reference to the original state_dict as load happens in place so 2025-08-14T21:49:16.2139649Z we need to be able to perform it in place 2025-08-14T21:49:16.2140900Z 2025-08-14T21:49:16.2141007Z >>> # xdoctest: +SKIP("undefined vars") 2025-08-14T21:49:16.2141337Z >>> class RenamePlanner(DefaultLoadPlanner): 2025-08-14T21:49:16.2141636Z >>> def set_up_planner( 2025-08-14T21:49:16.2141881Z >>> self, 2025-08-14T21:49:16.2142093Z >>> state_dict: STATE_DICT_TYPE, 2025-08-14T21:49:16.2142376Z >>> metadata: Metadata, 2025-08-14T21:49:16.2142740Z >>> is_coordinator: bool, 2025-08-14T21:49:16.2142996Z >>> ) -> None: 2025-08-14T21:49:16.2143225Z >>> self.original_state_dict = state_dict 2025-08-14T21:49:16.2143606Z >>> state_dict = {"foo_" + k: v for k, v in state_dict.items()} 2025-08-14T21:49:16.2143938Z >>> 2025-08-14T21:49:16.2144145Z >>> if self.flatten_sharded_tensors: 2025-08-14T21:49:16.2144501Z >>> state_dict = _flatten_sharded_tensors(state_dict) 2025-08-14T21:49:16.2144809Z >>> 2025-08-14T21:49:16.2145009Z >>> if self.flatten_state_dict: 2025-08-14T21:49:16.2145503Z >>> state_dict, self.mappings = flatten_state_dict(state_dict) 2025-08-14T21:49:16.2146900Z >>> 2025-08-14T21:49:16.2147094Z >>> self.state_dict = state_dict 2025-08-14T21:49:16.2147393Z >>> self.metadata = metadata 2025-08-14T21:49:16.2147678Z >>> self.is_coordinator = is_coordinator 2025-08-14T21:49:16.2147970Z >>> 2025-08-14T21:49:16.2148196Z >>> def load_bytes(self, read_item, value): 2025-08-14T21:49:16.2148489Z >>> # Remove the "foo_" prefix 2025-08-14T21:49:16.2148950Z >>> self.original_state_dict[read_item.dest_index.fqn[4:]] = torch.load(value, weights_only=False) 2025-08-14T21:49:16.2149341Z 2025-08-14T21:49:16.2149345Z 2025-08-14T21:49:16.2149582Z Modifying resolve_tensor and commit_tensor to handle load time transformation. 2025-08-14T21:49:16.2149936Z 2025-08-14T21:49:16.2150036Z >>> # xdoctest: +SKIP("undefined vars") 2025-08-14T21:49:16.2150369Z >>> class MetaModelMaterialize(DefaultSavePlanner): 2025-08-14T21:49:16.2150740Z >>> def resolve_tensor(self, read_item): 2025-08-14T21:49:16.2151063Z >>> tensor = super().resolve_tensor(read_item) 2025-08-14T21:49:16.2152411Z >>> return torch.empty_like(tensor, device="cpu") 2025-08-14T21:49:16.2152742Z >>> 2025-08-14T21:49:16.2152993Z >>> def commit_tensor(self, read_item, tensor): 2025-08-14T21:49:16.2153363Z >>> self.state_dict[read_item.dest_index.fqn] = tensor 2025-08-14T21:49:16.2153613Z 2025-08-14T21:49:16.2154138Z Original Error: IndentationError('expected an indented block', ('', 23, 0, '_._ = None\n')) 2025-08-14T21:49:16.2154985Z 2025-08-14T21:49:16.2155124Z _._ = None 2025-08-14T21:49:16.2155457Z ^ 2025-08-14T21:49:16.2156530Z 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-14T21:49:16.2159368Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-14T21:49:16.2159919Z 2025-08-14T21:49:16.2160213Z ``FullStateDictConfig`` is a config class meant to be used with 2025-08-14T21:49:16.2160949Z ``StateDictType.FULL_STATE_DICT``. We recommend enabling both 2025-08-14T21:49:16.2161830Z ``offload_to_cpu=True`` and ``rank0_only=True`` when saving full state 2025-08-14T21:49:16.2162545Z dicts to save GPU memory and CPU memory, respectively. This config class 2025-08-14T21:49:16.2164170Z is meant to be used via the :func:`state_dict_type` context manager as 2025-08-14T21:49:16.2165205Z follows: 2025-08-14T21:49:16.2165693Z 2025-08-14T21:49:16.2165893Z >>> # xdoctest: +SKIP("undefined variables") 2025-08-14T21:49:16.2166342Z >>> from torch.distributed.fsdp import FullyShardedDataParallel as FSDP 2025-08-14T21:49:16.2166793Z >>> fsdp = FSDP(model, auto_wrap_policy=...) 2025-08-14T21:49:16.2167183Z >>> cfg = FullStateDictConfig(offload_to_cpu=True, rank0_only=True) 2025-08-14T21:49:16.2167699Z >>> with FSDP.state_dict_type(fsdp, StateDictType.FULL_STATE_DICT, cfg): 2025-08-14T21:49:16.2168110Z >>> state = fsdp.state_dict() 2025-08-14T21:49:16.2168480Z >>> # `state` will be empty on non rank 0 and contain CPU tensors on rank 0. 2025-08-14T21:49:16.2169013Z >>> # To reload checkpoint for inference, finetuning, transfer learning, etc: 2025-08-14T21:49:16.2169648Z >>> model = model_fn() # Initialize model in preparation for wrapping with FSDP 2025-08-14T21:49:16.2170600Z >>> if dist.get_rank() == 0: 2025-08-14T21:49:16.2171032Z >>> # Load checkpoint only on rank 0 to avoid memory redundancy 2025-08-14T21:49:16.2171433Z >>> state_dict = torch.load("my_checkpoint.pt") 2025-08-14T21:49:16.2171776Z >>> model.load_state_dict(state_dict) 2025-08-14T21:49:16.2172185Z >>> # All ranks initialize FSDP module as usual. `sync_module_states` argument 2025-08-14T21:49:16.2172726Z >>> # communicates loaded checkpoint states from rank 0 to rest of the world. 2025-08-14T21:49:16.2173264Z >>> fsdp = FSDP( 2025-08-14T21:49:16.2173469Z ... model, 2025-08-14T21:49:16.2173691Z ... device_id=torch.cuda.current_device(), 2025-08-14T21:49:16.2174006Z ... auto_wrap_policy=..., 2025-08-14T21:49:16.2174266Z ... sync_module_states=True, 2025-08-14T21:49:16.2174517Z ... ) 2025-08-14T21:49:16.2174795Z >>> # After this point, all ranks have FSDP model with loaded checkpoint. 2025-08-14T21:49:16.2175103Z 2025-08-14T21:49:16.2175175Z Attributes: 2025-08-14T21:49:16.2175482Z rank0_only (bool): If ``True``, then only rank 0 saves the full state 2025-08-14T21:49:16.2176336Z dict, and nonzero ranks save an empty dict. If ``False``, then all 2025-08-14T21:49:16.2176966Z ranks save the full state dict. (Default: ``False``) 2025-08-14T21:49:16.2177204Z 2025-08-14T21:49:16.2177520Z Original Error: IndentationError('expected an indented block', ('', 11, 1, '_._ = None\n')) 2025-08-14T21:49:16.2177952Z 2025-08-14T21:49:16.2178029Z _._ = None 2025-08-14T21:49:16.2178191Z ^ 2025-08-14T21:49:21.6236825Z 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-14T21:49:21.6237773Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-14T21:49:21.6238269Z Register a parametrization to a tensor in a module. 2025-08-14T21:49:21.6238515Z 2025-08-14T21:49:21.6238758Z Assume that ``tensor_name="weight"`` for simplicity. When accessing ``module.weight``, 2025-08-14T21:49:21.6239361Z the module will return the parametrized version ``parametrization(module.weight)``. 2025-08-14T21:49:21.6239941Z If the original tensor requires a gradient, the backward pass will differentiate 2025-08-14T21:49:21.6240539Z through :attr:`parametrization`, and the optimizer will update the tensor accordingly. 2025-08-14T21:49:21.6240898Z 2025-08-14T21:49:21.6241189Z The first time that a module registers a parametrization, this function will add an attribute 2025-08-14T21:49:21.6242864Z ``parametrizations`` to the module of type :class:`~ParametrizationList`. 2025-08-14T21:49:21.6243204Z 2025-08-14T21:49:21.6243598Z The list of parametrizations on the tensor ``weight`` will be accessible under 2025-08-14T21:49:21.6244044Z ``module.parametrizations.weight``. 2025-08-14T21:49:21.6244261Z 2025-08-14T21:49:21.6244376Z The original tensor will be accessible under 2025-08-14T21:49:21.6244723Z ``module.parametrizations.weight.original``. 2025-08-14T21:49:21.6244954Z 2025-08-14T21:49:21.6245194Z Parametrizations may be concatenated by registering several parametrizations 2025-08-14T21:49:21.6245635Z on the same attribute. 2025-08-14T21:49:21.6245784Z 2025-08-14T21:49:21.6246002Z The training mode of a registered parametrization is updated on registration 2025-08-14T21:49:21.6246445Z to match the training mode of the host module 2025-08-14T21:49:21.6246661Z 2025-08-14T21:49:21.6246936Z Parametrized parameters and buffers have an inbuilt caching system that can be activated 2025-08-14T21:49:21.6247410Z using the context manager :func:`cached`. 2025-08-14T21:49:21.6247614Z 2025-08-14T21:49:21.6247835Z A :attr:`parametrization` may optionally implement a method with signature 2025-08-14T21:49:21.6248156Z 2025-08-14T21:49:21.6248280Z .. code-block:: python 2025-08-14T21:49:21.6248573Z 2025-08-14T21:49:21.6248767Z def right_inverse(self, X: Tensor) -> Union[Tensor, Sequence[Tensor]] 2025-08-14T21:49:21.6249059Z 2025-08-14T21:49:21.6249301Z This method is called on the unparametrized tensor when the first parametrization 2025-08-14T21:49:21.6249819Z is registered to compute the initial value of the original tensor. 2025-08-14T21:49:21.6250376Z If this method is not implemented, the original tensor will be just the unparametrized tensor. 2025-08-14T21:49:21.6250759Z 2025-08-14T21:49:21.6251157Z If all the parametrizations registered on a tensor implement `right_inverse` it is possible 2025-08-14T21:49:21.6251800Z to initialize a parametrized tensor by assigning to it, as shown in the example below. 2025-08-14T21:49:21.6252163Z 2025-08-14T21:49:21.6252368Z It is possible for the first parametrization to depend on several inputs. 2025-08-14T21:49:21.6252876Z This may be implemented returning a tuple of tensors from ``right_inverse`` 2025-08-14T21:49:21.6253414Z (see the example implementation of a ``RankOne`` parametrization below). 2025-08-14T21:49:21.6253725Z 2025-08-14T21:49:21.6254028Z In this case, the unconstrained tensors are also located under ``module.parametrizations.weight`` 2025-08-14T21:49:21.6254563Z with names ``original0``, ``original1``,... 2025-08-14T21:49:21.6254768Z 2025-08-14T21:49:21.6254851Z .. note:: 2025-08-14T21:49:21.6254958Z 2025-08-14T21:49:21.6255205Z If unsafe=False (default) both the forward and right_inverse methods will be called 2025-08-14T21:49:21.6255673Z once to perform a number of consistency checks. 2025-08-14T21:49:21.6256126Z If unsafe=True, then right_inverse will be called if the tensor is not parametrized, 2025-08-14T21:49:21.6256578Z and nothing will be called otherwise. 2025-08-14T21:49:21.6256777Z 2025-08-14T21:49:21.6256857Z .. note:: 2025-08-14T21:49:21.6256964Z 2025-08-14T21:49:21.6257145Z In most situations, ``right_inverse`` will be a function such that 2025-08-14T21:49:21.6257540Z ``forward(right_inverse(X)) == X`` (see 2025-08-14T21:49:21.6258006Z `right inverse `_). 2025-08-14T21:49:21.6258584Z Sometimes, when the parametrization is not surjective, it may be reasonable 2025-08-14T21:49:21.6258982Z to relax this. 2025-08-14T21:49:21.6259127Z 2025-08-14T21:49:21.6259200Z .. warning:: 2025-08-14T21:49:21.6259327Z 2025-08-14T21:49:21.6259589Z If a parametrization depends on several inputs, :func:`~register_parametrization` 2025-08-14T21:49:21.6260162Z will register a number of new parameters. If such parametrization is registered 2025-08-14T21:49:21.6260740Z after the optimizer is created, these new parameters will need to be added manually 2025-08-14T21:49:21.6261305Z to the optimizer. See :meth:`torch.Optimizer.add_param_group`. 2025-08-14T21:49:21.6261597Z 2025-08-14T21:49:21.6261668Z Args: 2025-08-14T21:49:21.6261954Z module (nn.Module): module on which to register the parametrization 2025-08-14T21:49:21.6262448Z tensor_name (str): name of the parameter or buffer on which to register 2025-08-14T21:49:21.6262835Z the parametrization 2025-08-14T21:49:21.6263172Z parametrization (nn.Module): the parametrization to register 2025-08-14T21:49:21.6263529Z Keyword args: 2025-08-14T21:49:21.6263837Z unsafe (bool): a boolean flag that denotes whether the parametrization 2025-08-14T21:49:21.6264307Z may change the dtype and shape of the tensor. Default: `False` 2025-08-14T21:49:21.6264811Z Warning: the parametrization is not checked for consistency upon registration. 2025-08-14T21:49:21.6265263Z Enable this flag at your own risk. 2025-08-14T21:49:21.6265458Z 2025-08-14T21:49:21.6265538Z Raises: 2025-08-14T21:49:21.6265891Z ValueError: if the module does not have a parameter or a buffer named :attr:`tensor_name` 2025-08-14T21:49:21.6266319Z 2025-08-14T21:49:21.6266395Z Examples: 2025-08-14T21:49:21.6266629Z >>> # xdoctest: +REQUIRES(env:TORCH_DOCTEST_LAPACK) 2025-08-14T21:49:21.6266953Z >>> import torch 2025-08-14T21:49:21.6267189Z >>> import torch.nn as nn 2025-08-14T21:49:21.6267485Z >>> import torch.nn.utils.parametrize as P 2025-08-14T21:49:21.6267778Z >>> 2025-08-14T21:49:21.6267969Z >>> class Symmetric(nn.Module): 2025-08-14T21:49:21.6268333Z >>> def forward(self, X): 2025-08-14T21:49:21.6268661Z >>> return X.triu() + X.triu(1).T # Return a symmetric matrix 2025-08-14T21:49:21.6268997Z >>> 2025-08-14T21:49:21.6269186Z >>> def right_inverse(self, A): 2025-08-14T21:49:21.6269468Z >>> return A.triu() 2025-08-14T21:49:21.6269704Z >>> 2025-08-14T21:49:21.6269901Z >>> m = nn.Linear(5, 5) 2025-08-14T21:49:21.6270202Z >>> P.register_parametrization(m, "weight", Symmetric()) 2025-08-14T21:49:21.6270673Z >>> print(torch.allclose(m.weight, m.weight.T)) # m.weight is now symmetric 2025-08-14T21:49:21.6271063Z True 2025-08-14T21:49:21.6271248Z >>> A = torch.rand(5, 5) 2025-08-14T21:49:21.6271514Z >>> A = A + A.T # A is now symmetric 2025-08-14T21:49:21.6271875Z >>> m.weight = A # Initialize the weight to be the symmetric matrix A 2025-08-14T21:49:21.6272272Z >>> print(torch.allclose(m.weight, A)) 2025-08-14T21:49:21.6272621Z True 2025-08-14T21:49:21.6272733Z 2025-08-14T21:49:21.6272821Z >>> class RankOne(nn.Module): 2025-08-14T21:49:21.6273094Z >>> def forward(self, x, y): 2025-08-14T21:49:21.6273393Z >>> # Form a rank 1 matrix multiplying two vectors 2025-08-14T21:49:21.6273749Z >>> return x.unsqueeze(-1) @ y.unsqueeze(-2) 2025-08-14T21:49:21.6274034Z >>> 2025-08-14T21:49:21.6274238Z >>> def right_inverse(self, Z): 2025-08-14T21:49:21.6274524Z >>> # Project Z onto the rank 1 matrices 2025-08-14T21:49:21.6274862Z >>> U, S, Vh = torch.linalg.svd(Z, full_matrices=False) 2025-08-14T21:49:21.6275191Z >>> # Return rescaled singular vectors 2025-08-14T21:49:21.6275491Z >>> s0_sqrt = S[0].sqrt().unsqueeze(-1) 2025-08-14T21:49:21.6275836Z >>> return U[..., :, 0] * s0_sqrt, Vh[..., 0, :] * s0_sqrt 2025-08-14T21:49:21.6276134Z >>> 2025-08-14T21:49:21.6276377Z >>> linear_rank_one = P.register_parametrization( 2025-08-14T21:49:21.6276708Z ... nn.Linear(4, 4), "weight", RankOne() 2025-08-14T21:49:21.6276983Z ... ) 2025-08-14T21:49:21.6277265Z >>> print(torch.linalg.matrix_rank(linear_rank_one.weight).item()) 2025-08-14T21:49:21.6277692Z 1 2025-08-14T21:49:21.6277800Z 2025-08-14T21:49:21.6277867Z 2025-08-14T21:49:21.6278280Z Original Error: IndentationError('expected an indented block', ('', 3, 0, '_._ = None\n')) 2025-08-14T21:49:21.6278700Z 2025-08-14T21:49:21.6278782Z _._ = None 2025-08-14T21:49:21.6278952Z ^ 2025-08-14T21:49:21.6286844Z 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-14T21:49:21.6287713Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-14T21:49:21.6288191Z Reduce learning rate when a metric has stopped improving. 2025-08-14T21:49:21.6288447Z 2025-08-14T21:49:21.6288640Z Models often benefit from reducing the learning rate by a factor 2025-08-14T21:49:21.6289075Z of 2-10 once learning stagnates. This scheduler reads a metrics 2025-08-14T21:49:21.6289509Z quantity and if no improvement is seen for a 'patience' number 2025-08-14T21:49:21.6289881Z of epochs, the learning rate is reduced. 2025-08-14T21:49:21.6290085Z 2025-08-14T21:49:21.6290228Z Args: 2025-08-14T21:49:21.6290444Z optimizer (Optimizer): Wrapped optimizer. 2025-08-14T21:49:21.6290792Z mode (str): One of `min`, `max`. In `min` mode, lr will 2025-08-14T21:49:21.6291166Z be reduced when the quantity monitored has stopped 2025-08-14T21:49:21.6291546Z decreasing; in `max` mode it will be reduced when the 2025-08-14T21:49:21.6291962Z quantity monitored has stopped increasing. Default: 'min'. 2025-08-14T21:49:21.6292381Z factor (float): Factor by which the learning rate will be 2025-08-14T21:49:21.6292851Z reduced. new_lr = lr * factor. Default: 0.1. 2025-08-14T21:49:21.6293268Z patience (int): The number of allowed epochs with no improvement after 2025-08-14T21:49:21.6293670Z which the learning rate will be reduced. 2025-08-14T21:49:21.6294099Z For example, consider the case of having no patience (`patience = 0`). 2025-08-14T21:49:21.6294727Z In the first epoch, a baseline is established and is always considered good as there's no previous baseline. 2025-08-14T21:49:21.6295338Z In the second epoch, if the performance is worse than the baseline, 2025-08-14T21:49:21.6295751Z we have what is considered an intolerable epoch. 2025-08-14T21:49:21.6296219Z Since the count of intolerable epochs (1) is greater than the patience level (0), 2025-08-14T21:49:21.6296703Z the learning rate is reduced at the end of this epoch. 2025-08-14T21:49:21.6297240Z From the third epoch onwards, the learning rate continues to be reduced at the end of each epoch 2025-08-14T21:49:21.6297909Z if the performance is worse than the baseline. If the performance improves or remains the same, 2025-08-14T21:49:21.6298384Z the learning rate is not adjusted. 2025-08-14T21:49:21.6298667Z Default: 10. 2025-08-14T21:49:21.6298966Z threshold (float): Threshold for measuring the new optimum, 2025-08-14T21:49:21.6299375Z to only focus on significant changes. Default: 1e-4. 2025-08-14T21:49:21.6299766Z threshold_mode (str): One of `rel`, `abs`. In `rel` mode, 2025-08-14T21:49:21.6300149Z dynamic_threshold = best * ( 1 + threshold ) in 'max' 2025-08-14T21:49:21.6300516Z mode or best * ( 1 - threshold ) in `min` mode. 2025-08-14T21:49:21.6300868Z In `abs` mode, dynamic_threshold = best + threshold in 2025-08-14T21:49:21.6301264Z `max` mode or best - threshold in `min` mode. Default: 'rel'. 2025-08-14T21:49:21.6301678Z cooldown (int): Number of epochs to wait before resuming 2025-08-14T21:49:21.6302078Z normal operation after lr has been reduced. Default: 0. 2025-08-14T21:49:21.6302477Z min_lr (float or list): A scalar or a list of scalars. A 2025-08-14T21:49:21.6302900Z lower bound on the learning rate of all param groups 2025-08-14T21:49:21.6303256Z or each group respectively. Default: 0. 2025-08-14T21:49:21.6303633Z eps (float): Minimal decay applied to lr. If the difference 2025-08-14T21:49:21.6304052Z between new and old lr is smaller than eps, the update is 2025-08-14T21:49:21.6304391Z ignored. Default: 1e-8. 2025-08-14T21:49:21.6304580Z 2025-08-14T21:49:21.6304650Z Example: 2025-08-14T21:49:21.6304846Z >>> # xdoctest: +SKIP 2025-08-14T21:49:21.6305197Z >>> optimizer = torch.optim.SGD(model.parameters(), lr=0.1, momentum=0.9) 2025-08-14T21:49:21.6305650Z >>> scheduler = ReduceLROnPlateau(optimizer, "min") 2025-08-14T21:49:21.6305982Z >>> for epoch in range(10): 2025-08-14T21:49:21.6306239Z >>> train(...) 2025-08-14T21:49:21.6306465Z >>> val_loss = validate(...) 2025-08-14T21:49:21.6306782Z >>> # Note that step should be called after validate() 2025-08-14T21:49:21.6307098Z >>> scheduler.step(val_loss) 2025-08-14T21:49:21.6307297Z 2025-08-14T21:49:21.6308082Z .. image:: ../scripts/lr_scheduler_images/ReduceLROnPlateau.png 2025-08-14T21:49:21.6308436Z 2025-08-14T21:49:21.6308874Z Original Error: IndentationError('unexpected indent', ('', 8, 4, ' scheduler.step(val_loss)\n')) 2025-08-14T21:49:21.6309333Z 2025-08-14T21:49:21.6309424Z scheduler.step(val_loss) 2025-08-14T21:49:21.6309648Z ^ 2025-08-14T21:49:24.8569427Z 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-14T21:49:24.8571243Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-14T21:49:24.8571616Z 2025-08-14T21:49:24.8571816Z vmap is the vectorizing map; ``vmap(func)`` returns a new function that 2025-08-14T21:49:24.8572292Z maps ``func`` over some dimension of the inputs. Semantically, vmap 2025-08-14T21:49:24.8572775Z pushes the map into PyTorch operations called by ``func``, effectively 2025-08-14T21:49:24.8573238Z vectorizing those operations. 2025-08-14T21:49:24.8573411Z 2025-08-14T21:49:24.8573656Z vmap is useful for handling batch dimensions: one can write a function 2025-08-14T21:49:24.8574166Z ``func`` that runs on examples and then lift it to a function that can 2025-08-14T21:49:24.8574638Z take batches of examples with ``vmap(func)``. vmap can also be used to 2025-08-14T21:49:24.8575068Z compute batched gradients when composed with autograd. 2025-08-14T21:49:24.8575326Z 2025-08-14T21:49:24.8575424Z .. note:: 2025-08-14T21:49:24.8575692Z :func:`torch.vmap` is aliased to :func:`torch.func.vmap` for 2025-08-14T21:49:24.8576084Z convenience. Use whichever one you'd like. 2025-08-14T21:49:24.8576294Z 2025-08-14T21:49:24.8576360Z Args: 2025-08-14T21:49:24.8576647Z func (function): A Python function that takes one or more arguments. 2025-08-14T21:49:24.8577023Z Must return one or more Tensors. 2025-08-14T21:49:24.8577387Z in_dims (int or nested structure): Specifies which dimension of the 2025-08-14T21:49:24.8577817Z inputs should be mapped over. ``in_dims`` should have a 2025-08-14T21:49:24.8578235Z structure like the inputs. If the ``in_dim`` for a particular 2025-08-14T21:49:24.8578655Z input is None, then that indicates there is no map dimension. 2025-08-14T21:49:24.8578990Z Default: 0. 2025-08-14T21:49:24.8579319Z out_dims (int or Tuple[int]): Specifies where the mapped dimension 2025-08-14T21:49:24.8579801Z should appear in the outputs. If ``out_dims`` is a Tuple, then 2025-08-14T21:49:24.8580245Z it should have one element per output. Default: 0. 2025-08-14T21:49:24.8580636Z randomness (str): Specifies whether the randomness in this 2025-08-14T21:49:24.8581086Z vmap should be the same or different across batches. If 'different', 2025-08-14T21:49:24.8581628Z the randomness for each batch will be different. If 'same', the 2025-08-14T21:49:24.8582100Z randomness will be the same across batches. If 'error', any calls to 2025-08-14T21:49:24.8582585Z random functions will error. Default: 'error'. WARNING: this flag 2025-08-14T21:49:24.8583042Z only applies to random PyTorch operations and does not apply to 2025-08-14T21:49:24.8583455Z Python's random module or numpy randomness. 2025-08-14T21:49:24.8583865Z chunk_size (None or int): If None (default), apply a single vmap over inputs. 2025-08-14T21:49:24.8584362Z If not None, then compute the vmap :attr:`chunk_size` samples at a time. 2025-08-14T21:49:24.8584891Z Note that :attr:`chunk_size=1` is equivalent to computing the vmap with a for-loop. 2025-08-14T21:49:24.8585506Z If you run into memory issues computing the vmap, please try a non-None chunk_size. 2025-08-14T21:49:24.8585889Z 2025-08-14T21:49:24.8585973Z Returns: 2025-08-14T21:49:24.8586229Z Returns a new "batched" function. It takes the same inputs as 2025-08-14T21:49:24.8586658Z ``func``, except each input has an extra dimension at the index 2025-08-14T21:49:24.8587168Z specified by ``in_dims``. It takes returns the same outputs as 2025-08-14T21:49:24.8587592Z ``func``, except each output has an extra dimension at the index 2025-08-14T21:49:24.8587957Z specified by ``out_dims``. 2025-08-14T21:49:24.8588122Z 2025-08-14T21:49:24.8588194Z .. warning: 2025-08-14T21:49:24.8588486Z :func:`vmap` works best with functional-style code. Please do not 2025-08-14T21:49:24.8588924Z perform any side-effects in ``func``, with the exception of 2025-08-14T21:49:24.8589509Z in-place PyTorch operations. Examples of side-effects include mutating 2025-08-14T21:49:24.8590015Z Python data structures and assigning values to variables not captured 2025-08-14T21:49:24.8590395Z in ``func``. 2025-08-14T21:49:24.8590516Z 2025-08-14T21:49:24.8590731Z One example of using :func:`vmap` is to compute batched dot products. PyTorch 2025-08-14T21:49:24.8591279Z doesn't provide a batched ``torch.dot`` API; instead of unsuccessfully 2025-08-14T21:49:24.8591856Z rummaging through docs, use :func:`vmap` to construct a new function. 2025-08-14T21:49:24.8592226Z 2025-08-14T21:49:24.8592330Z >>> torch.dot # [D], [D] -> [] 2025-08-14T21:49:24.8592704Z >>> batched_dot = torch.func.vmap(torch.dot) # [N, D], [N, D] -> [N] 2025-08-14T21:49:24.8593089Z >>> x, y = torch.randn(2, 5), torch.randn(2, 5) 2025-08-14T21:49:24.8593384Z >>> batched_dot(x, y) 2025-08-14T21:49:24.8593530Z 2025-08-14T21:49:24.8593736Z :func:`vmap` can be helpful in hiding batch dimensions, leading to a simpler 2025-08-14T21:49:24.8594135Z model authoring experience. 2025-08-14T21:49:24.8594296Z 2025-08-14T21:49:24.8594403Z >>> batch_size, feature_size = 3, 5 2025-08-14T21:49:24.8594739Z >>> weights = torch.randn(feature_size, requires_grad=True) 2025-08-14T21:49:24.8595067Z >>> 2025-08-14T21:49:24.8595239Z >>> def model(feature_vec): 2025-08-14T21:49:24.8595508Z >>> # Very simple linear model with activation 2025-08-14T21:49:24.8595820Z >>> return feature_vec.dot(weights).relu() 2025-08-14T21:49:24.8596095Z >>> 2025-08-14T21:49:24.8596318Z >>> examples = torch.randn(batch_size, feature_size) 2025-08-14T21:49:24.8596645Z >>> result = torch.vmap(model)(examples) 2025-08-14T21:49:24.8596838Z 2025-08-14T21:49:24.8597071Z :func:`vmap` can also help vectorize computations that were previously difficult 2025-08-14T21:49:24.8597607Z or impossible to batch. One example is higher-order gradient computation. 2025-08-14T21:49:24.8598122Z The PyTorch autograd engine computes vjps (vector-Jacobian products). 2025-08-14T21:49:24.8598619Z Computing a full Jacobian matrix for some function f: R^N -> R^N usually 2025-08-14T21:49:24.8599140Z requires N calls to ``autograd.grad``, one per Jacobian row. Using :func:`vmap`, 2025-08-14T21:49:24.8599745Z we can vectorize the whole computation, computing the Jacobian in a single 2025-08-14T21:49:24.8600145Z call to ``autograd.grad``. 2025-08-14T21:49:24.8600304Z 2025-08-14T21:49:24.8600383Z >>> # Setup 2025-08-14T21:49:24.8600556Z >>> N = 5 2025-08-14T21:49:24.8600750Z >>> f = lambda x: x**2 2025-08-14T21:49:24.8600992Z >>> x = torch.randn(N, requires_grad=True) 2025-08-14T21:49:24.8601277Z >>> y = f(x) 2025-08-14T21:49:24.8601465Z >>> I_N = torch.eye(N) 2025-08-14T21:49:24.8601674Z >>> 2025-08-14T21:49:24.8601863Z >>> # Sequential approach 2025-08-14T21:49:24.8602268Z >>> jacobian_rows = [torch.autograd.grad(y, x, v, retain_graph=True)[0] 2025-08-14T21:49:24.8602718Z >>> for v in I_N.unbind()] 2025-08-14T21:49:24.8603059Z >>> jacobian = torch.stack(jacobian_rows) 2025-08-14T21:49:24.8603341Z >>> 2025-08-14T21:49:24.8603525Z >>> # vectorized gradient computation 2025-08-14T21:49:24.8603802Z >>> def get_vjp(v): 2025-08-14T21:49:24.8604035Z >>> return torch.autograd.grad(y, x, v) 2025-08-14T21:49:24.8604343Z >>> jacobian = torch.vmap(get_vjp)(I_N) 2025-08-14T21:49:24.8604607Z 2025-08-14T21:49:24.8604845Z :func:`vmap` can also be nested, producing an output with multiple batched dimensions 2025-08-14T21:49:24.8605185Z 2025-08-14T21:49:24.8605275Z >>> torch.dot # [D], [D] -> [] 2025-08-14T21:49:24.8605547Z >>> batched_dot = torch.vmap( 2025-08-14T21:49:24.8605797Z ... torch.vmap(torch.dot) 2025-08-14T21:49:24.8606066Z ... ) # [N1, N0, D], [N1, N0, D] -> [N1, N0] 2025-08-14T21:49:24.8606383Z >>> x, y = torch.randn(2, 3, 5), torch.randn(2, 3, 5) 2025-08-14T21:49:24.8606800Z >>> batched_dot(x, y) # tensor of size [2, 3] 2025-08-14T21:49:24.8607011Z 2025-08-14T21:49:24.8607227Z If the inputs are not batched along the first dimension, ``in_dims`` specifies 2025-08-14T21:49:24.8607679Z the dimension that each inputs are batched along as 2025-08-14T21:49:24.8607917Z 2025-08-14T21:49:24.8608015Z >>> torch.dot # [N], [N] -> [] 2025-08-14T21:49:24.8608382Z >>> batched_dot = torch.vmap(torch.dot, in_dims=1) # [N, D], [N, D] -> [D] 2025-08-14T21:49:24.8608803Z >>> x, y = torch.randn(2, 5), torch.randn(2, 5) 2025-08-14T21:49:24.8609083Z >>> batched_dot( 2025-08-14T21:49:24.8609291Z ... x, y 2025-08-14T21:49:24.8609572Z ... ) # output is [5] instead of [2] if batched along the 0th dimension 2025-08-14T21:49:24.8609857Z 2025-08-14T21:49:24.8610082Z If there are multiple inputs each of which is batched along different dimensions, 2025-08-14T21:49:24.8610600Z ``in_dims`` must be a tuple with the batch dimension for each input as 2025-08-14T21:49:24.8610877Z 2025-08-14T21:49:24.8610967Z >>> torch.dot # [D], [D] -> [] 2025-08-14T21:49:24.8611349Z >>> batched_dot = torch.vmap(torch.dot, in_dims=(0, None)) # [N, D], [D] -> [N] 2025-08-14T21:49:24.8611763Z >>> x, y = torch.randn(2, 5), torch.randn(5) 2025-08-14T21:49:24.8612050Z >>> batched_dot( 2025-08-14T21:49:24.8612249Z ... x, y 2025-08-14T21:49:24.8612532Z ... ) # second arg doesn't have a batch dim because in_dim[1] was None 2025-08-14T21:49:24.8612812Z 2025-08-14T21:49:24.8613031Z If the input is a Python struct, ``in_dims`` must be a tuple containing a struct 2025-08-14T21:49:24.8613429Z matching the shape of the input: 2025-08-14T21:49:24.8613613Z 2025-08-14T21:49:24.8613731Z >>> f = lambda dict: torch.dot(dict["x"], dict["y"]) 2025-08-14T21:49:24.8614045Z >>> x, y = torch.randn(2, 5), torch.randn(5) 2025-08-14T21:49:24.8614331Z >>> input = {"x": x, "y": y} 2025-08-14T21:49:24.8614647Z >>> batched_dot = torch.vmap(f, in_dims=({"x": 0, "y": None},)) 2025-08-14T21:49:24.8614980Z >>> batched_dot(input) 2025-08-14T21:49:24.8615126Z 2025-08-14T21:49:24.8615370Z By default, the output is batched along the first dimension. However, it can be batched 2025-08-14T21:49:24.8615821Z along any dimension by using ``out_dims`` 2025-08-14T21:49:24.8616087Z 2025-08-14T21:49:24.8616165Z >>> f = lambda x: x**2 2025-08-14T21:49:24.8616387Z >>> x = torch.randn(2, 5) 2025-08-14T21:49:24.8616656Z >>> batched_pow = torch.vmap(f, out_dims=1) 2025-08-14T21:49:24.8616935Z >>> batched_pow(x) # [5, 2] 2025-08-14T21:49:24.8617104Z 2025-08-14T21:49:24.8617356Z For any function that uses kwargs, the returned function will not batch the kwargs but will 2025-08-14T21:49:24.8617803Z accept kwargs 2025-08-14T21:49:24.8617913Z 2025-08-14T21:49:24.8618002Z >>> x = torch.randn([2, 5]) 2025-08-14T21:49:24.8618308Z >>> def fn(x, scale=4.): 2025-08-14T21:49:24.8618570Z >>> return x * scale 2025-08-14T21:49:24.8618789Z >>> 2025-08-14T21:49:24.8618974Z >>> batched_pow = torch.vmap(fn) 2025-08-14T21:49:24.8619279Z >>> assert torch.allclose(batched_pow(x), x * 4) 2025-08-14T21:49:24.8619703Z >>> batched_pow(x, scale=x) # scale is not batched, output has shape [2, 2, 5] 2025-08-14T21:49:24.8620009Z 2025-08-14T21:49:24.8620093Z .. note:: 2025-08-14T21:49:24.8620395Z vmap does not provide general autobatching or handle variable-length 2025-08-14T21:49:24.8620827Z sequences out of the box. 2025-08-14T21:49:24.8621018Z 2025-08-14T21:49:24.8621336Z Original Error: IndentationError('expected an indented block', ('', 5, 1, '_._ = None\n')) 2025-08-14T21:49:24.8621750Z 2025-08-14T21:49:24.8621821Z _._ = None 2025-08-14T21:49:24.8621991Z ^ 2025-08-14T21:49:25.1705445Z 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-14T21:49:25.1706257Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-14T21:49:25.1707042Z ``grad`` operator helps computing gradients of ``func`` with respect to the 2025-08-14T21:49:25.1707529Z input(s) specified by ``argnums``. This operator can be nested to 2025-08-14T21:49:25.1708024Z compute higher-order gradients. 2025-08-14T21:49:25.1708290Z 2025-08-14T21:49:25.1708365Z Args: 2025-08-14T21:49:25.1708658Z func (Callable): A Python function that takes one or more arguments. 2025-08-14T21:49:25.1709181Z Must return a single-element Tensor. If specified ``has_aux`` equals ``True``, 2025-08-14T21:49:25.1709755Z function can return a tuple of single-element Tensor and other auxiliary objects: 2025-08-14T21:49:25.1710177Z ``(output, aux)``. 2025-08-14T21:49:25.1710579Z argnums (int or Tuple[int]): Specifies arguments to compute gradients with respect to. 2025-08-14T21:49:25.1711112Z ``argnums`` can be single integer or tuple of integers. Default: 0. 2025-08-14T21:49:25.1711587Z has_aux (bool): Flag indicating that ``func`` returns a tensor and other 2025-08-14T21:49:25.1712086Z auxiliary objects: ``(output, aux)``. Default: False. 2025-08-14T21:49:25.1712342Z 2025-08-14T21:49:25.1712421Z Returns: 2025-08-14T21:49:25.1712793Z Function to compute gradients with respect to its inputs. By default, the output of 2025-08-14T21:49:25.1713365Z the function is the gradient tensor(s) with respect to the first argument. 2025-08-14T21:49:25.1713927Z If specified ``has_aux`` equals ``True``, tuple of gradients and output auxiliary objects 2025-08-14T21:49:25.1714493Z is returned. If ``argnums`` is a tuple of integers, a tuple of output gradients with 2025-08-14T21:49:25.1714939Z respect to each ``argnums`` value is returned. 2025-08-14T21:49:25.1715176Z 2025-08-14T21:49:25.1715267Z Example of using ``grad``: 2025-08-14T21:49:25.1715425Z 2025-08-14T21:49:25.1715506Z >>> # xdoctest: +SKIP 2025-08-14T21:49:25.1715777Z >>> from torch.func import grad 2025-08-14T21:49:25.1716038Z >>> x = torch.randn([]) 2025-08-14T21:49:25.1716304Z >>> cos_x = grad(lambda x: torch.sin(x))(x) 2025-08-14T21:49:25.1716615Z >>> assert torch.allclose(cos_x, x.cos()) 2025-08-14T21:49:25.1716987Z >>> 2025-08-14T21:49:25.1717183Z >>> # Second-order gradients 2025-08-14T21:49:25.1717486Z >>> neg_sin_x = grad(grad(lambda x: torch.sin(x)))(x) 2025-08-14T21:49:25.1717864Z >>> assert torch.allclose(neg_sin_x, -x.sin()) 2025-08-14T21:49:25.1718077Z 2025-08-14T21:49:25.1718301Z When composed with ``vmap``, ``grad`` can be used to compute per-sample-gradients: 2025-08-14T21:49:25.1718639Z 2025-08-14T21:49:25.1718721Z >>> # xdoctest: +SKIP 2025-08-14T21:49:25.1718980Z >>> from torch.func import grad, vmap 2025-08-14T21:49:25.1719272Z >>> batch_size, feature_size = 3, 5 2025-08-14T21:49:25.1719536Z >>> 2025-08-14T21:49:25.1719734Z >>> def model(weights, feature_vec): 2025-08-14T21:49:25.1720048Z >>> # Very simple linear model with activation 2025-08-14T21:49:25.1720353Z >>> assert feature_vec.dim() == 1 2025-08-14T21:49:25.1720673Z >>> return feature_vec.dot(weights).relu() 2025-08-14T21:49:25.1720946Z >>> 2025-08-14T21:49:25.1721167Z >>> def compute_loss(weights, example, target): 2025-08-14T21:49:25.1721547Z >>> y = model(weights, example) 2025-08-14T21:49:25.1721846Z >>> return ((y - target) ** 2).mean() # MSELoss 2025-08-14T21:49:25.1722140Z >>> 2025-08-14T21:49:25.1722405Z >>> weights = torch.randn(feature_size, requires_grad=True) 2025-08-14T21:49:25.1722806Z >>> examples = torch.randn(batch_size, feature_size) 2025-08-14T21:49:25.1723138Z >>> targets = torch.randn(batch_size) 2025-08-14T21:49:25.1723449Z >>> inputs = (weights, examples, targets) 2025-08-14T21:49:25.1723948Z >>> grad_weight_per_example = vmap(grad(compute_loss), in_dims=(None, 0, 0))( 2025-08-14T21:49:25.1724348Z ... *inputs 2025-08-14T21:49:25.1724558Z ... ) 2025-08-14T21:49:25.1724669Z 2025-08-14T21:49:25.1724824Z Example of using ``grad`` with ``has_aux`` and ``argnums``: 2025-08-14T21:49:25.1725089Z 2025-08-14T21:49:25.1725191Z >>> # xdoctest: +SKIP 2025-08-14T21:49:25.1725436Z >>> from torch.func import grad 2025-08-14T21:49:25.1725726Z >>> def my_loss_func(y, y_pred): 2025-08-14T21:49:25.1726020Z >>> loss_per_sample = (0.5 * y_pred - y) ** 2 2025-08-14T21:49:25.1726330Z >>> loss = loss_per_sample.mean() 2025-08-14T21:49:25.1726639Z >>> return loss, (y_pred, loss_per_sample) 2025-08-14T21:49:25.1726910Z >>> 2025-08-14T21:49:25.1727145Z >>> fn = grad(my_loss_func, argnums=(0, 1), has_aux=True) 2025-08-14T21:49:25.1727459Z >>> y_true = torch.rand(4) 2025-08-14T21:49:25.1727758Z >>> y_preds = torch.rand(4, requires_grad=True) 2025-08-14T21:49:25.1728056Z >>> out = fn(y_true, y_preds) 2025-08-14T21:49:25.1728455Z >>> # > output is ((grads w.r.t y_true, grads w.r.t y_preds), (y_pred, loss_per_sample)) 2025-08-14T21:49:25.1728781Z 2025-08-14T21:49:25.1728881Z .. note:: 2025-08-14T21:49:25.1729146Z Using PyTorch ``torch.no_grad`` together with ``grad``. 2025-08-14T21:49:25.1729392Z 2025-08-14T21:49:25.1729540Z Case 1: Using ``torch.no_grad`` inside a function: 2025-08-14T21:49:25.1729766Z 2025-08-14T21:49:25.1729850Z >>> # xdoctest: +SKIP 2025-08-14T21:49:25.1730099Z >>> def f(x): 2025-08-14T21:49:25.1730342Z >>> with torch.no_grad(): 2025-08-14T21:49:25.1730640Z >>> c = x ** 2 2025-08-14T21:49:25.1730889Z >>> return x - c 2025-08-14T21:49:25.1731063Z 2025-08-14T21:49:25.1731240Z In this case, ``grad(f)(x)`` will respect the inner ``torch.no_grad``. 2025-08-14T21:49:25.1731524Z 2025-08-14T21:49:25.1731704Z Case 2: Using ``grad`` inside ``torch.no_grad`` context manager: 2025-08-14T21:49:25.1731979Z 2025-08-14T21:49:25.1732068Z >>> # xdoctest: +SKIP 2025-08-14T21:49:25.1732340Z >>> with torch.no_grad(): 2025-08-14T21:49:25.1732652Z >>> grad(f)(x) 2025-08-14T21:49:25.1732824Z 2025-08-14T21:49:25.1733023Z In this case, ``grad`` will respect the inner ``torch.no_grad``, but not the 2025-08-14T21:49:25.1733542Z outer one. This is because ``grad`` is a "function transform": its result 2025-08-14T21:49:25.1734039Z should not depend on the result of a context manager outside of ``f``. 2025-08-14T21:49:25.1734335Z 2025-08-14T21:49:25.1734411Z 2025-08-14T21:49:25.1734809Z Original Error: IndentationError('expected an indented block', ('', 6, 1, '_._ = None\n')) 2025-08-14T21:49:25.1735243Z 2025-08-14T21:49:25.1735315Z _._ = None 2025-08-14T21:49:25.1735490Z ^ 2025-08-14T21:49:25.1736150Z 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-14T21:49:25.1737035Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-14T21:49:25.1737529Z Register a FakeTensor implementation for this custom op. 2025-08-14T21:49:25.1737788Z 2025-08-14T21:49:25.1738075Z This is necessary to get the operator to work efficiently with torch.compile. 2025-08-14T21:49:25.1738407Z 2025-08-14T21:49:25.1738604Z The Fake impl (sometimes also known as a meta kernel or abstract impl) 2025-08-14T21:49:25.1739124Z specifies the behavior of this operator on Tensors that carry no data. 2025-08-14T21:49:25.1739573Z Given some input Tensors with certain properties 2025-08-14T21:49:25.1740030Z (sizes/strides/storage_offset/device), it specifies what the properties of 2025-08-14T21:49:25.1740474Z the output Tensors are. 2025-08-14T21:49:25.1740723Z 2025-08-14T21:49:25.1740909Z Please see :func:`torch.library.register_fake` for more details. 2025-08-14T21:49:25.1741210Z 2025-08-14T21:49:25.1741282Z Args: 2025-08-14T21:49:25.1741547Z fn (Callable): The function to register as the FakeTensor 2025-08-14T21:49:25.1741909Z implementation. 2025-08-14T21:49:25.1742076Z 2025-08-14T21:49:25.1742171Z Examples: 2025-08-14T21:49:25.1742375Z >>> import torch 2025-08-14T21:49:25.1742639Z >>> import numpy as np 2025-08-14T21:49:25.1742900Z >>> from torch import Tensor 2025-08-14T21:49:25.1743181Z >>> 2025-08-14T21:49:25.1743467Z >>> # Example 1: an operator without data-dependent output shape 2025-08-14T21:49:25.1743930Z >>> @torch.library.custom_op("mylib::linear", mutates_args=()) 2025-08-14T21:49:25.1744450Z >>> def linear(x: Tensor, weight: Tensor, bias: Tensor) -> Tensor: 2025-08-14T21:49:25.1744915Z >>> return (x @ weight.t()) + bias 2025-08-14T21:49:25.1745317Z >>> 2025-08-14T21:49:25.1745531Z >>> @linear.register_fake 2025-08-14T21:49:25.1745821Z >>> def _(x, weight, bias): 2025-08-14T21:49:25.1746098Z >>> assert x.dim() == 2 2025-08-14T21:49:25.1746409Z >>> assert weight.dim() == 2 2025-08-14T21:49:25.1746696Z >>> assert bias.dim() == 1 2025-08-14T21:49:25.1747028Z >>> assert x.shape[1] == weight.shape[1] 2025-08-14T21:49:25.1747374Z >>> assert weight.shape[0] == bias.shape[0] 2025-08-14T21:49:25.1747710Z >>> assert x.device == weight.device 2025-08-14T21:49:25.1748066Z >>> return x.new_empty(x.size(0), weight.size(0)) 2025-08-14T21:49:25.1748379Z >>> 2025-08-14T21:49:25.1748605Z >>> x = torch.randn(2, 2) 2025-08-14T21:49:25.1748929Z >>> weight = torch.randn(2, 2) 2025-08-14T21:49:25.1749276Z >>> bias = torch.randn(2) 2025-08-14T21:49:25.1749596Z >>> # xdoctest: +SKIP("Requires Python <= 3.11") 2025-08-14T21:49:25.1750039Z >>> out = torch.compile(linear, fullgraph=True)(x, weight, bias) 2025-08-14T21:49:25.1750568Z >>> # xdoctest: +SKIP("Requires Python <= 3.11") 2025-08-14T21:49:25.1751033Z >>> assert torch.allclose(out, torch.nn.functional.linear(x, weight, bias)) 2025-08-14T21:49:25.1751441Z >>> 2025-08-14T21:49:25.1751735Z >>> # Example 2: an operator with data-dependent output shape 2025-08-14T21:49:25.1752250Z >>> @torch.library.custom_op("mylib::nonzero", mutates_args=()) 2025-08-14T21:49:25.1752655Z >>> def nonzero(x: Tensor) -> Tensor: 2025-08-14T21:49:25.1752955Z >>> x_np = x.cpu().numpy() 2025-08-14T21:49:25.1753279Z >>> res = np.stack(np.nonzero(x_np), axis=1) 2025-08-14T21:49:25.1753680Z >>> return torch.tensor(res, device=x.device) 2025-08-14T21:49:25.1753982Z >>> 2025-08-14T21:49:25.1754221Z >>> @nonzero.register_fake 2025-08-14T21:49:25.1754486Z >>> def _(x): 2025-08-14T21:49:25.1754778Z >>> # Number of nonzero-elements is data-dependent. 2025-08-14T21:49:25.1755175Z >>> # Since we cannot peek at the data in an abstract impl, 2025-08-14T21:49:25.1755651Z >>> # we use the ctx object to construct a new symint that 2025-08-14T21:49:25.1756082Z >>> # represents the data-dependent size. 2025-08-14T21:49:25.1756445Z >>> ctx = torch.library.get_ctx() 2025-08-14T21:49:25.1756776Z >>> nnz = ctx.new_dynamic_size() 2025-08-14T21:49:25.1757067Z >>> shape = [nnz, x.dim()] 2025-08-14T21:49:25.1757403Z >>> result = x.new_empty(shape, dtype=torch.int64) 2025-08-14T21:49:25.1757729Z >>> return result 2025-08-14T21:49:25.1757979Z >>> 2025-08-14T21:49:25.1758282Z >>> x = torch.tensor([0, 1, 2, 0, 0, 1]) 2025-08-14T21:49:25.1758621Z >>> # xdoctest: +SKIP("Requires Python <= 3.11") 2025-08-14T21:49:25.1758987Z >>> out = torch.compile(nonzero, fullgraph=True)(x) 2025-08-14T21:49:25.1759342Z >>> # xdoctest: +SKIP("Requires Python <= 3.11") 2025-08-14T21:49:25.1759689Z >>> assert torch.allclose(out, x.nonzero()) 2025-08-14T21:49:25.1759914Z 2025-08-14T21:49:25.1759992Z 2025-08-14T21:49:25.1760433Z Original Error: IndentationError('expected an indented block', ('', 37, 1, '_._ = None\n')) 2025-08-14T21:49:25.1760871Z 2025-08-14T21:49:25.1760947Z _._ = None 2025-08-14T21:49:25.1761148Z ^ 2025-08-14T21:49:25.4355183Z 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-14T21:49:25.4356137Z Caused by: DoctestParseError('Failed to parse doctest in _label_docsrc_lines') 2025-08-14T21:49:25.4356500Z 2025-08-14T21:49:25.4356706Z Registers a fake kernel based on the given operator profiles. This fake 2025-08-14T21:49:25.4364359Z kernel registration will override any existing fake kernel registrations. 2025-08-14T21:49:25.4364815Z 2025-08-14T21:49:25.4365021Z The input is a dictionary mapping operator names to a set of operator 2025-08-14T21:49:25.4365549Z profiles, which we will use to generate fake kernels. The operator profiles 2025-08-14T21:49:25.4366044Z are a record of the input and output tensor metadata. Based on this 2025-08-14T21:49:25.4366553Z information we will match a given input to the recorded profile, and return 2025-08-14T21:49:25.4367079Z an output with the same metadata as in the recorded profile. If a profile 2025-08-14T21:49:25.4367503Z doesn't exist then an exception will be thrown. 2025-08-14T21:49:25.4367731Z 2025-08-14T21:49:25.4367946Z The fake kernel generation is considered unsafe because it relies on the 2025-08-14T21:49:25.4368458Z rigid, pre-defined operator profiles that do not account for potential 2025-08-14T21:49:25.4368991Z variations in output behavior. Specifically, the generated kernels assume a 2025-08-14T21:49:25.4369697Z fixed relationship between input and output ranks. However, in reality, it's 2025-08-14T21:49:25.4370253Z possible that data-dependent operations may produce outputs of different 2025-08-14T21:49:25.4370781Z ranks even when given inputs of the same rank. The generated fake kernels 2025-08-14T21:49:25.4371272Z are inflexible and unable to accommodate these nuances, making them 2025-08-14T21:49:25.4371660Z potentially unsafe. 2025-08-14T21:49:25.4371789Z 2025-08-14T21:49:25.4371859Z Args: 2025-08-14T21:49:25.4372155Z op_profiles (dict[str, set[OpProfile]]): A dictionary mapping operator 2025-08-14T21:49:25.4372621Z name to a set of operator profiles from which we will generate fake 2025-08-14T21:49:25.4372982Z kernels. 2025-08-14T21:49:25.4373098Z 2025-08-14T21:49:25.4373184Z Examples: 2025-08-14T21:49:25.4373287Z 2025-08-14T21:49:25.4373437Z >>> # Example: Registering an op-profile from draft-export 2025-08-14T21:49:25.4373772Z >>> import torch 2025-08-14T21:49:25.4374043Z >>> from torch.export._draft_export import draft_export 2025-08-14T21:49:25.4374361Z >>> 2025-08-14T21:49:25.4374637Z >>> @torch.library.custom_op("mylib::foo", mutates_args=()) 2025-08-14T21:49:25.4375088Z >>> def foo(x: Tensor, y: Tensor) -> Tensor: 2025-08-14T21:49:25.4375386Z >>> return x + y 2025-08-14T21:49:25.4375586Z >>> 2025-08-14T21:49:25.4375776Z >>> class M(torch.nn.Module): 2025-08-14T21:49:25.4376032Z >>> def forward(self, a, b): 2025-08-14T21:49:25.4376347Z >>> res = torch.ops.mylib.foo(a, b) # no fake impl 2025-08-14T21:49:25.4376647Z >>> return res 2025-08-14T21:49:25.4376870Z >>> 2025-08-14T21:49:25.4377158Z >>> ep = draft_export(M(), (torch.ones(3, 4), torch.ones(3, 4)) 2025-08-14T21:49:25.4377603Z >>> 2025-08-14T21:49:25.4377983Z >>> with torch._library.fake_profile.unsafe_generate_fake_kernels(ep._report.op_profiles): 2025-08-14T21:49:25.4378459Z >>> decomp = ep.run_decompositions() 2025-08-14T21:49:25.4378681Z 2025-08-14T21:49:25.4378685Z 2025-08-14T21:49:25.4379113Z Original Error: IncompleteParseError('ill-formed doctest: all parts have been processed but the doctest source is not balanced') 2025-08-14T21:49:25.4379656Z 2025-08-14T21:49:25.4379749Z running 863 test(s) 2025-08-14T21:49:25.4380286Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::typename:0, line 1082 <- wrt source file 2025-08-14T21:49:25.4381096Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::typename:0 2025-08-14T21:49:25.4381881Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::is_tensor:0, line 1118 <- wrt source file 2025-08-14T21:49:25.4382755Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::is_tensor:0 2025-08-14T21:49:25.4383603Z * 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-14T21:49:25.4384453Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::set_default_device:0 2025-08-14T21:49:25.4385332Z * 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-14T21:49:25.4386220Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::set_default_tensor_type:0 2025-08-14T21:49:25.4387136Z * 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-14T21:49:25.4387987Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::set_default_dtype:0 2025-08-14T21:49:25.4388873Z * 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-14T21:49:25.4389869Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::use_deterministic_algorithms:0 2025-08-14T21:49:25.4390731Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::compile:0, line 2567 <- wrt source file 2025-08-14T21:49:25.4391513Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::compile:0 2025-08-14T21:49:25.4392506Z * 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-14T21:49:25.4393480Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::_is_device_backend_autoload_enabled:0 2025-08-14T21:49:25.4394502Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::broadcast_tensors:0, line 64 <- wrt source file 2025-08-14T21:49:25.4395435Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::broadcast_tensors:0 2025-08-14T21:49:25.4396309Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::broadcast_shapes:0, line 92 <- wrt source file 2025-08-14T21:49:25.4397256Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::broadcast_shapes:0 2025-08-14T21:49:25.4398099Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::split:0, line 193 <- wrt source file 2025-08-14T21:49:25.4398895Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::split:0 2025-08-14T21:49:25.4399806Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::einsum:0, line 307 <- wrt source file 2025-08-14T21:49:25.4400608Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::einsum:0 2025-08-14T21:49:25.4401424Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::meshgrid:0, line 499 <- wrt source file 2025-08-14T21:49:25.4402246Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::meshgrid:0 2025-08-14T21:49:25.4403067Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::_unique_impl:0, line 884 <- wrt source file 2025-08-14T21:49:25.4403916Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::_unique_impl:0 2025-08-14T21:49:25.4404799Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::_unique_consecutive_impl:0, line 1041 <- wrt source file 2025-08-14T21:49:25.4405741Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::_unique_consecutive_impl:0 2025-08-14T21:49:25.4406620Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::tensordot:0, line 1316 <- wrt source file 2025-08-14T21:49:25.4407447Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::tensordot:0 2025-08-14T21:49:25.4408312Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::cartesian_prod:0, line 1400 <- wrt source file 2025-08-14T21:49:25.4409181Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::cartesian_prod:0 2025-08-14T21:49:25.4410020Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::block_diag:0, line 1434 <- wrt source file 2025-08-14T21:49:25.4410871Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::block_diag:0 2025-08-14T21:49:25.4411681Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::cdist:0, line 1490 <- wrt source file 2025-08-14T21:49:25.4412548Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::cdist:0 2025-08-14T21:49:25.4413919Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::atleast_1d:0, line 1531 <- wrt source file 2025-08-14T21:49:25.4414755Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::atleast_1d:0 2025-08-14T21:49:25.4415589Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::atleast_2d:0, line 1569 <- wrt source file 2025-08-14T21:49:25.4416421Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::atleast_2d:0 2025-08-14T21:49:25.4417254Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::atleast_3d:0, line 1609 <- wrt source file 2025-08-14T21:49:25.4418099Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::atleast_3d:0 2025-08-14T21:49:25.4418909Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::norm:0, line 1784 <- wrt source file 2025-08-14T21:49:25.4419709Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::norm:0 2025-08-14T21:49:26.9443249Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::unravel_index:0, line 1952 <- wrt source file 2025-08-14T21:49:26.9444166Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::unravel_index:0 2025-08-14T21:49:26.9445068Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::chain_matmul:0, line 2052 <- wrt source file 2025-08-14T21:49:26.9446016Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::chain_matmul:0 2025-08-14T21:49:26.9447086Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::_lu_impl:0, line 2153 <- wrt source file 2025-08-14T21:49:26.9447927Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::_lu_impl:0 2025-08-14T21:49:26.9448712Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\hub.py::list:0, line 473 <- wrt source file 2025-08-14T21:49:26.9449462Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\hub.py::list:0 2025-08-14T21:49:26.9450191Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\hub.py::help:0, line 533 <- wrt source file 2025-08-14T21:49:26.9450912Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\hub.py::help:0 2025-08-14T21:49:26.9451639Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\hub.py::load:0, line 624 <- wrt source file 2025-08-14T21:49:26.9452376Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\hub.py::load:0 2025-08-14T21:49:26.9453127Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\hub.py::_load_local:0, line 672 <- wrt source file 2025-08-14T21:49:26.9453907Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\hub.py::_load_local:0 2025-08-14T21:49:26.9454707Z * 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-14T21:49:26.9455545Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\hub.py::download_url_to_file:0 2025-08-14T21:49:26.9456481Z * 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-14T21:49:26.9457379Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\hub.py::load_state_dict_from_url:0 2025-08-14T21:49:26.9458233Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::Library.define:0, line 153 <- wrt source file 2025-08-14T21:49:26.9459066Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::Library.define:0 2025-08-14T21:49:26.9460044Z * 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-14T21:49:26.9460987Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::Library._impl_with_aoti_compile:0 2025-08-14T21:49:26.9461865Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::Library.impl:0, line 307 <- wrt source file 2025-08-14T21:49:26.9462673Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::Library.impl:0 2025-08-14T21:49:26.9463476Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::define:0, line 512 <- wrt source file 2025-08-14T21:49:26.9464242Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::define:0 2025-08-14T21:49:26.9465014Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::impl:0, line 618 <- wrt source file 2025-08-14T21:49:26.9465775Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::impl:0 2025-08-14T21:49:26.9466635Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::register_kernel:0, line 799 <- wrt source file 2025-08-14T21:49:26.9467466Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::register_kernel:0 2025-08-14T21:49:26.9468309Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::register_autocast:0, line 867 <- wrt source file 2025-08-14T21:49:26.9469263Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::register_autocast:0 2025-08-14T21:49:26.9470115Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::register_autograd:0, line 1116 <- wrt source file 2025-08-14T21:49:26.9470982Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::register_autograd:0 2025-08-14T21:49:26.9471907Z * 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-14T21:49:26.9472897Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::register_torch_dispatch:0 2025-08-14T21:49:26.9473797Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::register_vmap:0, line 1321 <- wrt source file 2025-08-14T21:49:26.9474614Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::register_vmap:0 2025-08-14T21:49:26.9475430Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::opcheck:0, line 1646 <- wrt source file 2025-08-14T21:49:26.9476212Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::opcheck:0 2025-08-14T21:49:26.9477065Z * 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-14T21:49:26.9477977Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\overrides.py::get_ignored_functions:0 2025-08-14T21:49:26.9478857Z * 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-14T21:49:26.9479752Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\overrides.py::get_testing_overrides:0 2025-08-14T21:49:26.9480643Z * 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-14T21:49:26.9481530Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\overrides.py::wrap_torch_function:0 2025-08-14T21:49:26.9482431Z * 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-14T21:49:26.9483373Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\overrides.py::handle_torch_function:0 2025-08-14T21:49:26.9484313Z * 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-14T21:49:26.9485271Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\overrides.py::is_tensor_method_or_property:0 2025-08-14T21:49:26.9486165Z * 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-14T21:49:26.9487043Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\overrides.py::is_tensor_like:0 2025-08-14T21:49:26.9487887Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\quasirandom.py::SobolEngine:0, line 39 <- wrt source file 2025-08-14T21:49:26.9488743Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\quasirandom.py::SobolEngine:0 2025-08-14T21:49:26.9489677Z * 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-14T21:49:26.9490571Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\serialization.py::add_safe_globals:0 2025-08-14T21:49:26.9491463Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\serialization.py::safe_globals:0, line 324 <- wrt source file 2025-08-14T21:49:26.9492405Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\serialization.py::safe_globals:0 2025-08-14T21:49:26.9493273Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\serialization.py::skip_data:0, line 400 <- wrt source file 2025-08-14T21:49:26.9494129Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\serialization.py::skip_data:0 2025-08-14T21:49:26.9495001Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\serialization.py::register_package:0, line 472 <- wrt source file 2025-08-14T21:49:26.9495911Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\serialization.py::register_package:0 2025-08-14T21:49:26.9496786Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\serialization.py::save:0, line 950 <- wrt source file 2025-08-14T21:49:26.9497607Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\serialization.py::save:0 2025-08-14T21:49:26.9498441Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\serialization.py::load:0, line 1363 <- wrt source file 2025-08-14T21:49:26.9499254Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\serialization.py::load:0 2025-08-14T21:49:27.0299934Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\torch_version.py::TorchVersion:0, line 19 <- wrt source file 2025-08-14T21:49:27.0301444Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\torch_version.py::TorchVersion:0 2025-08-14T21:49:27.0302636Z * 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-14T21:49:27.0303520Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_C.cp39-win_amd64.pyd::Generator:0 2025-08-14T21:49:27.0304506Z * 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-14T21:49:27.0305445Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_C.cp39-win_amd64.pyd::_LinAlgError:0 2025-08-14T21:49:27.0306305Z * 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-14T21:49:27.0307318Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_custom_ops.py::custom_op:0 2025-08-14T21:49:27.0308137Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_custom_ops.py::impl:0, line 138 <- wrt source file 2025-08-14T21:49:27.0308947Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_custom_ops.py::impl:0 2025-08-14T21:49:27.0309764Z * 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-14T21:49:27.0310712Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_custom_ops.py::impl_abstract:0 2025-08-14T21:49:27.0311623Z * 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-14T21:49:27.0312644Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_namedtensor_internals.py::update_names:0 2025-08-14T21:49:27.0313562Z * 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-14T21:49:27.0314521Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.register_hook:0 2025-08-14T21:49:27.0315465Z * 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-14T21:49:27.0316531Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.register_post_accumulate_grad_hook:0 2025-08-14T21:49:27.0317623Z * 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-14T21:49:27.0318494Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.refine_names:0 2025-08-14T21:49:27.0319343Z * 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-14T21:49:27.0320189Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.align_to:0 2025-08-14T21:49:27.0321031Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.rename:0, line 1451 <- wrt source file 2025-08-14T21:49:27.0321852Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.rename:0 2025-08-14T21:49:27.0322788Z * 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-14T21:49:27.0323667Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.to_sparse_coo:0 2025-08-14T21:49:27.0324509Z * 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-14T21:49:27.0325354Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.dim_order:0 2025-08-14T21:49:27.0326196Z * 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-14T21:49:27.0327081Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor_str.py::set_printoptions:0 2025-08-14T21:49:27.0327991Z * 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-14T21:49:27.0329035Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\accelerator\__init__.py::current_accelerator:0 2025-08-14T21:49:27.0329961Z * 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-14T21:49:27.0330907Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\accelerator\__init__.py::device_index:0 2025-08-14T21:49:27.0331785Z * 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-14T21:49:27.0332678Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::allow_in_graph:0 2025-08-14T21:49:27.0333587Z * 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-14T21:49:27.0334554Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::substitute_in_graph:0 2025-08-14T21:49:27.0335483Z * 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-14T21:49:27.0336340Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::wrap_numpy:0 2025-08-14T21:49:27.0337258Z * 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-14T21:49:27.0338132Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::is_compiling:0 2025-08-14T21:49:27.0339019Z * 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-14T21:49:27.0340008Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::is_dynamo_compiling:0 2025-08-14T21:49:27.0340993Z * 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-14T21:49:27.0341864Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::is_exporting:0 2025-08-14T21:49:27.0342762Z * 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-14T21:49:27.0343679Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::save_cache_artifacts:0 2025-08-14T21:49:27.0344595Z * 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-14T21:49:27.0345516Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::load_cache_artifacts:0 2025-08-14T21:49:27.0346442Z * 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-14T21:49:27.0347344Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\__init__.py::_compile_kernel:0 2025-08-14T21:49:27.0348175Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\__init__.py::save:0, line 345 <- wrt source file 2025-08-14T21:49:27.0348996Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\__init__.py::save:0 2025-08-14T21:49:27.0349801Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\__init__.py::load:0, line 415 <- wrt source file 2025-08-14T21:49:27.0350603Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\__init__.py::load:0 2025-08-14T21:49:27.0351464Z * 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-14T21:49:27.0352470Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\__init__.py::register_dataclass:0 2025-08-14T21:49:27.0353391Z * 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-14T21:49:27.0354298Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\futures\__init__.py::Future.then:0 2025-08-14T21:49:27.0355194Z * 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-14T21:49:27.0356143Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\futures\__init__.py::Future.add_done_callback:0 2025-08-14T21:49:27.0496752Z * 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-14T21:49:27.0497730Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\futures\__init__.py::Future.set_result:0 2025-08-14T21:49:27.0498648Z * 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-14T21:49:27.0499588Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\futures\__init__.py::Future.set_exception:0 2025-08-14T21:49:27.0500623Z * 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-14T21:49:27.0501489Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\futures\__init__.py::collect_all:0 2025-08-14T21:49:27.0502327Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\jit\__init__.py::annotate:0, line 147 <- wrt source file 2025-08-14T21:49:27.0503272Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\jit\__init__.py::annotate:0 2025-08-14T21:49:27.0504169Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\monitor\__init__.py::TensorboardEventHandler:0, line 22 <- wrt source file 2025-08-14T21:49:27.0505118Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\monitor\__init__.py::TensorboardEventHandler:0 2025-08-14T21:49:27.0506031Z * 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-14T21:49:27.0506874Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\mps\__init__.py::compile_shader:0 2025-08-14T21:49:27.0507754Z * 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-14T21:49:27.0508638Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nested\__init__.py::as_nested_tensor:0 2025-08-14T21:49:27.0509586Z * 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-14T21:49:27.0511087Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nested\__init__.py::nested_tensor:0 2025-08-14T21:49:27.0511996Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nested\__init__.py::narrow:0, line 315 <- wrt source file 2025-08-14T21:49:27.0512808Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nested\__init__.py::narrow:0 2025-08-14T21:49:27.0513687Z * 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-14T21:49:27.0514635Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nested\__init__.py::nested_tensor_from_jagged:0 2025-08-14T21:49:27.0515534Z * 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-14T21:49:27.0516406Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nested\__init__.py::masked_select:0 2025-08-14T21:49:27.0517324Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\sparse\__init__.py::sum:0, line 223 <- wrt source file 2025-08-14T21:49:27.0518135Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\sparse\__init__.py::sum:0 2025-08-14T21:49:27.0519025Z * 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-14T21:49:27.0519997Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\sparse\__init__.py::check_sparse_tensor_invariants:0 2025-08-14T21:49:27.0520951Z * 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-14T21:49:27.0521859Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\sparse\__init__.py::as_sparse_gradcheck:0 2025-08-14T21:49:27.0522763Z * 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-14T21:49:27.0523727Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_inductor\__init__.py::list_mode_options:0 2025-08-14T21:49:27.0524624Z * 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-14T21:49:27.0525507Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_inductor\__init__.py::list_options:0 2025-08-14T21:49:27.0526561Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_prims_common\__init__.py::compute_required_storage_length:0, line 1858 <- wrt source file 2025-08-14T21:49:27.0527598Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_prims_common\__init__.py::compute_required_storage_length:0 2025-08-14T21:49:27.0528551Z * 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-14T21:49:27.0529421Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\amp\grad_scaler.py::GradScaler:0 2025-08-14T21:49:27.0530351Z * 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-14T21:49:27.0531361Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\intrinsic\qat\modules\linear_relu.py::LinearReLU:0 2025-08-14T21:49:27.0532415Z * 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-14T21:49:27.0533521Z * 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-14T21:49:27.0534600Z * 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-14T21:49:27.0535647Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\intrinsic\quantized\modules\linear_relu.py::LinearReLU:0 2025-08-14T21:49:27.0536722Z * 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-14T21:49:27.0537824Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\intrinsic\quantized\modules\linear_relu.py::LinearLeakyReLU:0 2025-08-14T21:49:27.0538892Z * 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-14T21:49:27.0539949Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\intrinsic\quantized\modules\linear_relu.py::LinearTanh:0 2025-08-14T21:49:27.0540975Z * 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-14T21:49:27.0541912Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantizable\modules\rnn.py::LSTMCell:0 2025-08-14T21:49:27.0542831Z * 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-14T21:49:27.0543733Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantizable\modules\rnn.py::LSTM:0 2025-08-14T21:49:27.0544646Z * 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-14T21:49:27.0545561Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\functional.py::conv1d:0 2025-08-14T21:49:27.0546451Z * 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-14T21:49:27.0547937Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\functional.py::conv2d:0 2025-08-14T21:49:27.0548835Z * 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-14T21:49:27.0549744Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\functional.py::conv3d:0 2025-08-14T21:49:27.0551593Z * 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-14T21:49:27.0553040Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\__init__.py::Quantize:0 2025-08-14T21:49:27.0554088Z * 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-14T21:49:27.0672551Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\__init__.py::DeQuantize:0 2025-08-14T21:49:27.0674492Z * 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-14T21:49:27.0676029Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\conv.py::Conv1d:0 2025-08-14T21:49:27.0677038Z * 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-14T21:49:27.0678068Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\conv.py::Conv2d:0 2025-08-14T21:49:27.0679058Z * 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-14T21:49:27.0680042Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\conv.py::Conv3d:0 2025-08-14T21:49:27.0681087Z * 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-14T21:49:27.0682250Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\conv.py::ConvTranspose1d:0 2025-08-14T21:49:27.0683325Z * 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-14T21:49:27.0684491Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\conv.py::ConvTranspose2d:0 2025-08-14T21:49:27.0685751Z * 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-14T21:49:27.0686794Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\conv.py::ConvTranspose3d:0 2025-08-14T21:49:27.0687888Z * 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-14T21:49:27.0688875Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\linear.py::Linear:0 2025-08-14T21:49:27.0689880Z * 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-14T21:49:27.0690831Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\rnn.py::LSTM:0 2025-08-14T21:49:27.0691775Z * 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-14T21:49:27.0692796Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\rnn.py::GRU:0 2025-08-14T21:49:27.0693853Z * 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-14T21:49:27.0694827Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\rnn.py::RNNCell:0 2025-08-14T21:49:27.0695931Z * 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-14T21:49:27.0696976Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\rnn.py::LSTMCell:0 2025-08-14T21:49:27.0697954Z * 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-14T21:49:27.0698932Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\rnn.py::GRUCell:0 2025-08-14T21:49:27.0699974Z * 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-14T21:49:27.0700976Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\activation.py::ReLU6:0 2025-08-14T21:49:27.0701913Z * 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-14T21:49:27.0702826Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\conv.py::Conv1d:0 2025-08-14T21:49:27.0703745Z * 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-14T21:49:27.0704665Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\conv.py::Conv2d:0 2025-08-14T21:49:27.0705619Z * 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-14T21:49:27.0706587Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\conv.py::Conv3d:0 2025-08-14T21:49:27.0707536Z * 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-14T21:49:27.0708534Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\conv.py::ConvTranspose1d:0 2025-08-14T21:49:27.0709584Z * 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-14T21:49:27.0710576Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\conv.py::ConvTranspose2d:0 2025-08-14T21:49:27.0711606Z * 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-14T21:49:27.0712719Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\conv.py::ConvTranspose3d:0 2025-08-14T21:49:27.0713715Z * 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-14T21:49:27.0714726Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\embedding_ops.py::Embedding:0 2025-08-14T21:49:27.0715736Z * 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-14T21:49:27.0716819Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\embedding_ops.py::EmbeddingBag:0 2025-08-14T21:49:27.0717941Z * 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-14T21:49:27.0719155Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\functional_modules.py::FloatFunctional:0 2025-08-14T21:49:27.0720239Z * 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-14T21:49:27.0721314Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\functional_modules.py::QFunctional:0 2025-08-14T21:49:27.0722304Z * 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-14T21:49:27.0723251Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\linear.py::Linear:0 2025-08-14T21:49:27.0724255Z * 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-14T21:49:27.0725173Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\rnn.py::LSTM:0 2025-08-14T21:49:27.0726464Z * 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-14T21:49:27.0727946Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\pruning\scheduler\lambda_scheduler.py::LambdaSL:0 2025-08-14T21:49:27.0729288Z * 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-14T21:49:27.0730453Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\pruning\sparsifier\base_sparsifier.py::BaseSparsifier:0 2025-08-14T21:49:27.0731569Z * 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-14T21:49:27.0784571Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\pruning\sparsifier\base_sparsifier.py::BaseSparsifier.squash_mask:0 2025-08-14T21:49:27.0786951Z * 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-14T21:49:27.0789730Z * 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-14T21:49:27.0792190Z * 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-14T21:49:27.0794493Z * 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-14T21:49:27.0796636Z * 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-14T21:49:27.0798509Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fuser_method_mappings.py::fuse_conv_bn:0 2025-08-14T21:49:27.0800417Z * 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-14T21:49:27.0802488Z * 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-14T21:49:27.0804425Z * 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-14T21:49:27.0806309Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fuser_method_mappings.py::fuse_linear_bn:0 2025-08-14T21:49:27.0808465Z * 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-14T21:49:27.0810483Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fuser_method_mappings.py::fuse_convtranspose_bn:0 2025-08-14T21:49:27.0812364Z * 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-14T21:49:27.0814186Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fuse_modules.py::fuse_modules:0 2025-08-14T21:49:27.0815911Z * 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-14T21:49:27.0817589Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\observer.py::_with_args:0 2025-08-14T21:49:27.0819377Z * 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-14T21:49:27.0821164Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\observer.py::_with_callable_args:0 2025-08-14T21:49:27.0822911Z * 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-14T21:49:27.0824589Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_fx.py::fuse_fx:0 2025-08-14T21:49:27.0826328Z * 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-14T21:49:27.0828052Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_fx.py::prepare_fx:0 2025-08-14T21:49:27.0829794Z * 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-14T21:49:27.0831615Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_fx.py::prepare_qat_fx:0 2025-08-14T21:49:27.0833476Z * 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-14T21:49:27.0835188Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_fx.py::convert_fx:0 2025-08-14T21:49:27.0837047Z * 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-14T21:49:27.0838961Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_fx.py::convert_to_reference_fx:0 2025-08-14T21:49:27.0840916Z * 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-14T21:49:27.0842998Z * 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-14T21:49:27.0844998Z * 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-14T21:49:27.0846763Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_pt2e.py::prepare_pt2e:0 2025-08-14T21:49:27.0848568Z * 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-14T21:49:27.0850557Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_pt2e.py::prepare_qat_pt2e:0 2025-08-14T21:49:27.0852341Z * 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-14T21:49:27.0854113Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_pt2e.py::convert_pt2e:0 2025-08-14T21:49:27.0855909Z * 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-14T21:49:27.0857622Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\utils.py::get_combined_dict:0 2025-08-14T21:49:27.0859340Z * 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-14T21:49:27.0861064Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\utils.py::_get_path_of_module:0 2025-08-14T21:49:27.0862855Z * 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-14T21:49:27.0864614Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\utils.py::_get_signature_locals:0 2025-08-14T21:49:27.0866369Z * 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-14T21:49:27.0868146Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\utils.py::_get_default_kwargs:0 2025-08-14T21:49:27.0869857Z * 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-14T21:49:27.0871559Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\utils.py::_normalize_kwargs:0 2025-08-14T21:49:27.0873333Z * 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-14T21:49:27.0875108Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\utils.py::_get_num_pos_args:0 2025-08-14T21:49:27.0876957Z * 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-14T21:49:27.0878937Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\backend_config\backend_config.py::DTypeConfig:0 2025-08-14T21:49:27.0880992Z * 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-14T21:49:27.0883037Z * 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-14T21:49:27.0885000Z * 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-14T21:49:27.0982098Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fx\_model_report\model_report.py::ModelReport:0 2025-08-14T21:49:27.0983967Z * 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-14T21:49:27.0985425Z * 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-14T21:49:27.0987028Z * 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-14T21:49:27.0988528Z * 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-14T21:49:27.0990019Z * 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-14T21:49:27.0991487Z * 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-14T21:49:27.0993074Z * 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-14T21:49:27.0994605Z * 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-14T21:49:27.0995887Z * 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-14T21:49:27.0996978Z * 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-14T21:49:27.0998088Z * 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-14T21:49:27.0999232Z * 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-14T21:49:27.1000360Z * 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-14T21:49:27.1001547Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\pt2e\_affine_quantization.py::_get_reduction_params:0 2025-08-14T21:49:27.1002674Z * 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-14T21:49:27.1003804Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\pt2e\_affine_quantization.py::_register_custom_op:0 2025-08-14T21:49:27.1004819Z * 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-14T21:49:27.1005753Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\anomaly_mode.py::detect_anomaly:0 2025-08-14T21:49:27.1006653Z * 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-14T21:49:27.1007535Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\forward_ad.py::make_dual:0 2025-08-14T21:49:27.1008461Z * 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-14T21:49:27.1009354Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\forward_ad.py::unpack_dual:0 2025-08-14T21:49:27.1010242Z * 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-14T21:49:27.1011217Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\forward_ad.py::dual_level:0 2025-08-14T21:49:27.1012176Z * 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-14T21:49:27.1013891Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\function.py::FunctionCtx.save_for_backward:0 2025-08-14T21:49:27.1014919Z * 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-14T21:49:27.1015922Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\function.py::FunctionCtx.save_for_forward:0 2025-08-14T21:49:27.1016910Z * 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-14T21:49:27.1017882Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\function.py::FunctionCtx.mark_dirty:0 2025-08-14T21:49:27.1018891Z * 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-14T21:49:27.1019965Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\function.py::FunctionCtx.mark_non_differentiable:0 2025-08-14T21:49:27.1021015Z * 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-14T21:49:27.1022076Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\function.py::FunctionCtx.set_materialize_grads:0 2025-08-14T21:49:27.1023040Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\function.py::Function:0, line 485 <- wrt source file 2025-08-14T21:49:27.1023906Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\function.py::Function:0 2025-08-14T21:49:27.1024771Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::vjp:0, line 293 <- wrt source file 2025-08-14T21:49:27.1025705Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::vjp:0 2025-08-14T21:49:27.1026549Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::jvp:0, line 395 <- wrt source file 2025-08-14T21:49:27.1027460Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::jvp:0 2025-08-14T21:49:27.1028349Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::jacobian:0, line 630 <- wrt source file 2025-08-14T21:49:27.1029236Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::jacobian:0 2025-08-14T21:49:27.1030203Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::hessian:0, line 894 <- wrt source file 2025-08-14T21:49:27.1031157Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::hessian:0 2025-08-14T21:49:27.1032083Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::vhp:0, line 1010 <- wrt source file 2025-08-14T21:49:27.1033072Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::vhp:0 2025-08-14T21:49:27.1033936Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::hvp:0, line 1109 <- wrt source file 2025-08-14T21:49:27.1034796Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::hvp:0 2025-08-14T21:49:27.1035745Z * 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-14T21:49:27.1036614Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\grad_mode.py::no_grad:0 2025-08-14T21:49:27.1037475Z * 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-14T21:49:27.1038368Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\grad_mode.py::enable_grad:0 2025-08-14T21:49:27.1039283Z * 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-14T21:49:27.1040188Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\grad_mode.py::set_grad_enabled:0 2025-08-14T21:49:27.1064899Z * 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-14T21:49:27.1066699Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\grad_mode.py::inference_mode:0 2025-08-14T21:49:27.1068339Z * 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-14T21:49:27.1069926Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::Node.name:0 2025-08-14T21:49:27.1071615Z * 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-14T21:49:27.1073390Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::Node.register_hook:0 2025-08-14T21:49:27.1075104Z * 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-14T21:49:27.1076956Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::Node.register_prehook:0 2025-08-14T21:49:27.1078693Z * 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-14T21:49:27.1080629Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::saved_tensors_hooks:0 2025-08-14T21:49:27.1082355Z * 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-14T21:49:27.1083974Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::save_on_cpu:0 2025-08-14T21:49:27.1085706Z * 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-14T21:49:27.1087589Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::disable_saved_tensors_hooks:0 2025-08-14T21:49:27.1089281Z * 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-14T21:49:27.1090451Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::register_multi_grad_hook:0 2025-08-14T21:49:27.1091431Z * 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-14T21:49:27.1092533Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::allow_mutation_on_saved_tensors:0 2025-08-14T21:49:27.1093512Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\profiler.py::profile:0, line 182 <- wrt source file 2025-08-14T21:49:27.1094422Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\profiler.py::profile:0 2025-08-14T21:49:27.1095421Z * 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-14T21:49:27.1096332Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\profiler.py::record_function:0 2025-08-14T21:49:27.1097222Z * 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-14T21:49:27.1098081Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\profiler.py::emit_itt:0 2025-08-14T21:49:27.1098947Z * 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-14T21:49:27.1099857Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\profiler.py::emit_nvtx:0 2025-08-14T21:49:27.1100755Z * 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-14T21:49:27.1101612Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\gds.py::gds_register_buffer:0 2025-08-14T21:49:27.1102475Z * 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-14T21:49:27.1103359Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\gds.py::gds_deregister_buffer:0 2025-08-14T21:49:27.1104199Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\gds.py::GdsFile:0, line 85 <- wrt source file 2025-08-14T21:49:27.1104970Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\gds.py::GdsFile:0 2025-08-14T21:49:27.1105850Z * 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-14T21:49:27.1106776Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\jiterator.py::_create_jit_fn:0 2025-08-14T21:49:27.1107763Z * 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-14T21:49:27.1109218Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\jiterator.py::_create_jit_fn:1 2025-08-14T21:49:27.1110099Z * 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-14T21:49:27.1110977Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\jiterator.py::_create_jit_fn:2 2025-08-14T21:49:27.1112023Z * 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-14T21:49:27.1113032Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\jiterator.py::_create_multi_output_jit_fn:0 2025-08-14T21:49:27.1113926Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\profiler.py::profile:0, line 75 <- wrt source file 2025-08-14T21:49:27.1114746Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\profiler.py::profile:0 2025-08-14T21:49:27.1115629Z * 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-14T21:49:27.1116629Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\device_mesh.py::DeviceMesh:0 2025-08-14T21:49:27.1117598Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\device_mesh.py::DeviceMesh.get_local_rank:0, line 976 <- wrt source file 2025-08-14T21:49:27.1118807Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\device_mesh.py::DeviceMesh.get_local_rank:0 2025-08-14T21:49:27.1119808Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\device_mesh.py::init_device_mesh:0, line 1122 <- wrt source file 2025-08-14T21:49:27.1121018Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\device_mesh.py::init_device_mesh:0 2025-08-14T21:49:27.1122562Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::_coalescing_manager:0, line 2574 <- wrt source file 2025-08-14T21:49:27.1124025Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::_coalescing_manager:0 2025-08-14T21:49:27.1125124Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::_time_estimator:0, line 2676 <- wrt source file 2025-08-14T21:49:27.1126128Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::_time_estimator:0 2025-08-14T21:49:27.1127113Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::batch_isend_irecv:0, line 2723 <- wrt source file 2025-08-14T21:49:27.1128119Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::batch_isend_irecv:0 2025-08-14T21:49:27.1129100Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_reduce:0, line 2860 <- wrt source file 2025-08-14T21:49:27.1130091Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_reduce:0 2025-08-14T21:49:27.1131104Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_gather_object:0, line 3143 <- wrt source file 2025-08-14T21:49:27.1132112Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_gather_object:0 2025-08-14T21:49:27.1133106Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::gather_object:0, line 3247 <- wrt source file 2025-08-14T21:49:27.1134167Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::gather_object:0 2025-08-14T21:49:27.1159782Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::send_object_list:0, line 3372 <- wrt source file 2025-08-14T21:49:27.1161322Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::send_object_list:0 2025-08-14T21:49:27.1162486Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::recv_object_list:0, line 3474 <- wrt source file 2025-08-14T21:49:27.1163492Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::recv_object_list:0 2025-08-14T21:49:27.1164554Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::broadcast_object_list:0, line 3588 <- wrt source file 2025-08-14T21:49:27.1165648Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::broadcast_object_list:0 2025-08-14T21:49:27.1166761Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::scatter_object_list:0, line 3711 <- wrt source file 2025-08-14T21:49:27.1167793Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::scatter_object_list:0 2025-08-14T21:49:27.1168779Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_gather:0, line 3813 <- wrt source file 2025-08-14T21:49:27.1169835Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_gather:0 2025-08-14T21:49:27.1170911Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_gather_into_tensor:0, line 3920 <- wrt source file 2025-08-14T21:49:27.1171967Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_gather_into_tensor:0 2025-08-14T21:49:27.1173011Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_gather_coalesced:0, line 4058 <- wrt source file 2025-08-14T21:49:27.1174041Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_gather_coalesced:0 2025-08-14T21:49:27.1175019Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::gather:0, line 4164 <- wrt source file 2025-08-14T21:49:27.1175956Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::gather:0 2025-08-14T21:49:27.1177411Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::scatter:0, line 4249 <- wrt source file 2025-08-14T21:49:27.1178863Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::scatter:0 2025-08-14T21:49:27.1179955Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::reduce_scatter_tensor:0, line 4387 <- wrt source file 2025-08-14T21:49:27.1181095Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::reduce_scatter_tensor:0 2025-08-14T21:49:27.1182171Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_to_all_single:0, line 4529 <- wrt source file 2025-08-14T21:49:27.1183238Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_to_all_single:0 2025-08-14T21:49:27.1184212Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_to_all:0, line 4663 <- wrt source file 2025-08-14T21:49:27.1185271Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_to_all:0 2025-08-14T21:49:27.1186825Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::monitored_barrier:0, line 4869 <- wrt source file 2025-08-14T21:49:27.1188834Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::monitored_barrier:0 2025-08-14T21:49:27.1190787Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::new_subgroups:0, line 5411 <- wrt source file 2025-08-14T21:49:27.1192462Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::new_subgroups:0 2025-08-14T21:49:27.1193581Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::new_subgroups_by_enumeration:0, line 5505 <- wrt source file 2025-08-14T21:49:27.1194802Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::new_subgroups_by_enumeration:0 2025-08-14T21:49:27.1195921Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\launch.py::__doc__:0, line 84 <- wrt source file 2025-08-14T21:49:27.1196785Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\launch.py::__doc__:0 2025-08-14T21:49:27.1197736Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\run.py::__doc__:0, line 57 <- wrt source file 2025-08-14T21:49:27.1198840Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\run.py::__doc__:0 2025-08-14T21:49:27.1199867Z * 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-14T21:49:27.1200923Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\autograd\__init__.py::context:0 2025-08-14T21:49:27.1201843Z * 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-14T21:49:27.1202769Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\join.py::Join:0 2025-08-14T21:49:27.1203824Z * 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-14T21:49:27.1204994Z * 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-14T21:49:27.1206199Z * 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-14T21:49:27.1207452Z * 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-14T21:49:27.1208619Z * 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-14T21:49:27.1209785Z * 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-14T21:49:27.1210947Z * 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-14T21:49:27.1212528Z * 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-14T21:49:27.1214255Z * 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-14T21:49:27.1216184Z * 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-14T21:49:27.1218292Z * 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-14T21:49:27.1220435Z * 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-14T21:49:27.1222284Z * 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-14T21:49:27.1223517Z * 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-14T21:49:27.1224992Z * 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-14T21:49:27.1226213Z * 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-14T21:49:27.1227810Z * 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-14T21:49:27.1229668Z * 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-14T21:49:27.1231012Z * 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-14T21:49:27.1232315Z * 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-14T21:49:27.1233561Z * 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-14T21:49:27.1234873Z * 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-14T21:49:27.1236238Z * 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-14T21:49:27.1237645Z * 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-14T21:49:27.1238915Z * 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-14T21:49:27.1240125Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\model_averaging\averagers.py::PeriodicModelAverager:0 2025-08-14T21:49:27.1241449Z * 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-14T21:49:27.1242971Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\model_averaging\hierarchical_model_averager.py::HierarchicalModelAverager:0 2025-08-14T21:49:27.1244309Z * 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-14T21:49:27.1245476Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\format_utils.py::BroadcastingTorchSaveReader:0 2025-08-14T21:49:27.1246631Z * 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-14T21:49:27.1247804Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\format_utils.py::DynamicMetaLoadPlanner:0 2025-08-14T21:49:27.1249031Z * 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-14T21:49:27.1250200Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\optimizer.py::load_sharded_optimizer_state_dict:0 2025-08-14T21:49:27.1251346Z * 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-14T21:49:27.1252361Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\state_dict.py::get_state_dict:0 2025-08-14T21:49:27.1253411Z * 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-14T21:49:27.1254705Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\state_dict.py::_patch_model_state_dict:0 2025-08-14T21:49:27.1255814Z * 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-14T21:49:27.1256948Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\state_dict.py::_patch_optimizer_state_dict:0 2025-08-14T21:49:27.1258013Z * 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-14T21:49:27.1259015Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\state_dict_loader.py::load:0 2025-08-14T21:49:27.1260162Z * 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-14T21:49:27.1261162Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\state_dict_saver.py::save:0 2025-08-14T21:49:27.1262191Z * 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-14T21:49:27.1263233Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\state_dict_saver.py::async_save:0 2025-08-14T21:49:27.1264318Z * 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-14T21:49:27.1265498Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\barriers.py::BarrierConfig:0 2025-08-14T21:49:27.1266732Z * 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-14T21:49:27.1268202Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\builder.py::make_sync_checkpointer:0 2025-08-14T21:49:27.1270149Z * 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-14T21:49:27.1272239Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\builder.py::make_async_checkpointer:0 2025-08-14T21:49:27.1274315Z * 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-14T21:49:27.1276195Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\checkpointer.py::SyncCheckpointer:0 2025-08-14T21:49:27.1278292Z * 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-14T21:49:27.1280421Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\checkpointer.py::SyncCheckpointer.save:0 2025-08-14T21:49:27.1282740Z * 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-14T21:49:27.1284535Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\checkpointer.py::AsyncCheckpointer:0 2025-08-14T21:49:27.1286064Z * 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-14T21:49:27.1287445Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\checkpointer.py::AsyncCheckpointer.save:0 2025-08-14T21:49:27.1288705Z * 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-14T21:49:27.1290604Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\staging.py::DefaultStager.close:0 2025-08-14T21:49:27.1291975Z * 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-14T21:49:27.1293489Z * 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-14T21:49:27.1294658Z * 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-14T21:49:27.1305480Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\elastic\rendezvous\api.py::RendezvousHandler.shutdown:0 2025-08-14T21:49:27.1307557Z * 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-14T21:49:27.1309551Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\elastic\utils\distributed.py::get_free_port:0 2025-08-14T21:49:27.1311338Z * 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-14T21:49:27.1313056Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\api.py::MixedPrecision:0 2025-08-14T21:49:27.1314771Z * 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-14T21:49:27.1316451Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\api.py::StateDictType:0 2025-08-14T21:49:27.1318496Z * 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-14T21:49:27.1320706Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\fully_sharded_data_parallel.py::FullyShardedDataParallel:0 2025-08-14T21:49:27.1323067Z * 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-14T21:49:27.1325540Z * 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-14T21:49:27.1328038Z * 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-14T21:49:27.1330468Z * 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-14T21:49:27.1333078Z * 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-14T21:49:27.1335697Z * 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-14T21:49:27.1338416Z * 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-14T21:49:27.1341109Z * 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-14T21:49:27.1343675Z * 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-14T21:49:27.1346265Z * 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-14T21:49:27.1348775Z * 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-14T21:49:27.1351241Z * 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-14T21:49:27.1353851Z * 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-14T21:49:27.1356412Z * 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-14T21:49:27.1358688Z * 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-14T21:49:27.1360649Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\sharded_grad_scaler.py::ShardedGradScaler:0 2025-08-14T21:49:27.1362473Z * 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-14T21:49:27.1364224Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\wrap.py::CustomPolicy:0 2025-08-14T21:49:27.1365934Z * 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-14T21:49:27.1367712Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\nn\functional.py::_all_gather_base:0 2025-08-14T21:49:27.1369614Z * 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-14T21:49:27.1371546Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\nn\api\remote_module.py::_RemoteModule.__init__:0 2025-08-14T21:49:27.1373569Z * 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-14T21:49:27.1375736Z * 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-14T21:49:27.1378437Z * 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-14T21:49:27.1380284Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\nn\api\remote_module.py::RemoteModule:0 2025-08-14T21:49:27.1383031Z * 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-14T21:49:27.1385287Z * 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-14T21:49:27.1387505Z * 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-14T21:49:27.1389693Z * 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-14T21:49:27.1391846Z * 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-14T21:49:27.1393725Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\optim\named_optimizer.py::_NamedOptimizer:0 2025-08-14T21:49:27.1395650Z * 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-14T21:49:27.1397590Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\optim\optimizer.py::DistributedOptimizer:0 2025-08-14T21:49:27.1399592Z * 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-14T21:49:27.1401690Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\optim\post_localSGD_optimizer.py::PostLocalSGDOptimizer:0 2025-08-14T21:49:27.1403745Z * 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-14T21:49:27.1405637Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\optim\utils.py::register_functional_optim:0 2025-08-14T21:49:27.1407666Z * 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-14T21:49:27.1409983Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\optim\zero_redundancy_optimizer.py::ZeroRedundancyOptimizer:0 2025-08-14T21:49:27.1430254Z * 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-14T21:49:27.1432230Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\pipelining\microbatch.py::_CustomReducer:0 2025-08-14T21:49:27.1434219Z * 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-14T21:49:27.1436335Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\pipelining\microbatch.py::TensorChunkSpec.from_tuple:0 2025-08-14T21:49:27.1438426Z * 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-14T21:49:27.1440484Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\pipelining\microbatch.py::TensorChunkSpec.from_dict:0 2025-08-14T21:49:27.1442556Z * 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-14T21:49:27.1444290Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\pipelining\_IR.py::pipe_split:0 2025-08-14T21:49:27.1445933Z * 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-14T21:49:27.1447635Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\api.py::_wait_all:0 2025-08-14T21:49:27.1449224Z * 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-14T21:49:27.1450831Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\api.py::shutdown:0 2025-08-14T21:49:27.1452409Z * 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-14T21:49:27.1453965Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\api.py::remote:0 2025-08-14T21:49:27.1455540Z * 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-14T21:49:27.1457146Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\api.py::rpc_sync:0 2025-08-14T21:49:27.1458777Z * 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-14T21:49:27.1460360Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\api.py::rpc_async:0 2025-08-14T21:49:27.1462020Z * 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-14T21:49:27.1463784Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\functions.py::async_execution:0 2025-08-14T21:49:27.1465813Z * 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-14T21:49:27.1467985Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\options.py::TensorPipeRpcBackendOptions.set_device_map:0 2025-08-14T21:49:27.1470168Z * 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-14T21:49:27.1472537Z * 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-14T21:49:27.1474497Z * 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-14T21:49:27.1476174Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\_api.py::_shard_tensor:0 2025-08-14T21:49:27.1478102Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\_random.py::OffsetBasedRNGTracker._set_pre_op_offset:0, line 280 <- wrt source file 2025-08-14T21:49:27.1480234Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\_random.py::OffsetBasedRNGTracker._set_pre_op_offset:0 2025-08-14T21:49:27.1482238Z * 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-14T21:49:27.1484135Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\experimental\_func_map.py::local_map:0 2025-08-14T21:49:27.1486224Z * 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-14T21:49:27.1488398Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\experimental\_register_sharding.py::register_sharding:0 2025-08-14T21:49:27.1490542Z * 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-14T21:49:27.1492430Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\api.py::parallelize_module:0 2025-08-14T21:49:27.1494322Z * 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-14T21:49:27.1496251Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\ddp.py::_pre_dp_module_transform:0 2025-08-14T21:49:27.1498143Z * 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-14T21:49:27.1499972Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\loss.py::loss_parallel:0 2025-08-14T21:49:27.1501823Z * 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-14T21:49:27.1503700Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\style.py::ColwiseParallel:0 2025-08-14T21:49:27.1505577Z * 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-14T21:49:27.1507456Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\style.py::RowwiseParallel:0 2025-08-14T21:49:27.1509346Z * 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-14T21:49:27.1511230Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\style.py::SequenceParallel:0 2025-08-14T21:49:27.1513196Z * 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-14T21:49:27.1515136Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\style.py::PrepareModuleInput:0 2025-08-14T21:49:27.1517137Z * 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-14T21:49:27.1519103Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\style.py::PrepareModuleOutput:0 2025-08-14T21:49:27.1521100Z * 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-14T21:49:27.1523157Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\style.py::PrepareModuleInputOutput:0 2025-08-14T21:49:27.1525125Z * 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-14T21:49:27.1527013Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\_ops\_common_rules.py::pointwise_rule:0 2025-08-14T21:49:27.1529005Z * 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-14T21:49:27.1531009Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_composable\checkpoint_activation.py::checkpoint:0 2025-08-14T21:49:27.1532871Z * 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-14T21:49:27.1769035Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_composable\contract.py::contract:0 2025-08-14T21:49:27.1770087Z * 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-14T21:49:27.1771565Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_composable\replicate.py::replicate:0 2025-08-14T21:49:27.1772817Z * 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-14T21:49:27.1773900Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_composable\replicate_with_fsdp.py::replicate:0 2025-08-14T21:49:27.1775036Z * 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-14T21:49:27.1776229Z * 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-14T21:49:27.1778031Z * 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-14T21:49:27.1779179Z * 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-14T21:49:27.1780320Z * 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-14T21:49:27.1781454Z * 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-14T21:49:27.1782723Z * 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-14T21:49:27.1784500Z * 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-14T21:49:27.1785758Z * 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-14T21:49:27.1786896Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_shard\sharded_tensor\api.py::ShardedTensor.reshard:0 2025-08-14T21:49:27.1788026Z * 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-14T21:49:27.1789764Z * 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-14T21:49:27.1790876Z * 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-14T21:49:27.1791967Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_shard\sharding_plan\api.py::ShardingPlan:0 2025-08-14T21:49:27.1793098Z * 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-14T21:49:27.1794160Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::put:0 2025-08-14T21:49:27.1795813Z * 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-14T21:49:27.1796967Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::get:0 2025-08-14T21:49:27.1798068Z * 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-14T21:49:27.1799229Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::putmem_signal_block:0 2025-08-14T21:49:27.1800388Z * 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-14T21:49:27.1802087Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::wait_until:0 2025-08-14T21:49:27.1803196Z * 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-14T21:49:27.1804327Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::signal_wait_until:0 2025-08-14T21:49:27.1805425Z * 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-14T21:49:27.1806703Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::signal_op:0 2025-08-14T21:49:27.1808203Z * 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-14T21:49:27.1809243Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::fence:0 2025-08-14T21:49:27.1810289Z * 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-14T21:49:27.1811337Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::quiet:0 2025-08-14T21:49:27.1812649Z * 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-14T21:49:27.1814140Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::my_pe:0 2025-08-14T21:49:27.1815190Z * 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-14T21:49:27.1816241Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::n_pes:0 2025-08-14T21:49:27.1817303Z * 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-14T21:49:27.1818398Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::barrier_all:0 2025-08-14T21:49:27.1820222Z * 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-14T21:49:27.1821312Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::sync_all:0 2025-08-14T21:49:27.1822395Z * 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-14T21:49:27.1823569Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::alltoall:0 2025-08-14T21:49:27.1824700Z * 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-14T21:49:27.1826343Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::broadcast:0 2025-08-14T21:49:27.1827404Z * 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-14T21:49:27.1828469Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::reduce:0 2025-08-14T21:49:27.1829583Z * 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-14T21:49:27.1830972Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::reduce_extern_wrapper:0 2025-08-14T21:49:27.1832520Z * 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-14T21:49:27.1964801Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_tools\memory_tracker.py::MemoryTracker:0 2025-08-14T21:49:27.1966591Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\bernoulli.py::Bernoulli:0, line 30 <- wrt source file 2025-08-14T21:49:27.1968253Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\bernoulli.py::Bernoulli:0 2025-08-14T21:49:27.1969937Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\beta.py::Beta:0, line 21 <- wrt source file 2025-08-14T21:49:27.1971433Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\beta.py::Beta:0 2025-08-14T21:49:27.1973000Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\binomial.py::Binomial:0, line 31 <- wrt source file 2025-08-14T21:49:27.1974774Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\binomial.py::Binomial:0 2025-08-14T21:49:27.1976502Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\categorical.py::Categorical:0, line 42 <- wrt source file 2025-08-14T21:49:27.1978241Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\categorical.py::Categorical:0 2025-08-14T21:49:27.1979854Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\cauchy.py::Cauchy:0, line 23 <- wrt source file 2025-08-14T21:49:27.1981507Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\cauchy.py::Cauchy:0 2025-08-14T21:49:27.1983036Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\chi2.py::Chi2:0, line 18 <- wrt source file 2025-08-14T21:49:27.1984525Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\chi2.py::Chi2:0 2025-08-14T21:49:27.1986224Z * 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-14T21:49:27.1988036Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\constraints.py::is_dependent:0 2025-08-14T21:49:27.1989927Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\constraints.py::_DependentProperty:0, line 187 <- wrt source file 2025-08-14T21:49:27.1992073Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\constraints.py::_DependentProperty:0 2025-08-14T21:49:27.1994115Z * 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-14T21:49:27.1996225Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\continuous_bernoulli.py::ContinuousBernoulli:0 2025-08-14T21:49:27.1998081Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\dirichlet.py::Dirichlet:0, line 42 <- wrt source file 2025-08-14T21:49:27.1999717Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\dirichlet.py::Dirichlet:0 2025-08-14T21:49:27.2001383Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\exponential.py::Exponential:0, line 20 <- wrt source file 2025-08-14T21:49:27.2003174Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\exponential.py::Exponential:0 2025-08-14T21:49:27.2004924Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\fishersnedecor.py::FisherSnedecor:0, line 21 <- wrt source file 2025-08-14T21:49:27.2006747Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\fishersnedecor.py::FisherSnedecor:0 2025-08-14T21:49:27.2008451Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\gamma.py::Gamma:0, line 24 <- wrt source file 2025-08-14T21:49:27.2010005Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\gamma.py::Gamma:0 2025-08-14T21:49:27.2011717Z * 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-14T21:49:27.2013631Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\generalized_pareto.py::GeneralizedPareto:0 2025-08-14T21:49:27.2015475Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\geometric.py::Geometric:0, line 36 <- wrt source file 2025-08-14T21:49:27.2017176Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\geometric.py::Geometric:0 2025-08-14T21:49:27.2018779Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\gumbel.py::Gumbel:0, line 23 <- wrt source file 2025-08-14T21:49:27.2020365Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\gumbel.py::Gumbel:0 2025-08-14T21:49:27.2022032Z * 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-14T21:49:27.2023706Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\half_cauchy.py::HalfCauchy:0 2025-08-14T21:49:27.2025390Z * 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-14T21:49:27.2027048Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\half_normal.py::HalfNormal:0 2025-08-14T21:49:27.2028742Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\independent.py::Independent:0, line 27 <- wrt source file 2025-08-14T21:49:27.2030495Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\independent.py::Independent:0 2025-08-14T21:49:27.2032297Z * 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-14T21:49:27.2034062Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\inverse_gamma.py::InverseGamma:0 2025-08-14T21:49:27.2035870Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\kumaraswamy.py::Kumaraswamy:0, line 30 <- wrt source file 2025-08-14T21:49:27.2037577Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\kumaraswamy.py::Kumaraswamy:0 2025-08-14T21:49:27.2039223Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\laplace.py::Laplace:0, line 20 <- wrt source file 2025-08-14T21:49:27.2040804Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\laplace.py::Laplace:0 2025-08-14T21:49:27.2042443Z * 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-14T21:49:27.2044121Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\lkj_cholesky.py::LKJCholesky:0 2025-08-14T21:49:27.2045874Z * 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-14T21:49:27.2047669Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\logistic_normal.py::LogisticNormal:0 2025-08-14T21:49:27.2049436Z * 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-14T21:49:27.2051076Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\log_normal.py::LogNormal:0 2025-08-14T21:49:27.2052989Z * 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-14T21:49:27.2055120Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\lowrank_multivariate_normal.py::LowRankMultivariateNormal:0 2025-08-14T21:49:27.2057135Z * 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-14T21:49:27.2059064Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\mixture_same_family.py::MixtureSameFamily:0 2025-08-14T21:49:27.2060924Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\multinomial.py::Multinomial:0, line 38 <- wrt source file 2025-08-14T21:49:27.2062623Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\multinomial.py::Multinomial:0 2025-08-14T21:49:27.2064431Z * 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-14T21:49:27.2066358Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\multivariate_normal.py::MultivariateNormal:0 2025-08-14T21:49:27.2196912Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\normal.py::Normal:0, line 22 <- wrt source file 2025-08-14T21:49:27.2198462Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\normal.py::Normal:0 2025-08-14T21:49:27.2200187Z * 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-14T21:49:27.2202193Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\one_hot_categorical.py::OneHotCategorical:0 2025-08-14T21:49:27.2203914Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\pareto.py::Pareto:0, line 20 <- wrt source file 2025-08-14T21:49:27.2216636Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\pareto.py::Pareto:0 2025-08-14T21:49:27.2218588Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\poisson.py::Poisson:0, line 25 <- wrt source file 2025-08-14T21:49:27.2220199Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\poisson.py::Poisson:0 2025-08-14T21:49:27.2221940Z * 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-14T21:49:27.2223878Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\relaxed_bernoulli.py::RelaxedBernoulli:0 2025-08-14T21:49:27.2225839Z * 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-14T21:49:27.2227886Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\relaxed_categorical.py::RelaxedOneHotCategorical:0 2025-08-14T21:49:27.2229777Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\studentT.py::StudentT:0, line 22 <- wrt source file 2025-08-14T21:49:27.2231382Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\studentT.py::StudentT:0 2025-08-14T21:49:27.2233128Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\transforms.py::CatTransform:0, line 1065 <- wrt source file 2025-08-14T21:49:27.2234890Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\transforms.py::CatTransform:0 2025-08-14T21:49:27.2236614Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\transforms.py::StackTransform:0, line 1177 <- wrt source file 2025-08-14T21:49:27.2238367Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\transforms.py::StackTransform:0 2025-08-14T21:49:27.2240287Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\transforms.py::CumulativeDistributionTransform:0, line 1253 <- wrt source file 2025-08-14T21:49:27.2242373Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\transforms.py::CumulativeDistributionTransform:0 2025-08-14T21:49:27.2244848Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\uniform.py::Uniform:0, line 21 <- wrt source file 2025-08-14T21:49:27.2246462Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\uniform.py::Uniform:0 2025-08-14T21:49:27.2248125Z * 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-14T21:49:27.2249745Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\utils.py::clamp_probs:0 2025-08-14T21:49:27.2251355Z * 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-14T21:49:27.2253030Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\von_mises.py::VonMises:0 2025-08-14T21:49:27.2254636Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\weibull.py::Weibull:0, line 22 <- wrt source file 2025-08-14T21:49:27.2256233Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\weibull.py::Weibull:0 2025-08-14T21:49:27.2257909Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\wishart.py::Wishart:0, line 39 <- wrt source file 2025-08-14T21:49:27.2259546Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\wishart.py::Wishart:0 2025-08-14T21:49:27.2261102Z * 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-14T21:49:27.2262735Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\dynamic_shapes.py::Dim:0 2025-08-14T21:49:27.2264365Z * 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-14T21:49:27.2266135Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\dynamic_shapes.py::ShapesCollection:0 2025-08-14T21:49:27.2267836Z * 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-14T21:49:27.2269544Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\dynamic_shapes.py::ShapesCollection:1 2025-08-14T21:49:27.2271299Z * 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-14T21:49:27.2273060Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\dynamic_shapes.py::AdditionalInputs:0 2025-08-14T21:49:27.2274619Z * 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-14T21:49:27.2276052Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\graph.py::_snake_case:0 2025-08-14T21:49:27.2277648Z * 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-14T21:49:27.2279270Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\graph.py::Graph.eliminate_dead_code:0 2025-08-14T21:49:27.2280855Z * 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-14T21:49:27.2282434Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\graph.py::Graph.on_generate_code:0 2025-08-14T21:49:27.2284040Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\interpreter.py::Interpreter:0, line 49 <- wrt source file 2025-08-14T21:49:27.2285571Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\interpreter.py::Interpreter:0 2025-08-14T21:49:27.2287170Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\interpreter.py::Transformer:0, line 480 <- wrt source file 2025-08-14T21:49:27.2288701Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\interpreter.py::Transformer:0 2025-08-14T21:49:27.2290351Z * 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-14T21:49:27.2292013Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\subgraph_rewriter.py::replace_pattern:0 2025-08-14T21:49:27.2293580Z * 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-14T21:49:27.2295140Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\tensor_type.py::TensorType:0 2025-08-14T21:49:27.2296647Z * 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-14T21:49:27.2298244Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\tensor_type.py::is_consistent:0 2025-08-14T21:49:27.2299804Z * 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-14T21:49:27.2301410Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\tensor_type.py::is_more_precise:0 2025-08-14T21:49:27.2303243Z * 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-14T21:49:27.2305115Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\rewriter.py::AST_Rewriter.visit_AnnAssign:0 2025-08-14T21:49:27.2306962Z * 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-14T21:49:27.2308656Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\core.py::reify:0 2025-08-14T21:49:27.4694117Z * 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-14T21:49:27.4696149Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\match.py::VarDispatcher:0 2025-08-14T21:49:27.4697968Z * 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-14T21:49:27.4699724Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\more.py::unifiable:0 2025-08-14T21:49:27.4701612Z * 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-14T21:49:27.4703445Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\more.py::reify_object:0 2025-08-14T21:49:27.4705231Z * 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-14T21:49:27.4707134Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\more.py::unify_object:0 2025-08-14T21:49:27.4708946Z * 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-14T21:49:27.4710790Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::merge:0 2025-08-14T21:49:27.4713085Z * 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-14T21:49:27.4715004Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::merge_with:0 2025-08-14T21:49:27.4717021Z * 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-14T21:49:27.4718987Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::valmap:0 2025-08-14T21:49:27.4720898Z * 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-14T21:49:27.4722674Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::keymap:0 2025-08-14T21:49:27.4724645Z * 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-14T21:49:27.4726712Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::itemmap:0 2025-08-14T21:49:27.4728629Z * 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-14T21:49:27.4730896Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::valfilter:0 2025-08-14T21:49:27.4732957Z * 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-14T21:49:27.4735114Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::keyfilter:0 2025-08-14T21:49:27.4737208Z * 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-14T21:49:27.4739332Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::itemfilter:0 2025-08-14T21:49:27.4741476Z * 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-14T21:49:27.4743505Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::assoc:0 2025-08-14T21:49:27.4745569Z * 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-14T21:49:27.4747683Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::dissoc:0 2025-08-14T21:49:27.4749626Z * 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-14T21:49:27.4751784Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::assoc_in:0 2025-08-14T21:49:27.4753942Z * 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-14T21:49:27.4756042Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::update_in:0 2025-08-14T21:49:27.4758103Z * 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-14T21:49:27.4760310Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::get_in:0 2025-08-14T21:49:27.4762377Z * 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-14T21:49:27.4764472Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::groupby:0 2025-08-14T21:49:27.4766580Z * 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-14T21:49:27.4768641Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::first:0 2025-08-14T21:49:27.4770401Z * 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-14T21:49:27.4772454Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\utils.py::transitive_get:0 2025-08-14T21:49:27.4774439Z * 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-14T21:49:27.4776356Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\utils.py::_toposort:0 2025-08-14T21:49:27.4778540Z * 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-14T21:49:27.4780512Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\utils.py::reverse_dict:0 2025-08-14T21:49:27.4782446Z * 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-14T21:49:27.4784409Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\utils.py::freeze:0 2025-08-14T21:49:27.4786324Z * 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-14T21:49:27.4788293Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\variable.py::variables:0 2025-08-14T21:49:27.4790466Z * 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-14T21:49:27.4792747Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\core.py::dispatch:0 2025-08-14T21:49:27.4795081Z * 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-14T21:49:27.4797470Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\dispatcher.py::Dispatcher:0 2025-08-14T21:49:27.4799885Z * 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-14T21:49:27.4802460Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\dispatcher.py::Dispatcher.register:0 2025-08-14T21:49:27.5142341Z * 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-14T21:49:27.5145070Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\dispatcher.py::Dispatcher.add:0 2025-08-14T21:49:27.5147564Z * 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-14T21:49:27.5150083Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\dispatcher.py::Dispatcher.dispatch:0 2025-08-14T21:49:27.5152718Z * 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-14T21:49:27.5155085Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\dispatcher.py::str_signature:0 2025-08-14T21:49:27.5157367Z * 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-14T21:49:27.5159734Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\utils.py::expand_tuples:0 2025-08-14T21:49:27.5161913Z * 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-14T21:49:27.5163937Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\utils.py::_toposort:0 2025-08-14T21:49:27.5166239Z * 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-14T21:49:27.5168412Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\utils.py::reverse_dict:0 2025-08-14T21:49:27.5170491Z * 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-14T21:49:27.5172595Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\utils.py::groupby:0 2025-08-14T21:49:27.5174700Z * 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-14T21:49:27.5176811Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\utils.py::typename:0 2025-08-14T21:49:27.5178874Z * 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-14T21:49:27.5180909Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\variadic.py::isvariadic:0 2025-08-14T21:49:27.5183080Z * 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-14T21:49:27.5185063Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\variadic.py::Variadic:0 2025-08-14T21:49:27.5187150Z * 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-14T21:49:27.5188955Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\passes\graph_drawer.py::FxGraphDrawer.get_dot_graph:0 2025-08-14T21:49:27.5190759Z * 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-14T21:49:27.5192680Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\passes\shape_prop.py::ShapeProp:0 2025-08-14T21:49:27.5194519Z * 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-14T21:49:27.5196315Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\passes\split_module.py::split_module:0 2025-08-14T21:49:27.5198471Z * 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-14T21:49:27.5201004Z * 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-14T21:49:27.5203249Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\jit\_check.py::AttributeTypeIsSupportedChecker:0, line 36 <- wrt source file 2025-08-14T21:49:27.5205332Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\jit\_check.py::AttributeTypeIsSupportedChecker:0 2025-08-14T21:49:27.5207289Z * 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-14T21:49:27.5209209Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\jit\mobile\__init__.py::_load_for_lite_interpreter:0 2025-08-14T21:49:27.5211334Z * 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-14T21:49:27.5213392Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\jit\mobile\__init__.py::_get_mobile_model_contained_types:0 2025-08-14T21:49:27.5215321Z * 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-14T21:49:27.5217212Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\jit\mobile\__init__.py::_get_model_ops_and_info:0 2025-08-14T21:49:27.5218982Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\masked\_ops.py::logaddexp:0, line 1530 <- wrt source file 2025-08-14T21:49:27.5220594Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\masked\_ops.py::logaddexp:0 2025-08-14T21:49:27.5222359Z * 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-14T21:49:27.5224346Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\masked\maskedtensor\core.py::is_masked_tensor:0 2025-08-14T21:49:27.5226303Z * 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-14T21:49:27.5228301Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::fractional_max_pool2d_with_indices:0 2025-08-14T21:49:27.5230359Z * 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-14T21:49:27.5232390Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::fractional_max_pool3d_with_indices:0 2025-08-14T21:49:27.5234260Z * 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-14T21:49:27.5236036Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::gumbel_softmax:0 2025-08-14T21:49:27.5237816Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::embedding:0, line 2478 <- wrt source file 2025-08-14T21:49:27.5239456Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::embedding:0 2025-08-14T21:49:27.5241212Z * 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-14T21:49:27.5242937Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::embedding_bag:0 2025-08-14T21:49:27.5244607Z * 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-14T21:49:27.5246275Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::ctc_loss:0 2025-08-14T21:49:27.5247831Z * 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-14T21:49:27.5249443Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::nll_loss:0 2025-08-14T21:49:27.5251094Z * 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-14T21:49:27.9411672Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::cross_entropy:0 2025-08-14T21:49:27.9413179Z * 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-14T21:49:27.9414948Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::binary_cross_entropy:0 2025-08-14T21:49:27.9416425Z * 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-14T21:49:27.9417913Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::binary_cross_entropy_with_logits:0 2025-08-14T21:49:27.9419303Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::pad:0, line 5263 <- wrt source file 2025-08-14T21:49:27.9420512Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::pad:0 2025-08-14T21:49:27.9421702Z * 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-14T21:49:27.9422887Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\grad.py::conv1d_input:0 2025-08-14T21:49:27.9424085Z * 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-14T21:49:27.9425323Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\grad.py::conv1d_weight:0 2025-08-14T21:49:27.9426556Z * 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-14T21:49:27.9427779Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\grad.py::conv2d_input:0 2025-08-14T21:49:27.9428961Z * 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-14T21:49:27.9430181Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\grad.py::conv2d_weight:0 2025-08-14T21:49:27.9431427Z * 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-14T21:49:27.9432719Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\grad.py::conv3d_input:0 2025-08-14T21:49:27.9433912Z * 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-14T21:49:27.9435255Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\grad.py::conv3d_weight:0 2025-08-14T21:49:27.9436487Z * 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-14T21:49:27.9437814Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::calculate_gain:0 2025-08-14T21:49:27.9439141Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::uniform_:0, line 230 <- wrt source file 2025-08-14T21:49:27.9440430Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::uniform_:0 2025-08-14T21:49:27.9441719Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::normal_:0, line 257 <- wrt source file 2025-08-14T21:49:27.9442992Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::normal_:0 2025-08-14T21:49:27.9444335Z * 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-14T21:49:27.9446610Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::trunc_normal_:0 2025-08-14T21:49:27.9447929Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::constant_:0, line 306 <- wrt source file 2025-08-14T21:49:27.9449240Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::constant_:0 2025-08-14T21:49:27.9450534Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::ones_:0, line 323 <- wrt source file 2025-08-14T21:49:27.9452891Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::ones_:0 2025-08-14T21:49:27.9454063Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::zeros_:0, line 336 <- wrt source file 2025-08-14T21:49:27.9455241Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::zeros_:0 2025-08-14T21:49:27.9456377Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::eye_:0, line 352 <- wrt source file 2025-08-14T21:49:27.9457510Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::eye_:0 2025-08-14T21:49:27.9458736Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::dirac_:0, line 374 <- wrt source file 2025-08-14T21:49:27.9459981Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::dirac_:0 2025-08-14T21:49:27.9461314Z * 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-14T21:49:27.9462652Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::xavier_uniform_:0 2025-08-14T21:49:27.9463927Z * 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-14T21:49:27.9465169Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::xavier_normal_:0 2025-08-14T21:49:27.9466365Z * 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-14T21:49:27.9467609Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::kaiming_uniform_:0 2025-08-14T21:49:27.9468923Z * 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-14T21:49:27.9470217Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::kaiming_normal_:0 2025-08-14T21:49:27.9471546Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::orthogonal_:0, line 647 <- wrt source file 2025-08-14T21:49:27.9473105Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::orthogonal_:0 2025-08-14T21:49:27.9474395Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::sparse_:0, line 700 <- wrt source file 2025-08-14T21:49:27.9475587Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::sparse_:0 2025-08-14T21:49:27.9476814Z * 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-14T21:49:27.9478154Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\attention\__init__.py::sdpa_kernel:0 2025-08-14T21:49:27.9479535Z * 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-14T21:49:27.9480954Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\attention\bias.py::CausalBias:0 2025-08-14T21:49:27.9482424Z * 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-14T21:49:27.9483972Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Threshold:0 2025-08-14T21:49:27.9485280Z * 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-14T21:49:27.9486568Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::ReLU:0 2025-08-14T21:49:27.9488016Z * 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-14T21:49:27.9489411Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::RReLU:0 2025-08-14T21:49:27.9490783Z * 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-14T21:49:27.9492117Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Hardtanh:0 2025-08-14T21:49:27.9493390Z * 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-14T21:49:27.9494677Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::ReLU6:0 2025-08-14T21:49:27.9496049Z * 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-14T21:49:27.9497370Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Sigmoid:0 2025-08-14T21:49:27.9498697Z * 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-14T21:49:28.3454976Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Hardsigmoid:0 2025-08-14T21:49:28.3457134Z * 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-14T21:49:28.3459123Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Tanh:0 2025-08-14T21:49:28.3460885Z * 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-14T21:49:28.3462763Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::SiLU:0 2025-08-14T21:49:28.3464529Z * 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-14T21:49:28.3466595Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Mish:0 2025-08-14T21:49:28.3468247Z * 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-14T21:49:28.3470038Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Hardswish:0 2025-08-14T21:49:28.3471873Z * 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-14T21:49:28.3473630Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::ELU:0 2025-08-14T21:49:28.3475339Z * 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-14T21:49:28.3477145Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::CELU:0 2025-08-14T21:49:28.3478936Z * 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-14T21:49:28.3480682Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::SELU:0 2025-08-14T21:49:28.3482306Z * 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-14T21:49:28.3484085Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::GLU:0 2025-08-14T21:49:28.3486102Z * 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-14T21:49:28.3487652Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::GELU:0 2025-08-14T21:49:28.3489284Z * 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-14T21:49:28.3491082Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Hardshrink:0 2025-08-14T21:49:28.3492773Z * 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-14T21:49:28.3494435Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::LeakyReLU:0 2025-08-14T21:49:28.3495945Z * 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-14T21:49:28.3497838Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::LogSigmoid:0 2025-08-14T21:49:28.3499696Z * 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-14T21:49:28.3501709Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Softplus:0 2025-08-14T21:49:28.3503862Z * 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-14T21:49:28.3505472Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Softshrink:0 2025-08-14T21:49:28.3507212Z * 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-14T21:49:28.3509066Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::MultiheadAttention:0 2025-08-14T21:49:28.3510749Z * 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-14T21:49:28.3512617Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::PReLU:0 2025-08-14T21:49:28.3514228Z * 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-14T21:49:28.3515767Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Softsign:0 2025-08-14T21:49:28.3517192Z * 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-14T21:49:28.3518674Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Tanhshrink:0 2025-08-14T21:49:28.3520152Z * 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-14T21:49:28.3521739Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Softmin:0 2025-08-14T21:49:28.3523403Z * 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-14T21:49:28.3525354Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Softmax:0 2025-08-14T21:49:28.3527135Z * 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-14T21:49:28.3528916Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Softmax2d:0 2025-08-14T21:49:28.3530814Z * 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-14T21:49:28.3532556Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::LogSoftmax:0 2025-08-14T21:49:28.3534232Z * 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-14T21:49:28.3535904Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\batchnorm.py::BatchNorm1d:0 2025-08-14T21:49:28.3537566Z * 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-14T21:49:28.3539224Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\batchnorm.py::BatchNorm2d:0 2025-08-14T21:49:28.3540791Z * 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-14T21:49:28.3542524Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\batchnorm.py::BatchNorm3d:0 2025-08-14T21:49:28.3544323Z * 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-14T21:49:28.3546226Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\batchnorm.py::SyncBatchNorm:0 2025-08-14T21:49:28.3548486Z * 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-14T21:49:28.3551043Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\batchnorm.py::SyncBatchNorm.convert_sync_batchnorm:0 2025-08-14T21:49:28.3553429Z * 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-14T21:49:28.3555339Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\channelshuffle.py::ChannelShuffle:0 2025-08-14T21:49:28.3557352Z * 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-14T21:49:28.3558988Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::Sequential:0 2025-08-14T21:49:28.3560723Z * 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-14T21:49:28.3562570Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::Sequential.append:0 2025-08-14T21:49:28.3564352Z * 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-14T21:49:29.0448617Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::Sequential.insert:0 2025-08-14T21:49:29.0450412Z * 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-14T21:49:29.0452388Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::Sequential.extend:0 2025-08-14T21:49:29.0454052Z * 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-14T21:49:29.0455659Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::ModuleList:0 2025-08-14T21:49:29.0457516Z * 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-14T21:49:29.0459129Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::ModuleDict:0 2025-08-14T21:49:29.0460760Z * 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-14T21:49:29.0462415Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::ParameterList:0 2025-08-14T21:49:29.0464126Z * 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-14T21:49:29.0465779Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::ParameterDict:0 2025-08-14T21:49:29.0467437Z * 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-14T21:49:29.0469179Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\distance.py::PairwiseDistance:0 2025-08-14T21:49:29.0470860Z * 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-14T21:49:29.0472592Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\distance.py::CosineSimilarity:0 2025-08-14T21:49:29.0474237Z * 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-14T21:49:29.0475806Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\dropout.py::Dropout:0 2025-08-14T21:49:29.0477368Z * 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-14T21:49:29.0478937Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\dropout.py::Dropout1d:0 2025-08-14T21:49:29.0480563Z * 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-14T21:49:29.0482232Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\dropout.py::Dropout2d:0 2025-08-14T21:49:29.0483789Z * 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-14T21:49:29.0485356Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\dropout.py::Dropout3d:0 2025-08-14T21:49:29.0486982Z * 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-14T21:49:29.0488588Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\dropout.py::AlphaDropout:0 2025-08-14T21:49:29.0490260Z * 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-14T21:49:29.0492054Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\dropout.py::FeatureAlphaDropout:0 2025-08-14T21:49:29.0493683Z * 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-14T21:49:29.0495281Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\flatten.py::Flatten:0 2025-08-14T21:49:29.0496816Z * 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-14T21:49:29.0498494Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\flatten.py::Unflatten:0 2025-08-14T21:49:29.0500251Z * 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-14T21:49:29.0501819Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\fold.py::Fold:0 2025-08-14T21:49:29.0503399Z * 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-14T21:49:29.0504990Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\fold.py::Unfold:0 2025-08-14T21:49:29.0506707Z * 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-14T21:49:29.0508535Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\instancenorm.py::InstanceNorm1d:0 2025-08-14T21:49:29.0510246Z * 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-14T21:49:29.0511992Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\instancenorm.py::InstanceNorm2d:0 2025-08-14T21:49:29.0513710Z * 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-14T21:49:29.0515526Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\instancenorm.py::InstanceNorm3d:0 2025-08-14T21:49:29.0517311Z * 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-14T21:49:29.0519003Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\lazy.py::LazyModuleMixin:0 2025-08-14T21:49:29.0520676Z * 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-14T21:49:29.0522380Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\linear.py::Identity:0 2025-08-14T21:49:29.0523996Z * 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-14T21:49:29.0525720Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\linear.py::Linear:0 2025-08-14T21:49:29.0527360Z * 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-14T21:49:29.0528981Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\linear.py::Bilinear:0 2025-08-14T21:49:29.0530623Z * 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-14T21:49:29.0532203Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::L1Loss:0 2025-08-14T21:49:29.0533799Z * 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-14T21:49:29.0535411Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::NLLLoss:0 2025-08-14T21:49:29.0537060Z * 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-14T21:49:29.0538851Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::PoissonNLLLoss:0 2025-08-14T21:49:29.0540577Z * 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-14T21:49:29.0542282Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::GaussianNLLLoss:0 2025-08-14T21:49:29.0544112Z * 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-14T21:49:29.0545737Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::KLDivLoss:0 2025-08-14T21:49:29.0547365Z * 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-14T21:49:29.0548968Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::MSELoss:0 2025-08-14T21:49:29.0550561Z * 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-14T21:49:29.0552216Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::BCELoss:0 2025-08-14T21:49:30.9634323Z * 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-14T21:49:30.9636149Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::BCEWithLogitsLoss:0 2025-08-14T21:49:30.9637857Z * 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-14T21:49:30.9639595Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::BCEWithLogitsLoss:1 2025-08-14T21:49:30.9641346Z * 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-14T21:49:30.9643096Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::MultiLabelMarginLoss:0 2025-08-14T21:49:30.9644863Z * 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-14T21:49:30.9646574Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::CrossEntropyLoss:0 2025-08-14T21:49:30.9648271Z * 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-14T21:49:30.9650171Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::CrossEntropyLoss:1 2025-08-14T21:49:30.9651864Z * 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-14T21:49:30.9653571Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::CosineEmbeddingLoss:0 2025-08-14T21:49:30.9655229Z * 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-14T21:49:30.9656935Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::MarginRankingLoss:0 2025-08-14T21:49:30.9658583Z * 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-14T21:49:30.9660175Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::MultiMarginLoss:0 2025-08-14T21:49:30.9661778Z * 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-14T21:49:30.9663558Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::TripletMarginLoss:0 2025-08-14T21:49:30.9665328Z * 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-14T21:49:30.9667166Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::TripletMarginWithDistanceLoss:0 2025-08-14T21:49:30.9668959Z * 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-14T21:49:30.9670537Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::CTCLoss:0 2025-08-14T21:49:30.9672205Z * 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-14T21:49:30.9673920Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.register_buffer:0 2025-08-14T21:49:30.9675606Z * 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-14T21:49:30.9677229Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.apply:0 2025-08-14T21:49:30.9678804Z * 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-14T21:49:30.9680305Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.to:0 2025-08-14T21:49:30.9681244Z * 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-14T21:49:30.9682163Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.state_dict:0 2025-08-14T21:49:30.9683078Z * 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-14T21:49:30.9683994Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.parameters:0 2025-08-14T21:49:30.9685133Z * 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-14T21:49:30.9686111Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.named_parameters:0 2025-08-14T21:49:30.9687293Z * 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-14T21:49:30.9688829Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.buffers:0 2025-08-14T21:49:30.9690453Z * 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-14T21:49:30.9692196Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.named_buffers:0 2025-08-14T21:49:30.9693971Z * 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-14T21:49:30.9695730Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.named_children:0 2025-08-14T21:49:30.9697464Z * 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-14T21:49:30.9699135Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.modules:0 2025-08-14T21:49:30.9700980Z * 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-14T21:49:30.9702737Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.named_modules:0 2025-08-14T21:49:30.9704801Z * 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-14T21:49:30.9706624Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\normalization.py::LocalResponseNorm:0 2025-08-14T21:49:30.9708329Z * 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-14T21:49:30.9710040Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\normalization.py::LayerNorm:0 2025-08-14T21:49:30.9711865Z * 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-14T21:49:30.9713576Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\normalization.py::GroupNorm:0 2025-08-14T21:49:30.9715312Z * 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-14T21:49:30.9717002Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\normalization.py::RMSNorm:0 2025-08-14T21:49:30.9718665Z * 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-14T21:49:30.9720339Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::CircularPad1d:0 2025-08-14T21:49:30.9721998Z * 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-14T21:49:30.9723622Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::CircularPad2d:0 2025-08-14T21:49:30.9725263Z * 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-14T21:49:30.9726863Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::CircularPad3d:0 2025-08-14T21:49:30.9728501Z * 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-14T21:49:30.9730971Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ConstantPad1d:0 2025-08-14T21:49:33.0230161Z * 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-14T21:49:33.0231885Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ConstantPad2d:0 2025-08-14T21:49:33.0233577Z * 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-14T21:49:33.0235237Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ConstantPad3d:0 2025-08-14T21:49:33.0236873Z * 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-14T21:49:33.0238536Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ReflectionPad1d:0 2025-08-14T21:49:33.0240227Z * 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-14T21:49:33.0242068Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ReflectionPad2d:0 2025-08-14T21:49:33.0243706Z * 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-14T21:49:33.0245412Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ReflectionPad3d:0 2025-08-14T21:49:33.0247222Z * 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-14T21:49:33.0248884Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ReplicationPad1d:0 2025-08-14T21:49:33.0250562Z * 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-14T21:49:33.0252271Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ReplicationPad2d:0 2025-08-14T21:49:33.0253937Z * 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-14T21:49:33.0255595Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ReplicationPad3d:0 2025-08-14T21:49:33.0257240Z * 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-14T21:49:33.0258838Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ZeroPad1d:0 2025-08-14T21:49:33.0260407Z * 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-14T21:49:33.0261976Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ZeroPad2d:0 2025-08-14T21:49:33.0263595Z * 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-14T21:49:33.0265150Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ZeroPad3d:0 2025-08-14T21:49:33.0266775Z * 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-14T21:49:33.0268472Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pixelshuffle.py::PixelShuffle:0 2025-08-14T21:49:33.0270247Z * 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-14T21:49:33.0272186Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pixelshuffle.py::PixelUnshuffle:0 2025-08-14T21:49:33.0273896Z * 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-14T21:49:33.0275554Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::MaxPool1d:0 2025-08-14T21:49:33.0277128Z * 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-14T21:49:33.0278681Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::MaxPool2d:0 2025-08-14T21:49:33.0280265Z * 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-14T21:49:33.0281909Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::MaxPool3d:0 2025-08-14T21:49:33.0283539Z * 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-14T21:49:33.0285143Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::MaxUnpool1d:0 2025-08-14T21:49:33.0286717Z * 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-14T21:49:33.0288501Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::MaxUnpool2d:0 2025-08-14T21:49:33.0290088Z * 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-14T21:49:33.0291674Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::MaxUnpool3d:0 2025-08-14T21:49:33.0293270Z * 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-14T21:49:33.0294912Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AvgPool1d:0 2025-08-14T21:49:33.0296462Z * 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-14T21:49:33.0298016Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AvgPool2d:0 2025-08-14T21:49:33.0299560Z * 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-14T21:49:33.0301122Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AvgPool3d:0 2025-08-14T21:49:33.0302774Z * 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-14T21:49:33.0304478Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::FractionalMaxPool2d:0 2025-08-14T21:49:33.0306249Z * 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-14T21:49:33.0308003Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::FractionalMaxPool3d:0 2025-08-14T21:49:33.0309631Z * 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-14T21:49:33.0311246Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::LPPool1d:0 2025-08-14T21:49:33.0312864Z * 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-14T21:49:33.0314434Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::LPPool2d:0 2025-08-14T21:49:33.0315986Z * 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-14T21:49:33.0317529Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::LPPool3d:0 2025-08-14T21:49:33.0319163Z * 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-14T21:49:33.0320831Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AdaptiveMaxPool1d:0 2025-08-14T21:49:33.0322575Z * 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-14T21:49:33.0324287Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AdaptiveMaxPool2d:0 2025-08-14T21:49:33.0326027Z * 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-14T21:49:33.0327710Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AdaptiveMaxPool3d:0 2025-08-14T21:49:33.0329399Z * 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-14T21:49:33.0331178Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AdaptiveAvgPool1d:0 2025-08-14T21:49:33.0671599Z * 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-14T21:49:33.0673300Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AdaptiveAvgPool2d:0 2025-08-14T21:49:33.0674957Z * 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-14T21:49:33.0676737Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AdaptiveAvgPool3d:0 2025-08-14T21:49:33.0678085Z * 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-14T21:49:33.0679509Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\rnn.py::RNN:0 2025-08-14T21:49:33.0680948Z * 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-14T21:49:33.0682405Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\rnn.py::LSTM:0 2025-08-14T21:49:33.0683752Z * 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-14T21:49:33.0685120Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\rnn.py::GRU:0 2025-08-14T21:49:33.0686571Z * 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-14T21:49:33.0687975Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\rnn.py::RNNCell:0 2025-08-14T21:49:33.0689377Z * 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-14T21:49:33.0690872Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\rnn.py::LSTMCell:0 2025-08-14T21:49:33.0692553Z * 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-14T21:49:33.0694006Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\rnn.py::GRUCell:0 2025-08-14T21:49:33.0695413Z * 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-14T21:49:33.0697002Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\sparse.py::Embedding:0 2025-08-14T21:49:33.0698714Z * 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-14T21:49:33.0700513Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\sparse.py::Embedding.from_pretrained:0 2025-08-14T21:49:33.0702118Z * 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-14T21:49:33.0703662Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\sparse.py::EmbeddingBag:0 2025-08-14T21:49:33.0705517Z * 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-14T21:49:33.0707267Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\sparse.py::EmbeddingBag.from_pretrained:0 2025-08-14T21:49:33.0708927Z * 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-14T21:49:33.0710809Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\transformer.py::Transformer:0 2025-08-14T21:49:33.0712514Z * 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-14T21:49:33.0714193Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\transformer.py::Transformer.forward:0 2025-08-14T21:49:33.0715739Z * 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-14T21:49:33.0716848Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\transformer.py::TransformerEncoder:0 2025-08-14T21:49:33.0717852Z * 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-14T21:49:33.0719133Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\transformer.py::TransformerDecoder:0 2025-08-14T21:49:33.0720175Z * 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-14T21:49:33.0721207Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\transformer.py::TransformerEncoderLayer:0 2025-08-14T21:49:33.0722232Z * 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-14T21:49:33.0723342Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\transformer.py::TransformerDecoderLayer:0 2025-08-14T21:49:33.0724295Z * 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-14T21:49:33.0725204Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\upsampling.py::Upsample:0 2025-08-14T21:49:33.0726138Z * 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-14T21:49:33.0727249Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\upsampling.py::UpsamplingNearest2d:0 2025-08-14T21:49:33.0729349Z * 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-14T21:49:33.0731130Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\upsampling.py::UpsamplingBilinear2d:0 2025-08-14T21:49:33.0732852Z * 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-14T21:49:33.0734839Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\data_parallel.py::DataParallel:0 2025-08-14T21:49:33.0736904Z * 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-14T21:49:33.0738961Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\distributed.py::DistributedDataParallel:0 2025-08-14T21:49:33.0741143Z * 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-14T21:49:33.0743178Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\distributed.py::DistributedDataParallel.no_sync:0 2025-08-14T21:49:33.0745386Z * 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-14T21:49:33.0747562Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\distributed.py::DistributedDataParallel.join:0 2025-08-14T21:49:33.0749875Z * 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-14T21:49:33.0752043Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\distributed.py::DistributedDataParallel.register_comm_hook:0 2025-08-14T21:49:33.0754220Z * 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-14T21:49:33.0756432Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\distributed.py::DistributedDataParallel.register_comm_hook:1 2025-08-14T21:49:33.0758752Z * 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-14T21:49:33.0760974Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\distributed.py::DistributedDataParallel._register_builtin_comm_hook:0 2025-08-14T21:49:33.0763253Z * 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-14T21:49:33.0765500Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\distributed.py::DistributedDataParallel._register_fused_optim:0 2025-08-14T21:49:33.0815262Z * 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-14T21:49:33.0816908Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\init.py::skip_init:0 2025-08-14T21:49:33.0818755Z * 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-14T21:49:33.0820970Z * 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-14T21:49:33.0822932Z * 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-14T21:49:33.0824852Z * 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-14T21:49:33.0826713Z * 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-14T21:49:33.0828475Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\parametrizations.py::orthogonal:0 2025-08-14T21:49:33.0830186Z * 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-14T21:49:33.0831961Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\parametrizations.py::weight_norm:0 2025-08-14T21:49:33.0833853Z * 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-14T21:49:33.0835581Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\parametrizations.py::spectral_norm:0 2025-08-14T21:49:33.0837184Z * 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-14T21:49:33.0838859Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::identity:0 2025-08-14T21:49:33.0840486Z * 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-14T21:49:33.0842122Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::random_unstructured:0 2025-08-14T21:49:33.0843714Z * 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-14T21:49:33.0845325Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::l1_unstructured:0 2025-08-14T21:49:33.0846982Z * 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-14T21:49:33.0848585Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::random_structured:0 2025-08-14T21:49:33.0850176Z * 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-14T21:49:33.0851725Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::ln_structured:0 2025-08-14T21:49:33.0853324Z * 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-14T21:49:33.0854975Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::global_unstructured:0 2025-08-14T21:49:33.0856605Z * 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-14T21:49:33.0858244Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::custom_from_mask:0 2025-08-14T21:49:33.0859782Z * 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-14T21:49:33.0861245Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::remove:0 2025-08-14T21:49:33.0862788Z * 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-14T21:49:33.0864303Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::is_pruned:0 2025-08-14T21:49:33.0865855Z * 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-14T21:49:33.0867451Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\rnn.py::pad_packed_sequence:0 2025-08-14T21:49:33.0869000Z * 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-14T21:49:33.0870503Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\rnn.py::pad_sequence:0 2025-08-14T21:49:33.0872063Z * 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-14T21:49:33.0873696Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\rnn.py::unpad_sequence:0 2025-08-14T21:49:33.0875298Z * 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-14T21:49:33.0876814Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\rnn.py::pack_sequence:0 2025-08-14T21:49:33.0878355Z * 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-14T21:49:33.0880008Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\rnn.py::unpack_sequence:0 2025-08-14T21:49:33.0881628Z * 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-14T21:49:33.0883302Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\spectral_norm.py::spectral_norm:0 2025-08-14T21:49:33.0884992Z * 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-14T21:49:33.0886753Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\spectral_norm.py::remove_spectral_norm:0 2025-08-14T21:49:33.0888461Z * 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-14T21:49:33.0890107Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\stateless.py::functional_call:0 2025-08-14T21:49:33.0891749Z * 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-14T21:49:33.0893342Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\weight_norm.py::weight_norm:0 2025-08-14T21:49:33.0895003Z * 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-14T21:49:33.0896703Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\weight_norm.py::remove_weight_norm:0 2025-08-14T21:49:33.0898438Z * 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-14T21:49:33.0900249Z * 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-14T21:49:33.0902077Z * 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-14T21:49:33.0903847Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\_expanded_weights\conv_utils.py::unfold3d:0 2025-08-14T21:49:33.0905993Z * 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-14T21:49:33.0908251Z * 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-14T21:49:33.0913330Z * 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-14T21:49:33.0914879Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::LambdaLR:0 2025-08-14T21:49:33.0916454Z * 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-14T21:49:33.0918021Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::MultiplicativeLR:0 2025-08-14T21:49:33.0996588Z * 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-14T21:49:33.0998365Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::StepLR:0 2025-08-14T21:49:33.1000112Z * 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-14T21:49:33.1001932Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::MultiStepLR:0 2025-08-14T21:49:33.1004664Z * 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-14T21:49:33.1006399Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::ConstantLR:0 2025-08-14T21:49:33.1007970Z * 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-14T21:49:33.1009530Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::LinearLR:0 2025-08-14T21:49:33.1011163Z * 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-14T21:49:33.1012707Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::ExponentialLR:0 2025-08-14T21:49:33.1014422Z * 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-14T21:49:33.1016057Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::SequentialLR:0 2025-08-14T21:49:33.1017535Z * 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-14T21:49:33.1018881Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::PolynomialLR:0 2025-08-14T21:49:33.1020373Z * 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-14T21:49:33.1021999Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::CosineAnnealingLR:0 2025-08-14T21:49:33.1023771Z * 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-14T21:49:33.1025642Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::ChainedScheduler:0 2025-08-14T21:49:33.1027393Z * 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-14T21:49:33.1029159Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::CyclicLR:0 2025-08-14T21:49:33.1030941Z * 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-14T21:49:33.1032949Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::CosineAnnealingWarmRestarts:0 2025-08-14T21:49:33.1034913Z * 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-14T21:49:33.1036877Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::CosineAnnealingWarmRestarts.step:0 2025-08-14T21:49:33.1038939Z * 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-14T21:49:33.1041216Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::CosineAnnealingWarmRestarts.step:1 2025-08-14T21:49:33.1043088Z * 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-14T21:49:33.1044550Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::OneCycleLR:0 2025-08-14T21:49:33.1046482Z * 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-14T21:49:33.1048286Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\optimizer.py::Optimizer.load_state_dict:0 2025-08-14T21:49:33.1049991Z * 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-14T21:49:33.1051644Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\swa_utils.py::AveragedModel:0 2025-08-14T21:49:33.1053248Z * 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-14T21:49:33.1054957Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\swa_utils.py::AveragedModel:1 2025-08-14T21:49:33.1056655Z * 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-14T21:49:33.1058301Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\swa_utils.py::update_bn:0 2025-08-14T21:49:33.1059941Z * 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-14T21:49:33.1061581Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\swa_utils.py::SWALR:0 2025-08-14T21:49:33.1063167Z * 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-14T21:49:33.1064835Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\package\glob_group.py::GlobGroup:0 2025-08-14T21:49:33.1066690Z * 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-14T21:49:33.1068795Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\profiler\profiler.py::_KinetoProfile.toggle_collection_dynamic:0 2025-08-14T21:49:33.1070623Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\profiler\profiler.py::profile:0, line 617 <- wrt source file 2025-08-14T21:49:33.1072429Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\profiler\profiler.py::profile:0 2025-08-14T21:49:33.1074289Z * 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-14T21:49:33.1076225Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\sparse\semi_structured.py::to_sparse_semi_structured:0 2025-08-14T21:49:33.1078158Z * 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-14T21:49:33.1079871Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_comparison.py::assert_close:0 2025-08-14T21:49:33.1081466Z * 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-14T21:49:33.1083319Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_creation.py::make_tensor:0 2025-08-14T21:49:33.1085182Z * 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-14T21:49:33.1087271Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\common_utils.py::parametrize:0 2025-08-14T21:49:33.1089248Z * 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-14T21:49:33.1091394Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\common_utils.py::reparametrize:0 2025-08-14T21:49:33.1093364Z * 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-14T21:49:33.1095314Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\common_utils.py::decorateIf:0 2025-08-14T21:49:33.1097381Z * 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-14T21:49:33.1099566Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\common_utils.py::random_symmetric_psd_matrix:0 2025-08-14T21:49:33.1101619Z * 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-14T21:49:33.1103742Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\common_utils.py::random_hermitian_psd_matrix:0 2025-08-14T21:49:33.1245877Z * 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-14T21:49:33.1248083Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\common_utils.py::random_hermitian_pd_matrix:0 2025-08-14T21:49:33.1250238Z * 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-14T21:49:33.1252185Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\logging_utils.py::logs_to_string:0 2025-08-14T21:49:33.1254235Z * 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-14T21:49:33.1256323Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\logging_utils.py::multiple_logs_to_string:0 2025-08-14T21:49:33.1258564Z * 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-14T21:49:33.1261225Z * 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-14T21:49:33.1263607Z * 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-14T21:49:33.1265916Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\optests\autograd_registration.py::autograd_registration_check:0 2025-08-14T21:49:33.1267970Z * 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-14T21:49:33.1269903Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\backend_registration.py::rename_privateuse1_backend:0 2025-08-14T21:49:33.1272120Z * 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-14T21:49:33.1274307Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\backend_registration.py::generate_methods_for_privateuse1_backend:0 2025-08-14T21:49:33.1276149Z * 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-14T21:49:33.1278219Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\backend_registration.py::_get_custom_mod_func:0 2025-08-14T21:49:33.1280109Z * 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-14T21:49:33.1282016Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\checkpoint.py::checkpoint_sequential:0 2025-08-14T21:49:33.1283964Z * 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-14T21:49:33.1285909Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\checkpoint.py::set_checkpoint_early_stop:0 2025-08-14T21:49:33.1288028Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\checkpoint.py::SelectiveCheckpointContext:0, line 1226 <- wrt source file 2025-08-14T21:49:33.1290090Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\checkpoint.py::SelectiveCheckpointContext:0 2025-08-14T21:49:33.1291983Z * 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-14T21:49:33.1293984Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\checkpoint.py::create_selective_checkpoint_contexts:0 2025-08-14T21:49:33.1295799Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::CppExtension:0, line 1175 <- wrt source file 2025-08-14T21:49:33.1297528Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::CppExtension:0 2025-08-14T21:49:33.1299060Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::CUDAExtension:0, line 1247 <- wrt source file 2025-08-14T21:49:33.1300706Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::CUDAExtension:0 2025-08-14T21:49:33.1302378Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::CUDAExtension:1, line 1325 <- wrt source file 2025-08-14T21:49:33.1304158Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::CUDAExtension:1 2025-08-14T21:49:33.1306143Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::SyclExtension:0, line 1436 <- wrt source file 2025-08-14T21:49:33.1307959Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::SyclExtension:0 2025-08-14T21:49:33.1309701Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::load:0, line 1672 <- wrt source file 2025-08-14T21:49:33.1311499Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::load:0 2025-08-14T21:49:33.1313240Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::load_inline:0, line 1965 <- wrt source file 2025-08-14T21:49:33.1315036Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::load_inline:0 2025-08-14T21:49:33.1316758Z * 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-14T21:49:33.1318452Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\dlpack.py::from_dlpack:0 2025-08-14T21:49:33.1320184Z * 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-14T21:49:33.1322103Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\throughput_benchmark.py::ThroughputBenchmark:0 2025-08-14T21:49:33.1324103Z * 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-14T21:49:33.1325794Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::register_pytree_node:0 2025-08-14T21:49:33.1327384Z * 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-14T21:49:33.1328927Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::tree_is_leaf:0 2025-08-14T21:49:33.1330644Z * 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-14T21:49:33.1332356Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::tree_flatten:0 2025-08-14T21:49:33.1334118Z * 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-14T21:49:33.1335900Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::tree_unflatten:0 2025-08-14T21:49:33.1337625Z * 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-14T21:49:33.1339329Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::tree_iter:0 2025-08-14T21:49:33.1341034Z * 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-14T21:49:33.1342744Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::tree_leaves:0 2025-08-14T21:49:33.1344484Z * 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-14T21:49:33.1346255Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::tree_structure:0 2025-08-14T21:49:33.1347969Z * 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-14T21:49:33.1349682Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::tree_map:0 2025-08-14T21:49:33.1351520Z * 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-14T21:49:33.1353320Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::broadcast_prefix:0 2025-08-14T21:49:33.1355317Z * 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-14T21:49:33.1357045Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_pytree.py::register_dataclass:0 2025-08-14T21:49:33.1358674Z * 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-14T21:49:33.1360277Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_pytree.py::register_constant:0 2025-08-14T21:49:33.1361909Z * 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-14T21:49:33.1363663Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_pytree.py::tree_is_leaf:0 2025-08-14T21:49:33.1365053Z * 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-14T21:49:33.1366519Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_pytree.py::tree_map:0 2025-08-14T21:49:33.1368206Z * 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-14T21:49:33.1369814Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\dataset.py::IterableDataset:0 2025-08-14T21:49:33.1371323Z * 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-14T21:49:33.1372946Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\dataset.py::StackDataset:0 2025-08-14T21:49:33.1374705Z * 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-14T21:49:33.1376450Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\dataset.py::random_split:0 2025-08-14T21:49:33.1378284Z * 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-14T21:49:33.1379898Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\distributed.py::DistributedSampler:0 2025-08-14T21:49:33.1381381Z * 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-14T21:49:33.1382774Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\sampler.py::Sampler:0 2025-08-14T21:49:33.1384385Z * 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-14T21:49:33.1386113Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\sampler.py::WeightedRandomSampler:0 2025-08-14T21:49:33.1387968Z * 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-14T21:49:33.1389873Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\sampler.py::BatchSampler:0 2025-08-14T21:49:33.1391825Z * 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-14T21:49:33.1393934Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\datapipe.py::IterDataPipe:0 2025-08-14T21:49:33.1395910Z * 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-14T21:49:33.1397855Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\datapipe.py::MapDataPipe:0 2025-08-14T21:49:33.1399880Z * 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-14T21:49:33.1402001Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\callable.py::MapperIterDataPipe:0 2025-08-14T21:49:33.1404198Z * 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-14T21:49:33.1406432Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\callable.py::CollatorIterDataPipe:0 2025-08-14T21:49:33.1408717Z * 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-14T21:49:33.1410845Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\combinatorics.py::ShufflerIterDataPipe:0 2025-08-14T21:49:33.1413053Z * 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-14T21:49:33.1414947Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\combining.py::ConcaterIterDataPipe:0 2025-08-14T21:49:33.1416867Z * 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-14T21:49:33.1418804Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\combining.py::ForkerIterDataPipe:0 2025-08-14T21:49:33.1420563Z * 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-14T21:49:33.1422440Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\combining.py::_ChildDataPipe:0 2025-08-14T21:49:33.1424316Z * 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-14T21:49:33.1426365Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\combining.py::DemultiplexerIterDataPipe:0 2025-08-14T21:49:33.1428348Z * 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-14T21:49:33.1430282Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\combining.py::MultiplexerIterDataPipe:0 2025-08-14T21:49:33.1432350Z * 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-14T21:49:33.1434256Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\combining.py::ZipperIterDataPipe:0 2025-08-14T21:49:33.1436110Z * 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-14T21:49:33.1438210Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\filelister.py::FileListerIterDataPipe:0 2025-08-14T21:49:33.1440189Z * 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-14T21:49:33.1442097Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\fileopener.py::FileOpenerIterDataPipe:0 2025-08-14T21:49:33.1444104Z * 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-14T21:49:33.1446103Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\grouping.py::BatcherIterDataPipe:0 2025-08-14T21:49:33.1448008Z * 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-14T21:49:33.1449922Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\grouping.py::UnBatcherIterDataPipe:0 2025-08-14T21:49:33.1452017Z * 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-14T21:49:33.1453133Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\grouping.py::GrouperIterDataPipe:0 2025-08-14T21:49:33.1454408Z * 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-14T21:49:33.1455494Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\selecting.py::FilterIterDataPipe:0 2025-08-14T21:49:33.5001900Z * 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-14T21:49:33.5003137Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\streamreader.py::StreamReaderIterDataPipe:0 2025-08-14T21:49:33.5004284Z * 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-14T21:49:33.5005405Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\utils.py::IterableWrapperIterDataPipe:0 2025-08-14T21:49:33.5006503Z * 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-14T21:49:33.5007550Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\map\callable.py::MapperMapDataPipe:0 2025-08-14T21:49:33.5008644Z * 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-14T21:49:33.5009766Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\map\combinatorics.py::ShufflerIterDataPipe:0 2025-08-14T21:49:33.5010854Z * 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-14T21:49:33.5011929Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\map\combining.py::ConcaterMapDataPipe:0 2025-08-14T21:49:33.5012996Z * 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-14T21:49:33.5014207Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\map\combining.py::ZipperMapDataPipe:0 2025-08-14T21:49:33.5015281Z * 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-14T21:49:33.5016355Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\map\grouping.py::BatcherMapDataPipe:0 2025-08-14T21:49:33.5017424Z * 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-14T21:49:33.5018529Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\map\utils.py::SequenceWrapperMapDataPipe:0 2025-08-14T21:49:33.5019606Z * 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-14T21:49:33.5020647Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\utils\common.py::validate_input_col:0 2025-08-14T21:49:33.5021748Z * 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-14T21:49:33.5022762Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\utils\decoder.py::basichandlers:0 2025-08-14T21:49:33.5023755Z * 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-14T21:49:33.5024842Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\_utils\collate.py::default_convert:0 2025-08-14T21:49:33.5025767Z * 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-14T21:49:33.5026693Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\_utils\collate.py::collate:0 2025-08-14T21:49:33.5027615Z * 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-14T21:49:33.5028570Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\_utils\collate.py::default_collate:0 2025-08-14T21:49:33.5029548Z * 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-14T21:49:33.5030532Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\hipify\hipify_python.py::find_closure_group:0 2025-08-14T21:49:33.5031603Z * 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-14T21:49:33.5032630Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\hipify\hipify_python.py::replace_extern_shared:0 2025-08-14T21:49:33.5033641Z * 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-14T21:49:33.5034660Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.__init__:0 2025-08-14T21:49:33.5042584Z * 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-14T21:49:33.5043795Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_hparams:0 2025-08-14T21:49:33.5044844Z * 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-14T21:49:33.5046433Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_scalar:0 2025-08-14T21:49:33.5047486Z * 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-14T21:49:33.5048541Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_scalars:0 2025-08-14T21:49:33.5049584Z * 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-14T21:49:33.5050617Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_tensor:0 2025-08-14T21:49:33.5051649Z * 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-14T21:49:33.5052781Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_histogram:0 2025-08-14T21:49:33.5053863Z * 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-14T21:49:33.5054953Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_histogram_raw:0 2025-08-14T21:49:33.5056141Z * 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-14T21:49:33.5057176Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_image:0 2025-08-14T21:49:33.5058199Z * 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-14T21:49:33.5059332Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_images:0 2025-08-14T21:49:33.5060407Z * 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-14T21:49:33.5061427Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_text:0 2025-08-14T21:49:33.5062484Z * 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-14T21:49:33.5063545Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_embedding:0 2025-08-14T21:49:33.5064602Z * 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-14T21:49:33.5065698Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_pr_curve:0 2025-08-14T21:49:33.7848350Z * 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-14T21:49:33.7849844Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_custom_scalars_multilinechart:0 2025-08-14T21:49:33.7851179Z * 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-14T21:49:33.7852677Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_custom_scalars_marginchart:0 2025-08-14T21:49:33.7853953Z * 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-14T21:49:33.7855230Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_custom_scalars:0 2025-08-14T21:49:33.7856423Z * 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-14T21:49:33.7857575Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_mesh:0 2025-08-14T21:49:33.7858742Z * 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-14T21:49:33.7859908Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_sympy\functions.py::MinMaxBase._collapse_arguments:0 2025-08-14T21:49:33.7861126Z * 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-14T21:49:33.7862190Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_dynamo\decorators.py::substitute_in_graph:0 2025-08-14T21:49:33.7863221Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_dynamo\eval_frame.py::fullgraph_capture:0, line 2328 <- wrt source file 2025-08-14T21:49:33.7864401Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_dynamo\eval_frame.py::fullgraph_capture:0 2025-08-14T21:49:33.7865512Z * 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-14T21:49:33.7866692Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_dynamo\variables\base.py::VariableTracker.python_type:0 2025-08-14T21:49:33.7867845Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_export\utils.py::register_module_as_pytree_input_node:0, line 1386 <- wrt source file 2025-08-14T21:49:33.7868985Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_export\utils.py::register_module_as_pytree_input_node:0 2025-08-14T21:49:33.7870094Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_export\wrappers.py::mark_subclass_constructor_exportable_experimental:0, line 157 <- wrt source file 2025-08-14T21:49:33.7871297Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_export\wrappers.py::mark_subclass_constructor_exportable_experimental:0 2025-08-14T21:49:33.7872356Z * 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-14T21:49:33.7873292Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\aot_autograd.py::aot_function:0 2025-08-14T21:49:33.7874302Z * 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-14T21:49:33.7875437Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\benchmark_utils.py::benchmark_utilization:0 2025-08-14T21:49:33.7876527Z * 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-14T21:49:33.7877504Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\eager_transforms.py::vjp:0 2025-08-14T21:49:33.7878614Z * 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-14T21:49:33.7879648Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\eager_transforms.py::jacrev:0 2025-08-14T21:49:33.7880647Z * 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-14T21:49:33.7881676Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\eager_transforms.py::jvp:0 2025-08-14T21:49:33.7882667Z * 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-14T21:49:33.7883711Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\eager_transforms.py::jacfwd:0 2025-08-14T21:49:33.7884750Z * 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-14T21:49:33.7885749Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\eager_transforms.py::hessian:0 2025-08-14T21:49:33.7886804Z * 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-14T21:49:33.7887778Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\eager_transforms.py::functionalize:0 2025-08-14T21:49:33.7888750Z * 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-14T21:49:33.7889778Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\eager_transforms.py::linearize:0 2025-08-14T21:49:33.7890732Z * 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-14T21:49:33.7891796Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\functional_call.py::functional_call:0 2025-08-14T21:49:33.7892780Z * 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-14T21:49:33.7893689Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\fx_minifier.py::minifier:0 2025-08-14T21:49:33.7894713Z * 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-14T21:49:33.7895833Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\_aot_autograd\schemas.py::CompilerWrapper.post_compile:0 2025-08-14T21:49:33.7896956Z * 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-14T21:49:33.7898210Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\_aot_autograd\schemas.py::InductorWrapper.post_compile:0 2025-08-14T21:49:33.7899283Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\associative_scan.py::associative_scan:0, line 133 <- wrt source file 2025-08-14T21:49:33.7900327Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\associative_scan.py::associative_scan:0 2025-08-14T21:49:33.7901388Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\associative_scan.py::generic_associative_scan:0, line 269 <- wrt source file 2025-08-14T21:49:33.7902485Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\associative_scan.py::generic_associative_scan:0 2025-08-14T21:49:33.7903573Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\cond.py::cond:0, line 105 <- wrt source file 2025-08-14T21:49:33.7904526Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\cond.py::cond:0 2025-08-14T21:49:33.7905472Z * 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-14T21:49:33.7906485Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\flat_apply.py::FlatApply.__call__:0 2025-08-14T21:49:33.7907409Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\map.py::map:0, line 77 <- wrt source file 2025-08-14T21:49:33.7908261Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\map.py::map:0 2025-08-14T21:49:33.7910572Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\scan.py::scan:0, line 155 <- wrt source file 2025-08-14T21:49:33.7911508Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\scan.py::scan:0 2025-08-14T21:49:33.7912516Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\scan.py::ScanAutogradOp:0, line 423 <- wrt source file 2025-08-14T21:49:33.7913492Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\scan.py::ScanAutogradOp:0 2025-08-14T21:49:33.7914541Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_inductor\codecache.py::WritableTempFile:0, line 371 <- wrt source file 2025-08-14T21:49:33.7915584Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_inductor\codecache.py::WritableTempFile:0 2025-08-14T21:49:33.7916777Z * 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 1501 <- wrt source file 2025-08-14T21:49:33.7917876Z * 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-14T21:49:33.7918940Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_inductor\select_algorithm.py::add_preprocessing_fn:0, line 3349 <- wrt source file 2025-08-14T21:49:33.7919952Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_inductor\select_algorithm.py::add_preprocessing_fn:0 2025-08-14T21:49:33.7921040Z * 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-14T21:49:33.7922206Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_inductor\template_registry.py::register_template_heuristic:0 2025-08-14T21:49:33.7923174Z * 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-14T21:49:33.7924042Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\custom_ops.py::custom_op:0 2025-08-14T21:49:33.7924993Z * 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-14T21:49:33.7926020Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\custom_ops.py::CustomOpDef.set_kernel_enabled:0 2025-08-14T21:49:33.7927037Z * 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-14T21:49:33.7928060Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\custom_ops.py::CustomOpDef.register_kernel:0 2025-08-14T21:49:33.7929133Z * 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-14T21:49:33.7930170Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\custom_ops.py::CustomOpDef.register_autograd:0 2025-08-14T21:49:33.7931192Z * 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-14T21:49:33.7932186Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\custom_ops.py::CustomOpDef.register_vmap:0 2025-08-14T21:49:33.7933207Z * 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-14T21:49:33.7934229Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\custom_ops.py::CustomOpDef.register_autocast:0 2025-08-14T21:49:33.7935237Z * 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-14T21:49:33.7936286Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\fake_class_registry.py::register_fake_class:0 2025-08-14T21:49:33.7937319Z * 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-14T21:49:33.7938374Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\fake_impl.py::FakeImplCtx.new_dynamic_size:0 2025-08-14T21:49:33.7939422Z * 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-14T21:49:33.7940333Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\infer_schema.py::infer_schema:0 2025-08-14T21:49:33.7941220Z * 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-14T21:49:33.7942080Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\triton.py::triton_op:0 2025-08-14T21:49:33.7942930Z * 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-14T21:49:33.7943811Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\triton.py::wrap_triton:0 2025-08-14T21:49:33.7944665Z * 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-14T21:49:33.7945524Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_logging\_internal.py::set_logs:0 2025-08-14T21:49:33.7946400Z * 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-14T21:49:33.7947287Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_equal:0 2025-08-14T21:49:33.7948196Z * 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-14T21:49:33.7949141Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::print_assert_equal:0 2025-08-14T21:49:33.7950067Z * 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-14T21:49:33.7951086Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_almost_equal:0 2025-08-14T21:49:33.7952034Z * 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-14T21:49:33.7953023Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_approx_equal:0 2025-08-14T21:49:33.7953962Z * 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-14T21:49:33.7954898Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_array_equal:0 2025-08-14T21:49:33.7955860Z * 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-14T21:49:33.7956841Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_array_almost_equal:0 2025-08-14T21:49:33.7957793Z * 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-14T21:49:33.7958728Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_array_less:0 2025-08-14T21:49:33.7959698Z * 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-14T21:49:33.7960655Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_string_equal:0 2025-08-14T21:49:33.7961587Z * 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-14T21:49:33.7962588Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_allclose:0 2025-08-14T21:49:33.7963570Z * 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-14T21:49:33.7964612Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_array_almost_equal_nulp:0 2025-08-14T21:49:33.7965600Z * 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-14T21:49:33.7966575Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_array_max_ulp:0 2025-08-14T21:49:33.7967497Z * 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-14T21:49:33.7968446Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::nulp_diff:0 2025-08-14T21:49:33.7969398Z * 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-14T21:49:33.7970314Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_warns:0 2025-08-14T21:49:33.7971262Z * 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-14T21:49:33.7972243Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::clear_and_catch_warnings:0 2025-08-14T21:49:33.7973181Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_prims\context.py::TorchRefsMode:0, line 95 <- wrt source file 2025-08-14T21:49:33.7974066Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_prims\context.py::TorchRefsMode:0 2025-08-14T21:49:33.7974990Z ============ 2025-08-14T21:49:33.7975236Z Finished doctests 2025-08-14T21:49:33.7975495Z 373 / 863 passed 2025-08-14T21:49:33.7975735Z  2025-08-14T21:49:33.7976052Z === Found 17 parse-time warnings === 2025-08-14T21:49:33.7976451Z --- Parse Warning: 1 / 17 --- 2025-08-14T21:49:33.7977396Z 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-14T21:49:33.7978437Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-14T21:49:33.7978984Z Registers the function implementation as the fallback for the given key. 2025-08-14T21:49:33.7979366Z 2025-08-14T21:49:33.7979663Z This function only works for a library with global namespace ("_"). 2025-08-14T21:49:33.7980025Z 2025-08-14T21:49:33.7980194Z Args: 2025-08-14T21:49:33.7980567Z fn: function used as fallback for the given dispatch key or :func:`~fallthrough_kernel` 2025-08-14T21:49:33.7981027Z to register a fallthrough. 2025-08-14T21:49:33.7981520Z dispatch_key: dispatch key that the input function should be registered for. By default, it uses 2025-08-14T21:49:33.7982117Z the dispatch key that the library was created with. 2025-08-14T21:49:33.7982718Z with_keyset: flag controlling if the current dispatcher call keyset should be passed as the first argument 2025-08-14T21:49:33.7983463Z to :attr:`fn` when calling. This should be used to create the appropriate keyset for redispatch calls. 2025-08-14T21:49:33.7983940Z 2025-08-14T21:49:33.7984122Z Example:: 2025-08-14T21:49:33.7984316Z 2025-08-14T21:49:33.7984590Z >>> my_lib = Library("_", "IMPL") 2025-08-14T21:49:33.7984926Z >>> def fallback_kernel(op, *args, **kwargs): 2025-08-14T21:49:33.7985262Z >>> # Handle all autocast ops generically 2025-08-14T21:49:33.7985569Z >>> # ... 2025-08-14T21:49:33.7985838Z >>> my_lib.fallback(fallback_kernel, "Autocast") 2025-08-14T21:49:33.7986148Z 2025-08-14T21:49:33.7986672Z Original Error: IndentationError('expected an indented block', ('', 5, 1, 'my_lib.fallback(fallback_kernel, "Autocast")\n')) 2025-08-14T21:49:33.7987264Z 2025-08-14T21:49:33.7987468Z my_lib.fallback(fallback_kernel, "Autocast") 2025-08-14T21:49:33.7987760Z ^ 2025-08-14T21:49:33.7987933Z warnings.warn(msg) 2025-08-14T21:49:33.7988140Z 2025-08-14T21:49:33.7988432Z --- Parse Warning: 2 / 17 --- 2025-08-14T21:49:33.7989344Z 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-14T21:49:33.7990371Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-14T21:49:33.7990905Z Register a FakeTensor implementation ("fake impl") for this operator. 2025-08-14T21:49:33.7991379Z 2025-08-14T21:49:33.7991643Z Also sometimes known as a "meta kernel", "abstract impl". 2025-08-14T21:49:33.7991965Z 2025-08-14T21:49:33.7992282Z An "FakeTensor implementation" specifies the behavior of this operator on 2025-08-14T21:49:33.7992799Z Tensors that carry no data ("FakeTensor"). Given some input Tensors with 2025-08-14T21:49:33.7993328Z certain properties (sizes/strides/storage_offset/device), it specifies 2025-08-14T21:49:33.7993763Z what the properties of the output Tensors are. 2025-08-14T21:49:33.7994056Z 2025-08-14T21:49:33.7994353Z The FakeTensor implementation has the same signature as the operator. 2025-08-14T21:49:33.7994856Z It is run for both FakeTensors and meta tensors. To write a FakeTensor 2025-08-14T21:49:33.7995341Z implementation, assume that all Tensor inputs to the operator are 2025-08-14T21:49:33.7995876Z regular CPU/CUDA/Meta tensors, but they do not have storage, and 2025-08-14T21:49:33.7996348Z you are trying to return regular CPU/CUDA/Meta tensor(s) as output. 2025-08-14T21:49:33.7996841Z The FakeTensor implementation must consist of only PyTorch operations 2025-08-14T21:49:33.7997322Z (and may not directly access the storage or data of any input or 2025-08-14T21:49:33.7997677Z intermediate Tensors). 2025-08-14T21:49:33.7997915Z 2025-08-14T21:49:33.7998140Z This API may be used as a decorator (see examples). 2025-08-14T21:49:33.7998435Z 2025-08-14T21:49:33.7998651Z For a detailed guide on custom ops, please see 2025-08-14T21:49:33.7999092Z https://pytorch.org/tutorials/advanced/custom_ops_landing_page.html 2025-08-14T21:49:33.7999472Z 2025-08-14T21:49:33.7999628Z Args: 2025-08-14T21:49:33.7999933Z op_name: Operator name (along with the overload) or OpOverload object. 2025-08-14T21:49:33.8000341Z func: Fake tensor implementation. 2025-08-14T21:49:33.8000727Z lib (Optional[Library]): Library to register the fake tensor to. 2025-08-14T21:49:33.8001737Z allow_override: Flag controlling if we want to override an 2025-08-14T21:49:33.8002160Z existing registered fake impl. This is by default off, 2025-08-14T21:49:33.8002592Z and will error you're trying to register a fake impl to 2025-08-14T21:49:33.8003010Z an operator that already has a fake impl. This also only 2025-08-14T21:49:33.8003421Z applies if the custom operator was not created via 2025-08-14T21:49:33.8004627Z torch.library.custom_op, as overriding and existing fake 2025-08-14T21:49:33.8005033Z impl is already allowed. 2025-08-14T21:49:33.8005317Z 2025-08-14T21:49:33.8005490Z Examples: 2025-08-14T21:49:33.8005703Z >>> import torch 2025-08-14T21:49:33.8005942Z >>> import numpy as np 2025-08-14T21:49:33.8006206Z >>> from torch import Tensor 2025-08-14T21:49:33.8006458Z >>> 2025-08-14T21:49:33.8006747Z >>> # Example 1: an operator without data-dependent output shape 2025-08-14T21:49:33.8007213Z >>> @torch.library.custom_op("mylib::custom_linear", mutates_args=()) 2025-08-14T21:49:33.8007720Z >>> def custom_linear(x: Tensor, weight: Tensor, bias: Tensor) -> Tensor: 2025-08-14T21:49:33.8008183Z >>> raise NotImplementedError("Implementation goes here") 2025-08-14T21:49:33.8008508Z >>> 2025-08-14T21:49:33.8008781Z >>> @torch.library.register_fake("mylib::custom_linear") 2025-08-14T21:49:33.8009123Z >>> def _(x, weight, bias): 2025-08-14T21:49:33.8009399Z >>> assert x.dim() == 2 2025-08-14T21:49:33.8009670Z >>> assert weight.dim() == 2 2025-08-14T21:49:33.8009957Z >>> assert bias.dim() == 1 2025-08-14T21:49:33.8010260Z >>> assert x.shape[1] == weight.shape[1] 2025-08-14T21:49:33.8010588Z >>> assert weight.shape[0] == bias.shape[0] 2025-08-14T21:49:33.8010916Z >>> assert x.device == weight.device 2025-08-14T21:49:33.8011190Z >>> 2025-08-14T21:49:33.8011404Z >>> return (x @ weight.t()) + bias 2025-08-14T21:49:33.8011669Z >>> 2025-08-14T21:49:33.8011935Z >>> with torch._subclasses.fake_tensor.FakeTensorMode(): 2025-08-14T21:49:33.8012277Z >>> x = torch.randn(2, 3) 2025-08-14T21:49:33.8012557Z >>> w = torch.randn(3, 3) 2025-08-14T21:49:33.8012828Z >>> b = torch.randn(3) 2025-08-14T21:49:33.8013130Z >>> y = torch.ops.mylib.custom_linear(x, w, b) 2025-08-14T21:49:33.8013434Z >>> 2025-08-14T21:49:33.8013710Z >>> assert y.shape == (2, 3) 2025-08-14T21:49:33.8013982Z >>> 2025-08-14T21:49:33.8014255Z >>> # Example 2: an operator with data-dependent output shape 2025-08-14T21:49:33.8014734Z >>> @torch.library.custom_op("mylib::custom_nonzero", mutates_args=()) 2025-08-14T21:49:33.8015147Z >>> def custom_nonzero(x: Tensor) -> Tensor: 2025-08-14T21:49:33.8015467Z >>> x_np = x.numpy(force=True) 2025-08-14T21:49:33.8015791Z >>> res = np.stack(np.nonzero(x_np), axis=1) 2025-08-14T21:49:33.8016129Z >>> return torch.tensor(res, device=x.device) 2025-08-14T21:49:33.8016422Z >>> 2025-08-14T21:49:33.8016693Z >>> @torch.library.register_fake("mylib::custom_nonzero") 2025-08-14T21:49:33.8017038Z >>> def _(x): 2025-08-14T21:49:33.8017307Z >>> # Number of nonzero-elements is data-dependent. 2025-08-14T21:49:33.8017687Z >>> # Since we cannot peek at the data in an fake impl, 2025-08-14T21:49:33.8018068Z >>> # we use the ctx object to construct a new symint that 2025-08-14T21:49:33.8018421Z >>> # represents the data-dependent size. 2025-08-14T21:49:33.8018801Z >>> ctx = torch.library.get_ctx() 2025-08-14T21:49:33.8019107Z >>> nnz = ctx.new_dynamic_size() 2025-08-14T21:49:33.8019409Z >>> shape = [nnz, x.dim()] 2025-08-14T21:49:33.8019730Z >>> result = x.new_empty(shape, dtype=torch.int64) 2025-08-14T21:49:33.8020058Z >>> return result 2025-08-14T21:49:33.8020289Z >>> 2025-08-14T21:49:33.8020569Z >>> from torch.fx.experimental.proxy_tensor import make_fx 2025-08-14T21:49:33.8021004Z >>> 2025-08-14T21:49:33.8021214Z >>> x = torch.tensor([0, 1, 2, 3, 4, 0]) 2025-08-14T21:49:33.8021646Z >>> trace = make_fx(torch.ops.mylib.custom_nonzero, tracing_mode="symbolic")(x) 2025-08-14T21:49:33.8022067Z >>> trace.print_readable() 2025-08-14T21:49:33.8022326Z >>> 2025-08-14T21:49:33.8022638Z >>> assert torch.allclose(trace(x), torch.ops.mylib.custom_nonzero(x)) 2025-08-14T21:49:33.8023016Z 2025-08-14T21:49:33.8023169Z 2025-08-14T21:49:33.8023592Z Original Error: IndentationError('expected an indented block', ('', 38, 1, '_._ = None\n')) 2025-08-14T21:49:33.8024083Z 2025-08-14T21:49:33.8024337Z _._ = None 2025-08-14T21:49:33.8024524Z ^ 2025-08-14T21:49:33.8024696Z warnings.warn(msg) 2025-08-14T21:49:33.8024952Z 2025-08-14T21:49:33.8025349Z --- Parse Warning: 3 / 17 --- 2025-08-14T21:49:33.8026261Z 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-14T21:49:33.8027267Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-14T21:49:33.8027792Z Returns the computed kernel for a given operator and dispatch key. 2025-08-14T21:49:33.8028155Z 2025-08-14T21:49:33.8028449Z This function retrieves the kernel that would be executed for a given 2025-08-14T21:49:33.8028962Z operator and dispatch key combination. The returned SafeKernelFunction 2025-08-14T21:49:33.8029445Z can be used to call the kernel in a boxed fashion. The intended use 2025-08-14T21:49:33.8029907Z case for this function is to retrieve the original kernel for a given 2025-08-14T21:49:33.8030432Z dispatch key and then register another kernel to the same dispatch key 2025-08-14T21:49:33.8031003Z that calls into the original kernel for certain cases. 2025-08-14T21:49:33.8031323Z 2025-08-14T21:49:33.8031487Z Args: 2025-08-14T21:49:33.8031787Z op: Operator name (along with the overload) or OpOverload object 2025-08-14T21:49:33.8032350Z Can be a string (e.g., "aten::add.Tensor"), an OpOverload, or a CustomOpDef. 2025-08-14T21:49:33.8032896Z dispatch_key (str | torch.DispatchKey): The dispatch key to get the kernel for. 2025-08-14T21:49:33.8033408Z Can be a string (e.g., "CPU", "CUDA") or a DispatchKey enum value. 2025-08-14T21:49:33.8033761Z 2025-08-14T21:49:33.8033933Z Returns: 2025-08-14T21:49:33.8034256Z torch._C._SafeKernelFunction: A safe kernel function that can be used to 2025-08-14T21:49:33.8034665Z call the kernel. 2025-08-14T21:49:33.8034891Z 2025-08-14T21:49:33.8035053Z Raises: 2025-08-14T21:49:33.8035289Z RuntimeError: If the operator does not exist. 2025-08-14T21:49:33.8035596Z 2025-08-14T21:49:33.8035760Z Example: 2025-08-14T21:49:33.8035975Z >>> # Get the CPU kernel for torch.add 2025-08-14T21:49:33.8036398Z >>> kernel = torch.library.get_kernel("aten::add.Tensor", "CPU") 2025-08-14T21:49:33.8036797Z >>> 2025-08-14T21:49:33.8037018Z >>> # You can also use DispatchKey enum 2025-08-14T21:49:33.8037453Z >>> kernel = torch.library.get_kernel("aten::add.Tensor", torch.DispatchKey.CPU) 2025-08-14T21:49:33.8037923Z >>> 2025-08-14T21:49:33.8038129Z >>> # Or use an OpOverload directly 2025-08-14T21:49:33.8038538Z >>> kernel = torch.library.get_kernel(torch.ops.aten.add.Tensor, "CPU") 2025-08-14T21:49:33.8038918Z >>> 2025-08-14T21:49:33.8039234Z >>> # Example: Using get_kernel in a custom op with conditional dispatch 2025-08-14T21:49:33.8039655Z >>> # Get the original kernel for torch.sin 2025-08-14T21:49:33.8040142Z >>> original_sin_kernel = torch.library.get_kernel("aten::sin", "CPU") 2025-08-14T21:49:33.8040516Z >>> 2025-08-14T21:49:33.8040822Z >>> # If input has negative values, use original sin, otherwise return zeros 2025-08-14T21:49:33.8041264Z >>> def conditional_sin_impl(dispatch_keys, x): 2025-08-14T21:49:33.8041570Z >>> if (x < 0).any(): 2025-08-14T21:49:33.8041960Z >>> return original_sin_kernel.call_boxed(dispatch_keys, x) 2025-08-14T21:49:33.8042299Z >>> else: 2025-08-14T21:49:33.8042591Z >>> return torch.zeros_like(x) 2025-08-14T21:49:33.8042860Z >>> 2025-08-14T21:49:33.8043087Z >>> lib = torch.library.Library("aten", "IMPL") 2025-08-14T21:49:33.8043551Z >>> # with_keyset=True so the first argument to the impl is the current DispatchKeySet 2025-08-14T21:49:33.8044054Z >>> which needs to be the first argument to ``kernel.call_boxed`` 2025-08-14T21:49:33.8044506Z >>> lib.impl("sin", conditional_sin_impl, "CPU", with_keyset=True) 2025-08-14T21:49:33.8044844Z >>> 2025-08-14T21:49:33.8045059Z >>> # Test the conditional behavior 2025-08-14T21:49:33.8045372Z >>> x_positive = torch.tensor([1.0, 2.0]) 2025-08-14T21:49:33.8045680Z >>> x_mixed = torch.tensor([-1.0, 2.0]) 2025-08-14T21:49:33.8045979Z >>> torch.sin(x_positive) 2025-08-14T21:49:33.8046246Z tensor([0., 0.]) 2025-08-14T21:49:33.8046481Z >>> torch.sin(x_mixed) 2025-08-14T21:49:33.8046727Z tensor([-0.8415, 0.9093]) 2025-08-14T21:49:33.8046968Z 2025-08-14T21:49:33.8047471Z Original Error: SyntaxError('invalid syntax', ('', 23, 7, 'which needs to be the first argument to ``kernel.call_boxed``\n')) 2025-08-14T21:49:33.8048092Z 2025-08-14T21:49:33.8048351Z which needs to be the first argument to ``kernel.call_boxed`` 2025-08-14T21:49:33.8048726Z ^ 2025-08-14T21:49:33.8048914Z warnings.warn(msg) 2025-08-14T21:49:33.8049120Z 2025-08-14T21:49:33.8049497Z --- Parse Warning: 4 / 17 --- 2025-08-14T21:49:33.8050436Z 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-14T21:49:33.8051551Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-14T21:49:33.8052122Z Check if the current accelerator is available at runtime: it was build, all the 2025-08-14T21:49:33.8052642Z required drivers are available and at least one device is visible. 2025-08-14T21:49:33.8053083Z See :ref:`accelerator` for details. 2025-08-14T21:49:33.8053380Z 2025-08-14T21:49:33.8053553Z Returns: 2025-08-14T21:49:33.8053963Z bool: A boolean indicating if there is an available :ref:`accelerator`. 2025-08-14T21:49:33.8054432Z 2025-08-14T21:49:33.8054741Z .. note:: This API delegates to the device-specific version of `is_available`. 2025-08-14T21:49:33.8055305Z On CUDA, when the environment variable ``PYTORCH_NVML_BASED_CUDA_CHECK=1`` is set, 2025-08-14T21:49:33.8055878Z this function will NOT poison fork. Otherwise, it will. For more details, see 2025-08-14T21:49:33.8056388Z :ref:`multiprocessing-poison-fork-note`. 2025-08-14T21:49:33.8056691Z 2025-08-14T21:49:33.8056854Z Example:: 2025-08-14T21:49:33.8057052Z 2025-08-14T21:49:33.8057380Z >>> assert torch.accelerator.is_available() "No available accelerators detected." 2025-08-14T21:49:33.8057818Z 2025-08-14T21:49:33.8058398Z Original Error: SyntaxError('invalid syntax', ('', 1, 41, 'assert torch.accelerator.is_available() "No available accelerators detected."\n')) 2025-08-14T21:49:33.8059037Z 2025-08-14T21:49:33.8059442Z assert torch.accelerator.is_available() "No available accelerators detected." 2025-08-14T21:49:33.8059913Z ^ 2025-08-14T21:49:33.8060228Z warnings.warn(msg) 2025-08-14T21:49:33.8060439Z 2025-08-14T21:49:33.8060747Z --- Parse Warning: 5 / 17 --- 2025-08-14T21:49:33.8061688Z 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-14T21:49:33.8062756Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-14T21:49:33.8063264Z Wait for all kernels in all streams on the given device to complete. 2025-08-14T21:49:33.8063614Z 2025-08-14T21:49:33.8063783Z Args: 2025-08-14T21:49:33.8064169Z device (:class:`torch.device`, str, int, optional): device for which to synchronize. It must match 2025-08-14T21:49:33.8064769Z the current :ref:`accelerator` device type. If not given, 2025-08-14T21:49:33.8065290Z use :func:`torch.accelerator.current_device_index` by default. 2025-08-14T21:49:33.8065646Z 2025-08-14T21:49:33.8066068Z .. note:: This function is a no-op if the current :ref:`accelerator` is not initialized. 2025-08-14T21:49:33.8066531Z 2025-08-14T21:49:33.8066705Z Example:: 2025-08-14T21:49:33.8066884Z 2025-08-14T21:49:33.8067102Z >>> # xdoctest: +REQUIRES(env:TORCH_DOCTEST_CUDA) 2025-08-14T21:49:33.8067567Z >>> assert torch.accelerator.is_available() "No available accelerators detected." 2025-08-14T21:49:33.8068044Z >>> start_event = torch.Event(enable_timing=True) 2025-08-14T21:49:33.8068388Z >>> end_event = torch.Event(enable_timing=True) 2025-08-14T21:49:33.8068689Z >>> start_event.record() 2025-08-14T21:49:33.8069085Z >>> tensor = torch.randn(100, device=torch.accelerator.current_accelerator()) 2025-08-14T21:49:33.8069491Z >>> sum = torch.sum(tensor) 2025-08-14T21:49:33.8069766Z >>> end_event.record() 2025-08-14T21:49:33.8070108Z >>> torch.accelerator.synchronize() 2025-08-14T21:49:33.8070477Z >>> elapsed_time_ms = start_event.elapsed_time(end_event) 2025-08-14T21:49:33.8070808Z 2025-08-14T21:49:33.8071508Z Original Error: SyntaxError('invalid syntax', ('', 2, 41, 'assert torch.accelerator.is_available() "No available accelerators detected."\n')) 2025-08-14T21:49:33.8072205Z 2025-08-14T21:49:33.8072529Z assert torch.accelerator.is_available() "No available accelerators detected." 2025-08-14T21:49:33.8072967Z ^ 2025-08-14T21:49:33.8073231Z warnings.warn(msg) 2025-08-14T21:49:33.8073452Z 2025-08-14T21:49:33.8073756Z --- Parse Warning: 6 / 17 --- 2025-08-14T21:49:33.8074672Z 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-14T21:49:33.8075702Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-14T21:49:33.8076130Z Retrieves the CUDA runtime API module. 2025-08-14T21:49:33.8076456Z 2025-08-14T21:49:33.8076603Z 2025-08-14T21:49:33.8076973Z This function initializes the CUDA runtime environment if it is not already 2025-08-14T21:49:33.8077545Z initialized and returns the CUDA runtime API module (_cudart). The CUDA 2025-08-14T21:49:33.8078054Z runtime API module provides access to various CUDA runtime functions. 2025-08-14T21:49:33.8078426Z 2025-08-14T21:49:33.8078579Z Args: 2025-08-14T21:49:33.8078762Z ``None`` 2025-08-14T21:49:33.8078945Z 2025-08-14T21:49:33.8079190Z Returns: 2025-08-14T21:49:33.8079433Z module: The CUDA runtime API module (_cudart). 2025-08-14T21:49:33.8079733Z 2025-08-14T21:49:33.8079892Z Raises: 2025-08-14T21:49:33.8080216Z RuntimeError: If CUDA cannot be re-initialized in a forked subprocess. 2025-08-14T21:49:33.8080849Z AssertionError: If PyTorch is not compiled with CUDA support or if libcudart functions are unavailable. 2025-08-14T21:49:33.8081347Z 2025-08-14T21:49:33.8081556Z Example of CUDA operations with profiling: 2025-08-14T21:49:33.8081849Z >>> import torch 2025-08-14T21:49:33.8082118Z >>> from torch.cuda import cudart, check_error 2025-08-14T21:49:33.8082413Z >>> import os 2025-08-14T21:49:33.8082661Z >>> 2025-08-14T21:49:33.8082865Z >>> os.environ["CUDA_PROFILE"] = "1" 2025-08-14T21:49:33.8083186Z >>> 2025-08-14T21:49:33.8083416Z >>> def perform_cuda_operations_with_streams(): 2025-08-14T21:49:33.8083749Z >>> stream = torch.cuda.Stream() 2025-08-14T21:49:33.8084046Z >>> with torch.cuda.stream(stream): 2025-08-14T21:49:33.8084362Z >>> x = torch.randn(100, 100, device='cuda') 2025-08-14T21:49:33.8084690Z >>> y = torch.randn(100, 100, device='cuda') 2025-08-14T21:49:33.8084992Z >>> z = torch.mul(x, y) 2025-08-14T21:49:33.8085267Z >>> return z 2025-08-14T21:49:33.8085477Z >>> 2025-08-14T21:49:33.8085700Z >>> torch.cuda.synchronize() 2025-08-14T21:49:33.8085999Z >>> print("====== Start nsys profiling ======") 2025-08-14T21:49:33.8086335Z >>> check_error(cudart().cudaProfilerStart()) 2025-08-14T21:49:33.8086683Z >>> with torch.autograd.profiler.emit_nvtx(): 2025-08-14T21:49:33.8087043Z >>> result = perform_cuda_operations_with_streams() 2025-08-14T21:49:33.8087401Z >>> print("CUDA operations completed.") 2025-08-14T21:49:33.8087755Z >>> check_error(torch.cuda.cudart().cudaProfilerStop()) 2025-08-14T21:49:33.8088124Z >>> print("====== End nsys profiling ======") 2025-08-14T21:49:33.8088506Z 2025-08-14T21:49:33.8088786Z To run this example and save the profiling information, execute: 2025-08-14T21:49:33.8089440Z >>> $ nvprof --profile-from-start off --csv --print-summary -o trace_name.prof -f -- python cudart_test.py 2025-08-14T21:49:33.8089945Z 2025-08-14T21:49:33.8090261Z This command profiles the CUDA operations in the provided script and saves 2025-08-14T21:49:33.8090756Z the profiling information to a file named `trace_name.prof`. 2025-08-14T21:49:33.8091255Z The `--profile-from-start off` option ensures that profiling starts only 2025-08-14T21:49:33.8091701Z after the `cudaProfilerStart` call in the script. 2025-08-14T21:49:33.8092140Z The `--csv` and `--print-summary` options format the profiling output as a 2025-08-14T21:49:33.8092554Z CSV file and print a summary, respectively. 2025-08-14T21:49:33.8093001Z The `-o` option specifies the output file name, and the `-f` option forces the 2025-08-14T21:49:33.8093464Z overwrite of the output file if it already exists. 2025-08-14T21:49:33.8093761Z 2025-08-14T21:49:33.8094471Z 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-14T21:49:33.8095297Z 2025-08-14T21:49:33.8095719Z $ nvprof --profile-from-start off --csv --print-summary -o trace_name.prof -f -- python cudart_test.py 2025-08-14T21:49:33.8096209Z ^ 2025-08-14T21:49:33.8096400Z warnings.warn(msg) 2025-08-14T21:49:33.8096623Z 2025-08-14T21:49:33.8096944Z --- Parse Warning: 7 / 17 --- 2025-08-14T21:49:33.8098202Z 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-14T21:49:33.8099646Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-14T21:49:33.8100080Z 2025-08-14T21:49:33.8100450Z The Activation sparsifier class aims to sparsify/prune activations in a neural 2025-08-14T21:49:33.8100995Z network. The idea is to attach the sparsifier to a layer (or layers) and it 2025-08-14T21:49:33.8101521Z zeroes out the activations based on the mask_fn (or sparsification function) 2025-08-14T21:49:33.8101922Z input by the user. 2025-08-14T21:49:33.8102258Z The mask_fn is applied once all the inputs are aggregated and reduced i.e. 2025-08-14T21:49:33.8102702Z mask = mask_fn(reduce_fn(aggregate_fn(activations))) 2025-08-14T21:49:33.8102994Z 2025-08-14T21:49:33.8103173Z Note:: 2025-08-14T21:49:33.8103552Z The sparsification mask is computed on the input **before it goes through the attached layer**. 2025-08-14T21:49:33.8104019Z 2025-08-14T21:49:33.8104176Z Args: 2025-08-14T21:49:33.8104356Z model (nn.Module): 2025-08-14T21:49:33.8104698Z The model whose layers will be sparsified. The layers that needs to be 2025-08-14T21:49:33.8105226Z sparsified should be added separately using the register_layer() function 2025-08-14T21:49:33.8105689Z aggregate_fn (Optional, Callable): 2025-08-14T21:49:33.8106160Z default aggregate_fn that is used if not specified while registering the layer. 2025-08-14T21:49:33.8106644Z specifies how inputs should be aggregated over time. 2025-08-14T21:49:33.8107140Z The aggregate_fn should usually take 2 torch tensors and return the aggregated tensor. 2025-08-14T21:49:33.8107574Z Example 2025-08-14T21:49:33.8107849Z def add_agg_fn(tensor1, tensor2): return tensor1 + tensor2 2025-08-14T21:49:33.8108227Z reduce_fn (Optional, Callable): 2025-08-14T21:49:33.8108641Z default reduce_fn that is used if not specified while registering the layer. 2025-08-14T21:49:33.8109253Z reduce_fn will be called on the aggregated tensor i.e. the tensor obtained after 2025-08-14T21:49:33.8109708Z calling agg_fn() on all inputs. 2025-08-14T21:49:33.8109982Z Example 2025-08-14T21:49:33.8110316Z def mean_reduce_fn(agg_tensor): return agg_tensor.mean(dim=0) 2025-08-14T21:49:33.8110694Z mask_fn (Optional, Callable): 2025-08-14T21:49:33.8111237Z default mask_fn that is used to create the sparsification mask using the tensor obtained after 2025-08-14T21:49:33.8111944Z calling the reduce_fn(). This is used by default if a custom one is passed in the 2025-08-14T21:49:33.8112369Z register_layer(). 2025-08-14T21:49:33.8112866Z Note that the mask_fn() definition should contain the sparse arguments that is passed in sparse_config 2025-08-14T21:49:33.8113356Z arguments. 2025-08-14T21:49:33.8113615Z features (Optional, list): 2025-08-14T21:49:33.8113916Z default selected features to sparsify. 2025-08-14T21:49:33.8114423Z If this is non-empty, then the mask_fn will be applied for each feature of the input. 2025-08-14T21:49:33.8114856Z For example, 2025-08-14T21:49:33.8115253Z mask = [mask_fn(reduce_fn(aggregated_fn(input[feature])) for feature in features] 2025-08-14T21:49:33.8115691Z feature_dim (Optional, int): 2025-08-14T21:49:33.8116131Z default dimension of input features. Again, features along this dim will be chosen 2025-08-14T21:49:33.8116581Z for sparsification. 2025-08-14T21:49:33.8116928Z sparse_config (Dict): 2025-08-14T21:49:33.8117362Z Default configuration for the mask_fn. This config will be passed 2025-08-14T21:49:33.8117802Z with the mask_fn() 2025-08-14T21:49:33.8118042Z 2025-08-14T21:49:33.8118212Z Example: 2025-08-14T21:49:33.8118395Z >>> # xdoctest: +SKIP 2025-08-14T21:49:33.8118648Z >>> model = SomeModel() 2025-08-14T21:49:33.8119017Z >>> act_sparsifier = ActivationSparsifier(...) # init activation sparsifier 2025-08-14T21:49:33.8119430Z >>> # Initialize aggregate_fn 2025-08-14T21:49:33.8119684Z >>> def agg_fn(x, y): 2025-08-14T21:49:33.8119925Z >>> return x + y 2025-08-14T21:49:33.8120133Z >>> 2025-08-14T21:49:33.8120326Z >>> # Initialize reduce_fn 2025-08-14T21:49:33.8120585Z >>> def reduce_fn(x): 2025-08-14T21:49:33.8120821Z >>> return torch.mean(x, dim=0) 2025-08-14T21:49:33.8121082Z >>> 2025-08-14T21:49:33.8121268Z >>> # Initialize mask_fn 2025-08-14T21:49:33.8121516Z >>> def mask_fn(data): 2025-08-14T21:49:33.8121792Z >>> return torch.eye(data.shape).to(data.device) 2025-08-14T21:49:33.8122093Z >>> 2025-08-14T21:49:33.8122250Z >>> 2025-08-14T21:49:33.8122451Z >>> act_sparsifier.register_layer( 2025-08-14T21:49:33.8122727Z ... model.some_layer, 2025-08-14T21:49:33.8123030Z ... aggregate_fn=agg_fn, 2025-08-14T21:49:33.8123336Z ... reduce_fn=reduce_fn, 2025-08-14T21:49:33.8123580Z ... mask_fn=mask_fn, 2025-08-14T21:49:33.8123811Z ... ) 2025-08-14T21:49:33.8123978Z >>> 2025-08-14T21:49:33.8124166Z >>> # start training process 2025-08-14T21:49:33.8124415Z >>> for _ in [...]: 2025-08-14T21:49:33.8124643Z >>> # epoch starts 2025-08-14T21:49:33.8124935Z >>> # model.forward(), compute_loss() and model.backwards() 2025-08-14T21:49:33.8125279Z >>> # epoch ends 2025-08-14T21:49:33.8125510Z >>> act_sparsifier.step() 2025-08-14T21:49:33.8125783Z >>> # end training process 2025-08-14T21:49:33.8126050Z >>> sparsifier.squash_mask() 2025-08-14T21:49:33.8126352Z 2025-08-14T21:49:33.8126779Z Original Error: IndentationError('expected an indented block', ('', 26, 1, '_._ = None\n')) 2025-08-14T21:49:33.8127276Z 2025-08-14T21:49:33.8127453Z _._ = None 2025-08-14T21:49:33.8127627Z ^ 2025-08-14T21:49:33.8127811Z warnings.warn(msg) 2025-08-14T21:49:33.8128017Z 2025-08-14T21:49:33.8128360Z --- Parse Warning: 8 / 17 --- 2025-08-14T21:49:33.8129450Z 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=722. 2025-08-14T21:49:33.8130583Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-14T21:49:33.8130982Z 2025-08-14T21:49:33.8131313Z Slice the current DeviceMesh based on the mesh_dim_names given to create a submesh. 2025-08-14T21:49:33.8131902Z The submesh created consists of the dimensions and the communicators indicated by 2025-08-14T21:49:33.8132319Z ``mesh_dim_names`` 2025-08-14T21:49:33.8132523Z 2025-08-14T21:49:33.8132744Z Args: 2025-08-14T21:49:33.8133067Z mesh_dim_names (Union[str, Tuple[str]]): the name or the tuple of names of the 2025-08-14T21:49:33.8133562Z mesh dimension of the DeviceMesh to create the submesh for. 2025-08-14T21:49:33.8133902Z Returns: 2025-08-14T21:49:33.8134136Z A :class:`DeviceMesh` object 2025-08-14T21:49:33.8134416Z 2025-08-14T21:49:33.8134804Z The following program runs on each process/rank in an SPMD manner in a world size of 8. 2025-08-14T21:49:33.8135244Z In the first example: 2025-08-14T21:49:33.8135705Z Calling mesh_2d["tp"] on rank 0, 1, 2, 3 returns a 1D submesh of DeviceMesh:([0, 1, 2, 3]). 2025-08-14T21:49:33.8136263Z Calling mesh_2d["tp"] on rank 4, 5, 6, 7 returns a 1D submesh of DeviceMesh:([4, 5, 6, 7]). 2025-08-14T21:49:33.8136795Z Calling mesh_2d["dp"] on rank 0, 4 returns a 1D submesh of DeviceMesh:([0, 4]). 2025-08-14T21:49:33.8137297Z Calling mesh_2d["dp"] on rank 1, 5 returns a 1D submesh of DeviceMesh:([1, 5]). 2025-08-14T21:49:33.8137788Z Calling mesh_2d["dp"] on rank 2, 6 returns a 1D submesh of DeviceMesh:([2, 6]). 2025-08-14T21:49:33.8138288Z Calling mesh_2d["dp"] on rank 3, 7 returns a 1D submesh of DeviceMesh:([3, 7]). 2025-08-14T21:49:33.8138662Z 2025-08-14T21:49:33.8138847Z In the second example: 2025-08-14T21:49:33.8139236Z Calling mesh_3d["dp", "cp"] on rank 0, 1, 4, 5 returns a 2D submesh of DeviceMesh:([[0, 1], [4, 5]]). 2025-08-14T21:49:33.8139833Z Calling mesh_3d["dp", "cp"] on rank 2, 3, 6, 7 returns a 2D submesh of DeviceMesh:([[2, 3], [6, 7]]). 2025-08-14T21:49:33.8140489Z Calling mesh_3d["cp", "dp"] on rank 0, 1, 4, 5 returns a 2D submesh of DeviceMesh:([[0, 4], [1, 5]]). 2025-08-14T21:49:33.8141057Z Calling mesh_3d["cp", "dp"] on rank 2, 3, 6, 7 returns a 2D submesh of DeviceMesh:([[2, 6], [3, 7]]). 2025-08-14T21:49:33.8141472Z 2025-08-14T21:49:33.8141643Z Example:: 2025-08-14T21:49:33.8141822Z 2025-08-14T21:49:33.8141997Z >>> # xdoctest: +SKIP("no rank") 2025-08-14T21:49:33.8142340Z >>> from torch.distributed.device_mesh import DeviceMesh 2025-08-14T21:49:33.8142658Z >>> 2025-08-14T21:49:33.8142930Z >>> # Initialize a 2D device mesh as (2, 4) to represent the topology 2025-08-14T21:49:33.8143338Z >>> # of cross-host(dim 0), and within-host (dim 1). 2025-08-14T21:49:33.8143785Z >>> mesh_2d = init_device_mesh(device_type="cuda", (2,4), mesh_dim_names=("dp", "tp")) 2025-08-14T21:49:33.8144212Z >>> tp_mesh = mesh_2d["tp"] 2025-08-14T21:49:33.8144465Z >>> dp_mesh = mesh_2d["dp"] 2025-08-14T21:49:33.8144702Z >>> 2025-08-14T21:49:33.8144880Z >>> # Initialize a 3D mesh. 2025-08-14T21:49:33.8145314Z >>> mesh_3d = init_device_mesh(device_type="cuda", (2,2,2), mesh_dim_names=("dp", "pp", "cp")) 2025-08-14T21:49:33.8146048Z >>> # The order of the mesh_dim_names provided deteremines the order of dimensions in the submesh. 2025-08-14T21:49:33.8146567Z >>> dp_cp_mesh = mesh_3d["dp", "cp"] 2025-08-14T21:49:33.8150666Z >>> cp_dp_mesh = mesh_3d["cp", "dp"] 2025-08-14T21:49:33.8151060Z 2025-08-14T21:49:33.8151824Z 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-14T21:49:33.8152620Z 2025-08-14T21:49:33.8152942Z mesh_2d = init_device_mesh(device_type="cuda", (2,4), mesh_dim_names=("dp", "tp")) 2025-08-14T21:49:33.8153387Z ^ 2025-08-14T21:49:33.8153694Z warnings.warn(msg) 2025-08-14T21:49:33.8153907Z 2025-08-14T21:49:33.8154279Z --- Parse Warning: 9 / 17 --- 2025-08-14T21:49:33.8155276Z 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-14T21:49:33.8156499Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-14T21:49:33.8156889Z 2025-08-14T21:49:33.8157287Z Abstract class defining the protocol used by save_state_dict to plan the save process. 2025-08-14T21:49:33.8157762Z 2025-08-14T21:49:33.8158116Z SavePlanners are stateful objects that can be used to customize the whole save process. 2025-08-14T21:49:33.8158552Z 2025-08-14T21:49:33.8158938Z SavePlanner acts as an access proxy to the state_dict, so any transformation done to it 2025-08-14T21:49:33.8159403Z will be visible to the whole process. 2025-08-14T21:49:33.8159665Z 2025-08-14T21:49:33.8160013Z A planner subclass can expect the following sequence of calls during save_state_dict: 2025-08-14T21:49:33.8160448Z 2025-08-14T21:49:33.8160654Z 1) set_up_planner - called on all ranks. 2025-08-14T21:49:33.8160969Z Signals the start of a checkpoint save. 2025-08-14T21:49:33.8161238Z 2025-08-14T21:49:33.8161439Z 2) create_local_plan - called on all ranks. 2025-08-14T21:49:33.8161892Z Process the state_dict and produces a `SavePlan` that will be sent for global planning. 2025-08-14T21:49:33.8162339Z 2025-08-14T21:49:33.8162597Z 3) create_global_plan - called on the coordinator rank only. 2025-08-14T21:49:33.8163086Z Takes the SavePlan from all ranks and make any global decision. 2025-08-14T21:49:33.8163456Z 2025-08-14T21:49:33.8163654Z 4) finish_plan - called on all ranks. 2025-08-14T21:49:33.8164056Z This gives each rank a chance to adjust to global planning decisions. 2025-08-14T21:49:33.8164414Z 2025-08-14T21:49:33.8164643Z 5) resolve_data - called multiple times on each rank 2025-08-14T21:49:33.8165058Z Lookups a value on the `state_dict` for the storage layer to write. 2025-08-14T21:49:33.8165412Z 2025-08-14T21:49:33.8165768Z Users are recommended to extend DefaultSavePlanner instead of this interface directly as 2025-08-14T21:49:33.8166313Z most changes can be expressed by changes in a single method. 2025-08-14T21:49:33.8166636Z 2025-08-14T21:49:33.8166846Z There are 3 usual patterns of extension: 2025-08-14T21:49:33.8167118Z 2025-08-14T21:49:33.8167434Z Rewriting state_dict. This is the simplest way to extend the save process as it 2025-08-14T21:49:33.8167982Z doesn't requite understanding the intrincacies of how SavePlan works: 2025-08-14T21:49:33.8168354Z 2025-08-14T21:49:33.8168550Z >>> # xdoctest: +SKIP("undefined vars") 2025-08-14T21:49:33.8168898Z >>> class RenamePlanner(DefaultSavePlanner): 2025-08-14T21:49:33.8169243Z >>> def set_up_planner( 2025-08-14T21:49:33.8169926Z >>> self, 2025-08-14T21:49:33.8170167Z >>> state_dict: STATE_DICT_TYPE, 2025-08-14T21:49:33.8170471Z >>> storage_meta: Optional[StorageMeta], 2025-08-14T21:49:33.8170787Z >>> is_coordinator: bool, 2025-08-14T21:49:33.8171050Z >>> ) -> None: 2025-08-14T21:49:33.8172038Z >>> # prefix all keys with `foo_`` 2025-08-14T21:49:33.8172518Z >>> super().set_up_planner({"foo_" + k: v for k, v in state_dict.items()}, storage_meta, is_coordinator) 2025-08-14T21:49:33.8172944Z 2025-08-14T21:49:33.8173353Z Modifying local plan and lookup in tandem. This is useful when fine control of how data is persisted 2025-08-14T21:49:33.8173813Z 2025-08-14T21:49:33.8174018Z >>> # xdoctest: +SKIP("undefined vars") 2025-08-14T21:49:33.8174323Z >>> class FP16Planner(DefaultSavePlanner): 2025-08-14T21:49:33.8174692Z >>> def create_local_plan(self): 2025-08-14T21:49:33.8175045Z >>> plan = super().create_local_plan() 2025-08-14T21:49:33.8175343Z >>> for p in plan: 2025-08-14T21:49:33.8175612Z >>> if p.tensor_data is not None: 2025-08-14T21:49:33.8176009Z >>> p.tensor_data.properties.dtype = torch.float16 2025-08-14T21:49:33.8176342Z >>> return plan 2025-08-14T21:49:33.8176562Z >>> 2025-08-14T21:49:33.8176768Z >>> def resolve_data(self, write_item): 2025-08-14T21:49:33.8177077Z >>> item = super().resolve_data(write_item) 2025-08-14T21:49:33.8177543Z >>> return item if write_item.type == WriteItemType.BYTE_IO else item.to(torch.float16) 2025-08-14T21:49:33.8177965Z 2025-08-14T21:49:33.8178403Z Using the global planning step to make central decisions that can't be made individually by each rank 2025-08-14T21:49:33.8178892Z 2025-08-14T21:49:33.8179086Z >>> # xdoctest: +SKIP("undefined vars") 2025-08-14T21:49:33.8179383Z >>> from itertools import zip_longest 2025-08-14T21:49:33.8179666Z >>> from dataclasses import replace 2025-08-14T21:49:33.8180016Z >>> class DDPLoadBalancingPlanner(DefaultSavePlanner): 2025-08-14T21:49:33.8180564Z >>> # This uses the default local plan behavior of having all non-sharded writes in rank 0 2025-08-14T21:49:33.8181066Z >>> # This sample doesn't handle ShardedTensors 2025-08-14T21:49:33.8181394Z >>> def create_global_plan(self, all_plans): 2025-08-14T21:49:33.8181733Z >>> iters = [iter(all_plans[0].items)] * len(all_plans) 2025-08-14T21:49:33.8182057Z >>> items_per_rank = [ 2025-08-14T21:49:33.8182342Z >>> [item for item in items if item is not None] 2025-08-14T21:49:33.8182712Z >>> for items in zip(*zip_longest(*iters), strict=True) 2025-08-14T21:49:33.8183021Z >>> ] 2025-08-14T21:49:33.8183223Z >>> all_plans = [ 2025-08-14T21:49:33.8183474Z >>> replace(plan, items=items) 2025-08-14T21:49:33.8183850Z >>> for plan, items in zip(all_plans, items_per_rank, strict=True) 2025-08-14T21:49:33.8184199Z >>> ] 2025-08-14T21:49:33.8184432Z >>> return super().create_global_plan(all_plans) 2025-08-14T21:49:33.8184732Z 2025-08-14T21:49:33.8185070Z Finally, some planners need to save additional metadata in the checkpoint, this is 2025-08-14T21:49:33.8185657Z accomplished by having each rank contribute their data items in the local plan and 2025-08-14T21:49:33.8186140Z the global planner aggregate them: 2025-08-14T21:49:33.8186392Z 2025-08-14T21:49:33.8186625Z >>> # xdoctest: +SKIP("undefined vars") 2025-08-14T21:49:33.8186961Z >>> class SaveExtraDataPlanner(DefaultSavePlanner): 2025-08-14T21:49:33.8187325Z >>> def create_local_plan(self) -> SavePlan: 2025-08-14T21:49:33.8187630Z >>> plan = super().create_local_plan() 2025-08-14T21:49:33.8187981Z >>> return replace(plan, planner_data="per-rank-data") 2025-08-14T21:49:33.8188346Z >>> 2025-08-14T21:49:33.8188711Z >>> def create_global_plan(self, all_plans: List[SavePlan]) -> Tuple[List[SavePlan], Metadata]: 2025-08-14T21:49:33.8189277Z >>> global_plan, metadata = super().create_global_plan(all_plans) 2025-08-14T21:49:33.8189695Z >>> merged_data = [p.planner_data for p in global_plan] 2025-08-14T21:49:33.8190391Z >>> metadata = replace(metadata, planner_data=merged_data) 2025-08-14T21:49:33.8190746Z >>> return global_plan, metadata 2025-08-14T21:49:33.8191112Z 2025-08-14T21:49:33.8191514Z Original Error: IndentationError('expected an indented block', ('', 9, 0, '_._ = None\n')) 2025-08-14T21:49:33.8192054Z 2025-08-14T21:49:33.8192208Z _._ = None 2025-08-14T21:49:33.8192396Z ^ 2025-08-14T21:49:33.8192603Z warnings.warn(msg) 2025-08-14T21:49:33.8192818Z 2025-08-14T21:49:33.8193176Z --- Parse Warning: 10 / 17 --- 2025-08-14T21:49:33.8194172Z 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-14T21:49:33.8195359Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-14T21:49:33.8195761Z 2025-08-14T21:49:33.8196113Z Abstract class defining the protocol used by load_state_dict to plan the load process. 2025-08-14T21:49:33.8196545Z 2025-08-14T21:49:33.8196904Z LoadPlanner are stateful objects that can be used to customize the whole load process. 2025-08-14T21:49:33.8197344Z 2025-08-14T21:49:33.8197716Z LoadPlanner acts as an access proxy to the state_dict, so any transformation done to it 2025-08-14T21:49:33.8198229Z will be visible to the whole process. 2025-08-14T21:49:33.8198533Z 2025-08-14T21:49:33.8198876Z A planner subclass can expect the following sequence of calls during load_state_dict: 2025-08-14T21:49:33.8199294Z 2025-08-14T21:49:33.8199520Z 1) set_up_planner - called on all ranks. 2025-08-14T21:49:33.8199834Z Signals the start of loading a checkpoint. 2025-08-14T21:49:33.8200119Z 2025-08-14T21:49:33.8200329Z 2) create_local_plan - called on all ranks. 2025-08-14T21:49:33.8200782Z Process the state_dict and produces a `LoadPlan` that will be sent for global planning. 2025-08-14T21:49:33.8201210Z 2025-08-14T21:49:33.8201452Z 3) create_global_plan - called on the coordinator rank only. 2025-08-14T21:49:33.8201888Z Takes the LoadPlan from all ranks and make any global decision. 2025-08-14T21:49:33.8202227Z 2025-08-14T21:49:33.8202457Z 4) load_bytes - called multiple times on each rank 2025-08-14T21:49:33.8202829Z This is called once per non-tensor value in state_dict. 2025-08-14T21:49:33.8203143Z 2025-08-14T21:49:33.8203445Z 5) resolve_tensor and commit_tensor - called multiple times on each rank 2025-08-14T21:49:33.8203943Z They are called in pair for each Tensor value in state_dict. 2025-08-14T21:49:33.8204316Z 2025-08-14T21:49:33.8204682Z Users are recommended to extend DefaultLoadPlanner instead of this interface directly as 2025-08-14T21:49:33.8205224Z most changes can be expressed by changes in a single method. 2025-08-14T21:49:33.8205551Z 2025-08-14T21:49:33.8205757Z There are two usual patterns of extension: 2025-08-14T21:49:33.8206023Z 2025-08-14T21:49:33.8206350Z Rewriting state_dict. This is the simplest way to extend the load process as it 2025-08-14T21:49:33.8206912Z doesn't requite understanding the intrincacies of how LoadPlan works. We need 2025-08-14T21:49:33.8207442Z to keep a reference to the original state_dict as load happens in place so 2025-08-14T21:49:33.8207864Z we need to be able to perform it in place 2025-08-14T21:49:33.8208132Z 2025-08-14T21:49:33.8208329Z >>> # xdoctest: +SKIP("undefined vars") 2025-08-14T21:49:33.8208698Z >>> class RenamePlanner(DefaultLoadPlanner): 2025-08-14T21:49:33.8209011Z >>> def set_up_planner( 2025-08-14T21:49:33.8209243Z >>> self, 2025-08-14T21:49:33.8209481Z >>> state_dict: STATE_DICT_TYPE, 2025-08-14T21:49:33.8209808Z >>> metadata: Metadata, 2025-08-14T21:49:33.8210159Z >>> is_coordinator: bool, 2025-08-14T21:49:33.8210411Z >>> ) -> None: 2025-08-14T21:49:33.8210649Z >>> self.original_state_dict = state_dict 2025-08-14T21:49:33.8211021Z >>> state_dict = {"foo_" + k: v for k, v in state_dict.items()} 2025-08-14T21:49:33.8211352Z >>> 2025-08-14T21:49:33.8211552Z >>> if self.flatten_sharded_tensors: 2025-08-14T21:49:33.8211890Z >>> state_dict = _flatten_sharded_tensors(state_dict) 2025-08-14T21:49:33.8212208Z >>> 2025-08-14T21:49:33.8212406Z >>> if self.flatten_state_dict: 2025-08-14T21:49:33.8212757Z >>> state_dict, self.mappings = flatten_state_dict(state_dict) 2025-08-14T21:49:33.8213101Z >>> 2025-08-14T21:49:33.8213308Z >>> self.state_dict = state_dict 2025-08-14T21:49:33.8213629Z >>> self.metadata = metadata 2025-08-14T21:49:33.8213920Z >>> self.is_coordinator = is_coordinator 2025-08-14T21:49:33.8214193Z >>> 2025-08-14T21:49:33.8214400Z >>> def load_bytes(self, read_item, value): 2025-08-14T21:49:33.8214688Z >>> # Remove the "foo_" prefix 2025-08-14T21:49:33.8215152Z >>> self.original_state_dict[read_item.dest_index.fqn[4:]] = torch.load(value, weights_only=False) 2025-08-14T21:49:33.8215649Z 2025-08-14T21:49:33.8215846Z 2025-08-14T21:49:33.8216205Z Modifying resolve_tensor and commit_tensor to handle load time transformation. 2025-08-14T21:49:33.8216606Z 2025-08-14T21:49:33.8216798Z >>> # xdoctest: +SKIP("undefined vars") 2025-08-14T21:49:33.8217128Z >>> class MetaModelMaterialize(DefaultSavePlanner): 2025-08-14T21:49:33.8217478Z >>> def resolve_tensor(self, read_item): 2025-08-14T21:49:33.8217789Z >>> tensor = super().resolve_tensor(read_item) 2025-08-14T21:49:33.8218154Z >>> return torch.empty_like(tensor, device="cpu") 2025-08-14T21:49:33.8218448Z >>> 2025-08-14T21:49:33.8218656Z >>> def commit_tensor(self, read_item, tensor): 2025-08-14T21:49:33.8219006Z >>> self.state_dict[read_item.dest_index.fqn] = tensor 2025-08-14T21:49:33.8219309Z 2025-08-14T21:49:33.8219722Z Original Error: IndentationError('expected an indented block', ('', 23, 0, '_._ = None\n')) 2025-08-14T21:49:33.8220206Z 2025-08-14T21:49:33.8220369Z _._ = None 2025-08-14T21:49:33.8220543Z ^ 2025-08-14T21:49:33.8220718Z warnings.warn(msg) 2025-08-14T21:49:33.8220920Z 2025-08-14T21:49:33.8221278Z --- Parse Warning: 11 / 17 --- 2025-08-14T21:49:33.8222325Z 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-14T21:49:33.8223445Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-14T21:49:33.8223850Z 2025-08-14T21:49:33.8224120Z ``FullStateDictConfig`` is a config class meant to be used with 2025-08-14T21:49:33.8224579Z ``StateDictType.FULL_STATE_DICT``. We recommend enabling both 2025-08-14T21:49:33.8225040Z ``offload_to_cpu=True`` and ``rank0_only=True`` when saving full state 2025-08-14T21:49:33.8225531Z dicts to save GPU memory and CPU memory, respectively. This config class 2025-08-14T21:49:33.8226019Z is meant to be used via the :func:`state_dict_type` context manager as 2025-08-14T21:49:33.8226361Z follows: 2025-08-14T21:49:33.8226541Z 2025-08-14T21:49:33.8226745Z >>> # xdoctest: +SKIP("undefined variables") 2025-08-14T21:49:33.8227283Z >>> from torch.distributed.fsdp import FullyShardedDataParallel as FSDP 2025-08-14T21:49:33.8227757Z >>> fsdp = FSDP(model, auto_wrap_policy=...) 2025-08-14T21:49:33.8228159Z >>> cfg = FullStateDictConfig(offload_to_cpu=True, rank0_only=True) 2025-08-14T21:49:33.8228682Z >>> with FSDP.state_dict_type(fsdp, StateDictType.FULL_STATE_DICT, cfg): 2025-08-14T21:49:33.8229087Z >>> state = fsdp.state_dict() 2025-08-14T21:49:33.8229466Z >>> # `state` will be empty on non rank 0 and contain CPU tensors on rank 0. 2025-08-14T21:49:33.8229978Z >>> # To reload checkpoint for inference, finetuning, transfer learning, etc: 2025-08-14T21:49:33.8230513Z >>> model = model_fn() # Initialize model in preparation for wrapping with FSDP 2025-08-14T21:49:33.8230908Z >>> if dist.get_rank() == 0: 2025-08-14T21:49:33.8231316Z >>> # Load checkpoint only on rank 0 to avoid memory redundancy 2025-08-14T21:49:33.8231720Z >>> state_dict = torch.load("my_checkpoint.pt") 2025-08-14T21:49:33.8232058Z >>> model.load_state_dict(state_dict) 2025-08-14T21:49:33.8232525Z >>> # All ranks initialize FSDP module as usual. `sync_module_states` argument 2025-08-14T21:49:33.8233096Z >>> # communicates loaded checkpoint states from rank 0 to rest of the world. 2025-08-14T21:49:33.8233545Z >>> fsdp = FSDP( 2025-08-14T21:49:33.8233760Z ... model, 2025-08-14T21:49:33.8234007Z ... device_id=torch.cuda.current_device(), 2025-08-14T21:49:33.8234310Z ... auto_wrap_policy=..., 2025-08-14T21:49:33.8234585Z ... sync_module_states=True, 2025-08-14T21:49:33.8234829Z ... ) 2025-08-14T21:49:33.8235166Z >>> # After this point, all ranks have FSDP model with loaded checkpoint. 2025-08-14T21:49:33.8235532Z 2025-08-14T21:49:33.8235692Z Attributes: 2025-08-14T21:49:33.8235990Z rank0_only (bool): If ``True``, then only rank 0 saves the full state 2025-08-14T21:49:33.8236447Z dict, and nonzero ranks save an empty dict. If ``False``, then all 2025-08-14T21:49:33.8236881Z ranks save the full state dict. (Default: ``False``) 2025-08-14T21:49:33.8237191Z 2025-08-14T21:49:33.8237603Z Original Error: IndentationError('expected an indented block', ('', 11, 1, '_._ = None\n')) 2025-08-14T21:49:33.8238088Z 2025-08-14T21:49:33.8238256Z _._ = None 2025-08-14T21:49:33.8238448Z ^ 2025-08-14T21:49:33.8238652Z warnings.warn(msg) 2025-08-14T21:49:33.8238870Z 2025-08-14T21:49:33.8239220Z --- Parse Warning: 12 / 17 --- 2025-08-14T21:49:33.8239825Z Running inductor/test_max_autotune 1/1 ... [2025-08-14 21:49:33.793754] 2025-08-14T21:49:33.8240219Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:49:33.8241192Z 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-14 21:49:33.796852] 2025-08-14T21:49:33.8242862Z 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-14T21:49:33.8243973Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-14T21:49:33.8244475Z Register a parametrization to a tensor in a module. 2025-08-14T21:49:33.8244777Z 2025-08-14T21:49:33.8245162Z Assume that ``tensor_name="weight"`` for simplicity. When accessing ``module.weight``, 2025-08-14T21:49:33.8245773Z the module will return the parametrized version ``parametrization(module.weight)``. 2025-08-14T21:49:33.8246359Z If the original tensor requires a gradient, the backward pass will differentiate 2025-08-14T21:49:33.8247014Z through :attr:`parametrization`, and the optimizer will update the tensor accordingly. 2025-08-14T21:49:33.8247441Z 2025-08-14T21:49:33.8247830Z The first time that a module registers a parametrization, this function will add an attribute 2025-08-14T21:49:33.8248734Z ``parametrizations`` to the module of type :class:`~ParametrizationList`. 2025-08-14T21:49:33.8249139Z 2025-08-14T21:49:33.8249478Z The list of parametrizations on the tensor ``weight`` will be accessible under 2025-08-14T21:49:33.8249925Z ``module.parametrizations.weight``. 2025-08-14T21:49:33.8250213Z 2025-08-14T21:49:33.8250484Z The original tensor will be accessible under 2025-08-14T21:49:33.8250894Z ``module.parametrizations.weight.original``. 2025-08-14T21:49:33.8251191Z 2025-08-14T21:49:33.8251529Z Parametrizations may be concatenated by registering several parametrizations 2025-08-14T21:49:33.8251956Z on the same attribute. 2025-08-14T21:49:33.8252189Z 2025-08-14T21:49:33.8252503Z The training mode of a registered parametrization is updated on registration 2025-08-14T21:49:33.8252988Z to match the training mode of the host module 2025-08-14T21:49:33.8253274Z 2025-08-14T21:49:33.8253637Z Parametrized parameters and buffers have an inbuilt caching system that can be activated 2025-08-14T21:49:33.8254131Z using the context manager :func:`cached`. 2025-08-14T21:49:33.8254410Z 2025-08-14T21:49:33.8266145Z A :attr:`parametrization` may optionally implement a method with signature 2025-08-14T21:49:33.8266690Z 2025-08-14T21:49:33.8266914Z .. code-block:: python 2025-08-14T21:49:33.8267154Z 2025-08-14T21:49:33.8267579Z def right_inverse(self, X: Tensor) -> Union[Tensor, Sequence[Tensor]] 2025-08-14T21:49:33.8268036Z 2025-08-14T21:49:33.8268420Z This method is called on the unparametrized tensor when the first parametrization 2025-08-14T21:49:33.8268964Z is registered to compute the initial value of the original tensor. 2025-08-14T21:49:33.8269524Z If this method is not implemented, the original tensor will be just the unparametrized tensor. 2025-08-14T21:49:33.8269980Z 2025-08-14T21:49:33.8270352Z If all the parametrizations registered on a tensor implement `right_inverse` it is possible 2025-08-14T21:49:33.8271062Z to initialize a parametrized tensor by assigning to it, as shown in the example below. 2025-08-14T21:49:33.8271496Z 2025-08-14T21:49:33.8271787Z It is possible for the first parametrization to depend on several inputs. 2025-08-14T21:49:33.8272318Z This may be implemented returning a tuple of tensors from ``right_inverse`` 2025-08-14T21:49:33.8272854Z (see the example implementation of a ``RankOne`` parametrization below). 2025-08-14T21:49:33.8273236Z 2025-08-14T21:49:33.8273671Z In this case, the unconstrained tensors are also located under ``module.parametrizations.weight`` 2025-08-14T21:49:33.8274250Z with names ``original0``, ``original1``,... 2025-08-14T21:49:33.8274534Z 2025-08-14T21:49:33.8274708Z .. note:: 2025-08-14T21:49:33.8274901Z 2025-08-14T21:49:33.8275235Z If unsafe=False (default) both the forward and right_inverse methods will be called 2025-08-14T21:49:33.8275722Z once to perform a number of consistency checks. 2025-08-14T21:49:33.8276206Z If unsafe=True, then right_inverse will be called if the tensor is not parametrized, 2025-08-14T21:49:33.8276656Z and nothing will be called otherwise. 2025-08-14T21:49:33.8276932Z 2025-08-14T21:49:33.8277090Z .. note:: 2025-08-14T21:49:33.8277283Z 2025-08-14T21:49:33.8277547Z In most situations, ``right_inverse`` will be a function such that 2025-08-14T21:49:33.8277943Z ``forward(right_inverse(X)) == X`` (see 2025-08-14T21:49:33.8278484Z `right inverse `_). 2025-08-14T21:49:33.8279084Z Sometimes, when the parametrization is not surjective, it may be reasonable 2025-08-14T21:49:33.8279562Z to relax this. 2025-08-14T21:49:33.8279773Z 2025-08-14T21:49:33.8279993Z .. warning:: 2025-08-14T21:49:33.8280231Z 2025-08-14T21:49:33.8280580Z If a parametrization depends on several inputs, :func:`~register_parametrization` 2025-08-14T21:49:33.8281165Z will register a number of new parameters. If such parametrization is registered 2025-08-14T21:49:33.8281749Z after the optimizer is created, these new parameters will need to be added manually 2025-08-14T21:49:33.8282290Z to the optimizer. See :meth:`torch.Optimizer.add_param_group`. 2025-08-14T21:49:33.8282635Z 2025-08-14T21:49:33.8282807Z Args: 2025-08-14T21:49:33.8283099Z module (nn.Module): module on which to register the parametrization 2025-08-14T21:49:33.8283596Z tensor_name (str): name of the parameter or buffer on which to register 2025-08-14T21:49:33.8283974Z the parametrization 2025-08-14T21:49:33.8284377Z parametrization (nn.Module): the parametrization to register 2025-08-14T21:49:33.8284733Z Keyword args: 2025-08-14T21:49:33.8285066Z unsafe (bool): a boolean flag that denotes whether the parametrization 2025-08-14T21:49:33.8285600Z may change the dtype and shape of the tensor. Default: `False` 2025-08-14T21:49:33.8286167Z Warning: the parametrization is not checked for consistency upon registration. 2025-08-14T21:49:33.8286628Z Enable this flag at your own risk. 2025-08-14T21:49:33.8286939Z 2025-08-14T21:49:33.8287111Z Raises: 2025-08-14T21:49:33.8287481Z ValueError: if the module does not have a parameter or a buffer named :attr:`tensor_name` 2025-08-14T21:49:33.8287922Z 2025-08-14T21:49:33.8288089Z Examples: 2025-08-14T21:49:33.8288361Z >>> # xdoctest: +REQUIRES(env:TORCH_DOCTEST_LAPACK) 2025-08-14T21:49:33.8288693Z >>> import torch 2025-08-14T21:49:33.8288934Z >>> import torch.nn as nn 2025-08-14T21:49:33.8289254Z >>> import torch.nn.utils.parametrize as P 2025-08-14T21:49:33.8289546Z >>> 2025-08-14T21:49:33.8289764Z >>> class Symmetric(nn.Module): 2025-08-14T21:49:33.8290046Z >>> def forward(self, X): 2025-08-14T21:49:33.8290408Z >>> return X.triu() + X.triu(1).T # Return a symmetric matrix 2025-08-14T21:49:33.8290744Z >>> 2025-08-14T21:49:33.8291002Z >>> def right_inverse(self, A): 2025-08-14T21:49:33.8291302Z >>> return A.triu() 2025-08-14T21:49:33.8291591Z >>> 2025-08-14T21:49:33.8291810Z >>> m = nn.Linear(5, 5) 2025-08-14T21:49:33.8292131Z >>> P.register_parametrization(m, "weight", Symmetric()) 2025-08-14T21:49:33.8292620Z >>> print(torch.allclose(m.weight, m.weight.T)) # m.weight is now symmetric 2025-08-14T21:49:33.8293026Z True 2025-08-14T21:49:33.8293253Z >>> A = torch.rand(5, 5) 2025-08-14T21:49:33.8293518Z >>> A = A + A.T # A is now symmetric 2025-08-14T21:49:33.8293905Z >>> m.weight = A # Initialize the weight to be the symmetric matrix A 2025-08-14T21:49:33.8294310Z >>> print(torch.allclose(m.weight, A)) 2025-08-14T21:49:33.8294581Z True 2025-08-14T21:49:33.8294769Z 2025-08-14T21:49:33.8294944Z >>> class RankOne(nn.Module): 2025-08-14T21:49:33.8295229Z >>> def forward(self, x, y): 2025-08-14T21:49:33.8295537Z >>> # Form a rank 1 matrix multiplying two vectors 2025-08-14T21:49:33.8295880Z >>> return x.unsqueeze(-1) @ y.unsqueeze(-2) 2025-08-14T21:49:33.8296166Z >>> 2025-08-14T21:49:33.8296431Z >>> def right_inverse(self, Z): 2025-08-14T21:49:33.8296738Z >>> # Project Z onto the rank 1 matrices 2025-08-14T21:49:33.8297117Z >>> U, S, Vh = torch.linalg.svd(Z, full_matrices=False) 2025-08-14T21:49:33.8297509Z >>> # Return rescaled singular vectors 2025-08-14T21:49:33.8297862Z >>> s0_sqrt = S[0].sqrt().unsqueeze(-1) 2025-08-14T21:49:33.8298212Z >>> return U[..., :, 0] * s0_sqrt, Vh[..., 0, :] * s0_sqrt 2025-08-14T21:49:33.8298511Z >>> 2025-08-14T21:49:33.8298758Z >>> linear_rank_one = P.register_parametrization( 2025-08-14T21:49:33.8299092Z ... nn.Linear(4, 4), "weight", RankOne() 2025-08-14T21:49:33.8299381Z ... ) 2025-08-14T21:49:33.8299679Z >>> print(torch.linalg.matrix_rank(linear_rank_one.weight).item()) 2025-08-14T21:49:33.8300029Z 1 2025-08-14T21:49:33.8300201Z 2025-08-14T21:49:33.8300354Z 2025-08-14T21:49:33.8300771Z Original Error: IndentationError('expected an indented block', ('', 3, 0, '_._ = None\n')) 2025-08-14T21:49:33.8301295Z 2025-08-14T21:49:33.8301456Z _._ = None 2025-08-14T21:49:33.8301628Z ^ 2025-08-14T21:49:33.8301814Z warnings.warn(msg) 2025-08-14T21:49:33.8302021Z 2025-08-14T21:49:33.8302400Z --- Parse Warning: 13 / 17 --- 2025-08-14T21:49:33.8303485Z 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-14T21:49:33.8304635Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-14T21:49:33.8305132Z Reduce learning rate when a metric has stopped improving. 2025-08-14T21:49:33.8305455Z 2025-08-14T21:49:33.8305743Z Models often benefit from reducing the learning rate by a factor 2025-08-14T21:49:33.8306203Z of 2-10 once learning stagnates. This scheduler reads a metrics 2025-08-14T21:49:33.8306639Z quantity and if no improvement is seen for a 'patience' number 2025-08-14T21:49:33.8307021Z of epochs, the learning rate is reduced. 2025-08-14T21:49:33.8307290Z 2025-08-14T21:49:33.8307458Z Args: 2025-08-14T21:49:33.8307677Z optimizer (Optimizer): Wrapped optimizer. 2025-08-14T21:49:33.8308043Z mode (str): One of `min`, `max`. In `min` mode, lr will 2025-08-14T21:49:33.8308448Z be reduced when the quantity monitored has stopped 2025-08-14T21:49:33.8308850Z decreasing; in `max` mode it will be reduced when the 2025-08-14T21:49:33.8309315Z quantity monitored has stopped increasing. Default: 'min'. 2025-08-14T21:49:33.8309741Z factor (float): Factor by which the learning rate will be 2025-08-14T21:49:33.8310127Z reduced. new_lr = lr * factor. Default: 0.1. 2025-08-14T21:49:33.8310542Z patience (int): The number of allowed epochs with no improvement after 2025-08-14T21:49:33.8311032Z which the learning rate will be reduced. 2025-08-14T21:49:33.8311447Z For example, consider the case of having no patience (`patience = 0`). 2025-08-14T21:49:33.8312095Z In the first epoch, a baseline is established and is always considered good as there's no previous baseline. 2025-08-14T21:49:33.8312713Z In the second epoch, if the performance is worse than the baseline, 2025-08-14T21:49:33.8313137Z we have what is considered an intolerable epoch. 2025-08-14T21:49:33.8313621Z Since the count of intolerable epochs (1) is greater than the patience level (0), 2025-08-14T21:49:33.8314105Z the learning rate is reduced at the end of this epoch. 2025-08-14T21:49:33.8314737Z From the third epoch onwards, the learning rate continues to be reduced at the end of each epoch 2025-08-14T21:49:33.8315518Z if the performance is worse than the baseline. If the performance improves or remains the same, 2025-08-14T21:49:33.8316007Z the learning rate is not adjusted. 2025-08-14T21:49:33.8316308Z Default: 10. 2025-08-14T21:49:33.8316662Z threshold (float): Threshold for measuring the new optimum, 2025-08-14T21:49:33.8317083Z to only focus on significant changes. Default: 1e-4. 2025-08-14T21:49:33.8317477Z threshold_mode (str): One of `rel`, `abs`. In `rel` mode, 2025-08-14T21:49:33.8317883Z dynamic_threshold = best * ( 1 + threshold ) in 'max' 2025-08-14T21:49:33.8318262Z mode or best * ( 1 - threshold ) in `min` mode. 2025-08-14T21:49:33.8318631Z In `abs` mode, dynamic_threshold = best + threshold in 2025-08-14T21:49:33.8319044Z `max` mode or best - threshold in `min` mode. Default: 'rel'. 2025-08-14T21:49:33.8319460Z cooldown (int): Number of epochs to wait before resuming 2025-08-14T21:49:33.8319871Z normal operation after lr has been reduced. Default: 0. 2025-08-14T21:49:33.8320823Z min_lr (float or list): A scalar or a list of scalars. A 2025-08-14T21:49:33.8321267Z lower bound on the learning rate of all param groups 2025-08-14T21:49:33.8321683Z or each group respectively. Default: 0. 2025-08-14T21:49:33.8322100Z eps (float): Minimal decay applied to lr. If the difference 2025-08-14T21:49:33.8322611Z between new and old lr is smaller than eps, the update is 2025-08-14T21:49:33.8323007Z ignored. Default: 1e-8. 2025-08-14T21:49:33.8323615Z 2025-08-14T21:49:33.8323832Z Example: 2025-08-14T21:49:33.8324057Z >>> # xdoctest: +SKIP 2025-08-14T21:49:33.8324428Z >>> optimizer = torch.optim.SGD(model.parameters(), lr=0.1, momentum=0.9) 2025-08-14T21:49:33.8324894Z >>> scheduler = ReduceLROnPlateau(optimizer, "min") 2025-08-14T21:49:33.8325234Z >>> for epoch in range(10): 2025-08-14T21:49:33.8325493Z >>> train(...) 2025-08-14T21:49:33.8325748Z >>> val_loss = validate(...) 2025-08-14T21:49:33.8326067Z >>> # Note that step should be called after validate() 2025-08-14T21:49:33.8326401Z >>> scheduler.step(val_loss) 2025-08-14T21:49:33.8326654Z 2025-08-14T21:49:33.8326938Z .. image:: ../scripts/lr_scheduler_images/ReduceLROnPlateau.png 2025-08-14T21:49:33.8327288Z 2025-08-14T21:49:33.8327739Z Original Error: IndentationError('unexpected indent', ('', 8, 4, ' scheduler.step(val_loss)\n')) 2025-08-14T21:49:33.8328262Z 2025-08-14T21:49:33.8328453Z scheduler.step(val_loss) 2025-08-14T21:49:33.8328703Z ^ 2025-08-14T21:49:33.8328876Z warnings.warn(msg) 2025-08-14T21:49:33.8329134Z 2025-08-14T21:49:33.8329518Z --- Parse Warning: 14 / 17 --- 2025-08-14T21:49:33.8330479Z 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-14T21:49:33.8331493Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-14T21:49:33.8331880Z 2025-08-14T21:49:33.8332173Z vmap is the vectorizing map; ``vmap(func)`` returns a new function that 2025-08-14T21:49:33.8332641Z maps ``func`` over some dimension of the inputs. Semantically, vmap 2025-08-14T21:49:33.8333126Z pushes the map into PyTorch operations called by ``func``, effectively 2025-08-14T21:49:33.8333512Z vectorizing those operations. 2025-08-14T21:49:33.8333760Z 2025-08-14T21:49:33.8334036Z vmap is useful for handling batch dimensions: one can write a function 2025-08-14T21:49:33.8334584Z ``func`` that runs on examples and then lift it to a function that can 2025-08-14T21:49:33.8335071Z take batches of examples with ``vmap(func)``. vmap can also be used to 2025-08-14T21:49:33.8335557Z compute batched gradients when composed with autograd. 2025-08-14T21:49:33.8335936Z 2025-08-14T21:49:33.8336146Z .. note:: 2025-08-14T21:49:33.8336670Z :func:`torch.vmap` is aliased to :func:`torch.func.vmap` for 2025-08-14T21:49:33.8337072Z convenience. Use whichever one you'd like. 2025-08-14T21:49:33.8337141Z 2025-08-14T21:49:33.8337209Z Args: 2025-08-14T21:49:33.8337396Z func (function): A Python function that takes one or more arguments. 2025-08-14T21:49:33.8337500Z Must return one or more Tensors. 2025-08-14T21:49:33.8337679Z in_dims (int or nested structure): Specifies which dimension of the 2025-08-14T21:49:33.8337833Z inputs should be mapped over. ``in_dims`` should have a 2025-08-14T21:49:33.8338012Z structure like the inputs. If the ``in_dim`` for a particular 2025-08-14T21:49:33.8338172Z input is None, then that indicates there is no map dimension. 2025-08-14T21:49:33.8338294Z Default: 0. 2025-08-14T21:49:33.8338474Z out_dims (int or Tuple[int]): Specifies where the mapped dimension 2025-08-14T21:49:33.8338643Z should appear in the outputs. If ``out_dims`` is a Tuple, then 2025-08-14T21:49:33.8338777Z it should have one element per output. Default: 0. 2025-08-14T21:49:33.8338945Z randomness (str): Specifies whether the randomness in this 2025-08-14T21:49:33.8339130Z vmap should be the same or different across batches. If 'different', 2025-08-14T21:49:33.8339345Z the randomness for each batch will be different. If 'same', the 2025-08-14T21:49:33.8339535Z randomness will be the same across batches. If 'error', any calls to 2025-08-14T21:49:33.8339726Z random functions will error. Default: 'error'. WARNING: this flag 2025-08-14T21:49:33.8339904Z only applies to random PyTorch operations and does not apply to 2025-08-14T21:49:33.8340022Z Python's random module or numpy randomness. 2025-08-14T21:49:33.8340231Z chunk_size (None or int): If None (default), apply a single vmap over inputs. 2025-08-14T21:49:33.8340423Z If not None, then compute the vmap :attr:`chunk_size` samples at a time. 2025-08-14T21:49:33.8340653Z Note that :attr:`chunk_size=1` is equivalent to computing the vmap with a for-loop. 2025-08-14T21:49:33.8340902Z If you run into memory issues computing the vmap, please try a non-None chunk_size. 2025-08-14T21:49:33.8340970Z 2025-08-14T21:49:33.8341041Z Returns: 2025-08-14T21:49:33.8341207Z Returns a new "batched" function. It takes the same inputs as 2025-08-14T21:49:33.8341422Z ``func``, except each input has an extra dimension at the index 2025-08-14T21:49:33.8341590Z specified by ``in_dims``. It takes returns the same outputs as 2025-08-14T21:49:33.8341752Z ``func``, except each output has an extra dimension at the index 2025-08-14T21:49:33.8341888Z specified by ``out_dims``. 2025-08-14T21:49:33.8341952Z 2025-08-14T21:49:33.8342022Z .. warning: 2025-08-14T21:49:33.8342251Z :func:`vmap` works best with functional-style code. Please do not 2025-08-14T21:49:33.8342413Z perform any side-effects in ``func``, with the exception of 2025-08-14T21:49:33.8342624Z in-place PyTorch operations. Examples of side-effects include mutating 2025-08-14T21:49:33.8342821Z Python data structures and assigning values to variables not captured 2025-08-14T21:49:33.8342904Z in ``func``. 2025-08-14T21:49:33.8342971Z 2025-08-14T21:49:33.8343178Z One example of using :func:`vmap` is to compute batched dot products. PyTorch 2025-08-14T21:49:33.8343376Z doesn't provide a batched ``torch.dot`` API; instead of unsuccessfully 2025-08-14T21:49:33.8343607Z rummaging through docs, use :func:`vmap` to construct a new function. 2025-08-14T21:49:33.8343672Z 2025-08-14T21:49:33.8343777Z >>> torch.dot # [D], [D] -> [] 2025-08-14T21:49:33.8343955Z >>> batched_dot = torch.func.vmap(torch.dot) # [N, D], [N, D] -> [N] 2025-08-14T21:49:33.8344269Z >>> x, y = torch.randn(2, 5), torch.randn(2, 5) 2025-08-14T21:49:33.8344357Z >>> batched_dot(x, y) 2025-08-14T21:49:33.8344432Z 2025-08-14T21:49:33.8344633Z :func:`vmap` can be helpful in hiding batch dimensions, leading to a simpler 2025-08-14T21:49:33.8344730Z model authoring experience. 2025-08-14T21:49:33.8344807Z 2025-08-14T21:49:33.8344911Z >>> batch_size, feature_size = 3, 5 2025-08-14T21:49:33.8345064Z >>> weights = torch.randn(feature_size, requires_grad=True) 2025-08-14T21:49:33.8345133Z >>> 2025-08-14T21:49:33.8345231Z >>> def model(feature_vec): 2025-08-14T21:49:33.8345356Z >>> # Very simple linear model with activation 2025-08-14T21:49:33.8345462Z >>> return feature_vec.dot(weights).relu() 2025-08-14T21:49:33.8345576Z >>> 2025-08-14T21:49:33.8345706Z >>> examples = torch.randn(batch_size, feature_size) 2025-08-14T21:49:33.8345810Z >>> result = torch.vmap(model)(examples) 2025-08-14T21:49:33.8345877Z 2025-08-14T21:49:33.8346113Z :func:`vmap` can also help vectorize computations that were previously difficult 2025-08-14T21:49:33.8346317Z or impossible to batch. One example is higher-order gradient computation. 2025-08-14T21:49:33.8346519Z The PyTorch autograd engine computes vjps (vector-Jacobian products). 2025-08-14T21:49:33.8346768Z Computing a full Jacobian matrix for some function f: R^N -> R^N usually 2025-08-14T21:49:33.8346992Z requires N calls to ``autograd.grad``, one per Jacobian row. Using :func:`vmap`, 2025-08-14T21:49:33.8347199Z we can vectorize the whole computation, computing the Jacobian in a single 2025-08-14T21:49:33.8347296Z call to ``autograd.grad``. 2025-08-14T21:49:33.8347367Z 2025-08-14T21:49:33.8347444Z >>> # Setup 2025-08-14T21:49:33.8347563Z >>> N = 5 2025-08-14T21:49:33.8347655Z >>> f = lambda x: x**2 2025-08-14T21:49:33.8347764Z >>> x = torch.randn(N, requires_grad=True) 2025-08-14T21:49:33.8347836Z >>> y = f(x) 2025-08-14T21:49:33.8347964Z >>> I_N = torch.eye(N) 2025-08-14T21:49:33.8348034Z >>> 2025-08-14T21:49:33.8348123Z >>> # Sequential approach 2025-08-14T21:49:33.8348352Z >>> jacobian_rows = [torch.autograd.grad(y, x, v, retain_graph=True)[0] 2025-08-14T21:49:33.8348465Z >>> for v in I_N.unbind()] 2025-08-14T21:49:33.8348568Z >>> jacobian = torch.stack(jacobian_rows) 2025-08-14T21:49:33.8348636Z >>> 2025-08-14T21:49:33.8348749Z >>> # vectorized gradient computation 2025-08-14T21:49:33.8348827Z >>> def get_vjp(v): 2025-08-14T21:49:33.8348939Z >>> return torch.autograd.grad(y, x, v) 2025-08-14T21:49:33.8349053Z >>> jacobian = torch.vmap(get_vjp)(I_N) 2025-08-14T21:49:33.8349120Z 2025-08-14T21:49:33.8349354Z :func:`vmap` can also be nested, producing an output with multiple batched dimensions 2025-08-14T21:49:33.8349423Z 2025-08-14T21:49:33.8349520Z >>> torch.dot # [D], [D] -> [] 2025-08-14T21:49:33.8349608Z >>> batched_dot = torch.vmap( 2025-08-14T21:49:33.8349693Z ... torch.vmap(torch.dot) 2025-08-14T21:49:33.8349807Z ... ) # [N1, N0, D], [N1, N0, D] -> [N1, N0] 2025-08-14T21:49:33.8349926Z >>> x, y = torch.randn(2, 3, 5), torch.randn(2, 3, 5) 2025-08-14T21:49:33.8350037Z >>> batched_dot(x, y) # tensor of size [2, 3] 2025-08-14T21:49:33.8350100Z 2025-08-14T21:49:33.8350319Z If the inputs are not batched along the first dimension, ``in_dims`` specifies 2025-08-14T21:49:33.8350449Z the dimension that each inputs are batched along as 2025-08-14T21:49:33.8350562Z 2025-08-14T21:49:33.8350659Z >>> torch.dot # [N], [N] -> [] 2025-08-14T21:49:33.8350856Z >>> batched_dot = torch.vmap(torch.dot, in_dims=1) # [N, D], [N, D] -> [D] 2025-08-14T21:49:33.8351030Z >>> x, y = torch.randn(2, 5), torch.randn(2, 5) 2025-08-14T21:49:33.8351343Z >>> batched_dot( 2025-08-14T21:49:33.8351424Z ... x, y 2025-08-14T21:49:33.8351593Z ... ) # output is [5] instead of [2] if batched along the 0th dimension 2025-08-14T21:49:33.8351659Z 2025-08-14T21:49:33.8351912Z If there are multiple inputs each of which is batched along different dimensions, 2025-08-14T21:49:33.8352092Z ``in_dims`` must be a tuple with the batch dimension for each input as 2025-08-14T21:49:33.8352162Z 2025-08-14T21:49:33.8352255Z >>> torch.dot # [D], [D] -> [] 2025-08-14T21:49:33.8352461Z >>> batched_dot = torch.vmap(torch.dot, in_dims=(0, None)) # [N, D], [D] -> [N] 2025-08-14T21:49:33.8352568Z >>> x, y = torch.randn(2, 5), torch.randn(5) 2025-08-14T21:49:33.8352646Z >>> batched_dot( 2025-08-14T21:49:33.8352766Z ... x, y 2025-08-14T21:49:33.8352939Z ... ) # second arg doesn't have a batch dim because in_dim[1] was None 2025-08-14T21:49:33.8353002Z 2025-08-14T21:49:33.8353222Z If the input is a Python struct, ``in_dims`` must be a tuple containing a struct 2025-08-14T21:49:33.8353317Z matching the shape of the input: 2025-08-14T21:49:33.8353383Z 2025-08-14T21:49:33.8353507Z >>> f = lambda dict: torch.dot(dict["x"], dict["y"]) 2025-08-14T21:49:33.8353623Z >>> x, y = torch.randn(2, 5), torch.randn(5) 2025-08-14T21:49:33.8353745Z >>> input = {"x": x, "y": y} 2025-08-14T21:49:33.8353902Z >>> batched_dot = torch.vmap(f, in_dims=({"x": 0, "y": None},)) 2025-08-14T21:49:33.8353996Z >>> batched_dot(input) 2025-08-14T21:49:33.8354060Z 2025-08-14T21:49:33.8354306Z By default, the output is batched along the first dimension. However, it can be batched 2025-08-14T21:49:33.8354419Z along any dimension by using ``out_dims`` 2025-08-14T21:49:33.8354489Z 2025-08-14T21:49:33.8354569Z >>> f = lambda x: x**2 2025-08-14T21:49:33.8354655Z >>> x = torch.randn(2, 5) 2025-08-14T21:49:33.8354777Z >>> batched_pow = torch.vmap(f, out_dims=1) 2025-08-14T21:49:33.8354868Z >>> batched_pow(x) # [5, 2] 2025-08-14T21:49:33.8354932Z 2025-08-14T21:49:33.8355202Z For any function that uses kwargs, the returned function will not batch the kwargs but will 2025-08-14T21:49:33.8355276Z accept kwargs 2025-08-14T21:49:33.8355342Z 2025-08-14T21:49:33.8355432Z >>> x = torch.randn([2, 5]) 2025-08-14T21:49:33.8355519Z >>> def fn(x, scale=4.): 2025-08-14T21:49:33.8355598Z >>> return x * scale 2025-08-14T21:49:33.8355663Z >>> 2025-08-14T21:49:33.8355765Z >>> batched_pow = torch.vmap(fn) 2025-08-14T21:49:33.8355894Z >>> assert torch.allclose(batched_pow(x), x * 4) 2025-08-14T21:49:33.8356094Z >>> batched_pow(x, scale=x) # scale is not batched, output has shape [2, 2, 5] 2025-08-14T21:49:33.8356159Z 2025-08-14T21:49:33.8356251Z .. note:: 2025-08-14T21:49:33.8356450Z vmap does not provide general autobatching or handle variable-length 2025-08-14T21:49:33.8356539Z sequences out of the box. 2025-08-14T21:49:33.8356617Z 2025-08-14T21:49:33.8356933Z Original Error: IndentationError('expected an indented block', ('', 5, 1, '_._ = None\n')) 2025-08-14T21:49:33.8356998Z 2025-08-14T21:49:33.8357076Z _._ = None 2025-08-14T21:49:33.8357149Z ^ 2025-08-14T21:49:33.8357232Z warnings.warn(msg) 2025-08-14T21:49:33.8357300Z 2025-08-14T21:49:33.8357547Z --- Parse Warning: 15 / 17 --- 2025-08-14T21:49:33.8358244Z 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-14T21:49:33.8358510Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-14T21:49:33.8358789Z ``grad`` operator helps computing gradients of ``func`` with respect to the 2025-08-14T21:49:33.8359230Z input(s) specified by ``argnums``. This operator can be nested to 2025-08-14T21:49:33.8359338Z compute higher-order gradients. 2025-08-14T21:49:33.8359408Z 2025-08-14T21:49:33.8359524Z Args: 2025-08-14T21:49:33.8359716Z func (Callable): A Python function that takes one or more arguments. 2025-08-14T21:49:33.8359956Z Must return a single-element Tensor. If specified ``has_aux`` equals ``True``, 2025-08-14T21:49:33.8360210Z function can return a tuple of single-element Tensor and other auxiliary objects: 2025-08-14T21:49:33.8360292Z ``(output, aux)``. 2025-08-14T21:49:33.8360537Z argnums (int or Tuple[int]): Specifies arguments to compute gradients with respect to. 2025-08-14T21:49:33.8360775Z ``argnums`` can be single integer or tuple of integers. Default: 0. 2025-08-14T21:49:33.8360972Z has_aux (bool): Flag indicating that ``func`` returns a tensor and other 2025-08-14T21:49:33.8361124Z auxiliary objects: ``(output, aux)``. Default: False. 2025-08-14T21:49:33.8361200Z 2025-08-14T21:49:33.8361270Z Returns: 2025-08-14T21:49:33.8361524Z Function to compute gradients with respect to its inputs. By default, the output of 2025-08-14T21:49:33.8361767Z the function is the gradient tensor(s) with respect to the first argument. 2025-08-14T21:49:33.8362015Z If specified ``has_aux`` equals ``True``, tuple of gradients and output auxiliary objects 2025-08-14T21:49:33.8362234Z is returned. If ``argnums`` is a tuple of integers, a tuple of output gradients with 2025-08-14T21:49:33.8362363Z respect to each ``argnums`` value is returned. 2025-08-14T21:49:33.8362440Z 2025-08-14T21:49:33.8362535Z Example of using ``grad``: 2025-08-14T21:49:33.8362600Z 2025-08-14T21:49:33.8362687Z >>> # xdoctest: +SKIP 2025-08-14T21:49:33.8362794Z >>> from torch.func import grad 2025-08-14T21:49:33.8362880Z >>> x = torch.randn([]) 2025-08-14T21:49:33.8362990Z >>> cos_x = grad(lambda x: torch.sin(x))(x) 2025-08-14T21:49:33.8363121Z >>> assert torch.allclose(cos_x, x.cos()) 2025-08-14T21:49:33.8363187Z >>> 2025-08-14T21:49:33.8363277Z >>> # Second-order gradients 2025-08-14T21:49:33.8363416Z >>> neg_sin_x = grad(grad(lambda x: torch.sin(x)))(x) 2025-08-14T21:49:33.8363537Z >>> assert torch.allclose(neg_sin_x, -x.sin()) 2025-08-14T21:49:33.8363608Z 2025-08-14T21:49:33.8363835Z When composed with ``vmap``, ``grad`` can be used to compute per-sample-gradients: 2025-08-14T21:49:33.8363911Z 2025-08-14T21:49:33.8363999Z >>> # xdoctest: +SKIP 2025-08-14T21:49:33.8364109Z >>> from torch.func import grad, vmap 2025-08-14T21:49:33.8364217Z >>> batch_size, feature_size = 3, 5 2025-08-14T21:49:33.8364288Z >>> 2025-08-14T21:49:33.8364390Z >>> def model(weights, feature_vec): 2025-08-14T21:49:33.8364509Z >>> # Very simple linear model with activation 2025-08-14T21:49:33.8364617Z >>> assert feature_vec.dim() == 1 2025-08-14T21:49:33.8364724Z >>> return feature_vec.dot(weights).relu() 2025-08-14T21:49:33.8364792Z >>> 2025-08-14T21:49:33.8364921Z >>> def compute_loss(weights, example, target): 2025-08-14T21:49:33.8365015Z >>> y = model(weights, example) 2025-08-14T21:49:33.8365132Z >>> return ((y - target) ** 2).mean() # MSELoss 2025-08-14T21:49:33.8365248Z >>> 2025-08-14T21:49:33.8365402Z >>> weights = torch.randn(feature_size, requires_grad=True) 2025-08-14T21:49:33.8365534Z >>> examples = torch.randn(batch_size, feature_size) 2025-08-14T21:49:33.8365633Z >>> targets = torch.randn(batch_size) 2025-08-14T21:49:33.8365963Z >>> inputs = (weights, examples, targets) 2025-08-14T21:49:33.8366177Z >>> grad_weight_per_example = vmap(grad(compute_loss), in_dims=(None, 0, 0))( 2025-08-14T21:49:33.8366254Z ... *inputs 2025-08-14T21:49:33.8366335Z ... ) 2025-08-14T21:49:33.8366400Z 2025-08-14T21:49:33.8366552Z Example of using ``grad`` with ``has_aux`` and ``argnums``: 2025-08-14T21:49:33.8366618Z 2025-08-14T21:49:33.8366724Z >>> # xdoctest: +SKIP 2025-08-14T21:49:33.8366823Z >>> from torch.func import grad 2025-08-14T21:49:33.8366917Z >>> def my_loss_func(y, y_pred): 2025-08-14T21:49:33.8367036Z >>> loss_per_sample = (0.5 * y_pred - y) ** 2 2025-08-14T21:49:33.8367134Z >>> loss = loss_per_sample.mean() 2025-08-14T21:49:33.8367283Z >>> return loss, (y_pred, loss_per_sample) 2025-08-14T21:49:33.8367349Z >>> 2025-08-14T21:49:33.8367486Z >>> fn = grad(my_loss_func, argnums=(0, 1), has_aux=True) 2025-08-14T21:49:33.8367575Z >>> y_true = torch.rand(4) 2025-08-14T21:49:33.8367687Z >>> y_preds = torch.rand(4, requires_grad=True) 2025-08-14T21:49:33.8367786Z >>> out = fn(y_true, y_preds) 2025-08-14T21:49:33.8368004Z >>> # > output is ((grads w.r.t y_true, grads w.r.t y_preds), (y_pred, loss_per_sample)) 2025-08-14T21:49:33.8368070Z 2025-08-14T21:49:33.8368188Z .. note:: 2025-08-14T21:49:33.8368336Z Using PyTorch ``torch.no_grad`` together with ``grad``. 2025-08-14T21:49:33.8368401Z 2025-08-14T21:49:33.8368526Z Case 1: Using ``torch.no_grad`` inside a function: 2025-08-14T21:49:33.8368598Z 2025-08-14T21:49:33.8368685Z >>> # xdoctest: +SKIP 2025-08-14T21:49:33.8368765Z >>> def f(x): 2025-08-14T21:49:33.8368871Z >>> with torch.no_grad(): 2025-08-14T21:49:33.8368952Z >>> c = x ** 2 2025-08-14T21:49:33.8369033Z >>> return x - c 2025-08-14T21:49:33.8369095Z 2025-08-14T21:49:33.8369287Z In this case, ``grad(f)(x)`` will respect the inner ``torch.no_grad``. 2025-08-14T21:49:33.8369351Z 2025-08-14T21:49:33.8369510Z Case 2: Using ``grad`` inside ``torch.no_grad`` context manager: 2025-08-14T21:49:33.8369583Z 2025-08-14T21:49:33.8369667Z >>> # xdoctest: +SKIP 2025-08-14T21:49:33.8369754Z >>> with torch.no_grad(): 2025-08-14T21:49:33.8369832Z >>> grad(f)(x) 2025-08-14T21:49:33.8369910Z 2025-08-14T21:49:33.8370104Z In this case, ``grad`` will respect the inner ``torch.no_grad``, but not the 2025-08-14T21:49:33.8370299Z outer one. This is because ``grad`` is a "function transform": its result 2025-08-14T21:49:33.8370502Z should not depend on the result of a context manager outside of ``f``. 2025-08-14T21:49:33.8370570Z 2025-08-14T21:49:33.8370636Z 2025-08-14T21:49:33.8370962Z Original Error: IndentationError('expected an indented block', ('', 6, 1, '_._ = None\n')) 2025-08-14T21:49:33.8371027Z 2025-08-14T21:49:33.8371097Z _._ = None 2025-08-14T21:49:33.8371160Z ^ 2025-08-14T21:49:33.8371252Z warnings.warn(msg) 2025-08-14T21:49:33.8371319Z 2025-08-14T21:49:33.8371545Z --- Parse Warning: 16 / 17 --- 2025-08-14T21:49:33.8372359Z 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-14T21:49:33.8372621Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-08-14T21:49:33.8372781Z Register a FakeTensor implementation for this custom op. 2025-08-14T21:49:33.8372854Z 2025-08-14T21:49:33.8373109Z This is necessary to get the operator to work efficiently with torch.compile. 2025-08-14T21:49:33.8373179Z 2025-08-14T21:49:33.8373373Z The Fake impl (sometimes also known as a meta kernel or abstract impl) 2025-08-14T21:49:33.8373591Z specifies the behavior of this operator on Tensors that carry no data. 2025-08-14T21:49:33.8373723Z Given some input Tensors with certain properties 2025-08-14T21:49:33.8373952Z (sizes/strides/storage_offset/device), it specifies what the properties of 2025-08-14T21:49:33.8374048Z the output Tensors are. 2025-08-14T21:49:33.8374116Z 2025-08-14T21:49:33.8374298Z Please see :func:`torch.library.register_fake` for more details. 2025-08-14T21:49:33.8374366Z 2025-08-14T21:49:33.8374444Z Args: 2025-08-14T21:49:33.8374594Z fn (Callable): The function to register as the FakeTensor 2025-08-14T21:49:33.8374717Z implementation. 2025-08-14T21:49:33.8374788Z 2025-08-14T21:49:33.8374864Z Examples: 2025-08-14T21:49:33.8375014Z >>> import torch 2025-08-14T21:49:33.8375108Z >>> import numpy as np 2025-08-14T21:49:33.8375220Z >>> from torch import Tensor 2025-08-14T21:49:33.8375291Z >>> 2025-08-14T21:49:33.8375504Z >>> # Example 1: an operator without data-dependent output shape 2025-08-14T21:49:33.8375796Z >>> @torch.library.custom_op("mylib::linear", mutates_args=()) 2025-08-14T21:49:33.8375969Z >>> def linear(x: Tensor, weight: Tensor, bias: Tensor) -> Tensor: 2025-08-14T21:49:33.8376074Z >>> return (x @ weight.t()) + bias 2025-08-14T21:49:33.8376156Z >>> 2025-08-14T21:49:33.8376253Z >>> @linear.register_fake 2025-08-14T21:49:33.8376343Z >>> def _(x, weight, bias): 2025-08-14T21:49:33.8376437Z >>> assert x.dim() == 2 2025-08-14T21:49:33.8376549Z >>> assert weight.dim() == 2 2025-08-14T21:49:33.8376643Z >>> assert bias.dim() == 1 2025-08-14T21:49:33.8376757Z >>> assert x.shape[1] == weight.shape[1] 2025-08-14T21:49:33.8376882Z >>> assert weight.shape[0] == bias.shape[0] 2025-08-14T21:49:33.8376988Z >>> assert x.device == weight.device 2025-08-14T21:49:33.8377123Z >>> return x.new_empty(x.size(0), weight.size(0)) 2025-08-14T21:49:33.8377199Z >>> 2025-08-14T21:49:33.8377285Z >>> x = torch.randn(2, 2) 2025-08-14T21:49:33.8377379Z >>> weight = torch.randn(2, 2) 2025-08-14T21:49:33.8377466Z >>> bias = torch.randn(2) 2025-08-14T21:49:33.8377590Z >>> # xdoctest: +SKIP("Requires Python <= 3.11") 2025-08-14T21:49:33.8377757Z >>> out = torch.compile(linear, fullgraph=True)(x, weight, bias) 2025-08-14T21:49:33.8377874Z >>> # xdoctest: +SKIP("Requires Python <= 3.11") 2025-08-14T21:49:33.8378108Z >>> assert torch.allclose(out, torch.nn.functional.linear(x, weight, bias)) 2025-08-14T21:49:33.8378176Z >>> 2025-08-14T21:49:33.8378329Z >>> # Example 2: an operator with data-dependent output shape 2025-08-14T21:49:33.8378509Z >>> @torch.library.custom_op("mylib::nonzero", mutates_args=()) 2025-08-14T21:49:33.8378611Z >>> def nonzero(x: Tensor) -> Tensor: 2025-08-14T21:49:33.8378700Z >>> x_np = x.cpu().numpy() 2025-08-14T21:49:33.8378814Z >>> res = np.stack(np.nonzero(x_np), axis=1) 2025-08-14T21:49:33.8378981Z >>> return torch.tensor(res, device=x.device) 2025-08-14T21:49:33.8379052Z >>> 2025-08-14T21:49:33.8379152Z >>> @nonzero.register_fake 2025-08-14T21:49:33.8379238Z >>> def _(x): 2025-08-14T21:49:33.8379406Z >>> # Number of nonzero-elements is data-dependent. 2025-08-14T21:49:33.8379553Z >>> # Since we cannot peek at the data in an abstract impl, 2025-08-14T21:49:33.8379700Z >>> # we use the ctx object to construct a new symint that 2025-08-14T21:49:33.8379814Z >>> # represents the data-dependent size. 2025-08-14T21:49:33.8379915Z >>> ctx = torch.library.get_ctx() 2025-08-14T21:49:33.8380024Z >>> nnz = ctx.new_dynamic_size() 2025-08-14T21:49:33.8380132Z >>> shape = [nnz, x.dim()] 2025-08-14T21:49:33.8380264Z >>> result = x.new_empty(shape, dtype=torch.int64) 2025-08-14T21:49:33.8380349Z >>> return result 2025-08-14T21:49:33.8380424Z >>> 2025-08-14T21:49:33.8380522Z >>> x = torch.tensor([0, 1, 2, 0, 0, 1]) 2025-08-14T21:49:33.8380673Z >>> # xdoctest: +SKIP("Requires Python <= 3.11") 2025-08-14T21:49:33.8380811Z >>> out = torch.compile(nonzero, fullgraph=True)(x) 2025-08-14T21:49:33.8380927Z >>> # xdoctest: +SKIP("Requires Python <= 3.11") 2025-08-14T21:49:33.8381040Z >>> assert torch.allclose(out, x.nonzero()) 2025-08-14T21:49:33.8381106Z 2025-08-14T21:49:33.8381181Z 2025-08-14T21:49:33.8381545Z Original Error: IndentationError('expected an indented block', ('', 37, 1, '_._ = None\n')) 2025-08-14T21:49:33.8381612Z 2025-08-14T21:49:33.8381693Z _._ = None 2025-08-14T21:49:33.8381758Z ^ 2025-08-14T21:49:33.8381845Z warnings.warn(msg) 2025-08-14T21:49:33.8381908Z 2025-08-14T21:49:33.8382133Z --- Parse Warning: 17 / 17 --- 2025-08-14T21:49:33.8382942Z 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-14T21:49:33.8383181Z Caused by: DoctestParseError('Failed to parse doctest in _label_docsrc_lines') 2025-08-14T21:49:33.8383260Z 2025-08-14T21:49:33.8383461Z Registers a fake kernel based on the given operator profiles. This fake 2025-08-14T21:49:33.8383679Z kernel registration will override any existing fake kernel registrations. 2025-08-14T21:49:33.8383757Z 2025-08-14T21:49:33.8383943Z The input is a dictionary mapping operator names to a set of operator 2025-08-14T21:49:33.8384149Z profiles, which we will use to generate fake kernels. The operator profiles 2025-08-14T21:49:33.8384323Z are a record of the input and output tensor metadata. Based on this 2025-08-14T21:49:33.8384545Z information we will match a given input to the recorded profile, and return 2025-08-14T21:49:33.8384740Z an output with the same metadata as in the recorded profile. If a profile 2025-08-14T21:49:33.8384862Z doesn't exist then an exception will be thrown. 2025-08-14T21:49:33.8384939Z 2025-08-14T21:49:33.8385140Z The fake kernel generation is considered unsafe because it relies on the 2025-08-14T21:49:33.8385336Z rigid, pre-defined operator profiles that do not account for potential 2025-08-14T21:49:33.8385564Z variations in output behavior. Specifically, the generated kernels assume a 2025-08-14T21:49:33.8385787Z fixed relationship between input and output ranks. However, in reality, it's 2025-08-14T21:49:33.8386002Z possible that data-dependent operations may produce outputs of different 2025-08-14T21:49:33.8386206Z ranks even when given inputs of the same rank. The generated fake kernels 2025-08-14T21:49:33.8386430Z are inflexible and unable to accommodate these nuances, making them 2025-08-14T21:49:33.8386514Z potentially unsafe. 2025-08-14T21:49:33.8386579Z 2025-08-14T21:49:33.8386658Z Args: 2025-08-14T21:49:33.8386847Z op_profiles (dict[str, set[OpProfile]]): A dictionary mapping operator 2025-08-14T21:49:33.8387052Z name to a set of operator profiles from which we will generate fake 2025-08-14T21:49:33.8387135Z kernels. 2025-08-14T21:49:33.8387200Z 2025-08-14T21:49:33.8387273Z Examples: 2025-08-14T21:49:33.8387340Z 2025-08-14T21:49:33.8387498Z >>> # Example: Registering an op-profile from draft-export 2025-08-14T21:49:33.8387575Z >>> import torch 2025-08-14T21:49:33.8387721Z >>> from torch.export._draft_export import draft_export 2025-08-14T21:49:33.8387802Z >>> 2025-08-14T21:49:33.8387962Z >>> @torch.library.custom_op("mylib::foo", mutates_args=()) 2025-08-14T21:49:33.8388073Z >>> def foo(x: Tensor, y: Tensor) -> Tensor: 2025-08-14T21:49:33.8388154Z >>> return x + y 2025-08-14T21:49:33.8388236Z >>> 2025-08-14T21:49:33.8388365Z >>> class M(torch.nn.Module): 2025-08-14T21:49:33.8388451Z >>> def forward(self, a, b): 2025-08-14T21:49:33.8388587Z >>> res = torch.ops.mylib.foo(a, b) # no fake impl 2025-08-14T21:49:33.8388666Z >>> return res 2025-08-14T21:49:33.8388736Z >>> 2025-08-14T21:49:33.8388882Z >>> ep = draft_export(M(), (torch.ones(3, 4), torch.ones(3, 4)) 2025-08-14T21:49:33.8388961Z >>> 2025-08-14T21:49:33.8389230Z >>> with torch._library.fake_profile.unsafe_generate_fake_kernels(ep._report.op_profiles): 2025-08-14T21:49:33.8389367Z >>> decomp = ep.run_decompositions() 2025-08-14T21:49:33.8389441Z 2025-08-14T21:49:33.8389506Z 2025-08-14T21:49:33.8389933Z Original Error: IncompleteParseError('ill-formed doctest: all parts have been processed but the doctest source is not balanced') 2025-08-14T21:49:33.8390022Z 2025-08-14T21:49:33.8390105Z warnings.warn(msg) 2025-08-14T21:49:33.8390170Z 2025-08-14T21:49:33.8390291Z  2025-08-14T21:49:33.8390488Z === Found 9 run-time warnings === 2025-08-14T21:49:33.8390663Z --- Runtime Warning: 1 / 9 --- 2025-08-14T21:49:33.8391038Z example = 2025-08-14T21:49:33.8391609Z 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-14T21:49:33.8391886Z Overriding a previously registered kernel for the same operator and the same dispatch key 2025-08-14T21:49:33.8392067Z operator: aten::div.Tensor(Tensor self, Tensor other) -> Tensor 2025-08-14T21:49:33.8392374Z registered at C:\actions-runner\_work\pytorch\pytorch\build\aten\src\ATen\RegisterSchema.cpp:6 2025-08-14T21:49:33.8392463Z dispatch key: CPU 2025-08-14T21:49:33.8392865Z previous kernel: registered at C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen\LegacyBatchingRegistrations.cpp:1079 2025-08-14T21:49:33.8393379Z 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-14T21:49:33.8393517Z impl_fn(self.ns, name.split("::")[-1], dispatch_key) 2025-08-14T21:49:33.8393584Z 2025-08-14T21:49:33.8393762Z --- Runtime Warning: 2 / 9 --- 2025-08-14T21:49:33.8393997Z example = 2025-08-14T21:49:33.8395223Z 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:1978.) 2025-08-14T21:49:33.8395843Z return super().refine_names(names) 2025-08-14T21:49:33.8395913Z 2025-08-14T21:49:33.8396093Z --- Runtime Warning: 3 / 9 --- 2025-08-14T21:49:33.8396343Z example = 2025-08-14T21:49:33.8398006Z 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-14T21:49:33.8398225Z return torch._nested_tensor_from_tensor_list(ts, dtype, None, device, None) 2025-08-14T21:49:33.8398293Z 2025-08-14T21:49:33.8398471Z --- Runtime Warning: 4 / 9 --- 2025-08-14T21:49:33.8398694Z example = 2025-08-14T21:49:33.8400194Z :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-14T21:49:33.8400265Z 2025-08-14T21:49:33.8400478Z --- Runtime Warning: 5 / 9 --- 2025-08-14T21:49:33.8400748Z example = 2025-08-14T21:49:33.8401674Z 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-14T21:49:33.8401757Z warnings.warn( 2025-08-14T21:49:33.8401830Z 2025-08-14T21:49:33.8402008Z --- Runtime Warning: 6 / 9 --- 2025-08-14T21:49:33.8402311Z example = 2025-08-14T21:49:33.8403240Z 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-14T21:49:33.8403328Z warnings.warn( 2025-08-14T21:49:33.8403396Z 2025-08-14T21:49:33.8403562Z --- Runtime Warning: 7 / 9 --- 2025-08-14T21:49:33.8403813Z example = 2025-08-14T21:49:33.8404517Z 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-14T21:49:33.8404623Z WeightNorm.apply(module, name, dim) 2025-08-14T21:49:33.8404699Z 2025-08-14T21:49:33.8404869Z --- Runtime Warning: 8 / 9 --- 2025-08-14T21:49:33.8405134Z example = 2025-08-14T21:49:33.8405846Z 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-14T21:49:33.8405951Z WeightNorm.apply(module, name, dim) 2025-08-14T21:49:33.8406014Z 2025-08-14T21:49:33.8406291Z --- Runtime Warning: 9 / 9 --- 2025-08-14T21:49:33.8406559Z example = 2025-08-14T21:49:33.8408010Z 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-14T21:49:33.8408167Z new_node = root_const_gm.graph.get_attr(in_node.target) 2025-08-14T21:49:33.8408234Z 2025-08-14T21:49:33.8408527Z === 373 passed, 490 skipped, 26 warnings in 23.82 seconds === 2025-08-14T21:49:50.5738712Z 2025-08-14T21:49:50.5739872Z 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_aff40116cc2b94e8_.log 2025-08-14T21:49:50.5740585Z 2025-08-14T21:49:50.5746337Z Running inductor/test_flex_attention 1/1 ... [2025-08-14 21:49:50.565968] 2025-08-14T21:49:50.5746930Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:49:50.5752904Z 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-14 21:49:50.565968] 2025-08-14T21:49:56.1010128Z 2025-08-14T21:49:56.1011027Z 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_8330ee32aba14064_.log 2025-08-14T21:49:56.1011881Z 2025-08-14T21:49:56.1016015Z Running inductor/test_benchmark_fusion 1/1 ... [2025-08-14 21:49:56.091676] 2025-08-14T21:49:56.1016446Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:49:56.1022573Z 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-14 21:49:56.101833] 2025-08-14T21:50:07.2347870Z 2025-08-14T21:50:07.2348838Z 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_0cb69d0a59630d0f_.log 2025-08-14T21:50:07.2349538Z 2025-08-14T21:50:07.2353631Z Running inductor/test_cutlass_backend 1/1 ... [2025-08-14 21:50:07.226722] 2025-08-14T21:50:07.2354050Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:50:07.2360112Z 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-14 21:50:07.226722] 2025-08-14T21:50:17.6373645Z 2025-08-14T21:50:17.6374589Z 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_26c9ac7438acf4ec_.log 2025-08-14T21:50:17.6375302Z 2025-08-14T21:50:17.6379491Z Running dynamo/test_fake_distributed 1/1 ... [2025-08-14 21:50:17.630448] 2025-08-14T21:50:17.6379921Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:50:17.6385983Z 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-14 21:50:17.630448] 2025-08-14T21:50:22.5098541Z 2025-08-14T21:50:22.5099609Z 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_44a8676859e4bf36_.log 2025-08-14T21:50:22.5100286Z 2025-08-14T21:50:22.5104529Z Running inductor/test_distributed_patterns 1/1 ... [2025-08-14 21:50:22.510105] 2025-08-14T21:50:22.5104976Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:50:22.5111278Z 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-14 21:50:22.510677] 2025-08-14T21:50:33.1745109Z 2025-08-14T21:50:33.1746082Z 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_6ccaa16b543cf901_.log 2025-08-14T21:50:33.1746814Z 2025-08-14T21:50:33.1750826Z Running test_cpp_api_parity 1/1 ... [2025-08-14 21:50:33.172661] 2025-08-14T21:50:33.1751214Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:50:33.1757281Z 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-14 21:50:33.172661] 2025-08-14T21:51:27.2060745Z 2025-08-14T21:51:27.2061688Z 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_3fde67683e54348e_.log 2025-08-14T21:51:27.2237918Z 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-14T21:51:27.2402874Z 2025-08-14T21:51:27.2403112Z Running test_transformers_privateuse1 1/1 ... [2025-08-14 21:51:27.208018] 2025-08-14T21:51:27.2403628Z Running test_extension_utils 1/1 ... [2025-08-14 21:51:27.208018] 2025-08-14T21:51:27.2404014Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:51:27.2404949Z 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-14 21:51:27.209147] 2025-08-14T21:51:32.2352240Z 2025-08-14T21:51:32.2353259Z test_extension_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_extension_utils_1.1_e36d2275cd216b68_.log 2025-08-14T21:51:32.2355207Z 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-14T21:51:32.2356630Z 2025-08-14T21:51:32.2361087Z Running test_fx 1/1 ... [2025-08-14 21:51:32.235932] 2025-08-14T21:51:32.2361421Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:51:32.2369294Z 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-14 21:51:32.236532] 2025-08-14T21:52:29.8335152Z 2025-08-14T21:52:29.8335907Z test_fx 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_fx_1.1_0fca8c46a57c8a50_.log 2025-08-14T21:52:29.8740983Z Running 1153 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_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-14T21:52:29.9123685Z 2025-08-14T21:52:29.9123880Z Running test_fake_tensor 1/1 ... [2025-08-14 21:52:29.833685] 2025-08-14T21:52:29.9124274Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:52:29.9125849Z 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-14 21:52:29.833685] 2025-08-14T21:52:47.8425347Z 2025-08-14T21:52:47.8426241Z test_fake_tensor 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_fake_tensor_1.1_11016603202e7c08_.log 2025-08-14T21:52:47.8533780Z 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-14T21:52:47.8636916Z 2025-08-14T21:52:47.8637193Z Running test_openreg 1/1 ... [2025-08-14 21:52:47.842575] 2025-08-14T21:52:47.8637643Z Running test_show_pickle 1/1 ... [2025-08-14 21:52:47.842575] 2025-08-14T21:52:47.8638021Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:52:47.8639015Z 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-14 21:52:47.842575] 2025-08-14T21:52:52.6278888Z 2025-08-14T21:52:52.6279700Z test_show_pickle 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_show_pickle_1.1_f5c1c6737c5f597f_.log 2025-08-14T21:52:52.6280599Z Running 1 items in this shard: test/test_show_pickle.py::TestShowPickle::test_scripted_model 2025-08-14T21:52:52.6280997Z 2025-08-14T21:52:52.6285021Z Running test_tensorexpr 1/1 ... [2025-08-14 21:52:52.625849] 2025-08-14T21:52:52.6285404Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:52:52.6293667Z 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-14 21:52:52.629003] 2025-08-14T21:53:29.6901692Z 2025-08-14T21:53:29.6902477Z test_tensorexpr 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_tensorexpr_1.1_47358141a657dce2_.log 2025-08-14T21:53:29.6920939Z 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-14T21:53:29.6938785Z 2025-08-14T21:53:29.6938956Z Running test_torch 1/1 ... [2025-08-14 21:53:29.690673] 2025-08-14T21:53:29.6939295Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:53:29.6940224Z 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-14 21:53:29.691857] 2025-08-14T21:53:57.0864426Z 2025-08-14T21:53:57.0865275Z test_torch 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_torch_1.1_3667d667df511c05_.log 2025-08-14T21:53:57.1164191Z Running 1045 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_errors_index_copy_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_deterministic_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_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_copy_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_copy_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_copy_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_copy_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_copy_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_copy_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_copy_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_copy_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_copy_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_copy_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_copy_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_copy_deterministic_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_copy_mem_overlap_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_copy_scalars_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_copy_scalars_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_copy_scalars_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_copy_scalars_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_copy_scalars_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_copy_scalars_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_copy_scalars_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_copy_scalars_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_copy_scalars_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_copy_scalars_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_copy_scalars_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_copy_scalars_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_fill_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_fill_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_fill_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_fill_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_fill_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_fill_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_fill_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_fill_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_fill_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_fill_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_fill_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_fill_cpu_uint8, 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_index_put_non_accumulate_deterministic_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_amax_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_amax_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_amax_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_amax_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_amax_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_amax_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_amax_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_amax_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_amax_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_amin_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_amin_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_amin_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_amin_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_amin_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_amin_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_amin_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_amin_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_amin_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_mean_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_mean_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_mean_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_mean_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_mean_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_mean_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_mean_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_mean_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_mean_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_prod_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_prod_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_prod_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_prod_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_prod_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_prod_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_prod_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_prod_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_reduce_reduce_prod_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_select_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_select_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_select_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_select_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_select_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_select_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_select_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_select_cpu_float8_e4m3fn, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_select_cpu_float8_e4m3fnuz, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_select_cpu_float8_e5m2, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_select_cpu_float8_e5m2fnuz, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_select_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_select_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_select_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_select_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_select_cpu_uint8, 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-14T21:53:57.1445604Z 2025-08-14T21:53:57.1445793Z Running test_utils 1/1 ... [2025-08-14 21:53:57.088617] 2025-08-14T21:53:57.1446170Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:53:57.1447100Z 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-14 21:53:57.089199] 2025-08-14T21:59:52.2795974Z 2025-08-14T21:59:52.2796886Z test_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_utils_1.1_a05e48c565f9156f_.log 2025-08-14T21:59:52.4750587Z Running 6045 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_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-14T21:59:52.6988320Z 2025-08-14T21:59:52.6988587Z Running test_python_dispatch 1/1 ... [2025-08-14 21:59:52.291289] 2025-08-14T21:59:52.6989014Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:59:52.6990213Z 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-14 21:59:52.291895] 2025-08-14T22:00:07.3403671Z 2025-08-14T22:00:07.3404560Z test_python_dispatch 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_python_dispatch_1.1_5dd86ab54c89a15b_.log 2025-08-14T22:00:07.3445703Z 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-14T22:00:07.3484776Z 2025-08-14T22:00:07.3485002Z Running test_dispatch 1/1 ... [2025-08-14 22:00:07.340525] 2025-08-14T22:00:07.3485387Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:00:07.3486359Z 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-14 22:00:07.341616] 2025-08-14T22:01:10.4551238Z 2025-08-14T22:01:10.4552188Z test_dispatch 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_dispatch_1.1_4984c1e7fa4b7c7d_.log 2025-08-14T22:01:10.4561224Z 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-14T22:01:10.4569944Z 2025-08-14T22:01:10.4570166Z Running test_namedtuple_return_api 1/1 ... [2025-08-14 22:01:10.450834] 2025-08-14T22:01:10.4570605Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:01:10.4571668Z 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-14 22:01:10.450834] 2025-08-14T22:01:17.6349596Z 2025-08-14T22:01:17.6350829Z 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_bde8eb57a84bbec8_.log 2025-08-14T22:01:17.6352653Z 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-14T22:01:17.6353744Z 2025-08-14T22:01:17.6355889Z Running test_multiprocessing 1/2 ... [2025-08-14 22:01:17.631877] 2025-08-14T22:01:17.6356337Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:01:17.6362198Z 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-14 22:01:17.631877] 2025-08-14T22:04:31.4519024Z 2025-08-14T22:04:31.4519930Z test_multiprocessing 1/2 was successful, full logs can be found in artifacts with path test/test-reports/test_multiprocessing_1.2_b3c685a5a4e988b3_.log 2025-08-14T22:04:31.4527860Z 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-14T22:04:31.4535225Z 2025-08-14T22:04:31.4535464Z Running test_multiprocessing 2/2 ... [2025-08-14 22:04:31.450174] 2025-08-14T22:04:31.4535887Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:04:31.4536896Z 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-14 22:04:31.450174] 2025-08-14T22:16:44.5006455Z 2025-08-14T22:16:44.5007424Z test_multiprocessing 2/2 was successful, full logs can be found in artifacts with path test/test-reports/test_multiprocessing_2.2_53ac251e05492e67_.log 2025-08-14T22:16:44.5013846Z 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-14T22:16:44.5019957Z 2025-08-14T22:16:44.5020163Z Running test_autograd_fallback 1/1 ... [2025-08-14 22:16:44.500880] 2025-08-14T22:16:44.5020693Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:16:44.5030202Z 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-14 22:16:44.502875] 2025-08-14T22:16:44.5031490Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-14T22:16:44.5032000Z Uploading artifacts took 0.00 seconds 2025-08-14T22:16:49.3531297Z 2025-08-14T22:16:49.3532244Z test_autograd_fallback 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_autograd_fallback_1.1_2de378deebe05797_.log 2025-08-14T22:16:49.3543413Z 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-14T22:16:49.3553964Z 2025-08-14T22:16:49.3554231Z Running test_cpp_extensions_mtia_backend 1/1 ... [2025-08-14 22:16:49.348472] 2025-08-14T22:16:49.3554684Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:16:49.3555750Z 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-14 22:16:49.348472] 2025-08-14T22:16:53.8066679Z 2025-08-14T22:16:53.8067949Z 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_3ecc458ce52873fb_.log 2025-08-14T22:16:53.8070859Z 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-14T22:16:53.8072961Z 2025-08-14T22:16:53.8073147Z Running test_jit_disabled 1/1 ... [2025-08-14 22:16:53.807204] 2025-08-14T22:16:53.8073583Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:16:53.8079854Z 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-14 22:16:53.807823] 2025-08-14T22:16:58.8450428Z 2025-08-14T22:16:58.8451243Z test_jit_disabled 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_jit_disabled_1.1_1d76cbfddbc3eccb_.log 2025-08-14T22:16:58.8452643Z 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-14T22:16:58.8453563Z 2025-08-14T22:16:58.8456935Z Running functorch/test_memory_efficient_fusion 1/1 ... [2025-08-14 22:16:58.836974] 2025-08-14T22:16:58.8457447Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:16:58.8463230Z 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-14 22:16:58.836974] 2025-08-14T22:17:10.5980160Z 2025-08-14T22:17:10.5981340Z 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_392fe6899f3c2857_.log 2025-08-14T22:17:10.5989851Z 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-14T22:17:10.5997751Z 2025-08-14T22:17:10.5997943Z Running test_tensor_creation_ops 1/1 ... [2025-08-14 22:17:10.598256] 2025-08-14T22:17:10.5998345Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:17:10.5999393Z 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-14 22:17:10.598827] 2025-08-14T22:17:49.5637029Z 2025-08-14T22:17:49.5637909Z 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_5867f0557ad49ba9_.log 2025-08-14T22:17:49.5897492Z 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-14T22:17:49.6155172Z 2025-08-14T22:17:49.6155360Z Running test_autocast 1/1 ... [2025-08-14 22:17:49.565555] 2025-08-14T22:17:49.6155732Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:17:49.6156669Z 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-14 22:17:49.565671] 2025-08-14T22:17:55.3259469Z 2025-08-14T22:17:55.3260334Z test_autocast 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_autocast_1.1_f664f5f0dc3a0dae_.log 2025-08-14T22:17:55.3267163Z 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-14T22:17:55.3273883Z 2025-08-14T22:17:55.3274125Z Running test_cpp_extensions_stream_and_event 1/1 ... [2025-08-14 22:17:55.326365] 2025-08-14T22:17:55.3275574Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:17:55.3276592Z 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-14 22:17:55.326940] 2025-08-14T22:17:59.7589289Z 2025-08-14T22:17:59.7590419Z 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_69b9b6ef5acd065f_.log 2025-08-14T22:17:59.7591622Z Running 1 items in this shard: test/test_cpp_extensions_stream_and_event.py::TestCppExtensionStreamAndEvent::test_stream_event 2025-08-14T22:17:59.7592149Z 2025-08-14T22:17:59.7595458Z Running test_cuda_trace 1/1 ... [2025-08-14 22:17:59.759380] 2025-08-14T22:17:59.7595834Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:17:59.7602146Z 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-14 22:17:59.759953] 2025-08-14T22:18:04.0257840Z 2025-08-14T22:18:04.0258698Z test_cuda_trace 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cuda_trace_1.1_648d854a110d5061_.log 2025-08-14T22:18:04.0259376Z Running 0 items in this shard: 2025-08-14T22:18:04.0259565Z 2025-08-14T22:18:04.0263670Z Running test_reductions 1/1 ... [2025-08-14 22:18:04.021542] 2025-08-14T22:18:04.0264057Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:18:04.0269955Z 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-14 22:18:04.021542] 2025-08-14T22:22:57.2378715Z 2025-08-14T22:22:57.2379600Z test_reductions 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_reductions_1.1_aed1fed674675056_.log 2025-08-14T22:22:57.3967608Z 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-14T22:22:57.5500528Z 2025-08-14T22:22:57.5500761Z Running test_native_mha 1/1 ... [2025-08-14 22:22:57.243229] 2025-08-14T22:22:57.5501202Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:22:57.5502157Z 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-14 22:22:57.243229] 2025-08-14T22:23:02.8990293Z 2025-08-14T22:23:02.8991259Z test_native_mha 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_native_mha_1.1_6a503a8a00372afb_.log 2025-08-14T22:23:02.9010555Z 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-14T22:23:02.9029923Z 2025-08-14T22:23:02.9030167Z Running test_sort_and_select 1/1 ... [2025-08-14 22:23:02.899260] 2025-08-14T22:23:02.9030577Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:23:02.9031593Z 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-14 22:23:02.899843] 2025-08-14T22:23:11.3201750Z 2025-08-14T22:23:11.3202770Z 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_ad0ce73ab76e9109_.log 2025-08-14T22:23:11.3240538Z 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-14T22:23:11.3275255Z 2025-08-14T22:23:11.3275480Z Running test_cuda_nvml_based_avail 1/1 ... [2025-08-14 22:23:11.321018] 2025-08-14T22:23:11.3275914Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:23:11.3277036Z 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-14 22:23:11.321684] 2025-08-14T22:23:16.0184515Z 2025-08-14T22:23:16.0185761Z 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_6e89a14eb534d7b1_.log 2025-08-14T22:23:16.0186565Z Running 0 items in this shard: 2025-08-14T22:23:16.0186772Z 2025-08-14T22:23:16.0190390Z Running test_nn 1/1 ... [2025-08-14 22:23:16.016689] 2025-08-14T22:23:16.0190769Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:23:16.0234709Z 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-14 22:23:16.016689] 2025-08-14T22:27:06.4544980Z 2025-08-14T22:27:06.4545866Z test_nn 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_nn_1.1_078346133729270a_.log 2025-08-14T22:27:06.5652718Z 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-14T22:27:06.6682540Z 2025-08-14T22:27:06.6682821Z Running test_cpp_extensions_jit 1/1 ... [2025-08-14 22:27:06.460466] 2025-08-14T22:27:06.6683322Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:27:06.6684360Z 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-14 22:27:06.460466] 2025-08-14T22:31:58.7194069Z 2025-08-14T22:31:58.7195044Z 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_c4201e63bf3d579d_.log 2025-08-14T22:31:58.7267972Z 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-14T22:31:58.7279815Z 2025-08-14T22:31:58.7280017Z Running test_overrides 1/1 ... [2025-08-14 22:31:58.727687] 2025-08-14T22:31:58.7280403Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:31:58.7285768Z 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-14 22:31:58.728257] 2025-08-14T22:32:09.4827666Z 2025-08-14T22:32:09.4828628Z test_overrides 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_overrides_1.1_ecaf422a99050408_.log 2025-08-14T22:32:09.5287033Z 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-14T22:32:09.5721631Z 2025-08-14T22:32:09.5721841Z Running nn/test_pooling 1/1 ... [2025-08-14 22:32:09.472218] 2025-08-14T22:32:09.5722274Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:32:09.5723246Z 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-14 22:32:09.487951] 2025-08-14T22:32:54.0846063Z 2025-08-14T22:32:54.0847128Z nn/test_pooling 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_pooling_1.1_b8d0174431df2158_.log 2025-08-14T22:32:54.0886887Z 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-14T22:32:54.0924647Z 2025-08-14T22:32:54.0924840Z Running test_cuda_primary_ctx 1/1 ... [2025-08-14 22:32:54.084857] 2025-08-14T22:32:54.0925365Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:32:54.0926430Z 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-14 22:32:54.086017] 2025-08-14T22:32:58.7551474Z 2025-08-14T22:32:58.7552503Z 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_d6ceec7c2d878c9e_.log 2025-08-14T22:32:58.7553278Z Running 0 items in this shard: 2025-08-14T22:32:58.7553476Z 2025-08-14T22:32:58.7557715Z Running test_mobile_optimizer 1/1 ... [2025-08-14 22:32:58.755604] 2025-08-14T22:32:58.7558166Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:32:58.7564163Z 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-14 22:32:58.756192] 2025-08-14T22:33:04.2469833Z 2025-08-14T22:33:04.2470829Z test_mobile_optimizer 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_mobile_optimizer_1.1_cc913873616eb68f_.log 2025-08-14T22:33:04.2486407Z 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-14T22:33:04.2488752Z 2025-08-14T22:33:04.2490618Z Running test_multiprocessing_spawn 1/1 ... [2025-08-14 22:33:04.248734] 2025-08-14T22:33:04.2491098Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:33:04.2497277Z 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-14 22:33:04.249493] 2025-08-14T22:34:49.7843461Z 2025-08-14T22:34:49.7844484Z test_multiprocessing_spawn 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_multiprocessing_spawn_1.1_0baa7f36882459a5_.log 2025-08-14T22:34:49.7854956Z 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_5, 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_5, 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_5, 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-14T22:34:49.7864755Z 2025-08-14T22:34:49.7864945Z Running nn/test_convolution 1/1 ... [2025-08-14 22:34:49.784862] 2025-08-14T22:34:49.7865460Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:34:49.7866518Z 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-14 22:34:49.785436] 2025-08-14T22:35:22.7186868Z 2025-08-14T22:35:22.7187753Z nn/test_convolution 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_convolution_1.1_3e62003f60079ecb_.log 2025-08-14T22:35:22.7501502Z Running 599 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_large_batch_1_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-14T22:35:22.7798966Z 2025-08-14T22:35:22.7799215Z Running test_spectral_ops 1/1 ... [2025-08-14 22:35:22.715148] 2025-08-14T22:35:22.7799632Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:35:22.7800752Z 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-14 22:35:22.720729] 2025-08-14T22:35:49.6527990Z 2025-08-14T22:35:49.6528874Z test_spectral_ops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_spectral_ops_1.1_7337611112dd2d0e_.log 2025-08-14T22:35:49.6612719Z 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-14T22:35:49.6693543Z 2025-08-14T22:35:49.6693809Z Running distributions/test_distributions 1/1 ... [2025-08-14 22:35:49.654329] 2025-08-14T22:35:49.6694323Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:35:49.6695397Z 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-14 22:35:49.654906] 2025-08-14T22:37:18.1207002Z 2025-08-14T22:37:18.1208079Z distributions/test_distributions 1/1 was successful, full logs can be found in artifacts with path test/test-reports/distributions.test_distributions_1.1_e1ed9378e3d95731_.log 2025-08-14T22:37:18.1289992Z 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-14T22:37:18.1369848Z 2025-08-14T22:37:18.1370084Z Running test_autoload_enable 1/1 ... [2025-08-14 22:37:18.121677] 2025-08-14T22:37:18.1370633Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-14T22:37:18.1371152Z Uploading artifacts took 0.00 seconds 2025-08-14T22:37:22.0226596Z running install 2025-08-14T22:37:22.0247259Z C:\Jenkins\Miniconda3\lib\site-packages\setuptools\_distutils\cmd.py:90: SetuptoolsDeprecationWarning: setup.py install is deprecated. 2025-08-14T22:37:22.0248028Z !! 2025-08-14T22:37:22.0248166Z 2025-08-14T22:37:22.0248296Z ******************************************************************************** 2025-08-14T22:37:22.0248658Z Please avoid running ``setup.py`` directly. 2025-08-14T22:37:22.0249104Z Instead, use pypa/build, pypa/installer or other 2025-08-14T22:37:22.0249488Z standards-based tools. 2025-08-14T22:37:22.0249667Z 2025-08-14T22:37:22.0249987Z See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. 2025-08-14T22:37:22.0250528Z ******************************************************************************** 2025-08-14T22:37:22.0250761Z 2025-08-14T22:37:22.0250847Z !! 2025-08-14T22:37:22.0251088Z self.initialize_options() 2025-08-14T22:37:22.0399718Z running build 2025-08-14T22:37:22.0400041Z running build_py 2025-08-14T22:37:22.0539588Z creating build\lib.win-amd64-cpython-39\torch_test_cpp_extension 2025-08-14T22:37:22.0546627Z copying torch_test_cpp_extension\__init__.py -> build\lib.win-amd64-cpython-39\torch_test_cpp_extension 2025-08-14T22:37:22.0558280Z running build_ext 2025-08-14T22:37:22.0597608Z building 'torch_test_cpp_extension.cpp' extension 2025-08-14T22:37:22.0609582Z creating build\temp.win-amd64-cpython-39\Release 2025-08-14T22:37:22.0626703Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64\cl.exe" /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\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.38.33130\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" /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-14T22:37:22.0755105Z extension.cpp 2025-08-14T22:37:38.3539523Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64\link.exe" /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:C:\actions-runner\_work\pytorch\pytorch\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.38.33130\lib\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64" 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-14T22:37:38.6244039Z 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-14T22:37:38.6391561Z Generating code 2025-08-14T22:37:40.4617890Z Finished generating code 2025-08-14T22:37:40.6348411Z building 'torch_test_cpp_extension.maia' extension 2025-08-14T22:37:40.6359043Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64\cl.exe" /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\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.38.33130\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" /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-14T22:37:40.6473722Z maia_extension.cpp 2025-08-14T22:37:56.9197364Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64\link.exe" /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:C:\actions-runner\_work\pytorch\pytorch\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.38.33130\lib\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64" 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-14T22:37:57.1720756Z 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-14T22:37:57.1801124Z Generating code 2025-08-14T22:37:58.6629275Z Finished generating code 2025-08-14T22:37:58.8034224Z building 'torch_test_cpp_extension.rng' extension 2025-08-14T22:37:58.8045491Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64\cl.exe" /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\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.38.33130\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" /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-14T22:37:58.8157181Z rng_extension.cpp 2025-08-14T22:38:10.7747264Z 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-14T22:38:10.7758074Z 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-14T22:38:10.7767166Z 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-14T22:38:10.7768162Z with 2025-08-14T22:38:10.7768409Z [ 2025-08-14T22:38:10.7768622Z scalar_t=float 2025-08-14T22:38:10.7768898Z ] 2025-08-14T22:38:10.7773561Z 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-14T22:38:10.7774841Z 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-14T22:38:10.7776276Z 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-14T22:38:10.7777222Z with 2025-08-14T22:38:10.7777478Z [ 2025-08-14T22:38:10.7777692Z scalar_t=float 2025-08-14T22:38:10.7777970Z ] 2025-08-14T22:38:12.4021738Z 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-14T22:38:12.4022589Z with 2025-08-14T22:38:12.4022833Z [ 2025-08-14T22:38:12.4023081Z scalar_t=float 2025-08-14T22:38:12.4023354Z ] 2025-08-14T22:38:12.4024023Z 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-14T22:38:12.4025449Z 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-14T22:38:12.4026557Z with 2025-08-14T22:38:12.4027017Z [ 2025-08-14T22:38:12.4027284Z scalar_t=float 2025-08-14T22:38:12.4027606Z ] 2025-08-14T22:38:12.4028732Z 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-14T22:38:12.4029976Z with 2025-08-14T22:38:12.4030194Z [ 2025-08-14T22:38:12.4030477Z scalar_t=float 2025-08-14T22:38:12.4030763Z ] 2025-08-14T22:38:12.4031630Z 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-14T22:38:12.4032478Z with 2025-08-14T22:38:12.4032879Z [ 2025-08-14T22:38:12.4033130Z scalar_t=float 2025-08-14T22:38:12.4033438Z ] 2025-08-14T22:38:12.4034241Z 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-14T22:38:12.4035088Z with 2025-08-14T22:38:12.4035340Z [ 2025-08-14T22:38:12.4035546Z scalar_t=float 2025-08-14T22:38:12.4035823Z ] 2025-08-14T22:38:12.4036617Z 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-14T22:38:12.4037479Z with 2025-08-14T22:38:12.4037695Z [ 2025-08-14T22:38:12.4037938Z scalar_t=float 2025-08-14T22:38:12.4038226Z ] 2025-08-14T22:38:12.4038906Z 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-14T22:38:12.4039697Z with 2025-08-14T22:38:12.4039898Z [ 2025-08-14T22:38:12.4040130Z scalar_t=float 2025-08-14T22:38:12.4040413Z ] 2025-08-14T22:38:12.4041238Z 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-14T22:38:12.4041992Z with 2025-08-14T22:38:12.4042227Z [ 2025-08-14T22:38:12.4042458Z scalar_t=float 2025-08-14T22:38:12.4042706Z ] 2025-08-14T22:38:12.4043419Z 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-14T22:38:12.4044175Z with 2025-08-14T22:38:12.4044407Z [ 2025-08-14T22:38:12.4044612Z scalar_t=float 2025-08-14T22:38:12.4044902Z ] 2025-08-14T22:38:12.4045605Z 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-14T22:38:12.4046429Z with 2025-08-14T22:38:12.4046654Z [ 2025-08-14T22:38:12.4046903Z scalar_t=float 2025-08-14T22:38:12.4047244Z ] 2025-08-14T22:38:12.4047929Z 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-14T22:38:12.4048703Z with 2025-08-14T22:38:12.4048906Z [ 2025-08-14T22:38:12.4049148Z scalar_t=float 2025-08-14T22:38:12.4049397Z ] 2025-08-14T22:38:12.4050197Z 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-14T22:38:12.4050959Z with 2025-08-14T22:38:12.4051188Z [ 2025-08-14T22:38:12.4051393Z scalar_t=float 2025-08-14T22:38:12.4051659Z ] 2025-08-14T22:38:12.4052453Z 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-14T22:38:12.4053297Z with 2025-08-14T22:38:12.4053509Z [ 2025-08-14T22:38:12.4053751Z scalar_t=float 2025-08-14T22:38:12.4054058Z ] 2025-08-14T22:38:12.4054747Z 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-14T22:38:12.4055534Z with 2025-08-14T22:38:12.4055734Z [ 2025-08-14T22:38:12.4055959Z scalar_t=float 2025-08-14T22:38:12.4056206Z ] 2025-08-14T22:38:12.4056917Z 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-14T22:38:12.4057769Z with 2025-08-14T22:38:12.4057977Z [ 2025-08-14T22:38:12.4058214Z scalar_t=float 2025-08-14T22:38:12.4058458Z ] 2025-08-14T22:38:12.4059188Z 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-14T22:38:12.4059952Z with 2025-08-14T22:38:12.4060207Z [ 2025-08-14T22:38:12.4060415Z scalar_t=float 2025-08-14T22:38:12.4060804Z ] 2025-08-14T22:38:12.4061486Z 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-14T22:38:12.4062276Z with 2025-08-14T22:38:12.4062493Z [ 2025-08-14T22:38:12.4132675Z scalar_t=float 2025-08-14T22:38:12.4133002Z ] 2025-08-14T22:38:12.4133694Z 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-14T22:38:12.4134437Z with 2025-08-14T22:38:12.4134617Z [ 2025-08-14T22:38:12.4134793Z scalar_t=float 2025-08-14T22:38:12.4135006Z ] 2025-08-14T22:38:12.4135660Z 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-14T22:38:12.4136514Z with 2025-08-14T22:38:12.4136721Z [ 2025-08-14T22:38:12.4136956Z scalar_t=float 2025-08-14T22:38:12.4137191Z ] 2025-08-14T22:38:12.4137924Z 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-14T22:38:12.4138704Z with 2025-08-14T22:38:12.4138913Z [ 2025-08-14T22:38:12.4139146Z scalar_t=float 2025-08-14T22:38:12.4139392Z ] 2025-08-14T22:38:12.4140114Z 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-14T22:38:12.4140942Z with 2025-08-14T22:38:12.4141186Z [ 2025-08-14T22:38:12.4141422Z scalar_t=float 2025-08-14T22:38:12.4141677Z ] 2025-08-14T22:38:12.4142394Z 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-14T22:38:12.4143144Z with 2025-08-14T22:38:12.4143372Z [ 2025-08-14T22:38:12.4143575Z scalar_t=float 2025-08-14T22:38:12.4143828Z ] 2025-08-14T22:38:12.4144510Z 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-14T22:38:12.4145281Z with 2025-08-14T22:38:12.4145508Z [ 2025-08-14T22:38:12.4145846Z scalar_t=float 2025-08-14T22:38:12.4146114Z ] 2025-08-14T22:38:12.4146798Z 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-14T22:38:12.4147584Z with 2025-08-14T22:38:12.4147792Z [ 2025-08-14T22:38:12.4148028Z scalar_t=float 2025-08-14T22:38:12.4148276Z ] 2025-08-14T22:38:12.4148983Z 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-14T22:38:12.4149736Z with 2025-08-14T22:38:12.4149966Z [ 2025-08-14T22:38:12.4150174Z scalar_t=float 2025-08-14T22:38:12.4150536Z ] 2025-08-14T22:38:12.4151304Z 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-14T22:38:12.4152092Z with 2025-08-14T22:38:12.4152324Z [ 2025-08-14T22:38:12.4152528Z scalar_t=float 2025-08-14T22:38:12.4152802Z ] 2025-08-14T22:38:12.4153478Z 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-14T22:38:12.4154384Z with 2025-08-14T22:38:12.4154587Z [ 2025-08-14T22:38:12.4154811Z scalar_t=float 2025-08-14T22:38:12.4155049Z ] 2025-08-14T22:38:12.4155753Z 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-14T22:38:12.4156541Z with 2025-08-14T22:38:12.4156736Z [ 2025-08-14T22:38:12.4156960Z scalar_t=float 2025-08-14T22:38:12.4157204Z ] 2025-08-14T22:38:12.4157909Z 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-14T22:38:12.4158658Z with 2025-08-14T22:38:12.4158898Z [ 2025-08-14T22:38:12.4159124Z scalar_t=float 2025-08-14T22:38:12.4159367Z ] 2025-08-14T22:38:12.4160073Z 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-14T22:38:12.4160835Z with 2025-08-14T22:38:12.4161069Z [ 2025-08-14T22:38:12.4161277Z scalar_t=float 2025-08-14T22:38:12.4161544Z ] 2025-08-14T22:38:12.4162227Z 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-14T22:38:12.4162999Z with 2025-08-14T22:38:12.4163224Z [ 2025-08-14T22:38:12.4163431Z scalar_t=float 2025-08-14T22:38:12.4163698Z ] 2025-08-14T22:38:12.4164383Z 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-14T22:38:12.4165146Z with 2025-08-14T22:38:12.4165349Z [ 2025-08-14T22:38:12.4165581Z scalar_t=float 2025-08-14T22:38:12.4165831Z ] 2025-08-14T22:38:12.4166541Z 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-14T22:38:12.4167317Z with 2025-08-14T22:38:12.4167527Z [ 2025-08-14T22:38:12.4167770Z scalar_t=float 2025-08-14T22:38:12.4168035Z ] 2025-08-14T22:38:12.4169251Z 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-14T22:38:12.4170029Z with 2025-08-14T22:38:12.4170270Z [ 2025-08-14T22:38:12.4170479Z scalar_t=float 2025-08-14T22:38:12.4170750Z ] 2025-08-14T22:38:12.4171466Z 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-14T22:38:12.4172232Z with 2025-08-14T22:38:12.4172464Z [ 2025-08-14T22:38:12.4172679Z scalar_t=float 2025-08-14T22:38:12.4172943Z ] 2025-08-14T22:38:12.4173622Z 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-14T22:38:12.4174494Z with 2025-08-14T22:38:12.4174698Z [ 2025-08-14T22:38:12.4174926Z scalar_t=float 2025-08-14T22:38:12.4175191Z ] 2025-08-14T22:38:12.4175871Z 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-14T22:38:12.4183824Z with 2025-08-14T22:38:12.4184033Z [ 2025-08-14T22:38:12.4184265Z scalar_t=float 2025-08-14T22:38:12.4184508Z ] 2025-08-14T22:38:12.4185304Z 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-14T22:38:12.4186484Z with 2025-08-14T22:38:12.4186690Z [ 2025-08-14T22:38:12.4186926Z scalar_t=float 2025-08-14T22:38:12.4187164Z ] 2025-08-14T22:38:12.4187882Z 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-14T22:38:12.4195305Z with 2025-08-14T22:38:12.4195550Z [ 2025-08-14T22:38:12.4195760Z scalar_t=float 2025-08-14T22:38:12.4196028Z ] 2025-08-14T22:38:12.4196713Z 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-14T22:38:12.4197495Z with 2025-08-14T22:38:12.4197731Z [ 2025-08-14T22:38:12.4197935Z scalar_t=float 2025-08-14T22:38:12.4198204Z ] 2025-08-14T22:38:12.4198887Z 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-14T22:38:12.4232943Z with 2025-08-14T22:38:12.4233158Z [ 2025-08-14T22:38:12.4233391Z scalar_t=float 2025-08-14T22:38:12.4233640Z ] 2025-08-14T22:38:12.4234356Z 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-14T22:38:12.4235130Z with 2025-08-14T22:38:12.4235331Z [ 2025-08-14T22:38:12.4235562Z scalar_t=float 2025-08-14T22:38:12.4235801Z ] 2025-08-14T22:38:12.4236516Z 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-14T22:38:12.4238657Z with 2025-08-14T22:38:12.4238887Z [ 2025-08-14T22:38:12.4239114Z scalar_t=float 2025-08-14T22:38:12.4239357Z ] 2025-08-14T22:38:12.4240057Z 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-14T22:38:12.4240822Z with 2025-08-14T22:38:12.4241034Z [ 2025-08-14T22:38:12.4241238Z scalar_t=float 2025-08-14T22:38:12.4241497Z ] 2025-08-14T22:38:12.4242299Z 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-14T22:38:12.4243079Z with 2025-08-14T22:38:12.4244710Z [ 2025-08-14T22:38:12.4244921Z scalar_t=float 2025-08-14T22:38:12.4245182Z ] 2025-08-14T22:38:12.4245870Z 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-14T22:38:12.4246651Z with 2025-08-14T22:38:12.4246851Z [ 2025-08-14T22:38:12.4247073Z scalar_t=float 2025-08-14T22:38:12.4247308Z ] 2025-08-14T22:38:12.4248010Z 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-14T22:38:12.4248892Z with 2025-08-14T22:38:12.4249097Z [ 2025-08-14T22:38:12.4250747Z scalar_t=float 2025-08-14T22:38:12.4250997Z ] 2025-08-14T22:38:12.4251713Z 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-14T22:38:12.4252466Z with 2025-08-14T22:38:12.4252684Z [ 2025-08-14T22:38:12.4252956Z scalar_t=float 2025-08-14T22:38:12.4253282Z ] 2025-08-14T22:38:12.4253985Z 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-14T22:38:12.4254742Z with 2025-08-14T22:38:12.4254986Z [ 2025-08-14T22:38:12.4255188Z scalar_t=float 2025-08-14T22:38:12.4256891Z ] 2025-08-14T22:38:12.4257596Z 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-14T22:38:12.4258373Z with 2025-08-14T22:38:12.4258562Z [ 2025-08-14T22:38:12.4258773Z scalar_t=float 2025-08-14T22:38:12.4259039Z ] 2025-08-14T22:38:12.4259721Z 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-14T22:38:12.4260501Z with 2025-08-14T22:38:12.4260705Z [ 2025-08-14T22:38:12.4260925Z scalar_t=float 2025-08-14T22:38:12.4261162Z ] 2025-08-14T22:38:12.4262214Z 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-14T22:38:12.4262992Z with 2025-08-14T22:38:12.4263194Z [ 2025-08-14T22:38:12.4263419Z scalar_t=float 2025-08-14T22:38:12.4263660Z ] 2025-08-14T22:38:12.4264365Z 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-14T22:38:12.4265119Z with 2025-08-14T22:38:12.4265343Z [ 2025-08-14T22:38:12.4265550Z scalar_t=float 2025-08-14T22:38:12.4265805Z ] 2025-08-14T22:38:12.4266474Z 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-14T22:38:12.4268642Z with 2025-08-14T22:38:12.4268829Z [ 2025-08-14T22:38:12.4269002Z scalar_t=float 2025-08-14T22:38:12.4269224Z ] 2025-08-14T22:38:12.4269878Z 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-14T22:38:12.4270602Z with 2025-08-14T22:38:12.4270868Z [ 2025-08-14T22:38:12.4271045Z scalar_t=float 2025-08-14T22:38:12.4271297Z ] 2025-08-14T22:38:12.4271946Z 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-14T22:38:12.4272694Z with 2025-08-14T22:38:12.4272858Z [ 2025-08-14T22:38:12.4273038Z scalar_t=float 2025-08-14T22:38:12.4273253Z ] 2025-08-14T22:38:12.4273897Z 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-14T22:38:12.4274616Z with 2025-08-14T22:38:12.4274785Z [ 2025-08-14T22:38:12.4274954Z scalar_t=float 2025-08-14T22:38:12.4275220Z ] 2025-08-14T22:38:12.4275882Z 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-14T22:38:12.4276613Z with 2025-08-14T22:38:12.4276781Z [ 2025-08-14T22:38:12.4276960Z scalar_t=float 2025-08-14T22:38:12.4277162Z ] 2025-08-14T22:38:12.4277857Z 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-14T22:38:12.4278626Z with 2025-08-14T22:38:12.4278802Z [ 2025-08-14T22:38:12.4278966Z scalar_t=float 2025-08-14T22:38:12.4279178Z ] 2025-08-14T22:38:12.4279829Z 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-14T22:38:12.4280570Z with 2025-08-14T22:38:12.4280744Z [ 2025-08-14T22:38:12.4280909Z scalar_t=float 2025-08-14T22:38:12.4281120Z ] 2025-08-14T22:38:12.4281764Z 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-14T22:38:12.4282501Z with 2025-08-14T22:38:12.4284180Z [ 2025-08-14T22:38:12.4284379Z scalar_t=float 2025-08-14T22:38:12.4284588Z ] 2025-08-14T22:38:12.4285263Z 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-14T22:38:12.4285993Z with 2025-08-14T22:38:12.4286157Z [ 2025-08-14T22:38:12.4286329Z scalar_t=float 2025-08-14T22:38:12.4286529Z ] 2025-08-14T22:38:12.4287191Z 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-14T22:38:12.4287917Z with 2025-08-14T22:38:12.4288089Z [ 2025-08-14T22:38:12.4288255Z scalar_t=float 2025-08-14T22:38:12.4288465Z ] 2025-08-14T22:38:12.4289114Z 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-14T22:38:12.4289828Z with 2025-08-14T22:38:12.4289997Z [ 2025-08-14T22:38:12.4290173Z scalar_t=float 2025-08-14T22:38:12.4290387Z ] 2025-08-14T22:38:12.4291033Z 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-14T22:38:12.4291757Z with 2025-08-14T22:38:12.4291935Z [ 2025-08-14T22:38:12.4292106Z scalar_t=float 2025-08-14T22:38:12.4292316Z ] 2025-08-14T22:38:12.4293040Z 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-14T22:38:12.4293770Z with 2025-08-14T22:38:12.4293937Z [ 2025-08-14T22:38:12.4294121Z scalar_t=float 2025-08-14T22:38:12.4294325Z ] 2025-08-14T22:38:12.4294978Z 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-14T22:38:12.4295705Z with 2025-08-14T22:38:12.4295872Z [ 2025-08-14T22:38:12.4296050Z scalar_t=float 2025-08-14T22:38:12.4296257Z ] 2025-08-14T22:38:12.4296914Z 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-14T22:38:12.4297679Z with 2025-08-14T22:38:12.4297857Z [ 2025-08-14T22:38:12.4298030Z scalar_t=float 2025-08-14T22:38:12.4298245Z ] 2025-08-14T22:38:12.4299598Z 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-14T22:38:12.4300330Z with 2025-08-14T22:38:12.4300506Z [ 2025-08-14T22:38:12.4300676Z scalar_t=float 2025-08-14T22:38:12.4300890Z ] 2025-08-14T22:38:12.4301593Z 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-14T22:38:12.4302364Z with 2025-08-14T22:38:12.4302539Z [ 2025-08-14T22:38:12.4302726Z scalar_t=float 2025-08-14T22:38:12.4302943Z ] 2025-08-14T22:38:12.4303589Z 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-14T22:38:12.4304318Z with 2025-08-14T22:38:12.4304487Z [ 2025-08-14T22:38:12.4304661Z scalar_t=float 2025-08-14T22:38:12.4304862Z ] 2025-08-14T22:38:12.4305518Z 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-14T22:38:12.4306236Z with 2025-08-14T22:38:12.4306411Z [ 2025-08-14T22:38:12.4306597Z scalar_t=float 2025-08-14T22:38:12.4306800Z ] 2025-08-14T22:38:12.4307452Z 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-14T22:38:12.4308174Z with 2025-08-14T22:38:12.4308347Z [ 2025-08-14T22:38:12.4308518Z scalar_t=float 2025-08-14T22:38:12.4308731Z ] 2025-08-14T22:38:12.4309373Z 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-14T22:38:12.4310145Z with 2025-08-14T22:38:12.4310385Z [ 2025-08-14T22:38:12.4310613Z scalar_t=float 2025-08-14T22:38:12.4310900Z ] 2025-08-14T22:38:12.4311652Z 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-14T22:38:12.4312452Z with 2025-08-14T22:38:12.4312663Z [ 2025-08-14T22:38:12.4312898Z scalar_t=float 2025-08-14T22:38:12.4313143Z ] 2025-08-14T22:38:12.4313859Z 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-14T22:38:12.4314647Z with 2025-08-14T22:38:12.4314850Z [ 2025-08-14T22:38:12.4315084Z scalar_t=float 2025-08-14T22:38:12.4315323Z ] 2025-08-14T22:38:12.4316119Z 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-14T22:38:12.4316879Z with 2025-08-14T22:38:12.4317113Z [ 2025-08-14T22:38:12.4317331Z scalar_t=float 2025-08-14T22:38:12.4317607Z ] 2025-08-14T22:38:12.4318320Z 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-14T22:38:12.4319074Z with 2025-08-14T22:38:12.4319307Z [ 2025-08-14T22:38:12.4319514Z scalar_t=float 2025-08-14T22:38:12.4319819Z ] 2025-08-14T22:38:12.4320504Z 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-14T22:38:12.4321345Z with 2025-08-14T22:38:12.4321590Z [ 2025-08-14T22:38:12.4321798Z scalar_t=float 2025-08-14T22:38:12.4322074Z ] 2025-08-14T22:38:12.4322755Z 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-14T22:38:12.4323535Z with 2025-08-14T22:38:12.4323738Z [ 2025-08-14T22:38:12.4324064Z scalar_t=float 2025-08-14T22:38:12.4324305Z ] 2025-08-14T22:38:12.4325014Z 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-14T22:38:12.4325801Z with 2025-08-14T22:38:12.4326006Z [ 2025-08-14T22:38:12.4326240Z scalar_t=float 2025-08-14T22:38:12.4326480Z ] 2025-08-14T22:38:12.4327192Z 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-14T22:38:12.4327946Z with 2025-08-14T22:38:12.4328177Z [ 2025-08-14T22:38:12.4328382Z scalar_t=float 2025-08-14T22:38:12.4328653Z ] 2025-08-14T22:38:12.4329388Z 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-14T22:38:12.4330142Z with 2025-08-14T22:38:12.4330367Z [ 2025-08-14T22:38:12.4330563Z scalar_t=float 2025-08-14T22:38:12.4330823Z ] 2025-08-14T22:38:12.4331497Z 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-14T22:38:12.4332281Z with 2025-08-14T22:38:12.4332478Z [ 2025-08-14T22:38:12.4332706Z scalar_t=float 2025-08-14T22:38:12.4332974Z ] 2025-08-14T22:38:12.4333669Z 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-14T22:38:12.4334459Z with 2025-08-14T22:38:12.4334662Z [ 2025-08-14T22:38:12.4334890Z scalar_t=float 2025-08-14T22:38:12.4335139Z ] 2025-08-14T22:38:12.4335848Z 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-14T22:38:12.4336606Z with 2025-08-14T22:38:12.4336835Z [ 2025-08-14T22:38:12.4337063Z scalar_t=float 2025-08-14T22:38:12.4337303Z ] 2025-08-14T22:38:12.4338009Z 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-14T22:38:12.4338777Z with 2025-08-14T22:38:12.4339067Z [ 2025-08-14T22:38:12.4339276Z scalar_t=float 2025-08-14T22:38:12.4339555Z ] 2025-08-14T22:38:12.4340239Z 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-14T22:38:12.4341023Z with 2025-08-14T22:38:12.4341252Z [ 2025-08-14T22:38:12.4341459Z scalar_t=float 2025-08-14T22:38:12.4341731Z ] 2025-08-14T22:38:12.4342412Z 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-14T22:38:12.4343191Z with 2025-08-14T22:38:12.4343403Z [ 2025-08-14T22:38:12.4343685Z scalar_t=float 2025-08-14T22:38:12.4343934Z ] 2025-08-14T22:38:12.4344656Z 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-14T22:38:12.4345434Z with 2025-08-14T22:38:12.4345636Z [ 2025-08-14T22:38:12.4345866Z scalar_t=float 2025-08-14T22:38:12.4346109Z ] 2025-08-14T22:38:12.4346856Z 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-14T22:38:12.4347656Z with 2025-08-14T22:38:12.4347931Z [ 2025-08-14T22:38:12.4348144Z scalar_t=float 2025-08-14T22:38:12.4348433Z ] 2025-08-14T22:38:12.4349140Z 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-14T22:38:12.4349895Z with 2025-08-14T22:38:12.4350137Z [ 2025-08-14T22:38:12.4350309Z scalar_t=float 2025-08-14T22:38:12.4350525Z ] 2025-08-14T22:38:12.4351164Z 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-14T22:38:12.4351965Z with 2025-08-14T22:38:12.4352147Z [ 2025-08-14T22:38:12.4352325Z scalar_t=float 2025-08-14T22:38:12.4352537Z ] 2025-08-14T22:38:12.4353181Z 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-14T22:38:12.4353904Z with 2025-08-14T22:38:12.4354068Z [ 2025-08-14T22:38:12.4354241Z scalar_t=float 2025-08-14T22:38:12.4354444Z ] 2025-08-14T22:38:12.4355091Z 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-14T22:38:12.4355811Z with 2025-08-14T22:38:12.4355976Z [ 2025-08-14T22:38:12.4356151Z scalar_t=float 2025-08-14T22:38:12.4356351Z ] 2025-08-14T22:38:12.4356999Z 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-14T22:38:12.4357712Z with 2025-08-14T22:38:12.4357884Z [ 2025-08-14T22:38:12.4358050Z scalar_t=float 2025-08-14T22:38:12.4358257Z ] 2025-08-14T22:38:12.4358904Z 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-14T22:38:12.4359610Z with 2025-08-14T22:38:12.4359784Z [ 2025-08-14T22:38:12.4359953Z scalar_t=float 2025-08-14T22:38:12.4360166Z ] 2025-08-14T22:38:12.4360869Z 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-14T22:38:12.4361602Z with 2025-08-14T22:38:12.4361769Z [ 2025-08-14T22:38:12.4361943Z scalar_t=float 2025-08-14T22:38:12.4362174Z ] 2025-08-14T22:38:12.4362819Z 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-14T22:38:12.4363542Z with 2025-08-14T22:38:12.4363709Z [ 2025-08-14T22:38:12.4363881Z scalar_t=float 2025-08-14T22:38:12.4364084Z ] 2025-08-14T22:38:12.4364731Z 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-14T22:38:12.4365495Z with 2025-08-14T22:38:12.4365678Z [ 2025-08-14T22:38:12.4365943Z scalar_t=float 2025-08-14T22:38:12.4366198Z ] 2025-08-14T22:38:12.4366855Z 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-14T22:38:12.4367572Z with 2025-08-14T22:38:12.4367750Z [ 2025-08-14T22:38:12.4367914Z scalar_t=float 2025-08-14T22:38:12.4368124Z ] 2025-08-14T22:38:12.4368873Z 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-14T22:38:12.4369595Z with 2025-08-14T22:38:12.4369771Z [ 2025-08-14T22:38:12.4369944Z scalar_t=float 2025-08-14T22:38:12.4370163Z ] 2025-08-14T22:38:12.4370808Z 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-14T22:38:12.4371534Z with 2025-08-14T22:38:12.4371698Z [ 2025-08-14T22:38:12.4371873Z scalar_t=float 2025-08-14T22:38:12.4372075Z ] 2025-08-14T22:38:12.4372724Z 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-14T22:38:12.4373438Z with 2025-08-14T22:38:12.4373610Z [ 2025-08-14T22:38:12.4373789Z scalar_t=float 2025-08-14T22:38:12.4373992Z ] 2025-08-14T22:38:12.4374640Z 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-14T22:38:12.4375356Z with 2025-08-14T22:38:12.4375527Z [ 2025-08-14T22:38:12.4375700Z scalar_t=float 2025-08-14T22:38:12.4375908Z ] 2025-08-14T22:38:12.4376563Z 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-14T22:38:12.4377282Z with 2025-08-14T22:38:12.4377459Z [ 2025-08-14T22:38:12.4377626Z scalar_t=float 2025-08-14T22:38:12.4377834Z ] 2025-08-14T22:38:12.4378482Z 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-14T22:38:12.4379211Z with 2025-08-14T22:38:12.4379380Z [ 2025-08-14T22:38:12.4379554Z scalar_t=float 2025-08-14T22:38:12.4379763Z ] 2025-08-14T22:38:12.4380409Z 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-14T22:38:12.4381138Z with 2025-08-14T22:38:12.4381302Z [ 2025-08-14T22:38:12.4381475Z scalar_t=float 2025-08-14T22:38:12.4381744Z ] 2025-08-14T22:38:12.4382399Z 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-14T22:38:12.4383121Z with 2025-08-14T22:38:12.4383294Z [ 2025-08-14T22:38:12.4383489Z scalar_t=float 2025-08-14T22:38:12.4383701Z ] 2025-08-14T22:38:12.4384357Z 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-14T22:38:12.4385068Z with 2025-08-14T22:38:12.4385245Z [ 2025-08-14T22:38:12.4385473Z scalar_t=float 2025-08-14T22:38:12.4385691Z ] 2025-08-14T22:38:12.4386927Z 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-14T22:38:12.4387667Z with 2025-08-14T22:38:12.4387849Z [ 2025-08-14T22:38:12.4388018Z scalar_t=float 2025-08-14T22:38:12.4388235Z ] 2025-08-14T22:38:12.4388880Z 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-14T22:38:12.4389607Z with 2025-08-14T22:38:12.4390162Z [ 2025-08-14T22:38:12.4390349Z scalar_t=float 2025-08-14T22:38:12.4390568Z ] 2025-08-14T22:38:12.4391322Z 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-14T22:38:12.4392051Z with 2025-08-14T22:38:12.4392217Z [ 2025-08-14T22:38:12.4392401Z scalar_t=float 2025-08-14T22:38:12.4392608Z ] 2025-08-14T22:38:12.4393264Z 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-14T22:38:12.4393977Z with 2025-08-14T22:38:12.4394147Z [ 2025-08-14T22:38:12.4394329Z scalar_t=float 2025-08-14T22:38:12.4394531Z ] 2025-08-14T22:38:12.4395189Z 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-14T22:38:12.4395903Z with 2025-08-14T22:38:12.4396082Z [ 2025-08-14T22:38:12.4396257Z scalar_t=float 2025-08-14T22:38:12.4396465Z ] 2025-08-14T22:38:12.4397104Z 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-14T22:38:12.4397830Z with 2025-08-14T22:38:12.4398001Z [ 2025-08-14T22:38:12.4398173Z scalar_t=float 2025-08-14T22:38:12.4398384Z ] 2025-08-14T22:38:12.4399018Z 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-14T22:38:12.4399743Z with 2025-08-14T22:38:12.4399911Z [ 2025-08-14T22:38:12.4400082Z scalar_t=float 2025-08-14T22:38:12.4400285Z ] 2025-08-14T22:38:12.4400934Z 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-14T22:38:12.4401659Z with 2025-08-14T22:38:12.4401823Z [ 2025-08-14T22:38:12.4401993Z scalar_t=float 2025-08-14T22:38:12.4402196Z ] 2025-08-14T22:38:12.4402843Z 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-14T22:38:12.4403624Z with 2025-08-14T22:38:12.4403809Z [ 2025-08-14T22:38:12.4403994Z scalar_t=float 2025-08-14T22:38:12.4404206Z ] 2025-08-14T22:38:12.4404858Z 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-14T22:38:12.4405580Z with 2025-08-14T22:38:12.4405767Z [ 2025-08-14T22:38:12.4405935Z scalar_t=float 2025-08-14T22:38:12.4406149Z ] 2025-08-14T22:38:12.4406789Z 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-14T22:38:12.4407511Z with 2025-08-14T22:38:12.4408128Z [ 2025-08-14T22:38:12.4408306Z scalar_t=float 2025-08-14T22:38:12.4408521Z ] 2025-08-14T22:38:12.4409166Z 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-14T22:38:12.4409892Z with 2025-08-14T22:38:12.4410059Z [ 2025-08-14T22:38:12.4410232Z scalar_t=float 2025-08-14T22:38:12.4410440Z ] 2025-08-14T22:38:12.4411418Z 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-14T22:38:12.4412200Z with 2025-08-14T22:38:12.4412377Z [ 2025-08-14T22:38:12.4412558Z scalar_t=float 2025-08-14T22:38:12.4412765Z ] 2025-08-14T22:38:12.4413424Z 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-14T22:38:12.4414147Z with 2025-08-14T22:38:12.4414328Z [ 2025-08-14T22:38:12.4414507Z scalar_t=float 2025-08-14T22:38:12.4414724Z ] 2025-08-14T22:38:12.4415363Z 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-14T22:38:12.4416085Z with 2025-08-14T22:38:12.4416254Z [ 2025-08-14T22:38:12.4416429Z scalar_t=float 2025-08-14T22:38:12.4416639Z ] 2025-08-14T22:38:12.4417286Z 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-14T22:38:12.4418013Z with 2025-08-14T22:38:12.4418180Z [ 2025-08-14T22:38:12.4418355Z scalar_t=float 2025-08-14T22:38:12.4418566Z ] 2025-08-14T22:38:12.4419220Z 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-14T22:38:12.4419948Z with 2025-08-14T22:38:12.4420115Z [ 2025-08-14T22:38:12.4420288Z scalar_t=float 2025-08-14T22:38:12.4420490Z ] 2025-08-14T22:38:12.4421140Z 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-14T22:38:12.4421861Z with 2025-08-14T22:38:12.4422044Z [ 2025-08-14T22:38:12.4422221Z scalar_t=float 2025-08-14T22:38:12.4422429Z ] 2025-08-14T22:38:12.4423081Z 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-14T22:38:12.4423797Z with 2025-08-14T22:38:12.4423984Z [ 2025-08-14T22:38:12.4424158Z scalar_t=float 2025-08-14T22:38:12.4424374Z ] 2025-08-14T22:38:12.4425063Z 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-14T22:38:12.4425793Z with 2025-08-14T22:38:12.4425976Z [ 2025-08-14T22:38:12.4426146Z scalar_t=float 2025-08-14T22:38:12.4426363Z ] 2025-08-14T22:38:12.4427008Z 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-14T22:38:12.4427819Z with 2025-08-14T22:38:12.4428016Z [ 2025-08-14T22:38:12.4428249Z scalar_t=float 2025-08-14T22:38:12.4428488Z ] 2025-08-14T22:38:12.4429198Z 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-14T22:38:12.4430361Z with 2025-08-14T22:38:12.4430568Z [ 2025-08-14T22:38:12.4430787Z scalar_t=float 2025-08-14T22:38:12.4431028Z ] 2025-08-14T22:38:12.4431837Z 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-14T22:38:12.4432577Z with 2025-08-14T22:38:12.4432796Z [ 2025-08-14T22:38:12.4433000Z scalar_t=float 2025-08-14T22:38:12.4433593Z ] 2025-08-14T22:38:12.4434354Z 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-14T22:38:12.4435109Z with 2025-08-14T22:38:12.4435322Z [ 2025-08-14T22:38:12.4435520Z scalar_t=float 2025-08-14T22:38:12.4435754Z ] 2025-08-14T22:38:12.4436414Z 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-14T22:38:12.4437151Z with 2025-08-14T22:38:12.4437321Z [ 2025-08-14T22:38:12.4437514Z scalar_t=float 2025-08-14T22:38:12.4437744Z ] 2025-08-14T22:38:12.4438399Z 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-14T22:38:12.4439142Z with 2025-08-14T22:38:12.4439319Z [ 2025-08-14T22:38:12.4439509Z scalar_t=float 2025-08-14T22:38:12.4439722Z ] 2025-08-14T22:38:12.4440389Z 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-14T22:38:12.4441124Z with 2025-08-14T22:38:12.4441303Z [ 2025-08-14T22:38:12.4441495Z scalar_t=float 2025-08-14T22:38:12.4441707Z ] 2025-08-14T22:38:12.4442378Z 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-14T22:38:12.4443103Z with 2025-08-14T22:38:12.4443291Z [ 2025-08-14T22:38:12.4443467Z scalar_t=float 2025-08-14T22:38:12.4443692Z ] 2025-08-14T22:38:12.4444347Z 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-14T22:38:12.4445089Z with 2025-08-14T22:38:12.4445282Z [ 2025-08-14T22:38:12.4445461Z scalar_t=float 2025-08-14T22:38:12.4445690Z ] 2025-08-14T22:38:12.4446344Z 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-14T22:38:12.4447100Z with 2025-08-14T22:38:12.4447274Z [ 2025-08-14T22:38:12.4447527Z scalar_t=float 2025-08-14T22:38:12.4447747Z ] 2025-08-14T22:38:12.4448419Z 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-14T22:38:12.4449164Z with 2025-08-14T22:38:12.4449344Z [ 2025-08-14T22:38:12.4449541Z scalar_t=float 2025-08-14T22:38:12.4449762Z ] 2025-08-14T22:38:12.4450431Z 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-14T22:38:12.4451159Z with 2025-08-14T22:38:12.4451341Z [ 2025-08-14T22:38:12.4451528Z scalar_t=float 2025-08-14T22:38:12.4451739Z ] 2025-08-14T22:38:12.4452806Z 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-14T22:38:12.4453530Z with 2025-08-14T22:38:12.4453723Z [ 2025-08-14T22:38:12.4453910Z scalar_t=float 2025-08-14T22:38:12.4454137Z ] 2025-08-14T22:38:12.4454789Z 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-14T22:38:12.4457542Z with 2025-08-14T22:38:12.4457812Z [ 2025-08-14T22:38:12.4457998Z scalar_t=float 2025-08-14T22:38:12.4458237Z ] 2025-08-14T22:38:12.4458903Z 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-14T22:38:12.4459644Z with 2025-08-14T22:38:12.4459840Z [ 2025-08-14T22:38:12.4460040Z scalar_t=float 2025-08-14T22:38:12.4460253Z ] 2025-08-14T22:38:12.4460929Z 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-14T22:38:12.4461672Z with 2025-08-14T22:38:12.4462527Z [ 2025-08-14T22:38:12.4463126Z scalar_t=float 2025-08-14T22:38:12.4463349Z ] 2025-08-14T22:38:12.4464037Z 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-14T22:38:12.4464757Z with 2025-08-14T22:38:12.4464940Z [ 2025-08-14T22:38:12.4465120Z scalar_t=float 2025-08-14T22:38:12.4465345Z ] 2025-08-14T22:38:12.4465997Z 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-14T22:38:12.4466712Z with 2025-08-14T22:38:12.4466889Z [ 2025-08-14T22:38:12.4467060Z scalar_t=float 2025-08-14T22:38:12.4467270Z ] 2025-08-14T22:38:12.4468909Z 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-14T22:38:12.4469643Z with 2025-08-14T22:38:12.4469817Z [ 2025-08-14T22:38:12.4470001Z scalar_t=float 2025-08-14T22:38:12.4470223Z ] 2025-08-14T22:38:12.4470865Z 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-14T22:38:12.4471631Z with 2025-08-14T22:38:12.4471797Z [ 2025-08-14T22:38:12.4471976Z scalar_t=float 2025-08-14T22:38:12.4472181Z ] 2025-08-14T22:38:12.4472913Z 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-14T22:38:12.4474668Z with 2025-08-14T22:38:12.4474861Z [ 2025-08-14T22:38:12.4475046Z scalar_t=float 2025-08-14T22:38:12.4475257Z ] 2025-08-14T22:38:12.4475910Z 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-14T22:38:12.4476627Z with 2025-08-14T22:38:12.4476803Z [ 2025-08-14T22:38:12.4476968Z scalar_t=float 2025-08-14T22:38:12.4477181Z ] 2025-08-14T22:38:12.4477826Z 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-14T22:38:12.4478549Z with 2025-08-14T22:38:12.4479174Z [ 2025-08-14T22:38:12.4480399Z scalar_t=float 2025-08-14T22:38:12.4480622Z ] 2025-08-14T22:38:12.4481273Z 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-14T22:38:12.4482008Z with 2025-08-14T22:38:12.4482178Z [ 2025-08-14T22:38:12.4482350Z scalar_t=float 2025-08-14T22:38:12.4482555Z ] 2025-08-14T22:38:12.4483584Z 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-14T22:38:12.4484367Z with 2025-08-14T22:38:12.4484537Z [ 2025-08-14T22:38:12.4484730Z scalar_t=float 2025-08-14T22:38:12.4484939Z ] 2025-08-14T22:38:12.4486649Z 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-14T22:38:12.4487381Z with 2025-08-14T22:38:12.4487578Z [ 2025-08-14T22:38:12.4487755Z scalar_t=float 2025-08-14T22:38:12.4487969Z ] 2025-08-14T22:38:12.4488617Z 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-14T22:38:12.4489332Z with 2025-08-14T22:38:12.4489506Z [ 2025-08-14T22:38:12.4489675Z scalar_t=float 2025-08-14T22:38:12.4489896Z ] 2025-08-14T22:38:12.4490540Z 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-14T22:38:12.4492348Z with 2025-08-14T22:38:12.4492525Z [ 2025-08-14T22:38:12.4492698Z scalar_t=float 2025-08-14T22:38:12.4492915Z ] 2025-08-14T22:38:12.4493567Z 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-14T22:38:12.4494293Z with 2025-08-14T22:38:12.4494456Z [ 2025-08-14T22:38:12.4494628Z scalar_t=float 2025-08-14T22:38:12.4494835Z ] 2025-08-14T22:38:12.4495482Z 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-14T22:38:12.4496205Z with 2025-08-14T22:38:12.4496370Z [ 2025-08-14T22:38:12.4497125Z scalar_t=float 2025-08-14T22:38:12.4497731Z ] 2025-08-14T22:38:12.4498388Z 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-14T22:38:12.4499115Z with 2025-08-14T22:38:12.4499294Z [ 2025-08-14T22:38:12.4499464Z scalar_t=float 2025-08-14T22:38:12.4499685Z ] 2025-08-14T22:38:12.4500424Z 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-14T22:38:12.4501145Z with 2025-08-14T22:38:12.4501324Z [ 2025-08-14T22:38:12.4501495Z scalar_t=float 2025-08-14T22:38:12.4501706Z ] 2025-08-14T22:38:12.4502936Z 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-14T22:38:12.4504066Z with 2025-08-14T22:38:12.4504233Z [ 2025-08-14T22:38:12.4504411Z scalar_t=float 2025-08-14T22:38:12.4504619Z ] 2025-08-14T22:38:12.4505275Z 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-14T22:38:12.4506463Z with 2025-08-14T22:38:12.4506637Z [ 2025-08-14T22:38:12.4506831Z scalar_t=float 2025-08-14T22:38:12.4507037Z ] 2025-08-14T22:38:12.4507695Z 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-14T22:38:12.4509460Z with 2025-08-14T22:38:12.4509651Z [ 2025-08-14T22:38:12.4510210Z scalar_t=float 2025-08-14T22:38:12.4510468Z ] 2025-08-14T22:38:12.4511138Z 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-14T22:38:12.4511910Z with 2025-08-14T22:38:12.4512088Z [ 2025-08-14T22:38:12.4512263Z scalar_t=float 2025-08-14T22:38:12.4512491Z ] 2025-08-14T22:38:12.4513146Z 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-14T22:38:12.4513871Z with 2025-08-14T22:38:12.4514704Z [ 2025-08-14T22:38:12.4515289Z scalar_t=float 2025-08-14T22:38:12.4515512Z ] 2025-08-14T22:38:12.4516161Z 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-14T22:38:12.4516895Z with 2025-08-14T22:38:12.4517068Z [ 2025-08-14T22:38:12.4517246Z scalar_t=float 2025-08-14T22:38:12.4517448Z ] 2025-08-14T22:38:12.4518108Z 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-14T22:38:12.4518831Z with 2025-08-14T22:38:12.4518997Z [ 2025-08-14T22:38:12.4519174Z scalar_t=float 2025-08-14T22:38:12.4519376Z ] 2025-08-14T22:38:12.4521066Z 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-14T22:38:12.4521789Z with 2025-08-14T22:38:12.4521969Z [ 2025-08-14T22:38:12.4522139Z scalar_t=float 2025-08-14T22:38:12.4522439Z ] 2025-08-14T22:38:12.4523152Z 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-14T22:38:12.4523903Z with 2025-08-14T22:38:12.4524120Z [ 2025-08-14T22:38:12.4524320Z scalar_t=float 2025-08-14T22:38:12.4524576Z ] 2025-08-14T22:38:12.4525247Z 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-14T22:38:12.4527015Z with 2025-08-14T22:38:12.4527223Z [ 2025-08-14T22:38:12.4527534Z scalar_t=float 2025-08-14T22:38:12.4527801Z ] 2025-08-14T22:38:12.4528490Z 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-14T22:38:12.4529261Z with 2025-08-14T22:38:12.4529465Z [ 2025-08-14T22:38:12.4529693Z scalar_t=float 2025-08-14T22:38:12.4529932Z ] 2025-08-14T22:38:12.4530637Z 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-14T22:38:12.4532416Z with 2025-08-14T22:38:12.4532631Z [ 2025-08-14T22:38:12.4532866Z scalar_t=float 2025-08-14T22:38:12.4533564Z ] 2025-08-14T22:38:12.4534286Z 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-14T22:38:12.4535037Z with 2025-08-14T22:38:12.4535255Z [ 2025-08-14T22:38:12.4535455Z scalar_t=float 2025-08-14T22:38:12.4535720Z ] 2025-08-14T22:38:12.4536719Z 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-14T22:38:12.4538651Z with 2025-08-14T22:38:12.4538885Z [ 2025-08-14T22:38:12.4539085Z scalar_t=float 2025-08-14T22:38:12.4539350Z ] 2025-08-14T22:38:12.4540024Z 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-14T22:38:12.4540806Z with 2025-08-14T22:38:12.4541005Z [ 2025-08-14T22:38:12.4541232Z scalar_t=float 2025-08-14T22:38:12.4541454Z ] 2025-08-14T22:38:12.4542155Z 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-14T22:38:12.4542932Z with 2025-08-14T22:38:12.4544139Z [ 2025-08-14T22:38:12.4544370Z scalar_t=float 2025-08-14T22:38:12.4544620Z ] 2025-08-14T22:38:12.4545329Z 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-14T22:38:12.4546082Z with 2025-08-14T22:38:12.4546288Z [ 2025-08-14T22:38:12.4546480Z scalar_t=float 2025-08-14T22:38:12.4546741Z ] 2025-08-14T22:38:12.4547442Z 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-14T22:38:12.4548189Z with 2025-08-14T22:38:12.4548425Z [ 2025-08-14T22:38:12.4548632Z scalar_t=float 2025-08-14T22:38:12.4549925Z ] 2025-08-14T22:38:12.4550609Z 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-14T22:38:12.4551429Z with 2025-08-14T22:38:12.4551666Z [ 2025-08-14T22:38:12.4551884Z scalar_t=float 2025-08-14T22:38:12.4552154Z ] 2025-08-14T22:38:12.4552826Z 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-14T22:38:12.4553594Z with 2025-08-14T22:38:12.4553788Z [ 2025-08-14T22:38:12.4554007Z scalar_t=float 2025-08-14T22:38:12.4554239Z ] 2025-08-14T22:38:12.4556024Z 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-14T22:38:12.4556803Z with 2025-08-14T22:38:12.4557005Z [ 2025-08-14T22:38:12.4557240Z scalar_t=float 2025-08-14T22:38:12.4557475Z ] 2025-08-14T22:38:12.4558174Z 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-14T22:38:12.4558920Z with 2025-08-14T22:38:12.4559136Z [ 2025-08-14T22:38:12.4559333Z scalar_t=float 2025-08-14T22:38:12.4559585Z ] 2025-08-14T22:38:12.4561319Z 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-14T22:38:12.4562565Z with 2025-08-14T22:38:12.4562790Z [ 2025-08-14T22:38:12.4562989Z scalar_t=float 2025-08-14T22:38:12.4563245Z ] 2025-08-14T22:38:12.4563919Z 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-14T22:38:12.4564693Z with 2025-08-14T22:38:12.4564892Z [ 2025-08-14T22:38:12.4565118Z scalar_t=float 2025-08-14T22:38:12.4565387Z ] 2025-08-14T22:38:12.4567503Z 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-14T22:38:12.4568351Z with 2025-08-14T22:38:12.4568562Z [ 2025-08-14T22:38:12.4568787Z scalar_t=float 2025-08-14T22:38:12.4569023Z ] 2025-08-14T22:38:12.4569730Z 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-14T22:38:12.4570483Z with 2025-08-14T22:38:12.4570701Z [ 2025-08-14T22:38:12.4570913Z scalar_t=float 2025-08-14T22:38:12.4571148Z ] 2025-08-14T22:38:12.4572899Z 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-14T22:38:12.4573663Z with 2025-08-14T22:38:12.4573889Z [ 2025-08-14T22:38:12.4574109Z scalar_t=float 2025-08-14T22:38:12.4605075Z ] 2025-08-14T22:38:12.4605812Z 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-14T22:38:12.4606554Z with 2025-08-14T22:38:12.4606734Z [ 2025-08-14T22:38:12.4606906Z scalar_t=float 2025-08-14T22:38:12.4608279Z ] 2025-08-14T22:38:12.4608960Z 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-14T22:38:12.4609692Z with 2025-08-14T22:38:12.4609869Z [ 2025-08-14T22:38:12.4610055Z scalar_t=float 2025-08-14T22:38:12.4610262Z ] 2025-08-14T22:38:12.4610923Z 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-14T22:38:12.4611660Z with 2025-08-14T22:38:12.4611829Z [ 2025-08-14T22:38:12.4612007Z scalar_t=float 2025-08-14T22:38:12.4612213Z ] 2025-08-14T22:38:12.4612860Z 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-14T22:38:12.4614581Z with 2025-08-14T22:38:12.4614751Z [ 2025-08-14T22:38:12.4614940Z scalar_t=float 2025-08-14T22:38:12.4615146Z ] 2025-08-14T22:38:12.4615927Z 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-14T22:38:12.4616660Z with 2025-08-14T22:38:12.4616830Z [ 2025-08-14T22:38:12.4617025Z scalar_t=float 2025-08-14T22:38:12.4617232Z ] 2025-08-14T22:38:12.4617899Z 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-14T22:38:12.4618614Z with 2025-08-14T22:38:12.4619805Z [ 2025-08-14T22:38:12.4619984Z scalar_t=float 2025-08-14T22:38:12.4620203Z ] 2025-08-14T22:38:12.4620864Z 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-14T22:38:12.4622116Z with 2025-08-14T22:38:12.4622300Z [ 2025-08-14T22:38:12.4622472Z scalar_t=float 2025-08-14T22:38:12.4622685Z ] 2025-08-14T22:38:12.4623332Z 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-14T22:38:12.4624060Z with 2025-08-14T22:38:12.4624229Z [ 2025-08-14T22:38:12.4625935Z scalar_t=float 2025-08-14T22:38:12.4626197Z ] 2025-08-14T22:38:12.4626848Z 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-14T22:38:12.4627573Z with 2025-08-14T22:38:12.4627743Z [ 2025-08-14T22:38:12.4627922Z scalar_t=float 2025-08-14T22:38:12.4628132Z ] 2025-08-14T22:38:12.4628783Z 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-14T22:38:12.4629499Z with 2025-08-14T22:38:12.4629678Z [ 2025-08-14T22:38:12.4629859Z scalar_t=float 2025-08-14T22:38:12.4630071Z ] 2025-08-14T22:38:12.4631808Z 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-14T22:38:12.4632539Z with 2025-08-14T22:38:12.4632727Z [ 2025-08-14T22:38:12.4632900Z scalar_t=float 2025-08-14T22:38:12.4633119Z ] 2025-08-14T22:38:12.4633764Z 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-14T22:38:12.4634489Z with 2025-08-14T22:38:12.4634672Z [ 2025-08-14T22:38:12.4634848Z scalar_t=float 2025-08-14T22:38:12.4635064Z ] 2025-08-14T22:38:12.4635720Z 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-14T22:38:12.4637434Z with 2025-08-14T22:38:12.4637609Z [ 2025-08-14T22:38:12.4637796Z scalar_t=float 2025-08-14T22:38:12.4638002Z ] 2025-08-14T22:38:12.4638681Z 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-14T22:38:12.4639409Z with 2025-08-14T22:38:12.4639581Z [ 2025-08-14T22:38:12.4639763Z scalar_t=float 2025-08-14T22:38:12.4639971Z ] 2025-08-14T22:38:12.4640622Z 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-14T22:38:12.4641346Z with 2025-08-14T22:38:12.4642905Z [ 2025-08-14T22:38:12.4643121Z scalar_t=float 2025-08-14T22:38:12.4643350Z ] 2025-08-14T22:38:12.4644009Z 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-14T22:38:12.4644723Z with 2025-08-14T22:38:12.4644898Z [ 2025-08-14T22:38:12.4645082Z scalar_t=float 2025-08-14T22:38:12.4645160Z ] 2025-08-14T22:38:12.4645709Z 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-14T22:38:12.4645782Z with 2025-08-14T22:38:12.4645849Z [ 2025-08-14T22:38:12.4646330Z scalar_t=float 2025-08-14T22:38:12.4646397Z ] 2025-08-14T22:38:12.4646949Z 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-14T22:38:12.4647024Z with 2025-08-14T22:38:12.4647091Z [ 2025-08-14T22:38:12.4647174Z scalar_t=float 2025-08-14T22:38:12.4647242Z ] 2025-08-14T22:38:12.4661293Z 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-14T22:38:12.4661598Z with 2025-08-14T22:38:12.4661667Z [ 2025-08-14T22:38:12.4661760Z scalar_t=float 2025-08-14T22:38:12.4661828Z ] 2025-08-14T22:38:12.4662387Z 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-14T22:38:12.4662465Z with 2025-08-14T22:38:12.4662536Z [ 2025-08-14T22:38:12.4662614Z scalar_t=float 2025-08-14T22:38:12.4662680Z ] 2025-08-14T22:38:12.4663241Z 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-14T22:38:12.4663312Z with 2025-08-14T22:38:12.4663383Z [ 2025-08-14T22:38:12.4663469Z scalar_t=float 2025-08-14T22:38:12.4663540Z ] 2025-08-14T22:38:12.4664087Z 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-14T22:38:12.4664162Z with 2025-08-14T22:38:12.4664232Z [ 2025-08-14T22:38:12.4664309Z scalar_t=float 2025-08-14T22:38:12.4664374Z ] 2025-08-14T22:38:12.4664931Z 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-14T22:38:12.4665006Z with 2025-08-14T22:38:12.4665074Z [ 2025-08-14T22:38:12.4665161Z scalar_t=float 2025-08-14T22:38:12.4665226Z ] 2025-08-14T22:38:12.4671526Z 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-14T22:38:12.4671599Z with 2025-08-14T22:38:12.4671677Z [ 2025-08-14T22:38:12.4671757Z scalar_t=float 2025-08-14T22:38:12.4671825Z ] 2025-08-14T22:38:12.4672382Z 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-14T22:38:12.4672455Z with 2025-08-14T22:38:12.4672527Z [ 2025-08-14T22:38:12.4672620Z scalar_t=float 2025-08-14T22:38:12.4672684Z ] 2025-08-14T22:38:12.4673540Z 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-14T22:38:12.4673622Z with 2025-08-14T22:38:12.4673696Z [ 2025-08-14T22:38:12.4673772Z scalar_t=float 2025-08-14T22:38:12.4673837Z ] 2025-08-14T22:38:12.4674392Z 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-14T22:38:12.4674463Z with 2025-08-14T22:38:12.4674571Z [ 2025-08-14T22:38:12.4674667Z scalar_t=float 2025-08-14T22:38:12.4674744Z ] 2025-08-14T22:38:12.4675289Z 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-14T22:38:12.4675707Z with 2025-08-14T22:38:12.4678779Z [ 2025-08-14T22:38:12.4678868Z scalar_t=float 2025-08-14T22:38:12.4678945Z ] 2025-08-14T22:38:12.4679512Z 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-14T22:38:12.4679579Z with 2025-08-14T22:38:12.4679645Z [ 2025-08-14T22:38:12.4679726Z scalar_t=float 2025-08-14T22:38:12.4679805Z ] 2025-08-14T22:38:12.4680770Z 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-14T22:38:12.4680891Z with 2025-08-14T22:38:12.4680969Z [ 2025-08-14T22:38:12.4681044Z scalar_t=float 2025-08-14T22:38:12.4681121Z ] 2025-08-14T22:38:12.4681691Z 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-14T22:38:12.4681765Z with 2025-08-14T22:38:12.4681832Z [ 2025-08-14T22:38:12.4681911Z scalar_t=float 2025-08-14T22:38:12.4681986Z ] 2025-08-14T22:38:12.4682529Z 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-14T22:38:12.4682597Z with 2025-08-14T22:38:12.4682675Z [ 2025-08-14T22:38:12.4682753Z scalar_t=float 2025-08-14T22:38:12.4682818Z ] 2025-08-14T22:38:12.4683362Z 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-14T22:38:12.4684846Z with 2025-08-14T22:38:12.4684926Z [ 2025-08-14T22:38:12.4685010Z scalar_t=float 2025-08-14T22:38:12.4685083Z ] 2025-08-14T22:38:12.4685633Z 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-14T22:38:12.4685705Z with 2025-08-14T22:38:12.4685778Z [ 2025-08-14T22:38:12.4685857Z scalar_t=float 2025-08-14T22:38:12.4685925Z ] 2025-08-14T22:38:12.4686473Z 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-14T22:38:12.4686551Z with 2025-08-14T22:38:12.4686614Z [ 2025-08-14T22:38:12.4686689Z scalar_t=float 2025-08-14T22:38:12.4686763Z ] 2025-08-14T22:38:12.4687307Z 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-14T22:38:12.4687376Z with 2025-08-14T22:38:12.4687446Z [ 2025-08-14T22:38:12.4687531Z scalar_t=float 2025-08-14T22:38:12.4687889Z ] 2025-08-14T22:38:12.4688449Z 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-14T22:38:12.4688527Z with 2025-08-14T22:38:12.4688599Z [ 2025-08-14T22:38:12.4688682Z scalar_t=float 2025-08-14T22:38:12.4688760Z ] 2025-08-14T22:38:12.4689308Z 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-14T22:38:12.4689377Z with 2025-08-14T22:38:12.4689445Z [ 2025-08-14T22:38:12.4689526Z scalar_t=float 2025-08-14T22:38:12.4690994Z ] 2025-08-14T22:38:12.4691551Z 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-14T22:38:12.4692023Z with 2025-08-14T22:38:12.4692094Z [ 2025-08-14T22:38:12.4692173Z scalar_t=float 2025-08-14T22:38:12.4692238Z ] 2025-08-14T22:38:12.4692810Z 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-14T22:38:12.4692881Z with 2025-08-14T22:38:12.4692995Z [ 2025-08-14T22:38:12.4693131Z scalar_t=float 2025-08-14T22:38:12.4693199Z ] 2025-08-14T22:38:12.4693753Z 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-14T22:38:12.4693838Z with 2025-08-14T22:38:12.4693906Z [ 2025-08-14T22:38:12.4693988Z scalar_t=float 2025-08-14T22:38:12.4694054Z ] 2025-08-14T22:38:12.4694616Z 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-14T22:38:12.4694685Z with 2025-08-14T22:38:12.4694757Z [ 2025-08-14T22:38:12.4694849Z scalar_t=float 2025-08-14T22:38:12.4694917Z ] 2025-08-14T22:38:12.4695467Z 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-14T22:38:12.4695554Z with 2025-08-14T22:38:12.4695618Z [ 2025-08-14T22:38:12.4697090Z scalar_t=float 2025-08-14T22:38:12.4697165Z ] 2025-08-14T22:38:12.4697726Z 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-14T22:38:12.4697801Z with 2025-08-14T22:38:12.4697872Z [ 2025-08-14T22:38:12.4697961Z scalar_t=float 2025-08-14T22:38:12.4698038Z ] 2025-08-14T22:38:12.4698586Z 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-14T22:38:12.4698656Z with 2025-08-14T22:38:12.4698734Z [ 2025-08-14T22:38:12.4698816Z scalar_t=float 2025-08-14T22:38:12.4698881Z ] 2025-08-14T22:38:12.4699437Z 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-14T22:38:12.4699505Z with 2025-08-14T22:38:12.4699570Z [ 2025-08-14T22:38:12.4699647Z scalar_t=float 2025-08-14T22:38:12.4699725Z ] 2025-08-14T22:38:12.4700273Z 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-14T22:38:12.4700623Z with 2025-08-14T22:38:12.4700710Z [ 2025-08-14T22:38:12.4700792Z scalar_t=float 2025-08-14T22:38:12.4700858Z ] 2025-08-14T22:38:12.4701416Z 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-14T22:38:12.4701485Z with 2025-08-14T22:38:12.4701559Z [ 2025-08-14T22:38:12.4701642Z scalar_t=float 2025-08-14T22:38:12.4701723Z ] 2025-08-14T22:38:12.4703669Z 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-14T22:38:12.4703744Z with 2025-08-14T22:38:12.4703823Z [ 2025-08-14T22:38:12.4704329Z scalar_t=float 2025-08-14T22:38:12.4704397Z ] 2025-08-14T22:38:12.4704965Z 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-14T22:38:12.4705037Z with 2025-08-14T22:38:12.4705107Z [ 2025-08-14T22:38:12.4705186Z scalar_t=float 2025-08-14T22:38:12.4705264Z ] 2025-08-14T22:38:12.4705853Z 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-14T22:38:12.4705966Z with 2025-08-14T22:38:12.4706045Z [ 2025-08-14T22:38:12.4706123Z scalar_t=float 2025-08-14T22:38:12.4706191Z ] 2025-08-14T22:38:12.4706738Z 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-14T22:38:12.4706828Z with 2025-08-14T22:38:12.4706899Z [ 2025-08-14T22:38:12.4706978Z scalar_t=float 2025-08-14T22:38:12.4707069Z ] 2025-08-14T22:38:12.4707619Z 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-14T22:38:12.4707693Z with 2025-08-14T22:38:12.4707769Z [ 2025-08-14T22:38:12.4707855Z scalar_t=float 2025-08-14T22:38:12.4707925Z ] 2025-08-14T22:38:12.4708474Z 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-14T22:38:12.4708554Z with 2025-08-14T22:38:12.4708623Z [ 2025-08-14T22:38:12.4708704Z scalar_t=float 2025-08-14T22:38:12.4708781Z ] 2025-08-14T22:38:12.4709325Z 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-14T22:38:12.4709411Z with 2025-08-14T22:38:12.4709485Z [ 2025-08-14T22:38:12.4709560Z scalar_t=float 2025-08-14T22:38:12.4709625Z ] 2025-08-14T22:38:12.4710185Z 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-14T22:38:12.4710259Z with 2025-08-14T22:38:12.4710327Z [ 2025-08-14T22:38:12.4710403Z scalar_t=float 2025-08-14T22:38:12.4710481Z ] 2025-08-14T22:38:12.4711022Z 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-14T22:38:12.4711086Z with 2025-08-14T22:38:12.4711158Z [ 2025-08-14T22:38:12.4711325Z scalar_t=float 2025-08-14T22:38:12.4711391Z ] 2025-08-14T22:38:12.4712189Z 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-14T22:38:12.4712261Z with 2025-08-14T22:38:12.4712327Z [ 2025-08-14T22:38:12.4712406Z scalar_t=float 2025-08-14T22:38:12.4712487Z ] 2025-08-14T22:38:12.4714540Z 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-14T22:38:12.4714615Z with 2025-08-14T22:38:12.4714693Z [ 2025-08-14T22:38:12.4714775Z scalar_t=float 2025-08-14T22:38:12.4714840Z ] 2025-08-14T22:38:12.4715395Z 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-14T22:38:12.4715526Z with 2025-08-14T22:38:12.4715592Z [ 2025-08-14T22:38:12.4715670Z scalar_t=float 2025-08-14T22:38:12.4715751Z ] 2025-08-14T22:38:12.4716299Z 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-14T22:38:12.4716376Z with 2025-08-14T22:38:12.4716460Z [ 2025-08-14T22:38:12.4716536Z scalar_t=float 2025-08-14T22:38:12.4716641Z ] 2025-08-14T22:38:12.4717227Z 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-14T22:38:12.4717304Z with 2025-08-14T22:38:12.4717376Z [ 2025-08-14T22:38:12.4717454Z scalar_t=float 2025-08-14T22:38:12.4717534Z ] 2025-08-14T22:38:12.4718080Z 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-14T22:38:12.4718153Z with 2025-08-14T22:38:12.4718224Z [ 2025-08-14T22:38:12.4718313Z scalar_t=float 2025-08-14T22:38:12.4718378Z ] 2025-08-14T22:38:12.4718921Z 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-14T22:38:12.4719000Z with 2025-08-14T22:38:12.4719071Z [ 2025-08-14T22:38:12.4719150Z scalar_t=float 2025-08-14T22:38:12.4719221Z ] 2025-08-14T22:38:12.4719762Z 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-14T22:38:12.4719828Z with 2025-08-14T22:38:12.4719894Z [ 2025-08-14T22:38:12.4719978Z scalar_t=float 2025-08-14T22:38:12.4720042Z ] 2025-08-14T22:38:12.4720585Z 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-14T22:38:12.4720657Z with 2025-08-14T22:38:12.4720726Z [ 2025-08-14T22:38:12.4720803Z scalar_t=float 2025-08-14T22:38:12.4720871Z ] 2025-08-14T22:38:12.4721425Z 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-14T22:38:12.4721494Z with 2025-08-14T22:38:12.4721557Z [ 2025-08-14T22:38:12.4721637Z scalar_t=float 2025-08-14T22:38:12.4721703Z ] 2025-08-14T22:38:12.4722247Z 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-14T22:38:12.4722325Z with 2025-08-14T22:38:12.4722390Z [ 2025-08-14T22:38:12.4722732Z scalar_t=float 2025-08-14T22:38:12.4722806Z ] 2025-08-14T22:38:12.4723366Z 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-14T22:38:12.4723434Z with 2025-08-14T22:38:12.4723504Z [ 2025-08-14T22:38:12.4723586Z scalar_t=float 2025-08-14T22:38:12.4723658Z ] 2025-08-14T22:38:12.4724204Z 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-14T22:38:12.4724284Z with 2025-08-14T22:38:12.4724350Z [ 2025-08-14T22:38:12.4724426Z scalar_t=float 2025-08-14T22:38:12.4724491Z ] 2025-08-14T22:38:12.4725093Z 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-14T22:38:12.4725162Z with 2025-08-14T22:38:12.4725227Z [ 2025-08-14T22:38:12.4725309Z scalar_t=float 2025-08-14T22:38:12.4725375Z ] 2025-08-14T22:38:12.4725919Z 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-14T22:38:12.4726021Z with 2025-08-14T22:38:12.4726124Z [ 2025-08-14T22:38:12.4726204Z scalar_t=float 2025-08-14T22:38:12.4726269Z ] 2025-08-14T22:38:12.4726823Z 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-14T22:38:12.4726894Z with 2025-08-14T22:38:12.4726964Z [ 2025-08-14T22:38:12.4727045Z scalar_t=float 2025-08-14T22:38:12.4727122Z ] 2025-08-14T22:38:12.4727663Z 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-14T22:38:12.4727728Z with 2025-08-14T22:38:12.4727802Z [ 2025-08-14T22:38:12.4727885Z scalar_t=float 2025-08-14T22:38:12.4727951Z ] 2025-08-14T22:38:12.4728517Z 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-14T22:38:12.4728584Z with 2025-08-14T22:38:12.4728648Z [ 2025-08-14T22:38:12.4728723Z scalar_t=float 2025-08-14T22:38:12.4728794Z ] 2025-08-14T22:38:12.4730869Z 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-14T22:38:12.4730948Z with 2025-08-14T22:38:12.4731021Z [ 2025-08-14T22:38:12.4731100Z scalar_t=float 2025-08-14T22:38:12.4731166Z ] 2025-08-14T22:38:12.4731721Z 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-14T22:38:12.4731789Z with 2025-08-14T22:38:12.4731858Z [ 2025-08-14T22:38:12.4731935Z scalar_t=float 2025-08-14T22:38:12.4732009Z ] 2025-08-14T22:38:12.4732550Z 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-14T22:38:12.4732616Z with 2025-08-14T22:38:12.4732691Z [ 2025-08-14T22:38:12.4732765Z scalar_t=float 2025-08-14T22:38:12.4732833Z ] 2025-08-14T22:38:12.4733651Z 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-14T22:38:12.4733744Z with 2025-08-14T22:38:12.4733817Z [ 2025-08-14T22:38:12.4733900Z scalar_t=float 2025-08-14T22:38:12.4733975Z ] 2025-08-14T22:38:12.4734528Z 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-14T22:38:12.4734601Z with 2025-08-14T22:38:12.4734682Z [ 2025-08-14T22:38:12.4734764Z scalar_t=float 2025-08-14T22:38:12.4734835Z ] 2025-08-14T22:38:12.4735378Z 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-14T22:38:12.4735453Z with 2025-08-14T22:38:12.4735560Z [ 2025-08-14T22:38:12.4735639Z scalar_t=float 2025-08-14T22:38:12.4735714Z ] 2025-08-14T22:38:12.4736259Z 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-14T22:38:12.4736331Z with 2025-08-14T22:38:12.4736399Z [ 2025-08-14T22:38:12.4736495Z scalar_t=float 2025-08-14T22:38:12.4736566Z ] 2025-08-14T22:38:12.4737145Z 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-14T22:38:12.4737264Z with 2025-08-14T22:38:12.4737330Z [ 2025-08-14T22:38:12.4737407Z scalar_t=float 2025-08-14T22:38:12.4737492Z ] 2025-08-14T22:38:12.4738046Z 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-14T22:38:12.4738123Z with 2025-08-14T22:38:12.4738191Z [ 2025-08-14T22:38:12.4738283Z scalar_t=float 2025-08-14T22:38:12.4738356Z ] 2025-08-14T22:38:12.4738904Z 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-14T22:38:12.4738991Z with 2025-08-14T22:38:12.4739059Z [ 2025-08-14T22:38:12.4739136Z scalar_t=float 2025-08-14T22:38:12.4739215Z ] 2025-08-14T22:38:12.4739770Z 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-14T22:38:12.4739843Z with 2025-08-14T22:38:12.4739906Z [ 2025-08-14T22:38:12.4739994Z scalar_t=float 2025-08-14T22:38:12.4740060Z ] 2025-08-14T22:38:12.4740606Z 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-14T22:38:12.4740685Z with 2025-08-14T22:38:12.4740753Z [ 2025-08-14T22:38:12.4740833Z scalar_t=float 2025-08-14T22:38:12.4740901Z ] 2025-08-14T22:38:12.4741458Z 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-14T22:38:12.4741531Z with 2025-08-14T22:38:12.4741597Z [ 2025-08-14T22:38:12.4741683Z scalar_t=float 2025-08-14T22:38:12.4741747Z ] 2025-08-14T22:38:12.4742288Z 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-14T22:38:12.4742363Z with 2025-08-14T22:38:12.4742431Z [ 2025-08-14T22:38:12.4742508Z scalar_t=float 2025-08-14T22:38:12.4742573Z ] 2025-08-14T22:38:12.4743340Z 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-14T22:38:12.4743415Z with 2025-08-14T22:38:12.4743483Z [ 2025-08-14T22:38:12.4743576Z scalar_t=float 2025-08-14T22:38:12.4743645Z ] 2025-08-14T22:38:12.4744191Z 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-14T22:38:12.4744261Z with 2025-08-14T22:38:12.4744338Z [ 2025-08-14T22:38:12.4744416Z scalar_t=float 2025-08-14T22:38:12.4744485Z ] 2025-08-14T22:38:12.4745047Z 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-14T22:38:12.4745155Z with 2025-08-14T22:38:12.4745222Z [ 2025-08-14T22:38:12.4745305Z scalar_t=float 2025-08-14T22:38:12.4745432Z ] 2025-08-14T22:38:12.4745993Z 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-14T22:38:12.4746081Z with 2025-08-14T22:38:12.4746187Z [ 2025-08-14T22:38:12.4746418Z scalar_t=float 2025-08-14T22:38:12.4746537Z ] 2025-08-14T22:38:12.4747133Z 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-14T22:38:12.4747219Z with 2025-08-14T22:38:12.4747303Z [ 2025-08-14T22:38:12.4747408Z scalar_t=float 2025-08-14T22:38:12.4747518Z ] 2025-08-14T22:38:12.4748080Z 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-14T22:38:12.4748163Z with 2025-08-14T22:38:12.4748269Z [ 2025-08-14T22:38:12.4748360Z scalar_t=float 2025-08-14T22:38:12.4748433Z ] 2025-08-14T22:38:12.4749022Z 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-14T22:38:12.4749110Z with 2025-08-14T22:38:12.4749191Z [ 2025-08-14T22:38:12.4749280Z scalar_t=float 2025-08-14T22:38:12.4749376Z ] 2025-08-14T22:38:12.4749935Z 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-14T22:38:12.4750020Z with 2025-08-14T22:38:12.4750134Z [ 2025-08-14T22:38:12.4750226Z scalar_t=float 2025-08-14T22:38:12.4750309Z ] 2025-08-14T22:38:12.4750874Z 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-14T22:38:12.4750986Z with 2025-08-14T22:38:12.4751067Z [ 2025-08-14T22:38:12.4751166Z scalar_t=float 2025-08-14T22:38:12.4751348Z ] 2025-08-14T22:38:12.4751915Z 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-14T22:38:12.4752003Z with 2025-08-14T22:38:12.4752109Z [ 2025-08-14T22:38:12.4752203Z scalar_t=float 2025-08-14T22:38:12.4752285Z ] 2025-08-14T22:38:12.4752850Z 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-14T22:38:12.4752932Z with 2025-08-14T22:38:12.4753018Z [ 2025-08-14T22:38:12.4753362Z scalar_t=float 2025-08-14T22:38:12.4753478Z ] 2025-08-14T22:38:12.4754044Z 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-14T22:38:12.4754133Z with 2025-08-14T22:38:12.4754221Z [ 2025-08-14T22:38:12.4754352Z scalar_t=float 2025-08-14T22:38:12.4754436Z ] 2025-08-14T22:38:12.4754996Z 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-14T22:38:12.4755104Z with 2025-08-14T22:38:12.4755186Z [ 2025-08-14T22:38:12.4755275Z scalar_t=float 2025-08-14T22:38:12.4755402Z ] 2025-08-14T22:38:12.4755994Z 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-14T22:38:12.4756078Z with 2025-08-14T22:38:12.4756166Z [ 2025-08-14T22:38:12.4756282Z scalar_t=float 2025-08-14T22:38:12.4756363Z ] 2025-08-14T22:38:12.4756962Z 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-14T22:38:12.4757106Z with 2025-08-14T22:38:12.4757189Z [ 2025-08-14T22:38:12.4757282Z scalar_t=float 2025-08-14T22:38:12.4757365Z ] 2025-08-14T22:38:12.4757950Z 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-14T22:38:12.4758036Z with 2025-08-14T22:38:12.4758118Z [ 2025-08-14T22:38:12.4758237Z scalar_t=float 2025-08-14T22:38:12.4758318Z ] 2025-08-14T22:38:12.4758883Z 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-14T22:38:12.4758988Z with 2025-08-14T22:38:12.4759072Z [ 2025-08-14T22:38:12.4759168Z scalar_t=float 2025-08-14T22:38:12.4759250Z ] 2025-08-14T22:38:12.4759838Z 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-14T22:38:12.4759923Z with 2025-08-14T22:38:12.4760000Z [ 2025-08-14T22:38:12.4760113Z scalar_t=float 2025-08-14T22:38:12.4760198Z ] 2025-08-14T22:38:12.4761945Z 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-14T22:38:12.4762041Z with 2025-08-14T22:38:12.4762147Z [ 2025-08-14T22:38:12.4762247Z scalar_t=float 2025-08-14T22:38:12.4762333Z ] 2025-08-14T22:38:12.4762907Z 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-14T22:38:12.4763000Z with 2025-08-14T22:38:12.4763082Z [ 2025-08-14T22:38:12.4763199Z scalar_t=float 2025-08-14T22:38:12.4763282Z ] 2025-08-14T22:38:12.4763843Z 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-14T22:38:12.4763926Z with 2025-08-14T22:38:12.4764030Z [ 2025-08-14T22:38:12.4764124Z scalar_t=float 2025-08-14T22:38:12.4764209Z ] 2025-08-14T22:38:12.4765081Z 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-14T22:38:12.4765181Z with 2025-08-14T22:38:12.4765263Z [ 2025-08-14T22:38:12.4765364Z scalar_t=float 2025-08-14T22:38:12.4765491Z ] 2025-08-14T22:38:12.4766059Z 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-14T22:38:12.4766145Z with 2025-08-14T22:38:12.4766237Z [ 2025-08-14T22:38:12.4766332Z scalar_t=float 2025-08-14T22:38:12.4766414Z ] 2025-08-14T22:38:12.4766999Z 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-14T22:38:12.4767133Z with 2025-08-14T22:38:12.4767221Z [ 2025-08-14T22:38:12.4767318Z scalar_t=float 2025-08-14T22:38:12.4767429Z ] 2025-08-14T22:38:12.4767996Z 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-14T22:38:12.4768075Z with 2025-08-14T22:38:12.4768190Z [ 2025-08-14T22:38:12.4768280Z scalar_t=float 2025-08-14T22:38:12.4768360Z ] 2025-08-14T22:38:12.4768960Z 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-14T22:38:12.4769107Z with 2025-08-14T22:38:12.4769193Z [ 2025-08-14T22:38:12.4769284Z scalar_t=float 2025-08-14T22:38:12.4769396Z ] 2025-08-14T22:38:12.4769962Z 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-14T22:38:12.4770041Z with 2025-08-14T22:38:12.4770143Z [ 2025-08-14T22:38:12.4770240Z scalar_t=float 2025-08-14T22:38:12.4770320Z ] 2025-08-14T22:38:12.4770881Z 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-14T22:38:12.4770967Z with 2025-08-14T22:38:12.4771039Z [ 2025-08-14T22:38:12.4771136Z scalar_t=float 2025-08-14T22:38:12.4771226Z ] 2025-08-14T22:38:12.4771778Z 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-14T22:38:12.4771861Z with 2025-08-14T22:38:12.4771963Z [ 2025-08-14T22:38:12.4772058Z scalar_t=float 2025-08-14T22:38:12.4772141Z ] 2025-08-14T22:38:12.4772734Z 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-14T22:38:12.4772853Z with 2025-08-14T22:38:12.4772936Z [ 2025-08-14T22:38:12.4773021Z scalar_t=float 2025-08-14T22:38:12.4773130Z ] 2025-08-14T22:38:12.4773696Z 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-14T22:38:12.4773787Z with 2025-08-14T22:38:12.4773875Z [ 2025-08-14T22:38:12.4773988Z scalar_t=float 2025-08-14T22:38:12.4774067Z ] 2025-08-14T22:38:12.4774619Z 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-14T22:38:12.4774716Z with 2025-08-14T22:38:12.4774798Z [ 2025-08-14T22:38:12.4774890Z scalar_t=float 2025-08-14T22:38:12.4774972Z ] 2025-08-14T22:38:12.4775766Z 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-14T22:38:12.4775852Z with 2025-08-14T22:38:12.4775925Z [ 2025-08-14T22:38:12.4776037Z scalar_t=float 2025-08-14T22:38:12.4776121Z ] 2025-08-14T22:38:12.4776688Z 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-14T22:38:12.4776795Z with 2025-08-14T22:38:12.4776881Z [ 2025-08-14T22:38:12.4776973Z scalar_t=float 2025-08-14T22:38:12.4777059Z ] 2025-08-14T22:38:12.4777651Z 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-14T22:38:12.4777772Z with 2025-08-14T22:38:12.4777857Z [ 2025-08-14T22:38:12.4777972Z scalar_t=float 2025-08-14T22:38:12.4778049Z ] 2025-08-14T22:38:12.4778613Z 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-14T22:38:12.4778725Z with 2025-08-14T22:38:12.4778808Z [ 2025-08-14T22:38:12.4778938Z scalar_t=float 2025-08-14T22:38:12.4779053Z ] 2025-08-14T22:38:12.4779649Z 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-14T22:38:12.4779732Z with 2025-08-14T22:38:12.4779813Z [ 2025-08-14T22:38:12.4779932Z scalar_t=float 2025-08-14T22:38:12.4780017Z ] 2025-08-14T22:38:12.4780580Z 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-14T22:38:12.4780663Z with 2025-08-14T22:38:12.4780767Z [ 2025-08-14T22:38:12.4780860Z scalar_t=float 2025-08-14T22:38:12.4780944Z ] 2025-08-14T22:38:12.4781529Z 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-14T22:38:12.4781614Z with 2025-08-14T22:38:12.4781697Z [ 2025-08-14T22:38:12.4781815Z scalar_t=float 2025-08-14T22:38:12.4781897Z ] 2025-08-14T22:38:12.4782462Z 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-14T22:38:12.4782545Z with 2025-08-14T22:38:12.4782646Z [ 2025-08-14T22:38:12.4782740Z scalar_t=float 2025-08-14T22:38:12.4782828Z ] 2025-08-14T22:38:12.4783418Z 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-14T22:38:12.4783506Z with 2025-08-14T22:38:12.4783591Z [ 2025-08-14T22:38:12.4783688Z scalar_t=float 2025-08-14T22:38:12.4783816Z ] 2025-08-14T22:38:12.4784786Z 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-14T22:38:12.4784871Z with 2025-08-14T22:38:12.4784984Z [ 2025-08-14T22:38:12.4785078Z scalar_t=float 2025-08-14T22:38:12.4785160Z ] 2025-08-14T22:38:12.4785750Z 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-14T22:38:12.4785842Z with 2025-08-14T22:38:12.4786168Z [ 2025-08-14T22:38:12.4786281Z scalar_t=float 2025-08-14T22:38:12.4786398Z ] 2025-08-14T22:38:12.4786967Z 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-14T22:38:12.4787053Z with 2025-08-14T22:38:12.4787149Z [ 2025-08-14T22:38:12.4787230Z scalar_t=float 2025-08-14T22:38:12.4787297Z ] 2025-08-14T22:38:12.4787849Z 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-14T22:38:12.4787915Z with 2025-08-14T22:38:12.4787979Z [ 2025-08-14T22:38:12.4788061Z scalar_t=float 2025-08-14T22:38:12.4788179Z ] 2025-08-14T22:38:12.4788724Z 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-14T22:38:12.4788789Z with 2025-08-14T22:38:12.4788862Z [ 2025-08-14T22:38:12.4788938Z scalar_t=float 2025-08-14T22:38:12.4789004Z ] 2025-08-14T22:38:12.4789595Z 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-14T22:38:12.4789701Z with 2025-08-14T22:38:12.4789768Z [ 2025-08-14T22:38:12.4789845Z scalar_t=float 2025-08-14T22:38:12.4789925Z ] 2025-08-14T22:38:12.4790478Z 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-14T22:38:12.4790549Z with 2025-08-14T22:38:12.4790618Z [ 2025-08-14T22:38:12.4790698Z scalar_t=float 2025-08-14T22:38:12.4790765Z ] 2025-08-14T22:38:12.4791400Z 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-14T22:38:12.4791476Z with 2025-08-14T22:38:12.4791543Z [ 2025-08-14T22:38:12.4791632Z scalar_t=float 2025-08-14T22:38:12.4791708Z ] 2025-08-14T22:38:12.4792261Z 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-14T22:38:12.4792339Z with 2025-08-14T22:38:12.4792407Z [ 2025-08-14T22:38:12.4792489Z scalar_t=float 2025-08-14T22:38:12.4792559Z ] 2025-08-14T22:38:12.4793105Z 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-14T22:38:12.4793185Z with 2025-08-14T22:38:12.4793253Z [ 2025-08-14T22:38:12.4793329Z scalar_t=float 2025-08-14T22:38:12.4793400Z ] 2025-08-14T22:38:12.4793945Z 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-14T22:38:12.4794009Z with 2025-08-14T22:38:12.4794072Z [ 2025-08-14T22:38:12.4794156Z scalar_t=float 2025-08-14T22:38:12.4794220Z ] 2025-08-14T22:38:12.4794764Z 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-14T22:38:12.4794842Z with 2025-08-14T22:38:12.4794912Z [ 2025-08-14T22:38:12.4794990Z scalar_t=float 2025-08-14T22:38:12.4795053Z ] 2025-08-14T22:38:12.4795860Z 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-14T22:38:12.4795934Z with 2025-08-14T22:38:12.4796003Z [ 2025-08-14T22:38:12.4796089Z scalar_t=float 2025-08-14T22:38:12.4796154Z ] 2025-08-14T22:38:12.4796706Z 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-14T22:38:12.4796794Z with 2025-08-14T22:38:12.4796860Z [ 2025-08-14T22:38:12.4796947Z scalar_t=float 2025-08-14T22:38:12.4797014Z ] 2025-08-14T22:38:12.4797568Z 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-14T22:38:12.4797676Z with 2025-08-14T22:38:12.4797740Z [ 2025-08-14T22:38:12.4797829Z scalar_t=float 2025-08-14T22:38:12.4797894Z ] 2025-08-14T22:38:12.4798447Z 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-14T22:38:12.4798526Z with 2025-08-14T22:38:12.4798591Z [ 2025-08-14T22:38:12.4798667Z scalar_t=float 2025-08-14T22:38:12.4798734Z ] 2025-08-14T22:38:12.4799333Z 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-14T22:38:12.4799430Z with 2025-08-14T22:38:12.4799497Z [ 2025-08-14T22:38:12.4799582Z scalar_t=float 2025-08-14T22:38:12.4799647Z ] 2025-08-14T22:38:12.4800192Z 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-14T22:38:12.4800262Z with 2025-08-14T22:38:12.4800339Z [ 2025-08-14T22:38:12.4800420Z scalar_t=float 2025-08-14T22:38:12.4800486Z ] 2025-08-14T22:38:12.4801044Z 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-14T22:38:12.4801111Z with 2025-08-14T22:38:12.4801998Z [ 2025-08-14T22:38:12.4802101Z scalar_t=float 2025-08-14T22:38:12.4802168Z ] 2025-08-14T22:38:12.4802723Z 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-14T22:38:12.4802788Z with 2025-08-14T22:38:12.4802863Z [ 2025-08-14T22:38:12.4802940Z scalar_t=float 2025-08-14T22:38:12.4803013Z ] 2025-08-14T22:38:12.4803569Z 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-14T22:38:12.4803636Z with 2025-08-14T22:38:12.4803700Z [ 2025-08-14T22:38:12.4803778Z scalar_t=float 2025-08-14T22:38:12.4803850Z ] 2025-08-14T22:38:12.4804394Z 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-14T22:38:12.4804461Z with 2025-08-14T22:38:12.4804539Z [ 2025-08-14T22:38:12.4804615Z scalar_t=float 2025-08-14T22:38:12.4804678Z ] 2025-08-14T22:38:12.4805233Z 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-14T22:38:12.4805302Z with 2025-08-14T22:38:12.4805367Z [ 2025-08-14T22:38:12.4805448Z scalar_t=float 2025-08-14T22:38:12.4805790Z ] 2025-08-14T22:38:12.4806339Z 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-14T22:38:12.4806407Z with 2025-08-14T22:38:12.4806492Z [ 2025-08-14T22:38:12.4806568Z scalar_t=float 2025-08-14T22:38:12.4806634Z ] 2025-08-14T22:38:12.4807185Z 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-14T22:38:12.4807264Z with 2025-08-14T22:38:12.4807329Z [ 2025-08-14T22:38:12.4807405Z scalar_t=float 2025-08-14T22:38:12.4807485Z ] 2025-08-14T22:38:12.4808031Z 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-14T22:38:12.4808146Z with 2025-08-14T22:38:12.4808221Z [ 2025-08-14T22:38:12.4808296Z scalar_t=float 2025-08-14T22:38:12.4808368Z ] 2025-08-14T22:38:12.4808910Z 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-14T22:38:12.4809000Z with 2025-08-14T22:38:12.4809104Z [ 2025-08-14T22:38:12.4809218Z scalar_t=float 2025-08-14T22:38:12.4809297Z ] 2025-08-14T22:38:12.4809844Z 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-14T22:38:12.4809914Z with 2025-08-14T22:38:12.4809986Z [ 2025-08-14T22:38:12.4810078Z scalar_t=float 2025-08-14T22:38:12.4810144Z ] 2025-08-14T22:38:12.4810694Z 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-14T22:38:12.4810784Z with 2025-08-14T22:38:12.4810850Z [ 2025-08-14T22:38:12.4810927Z scalar_t=float 2025-08-14T22:38:12.4810999Z ] 2025-08-14T22:38:12.4811541Z 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-14T22:38:12.4811616Z with 2025-08-14T22:38:12.4811687Z [ 2025-08-14T22:38:12.4811773Z scalar_t=float 2025-08-14T22:38:12.4811838Z ] 2025-08-14T22:38:12.4812382Z 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-14T22:38:12.4812464Z with 2025-08-14T22:38:12.4812529Z [ 2025-08-14T22:38:12.4812604Z scalar_t=float 2025-08-14T22:38:12.4812671Z ] 2025-08-14T22:38:12.4813225Z 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-14T22:38:12.4813292Z with 2025-08-14T22:38:12.4813356Z [ 2025-08-14T22:38:12.4813441Z scalar_t=float 2025-08-14T22:38:12.4813507Z ] 2025-08-14T22:38:12.4814053Z 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-14T22:38:12.4814126Z with 2025-08-14T22:38:12.4814190Z [ 2025-08-14T22:38:12.4814266Z scalar_t=float 2025-08-14T22:38:12.4814334Z ] 2025-08-14T22:38:12.4814887Z 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-14T22:38:12.4815270Z with 2025-08-14T22:38:12.4815347Z [ 2025-08-14T22:38:12.4815434Z scalar_t=float 2025-08-14T22:38:12.4815504Z ] 2025-08-14T22:38:12.4816058Z 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-14T22:38:12.4816138Z with 2025-08-14T22:38:12.4816207Z [ 2025-08-14T22:38:12.4816289Z scalar_t=float 2025-08-14T22:38:12.4816357Z ] 2025-08-14T22:38:12.4816912Z 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-14T22:38:12.4816981Z with 2025-08-14T22:38:12.4817050Z [ 2025-08-14T22:38:12.4817180Z scalar_t=float 2025-08-14T22:38:12.4817243Z ] 2025-08-14T22:38:12.4817794Z 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-14T22:38:12.4817860Z with 2025-08-14T22:38:12.4817941Z [ 2025-08-14T22:38:12.4818017Z scalar_t=float 2025-08-14T22:38:12.4818085Z ] 2025-08-14T22:38:12.4818676Z 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-14T22:38:12.4818781Z with 2025-08-14T22:38:12.4818848Z [ 2025-08-14T22:38:12.4818935Z scalar_t=float 2025-08-14T22:38:12.4819009Z ] 2025-08-14T22:38:12.4819561Z 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-14T22:38:12.4819635Z with 2025-08-14T22:38:12.4819710Z [ 2025-08-14T22:38:12.4819788Z scalar_t=float 2025-08-14T22:38:12.4819861Z ] 2025-08-14T22:38:12.4820418Z 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-14T22:38:12.4820493Z with 2025-08-14T22:38:12.4820564Z [ 2025-08-14T22:38:12.4820643Z scalar_t=float 2025-08-14T22:38:12.4820719Z ] 2025-08-14T22:38:12.4821274Z 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-14T22:38:12.4821340Z with 2025-08-14T22:38:12.4821414Z [ 2025-08-14T22:38:12.4821491Z scalar_t=float 2025-08-14T22:38:12.4821560Z ] 2025-08-14T22:38:12.4822114Z 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-14T22:38:12.4822181Z with 2025-08-14T22:38:12.4822246Z [ 2025-08-14T22:38:12.4822322Z scalar_t=float 2025-08-14T22:38:12.4822395Z ] 2025-08-14T22:38:12.4822938Z 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-14T22:38:12.4823005Z with 2025-08-14T22:38:12.4823084Z [ 2025-08-14T22:38:12.4823158Z scalar_t=float 2025-08-14T22:38:12.4823223Z ] 2025-08-14T22:38:12.4823763Z 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-14T22:38:12.4823835Z with 2025-08-14T22:38:12.4823905Z [ 2025-08-14T22:38:12.4823980Z scalar_t=float 2025-08-14T22:38:12.4824056Z ] 2025-08-14T22:38:12.4824644Z 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-14T22:38:12.4824711Z with 2025-08-14T22:38:12.4824786Z [ 2025-08-14T22:38:12.4824860Z scalar_t=float 2025-08-14T22:38:12.4824931Z ] 2025-08-14T22:38:12.4825473Z 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-14T22:38:12.4825546Z with 2025-08-14T22:38:12.4825611Z [ 2025-08-14T22:38:12.4825686Z scalar_t=float 2025-08-14T22:38:12.4825765Z ] 2025-08-14T22:38:12.4826310Z 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-14T22:38:12.4826419Z with 2025-08-14T22:38:12.4826488Z [ 2025-08-14T22:38:12.4826575Z scalar_t=float 2025-08-14T22:38:12.4826641Z ] 2025-08-14T22:38:12.4827184Z 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-14T22:38:12.4827260Z with 2025-08-14T22:38:12.4827324Z [ 2025-08-14T22:38:12.4827401Z scalar_t=float 2025-08-14T22:38:12.4827480Z ] 2025-08-14T22:38:12.4828096Z 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-14T22:38:12.4828162Z with 2025-08-14T22:38:12.4828227Z [ 2025-08-14T22:38:12.4828311Z scalar_t=float 2025-08-14T22:38:12.4828377Z ] 2025-08-14T22:38:12.4828927Z 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-14T22:38:12.4829002Z with 2025-08-14T22:38:12.4829074Z [ 2025-08-14T22:38:12.4829151Z scalar_t=float 2025-08-14T22:38:12.4829215Z ] 2025-08-14T22:38:12.4829769Z 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-14T22:38:12.4829835Z with 2025-08-14T22:38:12.4829903Z [ 2025-08-14T22:38:12.4829984Z scalar_t=float 2025-08-14T22:38:12.4830054Z ] 2025-08-14T22:38:12.4830594Z 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-14T22:38:12.4830670Z with 2025-08-14T22:38:12.4830738Z [ 2025-08-14T22:38:12.4830811Z scalar_t=float 2025-08-14T22:38:12.4830882Z ] 2025-08-14T22:38:12.4831548Z 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-14T22:38:12.4831620Z with 2025-08-14T22:38:12.4831685Z [ 2025-08-14T22:38:12.4831776Z scalar_t=float 2025-08-14T22:38:12.4831843Z ] 2025-08-14T22:38:12.4832386Z 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-14T22:38:12.4832471Z with 2025-08-14T22:38:12.4832537Z [ 2025-08-14T22:38:12.4832615Z scalar_t=float 2025-08-14T22:38:12.4832685Z ] 2025-08-14T22:38:12.4833235Z 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-14T22:38:12.4833304Z with 2025-08-14T22:38:12.4833367Z [ 2025-08-14T22:38:12.4833458Z scalar_t=float 2025-08-14T22:38:12.4833897Z ] 2025-08-14T22:38:12.4834496Z 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-14T22:38:12.4834565Z with 2025-08-14T22:38:12.4834646Z [ 2025-08-14T22:38:12.4834724Z scalar_t=float 2025-08-14T22:38:12.4834797Z ] 2025-08-14T22:38:12.4835357Z 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-14T22:38:12.4835425Z with 2025-08-14T22:38:12.4835491Z [ 2025-08-14T22:38:12.4835573Z scalar_t=float 2025-08-14T22:38:12.4835656Z ] 2025-08-14T22:38:12.4836255Z 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-14T22:38:12.4836329Z with 2025-08-14T22:38:12.4836403Z [ 2025-08-14T22:38:12.4836481Z scalar_t=float 2025-08-14T22:38:12.4836546Z ] 2025-08-14T22:38:12.4837098Z 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-14T22:38:12.4837213Z with 2025-08-14T22:38:12.4837601Z [ 2025-08-14T22:38:12.4837678Z scalar_t=float 2025-08-14T22:38:12.4837758Z ] 2025-08-14T22:38:12.4838305Z 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-14T22:38:12.4838372Z with 2025-08-14T22:38:12.4838450Z [ 2025-08-14T22:38:12.4838526Z scalar_t=float 2025-08-14T22:38:12.4838591Z ] 2025-08-14T22:38:12.4842925Z 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-14T22:38:12.4843038Z with 2025-08-14T22:38:12.4843106Z [ 2025-08-14T22:38:12.4843188Z scalar_t=float 2025-08-14T22:38:12.4843262Z ] 2025-08-14T22:38:12.4843843Z 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-14T22:38:12.4843915Z with 2025-08-14T22:38:12.4843982Z [ 2025-08-14T22:38:12.4844067Z scalar_t=float 2025-08-14T22:38:12.4844133Z ] 2025-08-14T22:38:12.4844683Z 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-14T22:38:12.4844755Z with 2025-08-14T22:38:12.4844828Z [ 2025-08-14T22:38:12.4844911Z scalar_t=float 2025-08-14T22:38:12.4844977Z ] 2025-08-14T22:38:12.4845561Z 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-14T22:38:12.4845630Z with 2025-08-14T22:38:12.4845697Z [ 2025-08-14T22:38:12.4845770Z scalar_t=float 2025-08-14T22:38:12.4845843Z ] 2025-08-14T22:38:12.4846394Z 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-14T22:38:12.4846458Z with 2025-08-14T22:38:12.4846534Z [ 2025-08-14T22:38:12.4846613Z scalar_t=float 2025-08-14T22:38:12.4846678Z ] 2025-08-14T22:38:12.4847229Z 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-14T22:38:12.4847306Z with 2025-08-14T22:38:12.4847379Z [ 2025-08-14T22:38:12.4847458Z scalar_t=float 2025-08-14T22:38:12.4847536Z ] 2025-08-14T22:38:12.4848081Z 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-14T22:38:12.4848149Z with 2025-08-14T22:38:12.4848226Z [ 2025-08-14T22:38:12.4848301Z scalar_t=float 2025-08-14T22:38:12.4848367Z ] 2025-08-14T22:38:12.4848915Z 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-14T22:38:12.4848997Z with 2025-08-14T22:38:12.4849134Z [ 2025-08-14T22:38:12.4849212Z scalar_t=float 2025-08-14T22:38:12.4849288Z ] 2025-08-14T22:38:12.4849834Z 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-14T22:38:12.4849902Z with 2025-08-14T22:38:12.4849970Z [ 2025-08-14T22:38:12.4850058Z scalar_t=float 2025-08-14T22:38:12.4850133Z ] 2025-08-14T22:38:12.4850723Z 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-14T22:38:12.4850839Z with 2025-08-14T22:38:12.4850904Z [ 2025-08-14T22:38:12.4850982Z scalar_t=float 2025-08-14T22:38:12.4851058Z ] 2025-08-14T22:38:12.4851619Z 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-14T22:38:12.4851690Z with 2025-08-14T22:38:12.4851760Z [ 2025-08-14T22:38:12.4851850Z scalar_t=float 2025-08-14T22:38:12.4851919Z ] 2025-08-14T22:38:12.4853341Z 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-14T22:38:12.4853438Z with 2025-08-14T22:38:12.4853505Z [ 2025-08-14T22:38:12.4853585Z scalar_t=float 2025-08-14T22:38:12.4853665Z ] 2025-08-14T22:38:12.4854233Z 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-14T22:38:12.4854304Z with 2025-08-14T22:38:12.4854371Z [ 2025-08-14T22:38:12.4854475Z scalar_t=float 2025-08-14T22:38:12.4854539Z ] 2025-08-14T22:38:12.4855088Z 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-14T22:38:12.4855168Z with 2025-08-14T22:38:12.4855234Z [ 2025-08-14T22:38:12.4855313Z scalar_t=float 2025-08-14T22:38:12.4855382Z ] 2025-08-14T22:38:12.4855933Z 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-14T22:38:12.4856001Z with 2025-08-14T22:38:12.4856074Z [ 2025-08-14T22:38:12.4856164Z scalar_t=float 2025-08-14T22:38:12.4856231Z ] 2025-08-14T22:38:12.4856776Z 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-14T22:38:12.4856861Z with 2025-08-14T22:38:12.4856928Z [ 2025-08-14T22:38:12.4857004Z scalar_t=float 2025-08-14T22:38:12.4857069Z ] 2025-08-14T22:38:12.4857627Z 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-14T22:38:12.4857695Z with 2025-08-14T22:38:12.4857760Z [ 2025-08-14T22:38:12.4857847Z scalar_t=float 2025-08-14T22:38:12.4857914Z ] 2025-08-14T22:38:12.4858461Z 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-14T22:38:12.4858531Z with 2025-08-14T22:38:12.4858607Z [ 2025-08-14T22:38:12.4858689Z scalar_t=float 2025-08-14T22:38:12.4858752Z ] 2025-08-14T22:38:12.4859306Z 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-14T22:38:12.4859429Z with 2025-08-14T22:38:12.4859498Z [ 2025-08-14T22:38:12.4859578Z scalar_t=float 2025-08-14T22:38:12.4859653Z ] 2025-08-14T22:38:12.4860200Z 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-14T22:38:12.4860271Z with 2025-08-14T22:38:12.4860350Z [ 2025-08-14T22:38:12.4860431Z scalar_t=float 2025-08-14T22:38:12.4860578Z ] 2025-08-14T22:38:12.4861135Z 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-14T22:38:12.4861206Z with 2025-08-14T22:38:12.4861276Z [ 2025-08-14T22:38:12.4861356Z scalar_t=float 2025-08-14T22:38:12.4861444Z ] 2025-08-14T22:38:12.4861990Z 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-14T22:38:12.4862055Z with 2025-08-14T22:38:12.4862128Z [ 2025-08-14T22:38:12.4862443Z scalar_t=float 2025-08-14T22:38:12.4862515Z ] 2025-08-14T22:38:12.4863071Z 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-14T22:38:12.4863144Z with 2025-08-14T22:38:12.4863212Z [ 2025-08-14T22:38:12.4863290Z scalar_t=float 2025-08-14T22:38:12.4863366Z ] 2025-08-14T22:38:12.4863913Z 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-14T22:38:12.4863980Z with 2025-08-14T22:38:12.4864057Z [ 2025-08-14T22:38:12.4864131Z scalar_t=float 2025-08-14T22:38:12.4864194Z ] 2025-08-14T22:38:12.4864744Z 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-14T22:38:12.4864825Z with 2025-08-14T22:38:12.4864889Z [ 2025-08-14T22:38:12.4864966Z scalar_t=float 2025-08-14T22:38:12.4865045Z ] 2025-08-14T22:38:12.4865596Z 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-14T22:38:12.4865672Z with 2025-08-14T22:38:12.4865745Z [ 2025-08-14T22:38:12.4865822Z scalar_t=float 2025-08-14T22:38:12.4865884Z ] 2025-08-14T22:38:12.4866428Z 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-14T22:38:12.4866507Z with 2025-08-14T22:38:12.4866574Z [ 2025-08-14T22:38:12.4866653Z scalar_t=float 2025-08-14T22:38:12.4866724Z ] 2025-08-14T22:38:12.4867267Z 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-14T22:38:12.4867331Z with 2025-08-14T22:38:12.4867395Z [ 2025-08-14T22:38:12.4867476Z scalar_t=float 2025-08-14T22:38:12.4867545Z ] 2025-08-14T22:38:12.4868093Z 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-14T22:38:12.4868171Z with 2025-08-14T22:38:12.4868235Z [ 2025-08-14T22:38:12.4868310Z scalar_t=float 2025-08-14T22:38:12.4868423Z ] 2025-08-14T22:38:12.4868964Z 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-14T22:38:12.4869029Z with 2025-08-14T22:38:12.4869098Z [ 2025-08-14T22:38:12.4869181Z scalar_t=float 2025-08-14T22:38:12.4869246Z ] 2025-08-14T22:38:12.4869795Z 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-14T22:38:12.4869951Z with 2025-08-14T22:38:12.4870023Z [ 2025-08-14T22:38:12.4870097Z scalar_t=float 2025-08-14T22:38:12.4870162Z ] 2025-08-14T22:38:12.4870714Z 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-14T22:38:12.4870783Z with 2025-08-14T22:38:12.4870848Z [ 2025-08-14T22:38:12.4870935Z scalar_t=float 2025-08-14T22:38:12.4871001Z ] 2025-08-14T22:38:12.4871693Z 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-14T22:38:12.4871773Z with 2025-08-14T22:38:12.4871839Z [ 2025-08-14T22:38:12.4871916Z scalar_t=float 2025-08-14T22:38:12.4871985Z ] 2025-08-14T22:38:12.4872546Z 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-14T22:38:12.4872615Z with 2025-08-14T22:38:12.4872680Z [ 2025-08-14T22:38:12.4872773Z scalar_t=float 2025-08-14T22:38:12.4872839Z ] 2025-08-14T22:38:12.4873386Z 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-14T22:38:12.4873463Z with 2025-08-14T22:38:12.4873533Z [ 2025-08-14T22:38:12.4873614Z scalar_t=float 2025-08-14T22:38:12.4873678Z ] 2025-08-14T22:38:12.4874235Z 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-14T22:38:12.4874303Z with 2025-08-14T22:38:12.4874373Z [ 2025-08-14T22:38:12.4874457Z scalar_t=float 2025-08-14T22:38:12.4874525Z ] 2025-08-14T22:38:12.4875066Z 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-14T22:38:12.4875131Z with 2025-08-14T22:38:12.4875207Z [ 2025-08-14T22:38:12.4875284Z scalar_t=float 2025-08-14T22:38:12.4875352Z ] 2025-08-14T22:38:12.4875912Z 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-14T22:38:12.4875980Z with 2025-08-14T22:38:12.4876044Z [ 2025-08-14T22:38:12.4876120Z scalar_t=float 2025-08-14T22:38:12.4876193Z ] 2025-08-14T22:38:12.4876741Z 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-14T22:38:12.4876815Z with 2025-08-14T22:38:12.4876886Z [ 2025-08-14T22:38:12.4876960Z scalar_t=float 2025-08-14T22:38:12.4877030Z ] 2025-08-14T22:38:12.4877576Z 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-14T22:38:12.4877681Z with 2025-08-14T22:38:12.4877753Z [ 2025-08-14T22:38:12.4877834Z scalar_t=float 2025-08-14T22:38:12.4877905Z ] 2025-08-14T22:38:12.4878450Z 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-14T22:38:12.4878522Z with 2025-08-14T22:38:12.4878598Z [ 2025-08-14T22:38:12.4878673Z scalar_t=float 2025-08-14T22:38:12.4878743Z ] 2025-08-14T22:38:12.4879332Z 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-14T22:38:12.4879431Z with 2025-08-14T22:38:12.4879497Z [ 2025-08-14T22:38:12.4879576Z scalar_t=float 2025-08-14T22:38:12.4879652Z ] 2025-08-14T22:38:12.4880196Z 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-14T22:38:12.4880265Z with 2025-08-14T22:38:12.4880334Z [ 2025-08-14T22:38:12.4880409Z scalar_t=float 2025-08-14T22:38:12.4880479Z ] 2025-08-14T22:38:12.4881061Z 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-14T22:38:12.4881144Z with 2025-08-14T22:38:12.4881207Z [ 2025-08-14T22:38:12.4881284Z scalar_t=float 2025-08-14T22:38:12.4881360Z ] 2025-08-14T22:38:12.4881902Z 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-14T22:38:12.4881968Z with 2025-08-14T22:38:12.4882043Z [ 2025-08-14T22:38:12.4882118Z scalar_t=float 2025-08-14T22:38:12.4882187Z ] 2025-08-14T22:38:12.4882730Z 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-14T22:38:12.4882803Z with 2025-08-14T22:38:12.4882870Z [ 2025-08-14T22:38:12.4882947Z scalar_t=float 2025-08-14T22:38:12.4883023Z ] 2025-08-14T22:38:12.4883575Z 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-14T22:38:12.4883644Z with 2025-08-14T22:38:12.4883709Z [ 2025-08-14T22:38:12.4883800Z scalar_t=float 2025-08-14T22:38:12.4883865Z ] 2025-08-14T22:38:12.4884408Z 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-14T22:38:12.4884483Z with 2025-08-14T22:38:12.4884552Z [ 2025-08-14T22:38:12.4884626Z scalar_t=float 2025-08-14T22:38:12.4884695Z ] 2025-08-14T22:38:12.4885246Z 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-14T22:38:12.4885314Z with 2025-08-14T22:38:12.4885379Z [ 2025-08-14T22:38:12.4885466Z scalar_t=float 2025-08-14T22:38:12.4885535Z ] 2025-08-14T22:38:12.4886082Z 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-14T22:38:12.4886163Z with 2025-08-14T22:38:12.4886230Z [ 2025-08-14T22:38:12.4886306Z scalar_t=float 2025-08-14T22:38:12.4886375Z ] 2025-08-14T22:38:12.4886929Z 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-14T22:38:12.4887033Z with 2025-08-14T22:38:12.4887104Z [ 2025-08-14T22:38:12.4887198Z scalar_t=float 2025-08-14T22:38:12.4887266Z ] 2025-08-14T22:38:12.4887814Z 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-14T22:38:12.4887890Z with 2025-08-14T22:38:12.4887954Z [ 2025-08-14T22:38:12.4888069Z scalar_t=float 2025-08-14T22:38:12.4888169Z ] 2025-08-14T22:38:12.4888725Z 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-14T22:38:12.4888794Z with 2025-08-14T22:38:12.4888863Z [ 2025-08-14T22:38:12.4888951Z scalar_t=float 2025-08-14T22:38:12.4889019Z ] 2025-08-14T22:38:12.4889565Z 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-14T22:38:12.4889633Z with 2025-08-14T22:38:12.4889978Z [ 2025-08-14T22:38:12.4890067Z scalar_t=float 2025-08-14T22:38:12.4890133Z ] 2025-08-14T22:38:12.4890694Z 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-14T22:38:12.4890766Z with 2025-08-14T22:38:12.4890840Z [ 2025-08-14T22:38:12.4890929Z scalar_t=float 2025-08-14T22:38:12.4890992Z ] 2025-08-14T22:38:12.4891538Z 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-14T22:38:12.4891612Z with 2025-08-14T22:38:12.4891697Z [ 2025-08-14T22:38:12.4891777Z scalar_t=float 2025-08-14T22:38:12.4891844Z ] 2025-08-14T22:38:12.4892404Z 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-14T22:38:12.4892473Z with 2025-08-14T22:38:12.4892540Z [ 2025-08-14T22:38:12.4892616Z scalar_t=float 2025-08-14T22:38:12.4892694Z ] 2025-08-14T22:38:12.4893238Z 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-14T22:38:12.4893308Z with 2025-08-14T22:38:12.4893387Z [ 2025-08-14T22:38:12.4893466Z scalar_t=float 2025-08-14T22:38:12.4893531Z ] 2025-08-14T22:38:12.4894079Z 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-14T22:38:12.4894149Z with 2025-08-14T22:38:12.4894217Z [ 2025-08-14T22:38:12.4894293Z scalar_t=float 2025-08-14T22:38:12.4894367Z ] 2025-08-14T22:38:12.4894913Z 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-14T22:38:12.4894982Z with 2025-08-14T22:38:12.4895058Z [ 2025-08-14T22:38:12.4895143Z scalar_t=float 2025-08-14T22:38:12.4895212Z ] 2025-08-14T22:38:12.4895758Z 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-14T22:38:12.4895835Z with 2025-08-14T22:38:12.4895905Z [ 2025-08-14T22:38:12.4895981Z scalar_t=float 2025-08-14T22:38:12.4896100Z ] 2025-08-14T22:38:12.4896644Z 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-14T22:38:12.4896714Z with 2025-08-14T22:38:12.4896790Z [ 2025-08-14T22:38:12.4896866Z scalar_t=float 2025-08-14T22:38:12.4896932Z ] 2025-08-14T22:38:12.4897515Z 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-14T22:38:12.4897629Z with 2025-08-14T22:38:12.4897702Z [ 2025-08-14T22:38:12.4897780Z scalar_t=float 2025-08-14T22:38:12.4897854Z ] 2025-08-14T22:38:12.4898398Z 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-14T22:38:12.4898468Z with 2025-08-14T22:38:12.4898543Z [ 2025-08-14T22:38:12.4898628Z scalar_t=float 2025-08-14T22:38:12.4898697Z ] 2025-08-14T22:38:12.4899279Z 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-14T22:38:12.4899351Z with 2025-08-14T22:38:12.4899415Z [ 2025-08-14T22:38:12.4899490Z scalar_t=float 2025-08-14T22:38:12.4899568Z ] 2025-08-14T22:38:12.4900116Z 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-14T22:38:12.4900187Z with 2025-08-14T22:38:12.4900252Z [ 2025-08-14T22:38:12.4900342Z scalar_t=float 2025-08-14T22:38:12.4900407Z ] 2025-08-14T22:38:12.4900958Z 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-14T22:38:12.4901036Z with 2025-08-14T22:38:12.4901101Z [ 2025-08-14T22:38:12.4901178Z scalar_t=float 2025-08-14T22:38:12.4901248Z ] 2025-08-14T22:38:12.4901798Z 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-14T22:38:12.4901864Z with 2025-08-14T22:38:12.4901929Z [ 2025-08-14T22:38:12.4902013Z scalar_t=float 2025-08-14T22:38:12.4902082Z ] 2025-08-14T22:38:12.4902623Z 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-14T22:38:12.4902695Z with 2025-08-14T22:38:12.4902765Z [ 2025-08-14T22:38:12.4902839Z scalar_t=float 2025-08-14T22:38:12.4902905Z ] 2025-08-14T22:38:12.4903461Z 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-14T22:38:12.4903531Z with 2025-08-14T22:38:12.4903597Z [ 2025-08-14T22:38:12.4903678Z scalar_t=float 2025-08-14T22:38:12.4903743Z ] 2025-08-14T22:38:12.4904287Z 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-14T22:38:12.4904361Z with 2025-08-14T22:38:12.4904427Z [ 2025-08-14T22:38:12.4904501Z scalar_t=float 2025-08-14T22:38:12.4904569Z ] 2025-08-14T22:38:12.4905123Z 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-14T22:38:12.4905598Z with 2025-08-14T22:38:12.4905664Z [ 2025-08-14T22:38:12.4905750Z scalar_t=float 2025-08-14T22:38:12.4905821Z ] 2025-08-14T22:38:12.4906371Z 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-14T22:38:12.4906441Z with 2025-08-14T22:38:12.4906518Z [ 2025-08-14T22:38:12.4906600Z scalar_t=float 2025-08-14T22:38:12.4906666Z ] 2025-08-14T22:38:12.4907540Z 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-14T22:38:12.4907650Z with 2025-08-14T22:38:12.4907715Z [ 2025-08-14T22:38:12.4907806Z scalar_t=float 2025-08-14T22:38:12.4907872Z ] 2025-08-14T22:38:12.4908426Z 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-14T22:38:12.4908498Z with 2025-08-14T22:38:12.4908572Z [ 2025-08-14T22:38:12.4908647Z scalar_t=float 2025-08-14T22:38:12.4908714Z ] 2025-08-14T22:38:12.4909313Z 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-14T22:38:12.4909380Z with 2025-08-14T22:38:12.4909447Z [ 2025-08-14T22:38:12.4909527Z scalar_t=float 2025-08-14T22:38:12.4909603Z ] 2025-08-14T22:38:12.4910146Z 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-14T22:38:12.4910213Z with 2025-08-14T22:38:12.4910285Z [ 2025-08-14T22:38:12.4910362Z scalar_t=float 2025-08-14T22:38:12.4910427Z ] 2025-08-14T22:38:12.4910984Z 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-14T22:38:12.4911052Z with 2025-08-14T22:38:12.4911122Z [ 2025-08-14T22:38:12.4911286Z scalar_t=float 2025-08-14T22:38:12.4911369Z ] 2025-08-14T22:38:12.4911922Z 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-14T22:38:12.4911997Z with 2025-08-14T22:38:12.4912073Z [ 2025-08-14T22:38:12.4912148Z scalar_t=float 2025-08-14T22:38:12.4912215Z ] 2025-08-14T22:38:12.4912755Z 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-14T22:38:12.4912833Z with 2025-08-14T22:38:12.4912898Z [ 2025-08-14T22:38:12.4912976Z scalar_t=float 2025-08-14T22:38:12.4913049Z ] 2025-08-14T22:38:12.4913592Z 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-14T22:38:12.4913660Z with 2025-08-14T22:38:12.4913731Z [ 2025-08-14T22:38:12.4913806Z scalar_t=float 2025-08-14T22:38:12.4913869Z ] 2025-08-14T22:38:12.4914414Z 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-14T22:38:12.4914486Z with 2025-08-14T22:38:12.4914555Z [ 2025-08-14T22:38:12.4914632Z scalar_t=float 2025-08-14T22:38:12.4914704Z ] 2025-08-14T22:38:12.4915248Z 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-14T22:38:12.4915362Z with 2025-08-14T22:38:12.4915426Z [ 2025-08-14T22:38:12.4915509Z scalar_t=float 2025-08-14T22:38:12.4915579Z ] 2025-08-14T22:38:12.4916121Z 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-14T22:38:12.4916198Z with 2025-08-14T22:38:12.4916265Z [ 2025-08-14T22:38:12.4916408Z scalar_t=float 2025-08-14T22:38:12.4916482Z ] 2025-08-14T22:38:12.4917028Z 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-14T22:38:12.4917095Z with 2025-08-14T22:38:12.4917159Z [ 2025-08-14T22:38:12.4917247Z scalar_t=float 2025-08-14T22:38:12.4917312Z ] 2025-08-14T22:38:12.4917857Z 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-14T22:38:12.4917932Z with 2025-08-14T22:38:12.4918043Z [ 2025-08-14T22:38:12.4918120Z scalar_t=float 2025-08-14T22:38:12.4918185Z ] 2025-08-14T22:38:12.4918742Z 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-14T22:38:12.4918810Z with 2025-08-14T22:38:12.4918876Z [ 2025-08-14T22:38:12.4918958Z scalar_t=float 2025-08-14T22:38:12.4919021Z ] 2025-08-14T22:38:12.4919567Z 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-14T22:38:12.4919651Z with 2025-08-14T22:38:12.4919716Z [ 2025-08-14T22:38:12.4919796Z scalar_t=float 2025-08-14T22:38:12.4919867Z ] 2025-08-14T22:38:12.4920426Z 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-14T22:38:12.4920497Z with 2025-08-14T22:38:12.4920571Z [ 2025-08-14T22:38:12.4920654Z scalar_t=float 2025-08-14T22:38:12.4920720Z ] 2025-08-14T22:38:12.4921270Z 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-14T22:38:12.4921346Z with 2025-08-14T22:38:12.4921418Z [ 2025-08-14T22:38:12.4921495Z scalar_t=float 2025-08-14T22:38:12.4921559Z ] 2025-08-14T22:38:12.4922110Z 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-14T22:38:12.4922183Z with 2025-08-14T22:38:12.4922249Z [ 2025-08-14T22:38:12.4922334Z scalar_t=float 2025-08-14T22:38:12.4922401Z ] 2025-08-14T22:38:12.4922947Z 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-14T22:38:12.4923013Z with 2025-08-14T22:38:12.4923092Z [ 2025-08-14T22:38:12.4923170Z scalar_t=float 2025-08-14T22:38:12.4923237Z ] 2025-08-14T22:38:12.4923787Z 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-14T22:38:12.4923855Z with 2025-08-14T22:38:12.4923921Z [ 2025-08-14T22:38:12.4924046Z scalar_t=float 2025-08-14T22:38:12.4924111Z ] 2025-08-14T22:38:12.4924654Z 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-14T22:38:12.4924725Z with 2025-08-14T22:38:12.4924803Z [ 2025-08-14T22:38:12.4924878Z scalar_t=float 2025-08-14T22:38:12.4924944Z ] 2025-08-14T22:38:12.4925536Z 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-14T22:38:12.4925640Z with 2025-08-14T22:38:12.4925706Z [ 2025-08-14T22:38:12.4925789Z scalar_t=float 2025-08-14T22:38:12.4925861Z ] 2025-08-14T22:38:12.4926403Z 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-14T22:38:12.4926472Z with 2025-08-14T22:38:12.4926548Z [ 2025-08-14T22:38:12.4926628Z scalar_t=float 2025-08-14T22:38:12.4926695Z ] 2025-08-14T22:38:12.4927494Z 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-14T22:38:12.4927569Z with 2025-08-14T22:38:12.4927638Z [ 2025-08-14T22:38:12.4927717Z scalar_t=float 2025-08-14T22:38:12.4927797Z ] 2025-08-14T22:38:12.4928349Z 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-14T22:38:12.4928419Z with 2025-08-14T22:38:12.4928496Z [ 2025-08-14T22:38:12.4928581Z scalar_t=float 2025-08-14T22:38:12.4928648Z ] 2025-08-14T22:38:12.4929198Z 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-14T22:38:12.4929288Z with 2025-08-14T22:38:12.4929358Z [ 2025-08-14T22:38:12.4929435Z scalar_t=float 2025-08-14T22:38:12.4929510Z ] 2025-08-14T22:38:12.4930051Z 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-14T22:38:12.4930118Z with 2025-08-14T22:38:12.4930211Z [ 2025-08-14T22:38:12.4930290Z scalar_t=float 2025-08-14T22:38:12.4930355Z ] 2025-08-14T22:38:12.4930900Z 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-14T22:38:12.4930974Z with 2025-08-14T22:38:12.4931039Z [ 2025-08-14T22:38:12.4931115Z scalar_t=float 2025-08-14T22:38:12.4931189Z ] 2025-08-14T22:38:12.4931731Z 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-14T22:38:12.4931801Z with 2025-08-14T22:38:12.4931871Z [ 2025-08-14T22:38:12.4931951Z scalar_t=float 2025-08-14T22:38:12.4932019Z ] 2025-08-14T22:38:12.4932568Z 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-14T22:38:12.4932645Z with 2025-08-14T22:38:12.4932719Z [ 2025-08-14T22:38:12.4932793Z scalar_t=float 2025-08-14T22:38:12.4932864Z ] 2025-08-14T22:38:12.4933414Z 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-14T22:38:12.4933526Z with 2025-08-14T22:38:12.4933593Z [ 2025-08-14T22:38:12.4933676Z scalar_t=float 2025-08-14T22:38:12.4933742Z ] 2025-08-14T22:38:12.4934288Z 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-14T22:38:12.4934366Z with 2025-08-14T22:38:12.4934433Z [ 2025-08-14T22:38:12.4934509Z scalar_t=float 2025-08-14T22:38:12.4934576Z ] 2025-08-14T22:38:12.4935194Z 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-14T22:38:12.4935260Z with 2025-08-14T22:38:12.4935327Z [ 2025-08-14T22:38:12.4935412Z scalar_t=float 2025-08-14T22:38:12.4935478Z ] 2025-08-14T22:38:12.4936026Z 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-14T22:38:12.4936099Z with 2025-08-14T22:38:12.4936169Z [ 2025-08-14T22:38:12.4936244Z scalar_t=float 2025-08-14T22:38:12.4936508Z ] 2025-08-14T22:38:12.4937081Z 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-14T22:38:12.4937147Z with 2025-08-14T22:38:12.4937217Z [ 2025-08-14T22:38:12.4937300Z scalar_t=float 2025-08-14T22:38:12.4937365Z ] 2025-08-14T22:38:12.4937905Z 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-14T22:38:12.4937982Z with 2025-08-14T22:38:12.4938046Z [ 2025-08-14T22:38:12.4938125Z scalar_t=float 2025-08-14T22:38:12.4938193Z ] 2025-08-14T22:38:12.4938748Z 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-14T22:38:12.4938817Z with 2025-08-14T22:38:12.4938882Z [ 2025-08-14T22:38:12.4938967Z scalar_t=float 2025-08-14T22:38:12.4939035Z ] 2025-08-14T22:38:12.4939581Z 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-14T22:38:12.4939648Z with 2025-08-14T22:38:12.4939721Z [ 2025-08-14T22:38:12.4939798Z scalar_t=float 2025-08-14T22:38:12.4939862Z ] 2025-08-14T22:38:12.4940417Z 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-14T22:38:12.4940485Z with 2025-08-14T22:38:12.4940549Z [ 2025-08-14T22:38:12.4940631Z scalar_t=float 2025-08-14T22:38:12.4940696Z ] 2025-08-14T22:38:12.4941248Z 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-14T22:38:12.4941318Z with 2025-08-14T22:38:12.4941390Z [ 2025-08-14T22:38:12.4941465Z scalar_t=float 2025-08-14T22:38:12.4941531Z ] 2025-08-14T22:38:12.4942087Z 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-14T22:38:12.4942157Z with 2025-08-14T22:38:12.4942222Z [ 2025-08-14T22:38:12.4942299Z scalar_t=float 2025-08-14T22:38:12.4942379Z ] 2025-08-14T22:38:12.4942966Z 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-14T22:38:12.4943039Z with 2025-08-14T22:38:12.4943122Z [ 2025-08-14T22:38:12.4943197Z scalar_t=float 2025-08-14T22:38:12.4943266Z ] 2025-08-14T22:38:12.4943820Z 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-14T22:38:12.4943889Z with 2025-08-14T22:38:12.4944026Z [ 2025-08-14T22:38:12.4944105Z scalar_t=float 2025-08-14T22:38:12.4944179Z ] 2025-08-14T22:38:12.4944722Z 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-14T22:38:12.4944790Z with 2025-08-14T22:38:12.4944876Z [ 2025-08-14T22:38:12.4944961Z scalar_t=float 2025-08-14T22:38:12.4945025Z ] 2025-08-14T22:38:12.4945571Z 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-14T22:38:12.4945847Z with 2025-08-14T22:38:12.4945918Z [ 2025-08-14T22:38:12.4946001Z scalar_t=float 2025-08-14T22:38:12.4946080Z ] 2025-08-14T22:38:12.4946627Z 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-14T22:38:12.4946695Z with 2025-08-14T22:38:12.4946774Z [ 2025-08-14T22:38:12.4946851Z scalar_t=float 2025-08-14T22:38:12.4946919Z ] 2025-08-14T22:38:12.4947462Z 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-14T22:38:12.4947544Z with 2025-08-14T22:38:12.4947611Z [ 2025-08-14T22:38:12.4947686Z scalar_t=float 2025-08-14T22:38:12.4947760Z ] 2025-08-14T22:38:12.4948303Z 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-14T22:38:12.4948369Z with 2025-08-14T22:38:12.4948434Z [ 2025-08-14T22:38:12.4948516Z scalar_t=float 2025-08-14T22:38:12.4948582Z ] 2025-08-14T22:38:12.4949124Z 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-14T22:38:12.4949198Z with 2025-08-14T22:38:12.4949267Z [ 2025-08-14T22:38:12.4949343Z scalar_t=float 2025-08-14T22:38:12.4949413Z ] 2025-08-14T22:38:12.4949956Z 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-14T22:38:12.4950021Z with 2025-08-14T22:38:12.4950086Z [ 2025-08-14T22:38:12.4950168Z scalar_t=float 2025-08-14T22:38:12.4950232Z ] 2025-08-14T22:38:12.4950776Z 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-14T22:38:12.4950853Z with 2025-08-14T22:38:12.4950920Z [ 2025-08-14T22:38:12.4950998Z scalar_t=float 2025-08-14T22:38:12.4951062Z ] 2025-08-14T22:38:12.4951700Z 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-14T22:38:12.4951772Z with 2025-08-14T22:38:12.4951900Z [ 2025-08-14T22:38:12.4951983Z scalar_t=float 2025-08-14T22:38:12.4952057Z ] 2025-08-14T22:38:12.4952598Z 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-14T22:38:12.4952683Z with 2025-08-14T22:38:12.4952749Z [ 2025-08-14T22:38:12.4952824Z scalar_t=float 2025-08-14T22:38:12.4952889Z ] 2025-08-14T22:38:12.4953485Z 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-14T22:38:12.4953586Z with 2025-08-14T22:38:12.4953652Z [ 2025-08-14T22:38:12.4953737Z scalar_t=float 2025-08-14T22:38:12.4953804Z ] 2025-08-14T22:38:12.4954355Z 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-14T22:38:12.4954441Z with 2025-08-14T22:38:12.4954507Z [ 2025-08-14T22:38:12.4954588Z scalar_t=float 2025-08-14T22:38:12.4954661Z ] 2025-08-14T22:38:12.4955433Z 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-14T22:38:12.4955511Z with 2025-08-14T22:38:12.4955579Z [ 2025-08-14T22:38:12.4955671Z scalar_t=float 2025-08-14T22:38:12.4955746Z ] 2025-08-14T22:38:12.4956296Z 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-14T22:38:12.4956365Z with 2025-08-14T22:38:12.4956444Z [ 2025-08-14T22:38:12.4956526Z scalar_t=float 2025-08-14T22:38:12.4956597Z ] 2025-08-14T22:38:12.4957153Z 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-14T22:38:12.4957230Z with 2025-08-14T22:38:12.4957301Z [ 2025-08-14T22:38:12.4957389Z scalar_t=float 2025-08-14T22:38:12.4957463Z ] 2025-08-14T22:38:12.4959781Z 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-14T22:38:12.4960571Z with 2025-08-14T22:38:12.4960797Z [ 2025-08-14T22:38:12.4960988Z scalar_t=float 2025-08-14T22:38:12.4961210Z ] 2025-08-14T22:38:12.4961885Z 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-14T22:38:12.4962628Z with 2025-08-14T22:38:12.4962805Z [ 2025-08-14T22:38:12.4962991Z scalar_t=float 2025-08-14T22:38:12.4963202Z ] 2025-08-14T22:38:12.4963875Z 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-14T22:38:12.4965616Z with 2025-08-14T22:38:12.4965802Z [ 2025-08-14T22:38:12.4966842Z scalar_t=float 2025-08-14T22:38:12.4967080Z ] 2025-08-14T22:38:12.4967743Z 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-14T22:38:12.4968484Z with 2025-08-14T22:38:12.4968652Z [ 2025-08-14T22:38:12.4968831Z scalar_t=float 2025-08-14T22:38:12.4969035Z ] 2025-08-14T22:38:12.4969698Z 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-14T22:38:12.5019182Z with 2025-08-14T22:38:12.5019396Z [ 2025-08-14T22:38:12.5019580Z scalar_t=float 2025-08-14T22:38:12.5019814Z ] 2025-08-14T22:38:12.5020513Z 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-14T22:38:12.5021253Z with 2025-08-14T22:38:12.5021422Z [ 2025-08-14T22:38:12.5021602Z scalar_t=float 2025-08-14T22:38:12.5021931Z ] 2025-08-14T22:38:12.5022654Z 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-14T22:38:12.5024508Z with 2025-08-14T22:38:12.5024688Z [ 2025-08-14T22:38:12.5024870Z scalar_t=float 2025-08-14T22:38:12.5025077Z ] 2025-08-14T22:38:12.5025737Z 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-14T22:38:12.5026457Z with 2025-08-14T22:38:12.5026626Z [ 2025-08-14T22:38:12.5027223Z scalar_t=float 2025-08-14T22:38:12.5027450Z ] 2025-08-14T22:38:12.5028102Z 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-14T22:38:12.5029895Z with 2025-08-14T22:38:12.5030092Z [ 2025-08-14T22:38:12.5030265Z scalar_t=float 2025-08-14T22:38:12.5030489Z ] 2025-08-14T22:38:12.5031134Z 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-14T22:38:12.5031941Z with 2025-08-14T22:38:12.5032116Z [ 2025-08-14T22:38:12.5032304Z scalar_t=float 2025-08-14T22:38:12.5032504Z ] 2025-08-14T22:38:12.5033171Z 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-14T22:38:12.5033895Z with 2025-08-14T22:38:12.5034061Z [ 2025-08-14T22:38:12.5034240Z scalar_t=float 2025-08-14T22:38:12.5034443Z ] 2025-08-14T22:38:12.5036112Z 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-14T22:38:12.5036840Z with 2025-08-14T22:38:12.5037021Z [ 2025-08-14T22:38:12.5037204Z scalar_t=float 2025-08-14T22:38:12.5037423Z ] 2025-08-14T22:38:12.5038071Z 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-14T22:38:12.5038800Z with 2025-08-14T22:38:12.5038974Z [ 2025-08-14T22:38:12.5039156Z scalar_t=float 2025-08-14T22:38:12.5039372Z ] 2025-08-14T22:38:12.5040145Z 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-14T22:38:12.5041844Z with 2025-08-14T22:38:12.5042025Z [ 2025-08-14T22:38:12.5042208Z scalar_t=float 2025-08-14T22:38:12.5042420Z ] 2025-08-14T22:38:12.5043076Z 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-14T22:38:12.5043792Z with 2025-08-14T22:38:12.5043969Z [ 2025-08-14T22:38:12.5044143Z scalar_t=float 2025-08-14T22:38:12.5044351Z ] 2025-08-14T22:38:12.5045125Z 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-14T22:38:12.5045849Z with 2025-08-14T22:38:12.5046639Z [ 2025-08-14T22:38:12.5047221Z scalar_t=float 2025-08-14T22:38:12.5047434Z ] 2025-08-14T22:38:12.5048092Z 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-14T22:38:12.5048893Z with 2025-08-14T22:38:12.5049126Z [ 2025-08-14T22:38:12.5049297Z scalar_t=float 2025-08-14T22:38:12.5049513Z ] 2025-08-14T22:38:12.5050156Z 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-14T22:38:12.5050890Z with 2025-08-14T22:38:12.5051062Z [ 2025-08-14T22:38:12.5051240Z scalar_t=float 2025-08-14T22:38:12.5051454Z ] 2025-08-14T22:38:12.5053161Z 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-14T22:38:12.5053897Z with 2025-08-14T22:38:12.5054074Z [ 2025-08-14T22:38:12.5054259Z scalar_t=float 2025-08-14T22:38:12.5054471Z ] 2025-08-14T22:38:12.5055135Z 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-14T22:38:12.5055855Z with 2025-08-14T22:38:12.5056046Z [ 2025-08-14T22:38:12.5056213Z scalar_t=float 2025-08-14T22:38:12.5056433Z ] 2025-08-14T22:38:12.5057087Z 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-14T22:38:12.5058802Z with 2025-08-14T22:38:12.5058993Z [ 2025-08-14T22:38:12.5059180Z scalar_t=float 2025-08-14T22:38:12.5059398Z ] 2025-08-14T22:38:12.5060059Z 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-14T22:38:12.5060804Z with 2025-08-14T22:38:12.5060994Z [ 2025-08-14T22:38:12.5061167Z scalar_t=float 2025-08-14T22:38:12.5061397Z ] 2025-08-14T22:38:12.5062051Z 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-14T22:38:12.5062788Z with 2025-08-14T22:38:12.5062966Z [ 2025-08-14T22:38:12.5063147Z scalar_t=float 2025-08-14T22:38:12.5064330Z ] 2025-08-14T22:38:12.5065016Z 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-14T22:38:12.5065756Z with 2025-08-14T22:38:12.5065927Z [ 2025-08-14T22:38:12.5066106Z scalar_t=float 2025-08-14T22:38:12.5066310Z ] 2025-08-14T22:38:12.5066962Z 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-14T22:38:12.5067683Z with 2025-08-14T22:38:12.5067864Z [ 2025-08-14T22:38:12.5068036Z scalar_t=float 2025-08-14T22:38:12.5068256Z ] 2025-08-14T22:38:12.5068901Z 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-14T22:38:12.5070605Z with 2025-08-14T22:38:12.5070869Z [ 2025-08-14T22:38:12.5071045Z scalar_t=float 2025-08-14T22:38:12.5071311Z ] 2025-08-14T22:38:12.5071974Z 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-14T22:38:12.5072715Z with 2025-08-14T22:38:12.5072902Z [ 2025-08-14T22:38:12.5073080Z scalar_t=float 2025-08-14T22:38:12.5073293Z ] 2025-08-14T22:38:12.5074010Z 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-14T22:38:12.5075784Z with 2025-08-14T22:38:12.5075963Z [ 2025-08-14T22:38:12.5076148Z scalar_t=float 2025-08-14T22:38:12.5076356Z ] 2025-08-14T22:38:12.5077016Z 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-14T22:38:12.5077739Z with 2025-08-14T22:38:12.5077910Z [ 2025-08-14T22:38:12.5078089Z scalar_t=float 2025-08-14T22:38:12.5078295Z ] 2025-08-14T22:38:12.5078999Z 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-14T22:38:12.5079720Z with 2025-08-14T22:38:12.5079901Z [ 2025-08-14T22:38:12.5080074Z scalar_t=float 2025-08-14T22:38:12.5080303Z ] 2025-08-14T22:38:12.5081940Z 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-14T22:38:12.5082675Z with 2025-08-14T22:38:12.5082850Z [ 2025-08-14T22:38:12.5083019Z scalar_t=float 2025-08-14T22:38:12.5083236Z ] 2025-08-14T22:38:12.5083880Z 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-14T22:38:12.5084604Z with 2025-08-14T22:38:12.5084768Z [ 2025-08-14T22:38:12.5084945Z scalar_t=float 2025-08-14T22:38:12.5085150Z ] 2025-08-14T22:38:12.5085795Z 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-14T22:38:12.5087501Z with 2025-08-14T22:38:12.5087670Z [ 2025-08-14T22:38:12.5087856Z scalar_t=float 2025-08-14T22:38:12.5088061Z ] 2025-08-14T22:38:12.5088723Z 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-14T22:38:12.5089450Z with 2025-08-14T22:38:12.5089621Z [ 2025-08-14T22:38:12.5089787Z scalar_t=float 2025-08-14T22:38:12.5089998Z ] 2025-08-14T22:38:12.5090659Z 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-14T22:38:12.5091373Z with 2025-08-14T22:38:12.5091548Z [ 2025-08-14T22:38:12.5091717Z scalar_t=float 2025-08-14T22:38:12.5091934Z ] 2025-08-14T22:38:12.5093555Z 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-14T22:38:12.5094293Z with 2025-08-14T22:38:12.5094470Z [ 2025-08-14T22:38:12.5094649Z scalar_t=float 2025-08-14T22:38:12.5094866Z ] 2025-08-14T22:38:12.5095510Z 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-14T22:38:12.5096339Z with 2025-08-14T22:38:12.5096511Z [ 2025-08-14T22:38:12.5096694Z scalar_t=float 2025-08-14T22:38:12.5096898Z ] 2025-08-14T22:38:12.5097558Z 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-14T22:38:12.5099280Z with 2025-08-14T22:38:12.5099449Z [ 2025-08-14T22:38:12.5099693Z scalar_t=float 2025-08-14T22:38:12.5100366Z ] 2025-08-14T22:38:12.5101032Z 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-14T22:38:12.5101760Z with 2025-08-14T22:38:12.5101948Z [ 2025-08-14T22:38:12.5102117Z scalar_t=float 2025-08-14T22:38:12.5102334Z ] 2025-08-14T22:38:12.5102990Z 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-14T22:38:12.5104772Z with 2025-08-14T22:38:12.5104960Z [ 2025-08-14T22:38:12.5105204Z scalar_t=float 2025-08-14T22:38:12.5105426Z ] 2025-08-14T22:38:12.5106085Z 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-14T22:38:12.5106829Z with 2025-08-14T22:38:12.5107005Z [ 2025-08-14T22:38:12.5107186Z scalar_t=float 2025-08-14T22:38:12.5107399Z ] 2025-08-14T22:38:12.5108041Z 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-14T22:38:12.5108773Z with 2025-08-14T22:38:12.5108943Z [ 2025-08-14T22:38:12.5109118Z scalar_t=float 2025-08-14T22:38:12.5110319Z ] 2025-08-14T22:38:12.5110991Z 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-14T22:38:12.5111768Z with 2025-08-14T22:38:12.5111960Z [ 2025-08-14T22:38:12.5112153Z scalar_t=float 2025-08-14T22:38:12.5112366Z ] 2025-08-14T22:38:12.5113030Z 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-14T22:38:12.5113745Z with 2025-08-14T22:38:12.5113920Z [ 2025-08-14T22:38:12.5114109Z scalar_t=float 2025-08-14T22:38:12.5114312Z ] 2025-08-14T22:38:12.5115602Z 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-14T22:38:12.5116737Z with 2025-08-14T22:38:12.5116916Z [ 2025-08-14T22:38:12.5117085Z scalar_t=float 2025-08-14T22:38:12.5117306Z ] 2025-08-14T22:38:12.5117956Z 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-14T22:38:12.5118683Z with 2025-08-14T22:38:12.5118859Z [ 2025-08-14T22:38:12.5119027Z scalar_t=float 2025-08-14T22:38:12.5119251Z ] 2025-08-14T22:38:12.5119888Z 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-14T22:38:12.5120618Z with 2025-08-14T22:38:12.5121372Z [ 2025-08-14T22:38:12.5121963Z scalar_t=float 2025-08-14T22:38:12.5122261Z ] 2025-08-14T22:38:12.5122919Z 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-14T22:38:12.5123649Z with 2025-08-14T22:38:12.5123821Z [ 2025-08-14T22:38:12.5124000Z scalar_t=float 2025-08-14T22:38:12.5124216Z ] 2025-08-14T22:38:12.5124910Z 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-14T22:38:12.5125669Z with 2025-08-14T22:38:12.5125847Z [ 2025-08-14T22:38:12.5126018Z scalar_t=float 2025-08-14T22:38:12.5126246Z ] 2025-08-14T22:38:12.5127901Z 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-14T22:38:12.5128635Z with 2025-08-14T22:38:12.5128812Z [ 2025-08-14T22:38:12.5129000Z scalar_t=float 2025-08-14T22:38:12.5129221Z ] 2025-08-14T22:38:12.5129917Z 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-14T22:38:12.5130642Z with 2025-08-14T22:38:12.5130814Z [ 2025-08-14T22:38:12.5131006Z scalar_t=float 2025-08-14T22:38:12.5131215Z ] 2025-08-14T22:38:12.5131865Z 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-14T22:38:12.5133595Z with 2025-08-14T22:38:12.5133767Z [ 2025-08-14T22:38:12.5133955Z scalar_t=float 2025-08-14T22:38:12.5134159Z ] 2025-08-14T22:38:12.5134819Z 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-14T22:38:12.5135543Z with 2025-08-14T22:38:12.5135705Z [ 2025-08-14T22:38:12.5135878Z scalar_t=float 2025-08-14T22:38:12.5136077Z ] 2025-08-14T22:38:12.5136729Z 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-14T22:38:12.5137444Z with 2025-08-14T22:38:12.5137621Z [ 2025-08-14T22:38:12.5137788Z scalar_t=float 2025-08-14T22:38:12.5138602Z ] 2025-08-14T22:38:12.5139647Z 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-14T22:38:12.5140378Z with 2025-08-14T22:38:12.5140553Z [ 2025-08-14T22:38:12.5140722Z scalar_t=float 2025-08-14T22:38:12.5140948Z ] 2025-08-14T22:38:12.5141590Z 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-14T22:38:12.5142314Z with 2025-08-14T22:38:12.5142483Z [ 2025-08-14T22:38:12.5142654Z scalar_t=float 2025-08-14T22:38:12.5142858Z ] 2025-08-14T22:38:12.5143507Z 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-14T22:38:12.5145214Z with 2025-08-14T22:38:12.5145387Z [ 2025-08-14T22:38:12.5145574Z scalar_t=float 2025-08-14T22:38:12.5145780Z ] 2025-08-14T22:38:12.5146444Z 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-14T22:38:12.5147242Z with 2025-08-14T22:38:12.5147423Z [ 2025-08-14T22:38:12.5147609Z scalar_t=float 2025-08-14T22:38:12.5147820Z ] 2025-08-14T22:38:12.5148487Z 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-14T22:38:12.5149203Z with 2025-08-14T22:38:12.5149382Z [ 2025-08-14T22:38:12.5149554Z scalar_t=float 2025-08-14T22:38:12.5149769Z ] 2025-08-14T22:38:12.5166700Z 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-14T22:38:12.5167484Z with 2025-08-14T22:38:12.5167669Z [ 2025-08-14T22:38:12.5167838Z scalar_t=float 2025-08-14T22:38:12.5168057Z ] 2025-08-14T22:38:12.5168704Z 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-14T22:38:12.5169426Z with 2025-08-14T22:38:12.5169591Z [ 2025-08-14T22:38:12.5169768Z scalar_t=float 2025-08-14T22:38:12.5169972Z ] 2025-08-14T22:38:12.5172093Z 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-14T22:38:12.5172847Z with 2025-08-14T22:38:12.5173030Z [ 2025-08-14T22:38:12.5173216Z scalar_t=float 2025-08-14T22:38:12.5173433Z ] 2025-08-14T22:38:12.5174095Z 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-14T22:38:12.5174810Z with 2025-08-14T22:38:12.5174987Z [ 2025-08-14T22:38:12.5175157Z scalar_t=float 2025-08-14T22:38:12.5175377Z ] 2025-08-14T22:38:12.5176028Z 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-14T22:38:12.5176737Z with 2025-08-14T22:38:12.5178293Z [ 2025-08-14T22:38:12.5178469Z scalar_t=float 2025-08-14T22:38:12.5178700Z ] 2025-08-14T22:38:12.5179352Z 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-14T22:38:12.5180080Z with 2025-08-14T22:38:12.5180246Z [ 2025-08-14T22:38:12.5180421Z scalar_t=float 2025-08-14T22:38:12.5180632Z ] 2025-08-14T22:38:12.5181275Z 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-14T22:38:12.5182001Z with 2025-08-14T22:38:12.5182166Z [ 2025-08-14T22:38:12.5182339Z scalar_t=float 2025-08-14T22:38:12.5182542Z ] 2025-08-14T22:38:12.5184539Z 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-14T22:38:12.5185262Z with 2025-08-14T22:38:12.5185444Z [ 2025-08-14T22:38:12.5185627Z scalar_t=float 2025-08-14T22:38:12.5185835Z ] 2025-08-14T22:38:12.5186491Z 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-14T22:38:12.5187208Z with 2025-08-14T22:38:12.5187379Z [ 2025-08-14T22:38:12.5187548Z scalar_t=float 2025-08-14T22:38:12.5187764Z ] 2025-08-14T22:38:12.5188406Z 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-14T22:38:12.5190592Z with 2025-08-14T22:38:12.5190770Z [ 2025-08-14T22:38:12.5190938Z scalar_t=float 2025-08-14T22:38:12.5191158Z ] 2025-08-14T22:38:12.5191853Z 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-14T22:38:12.5192585Z with 2025-08-14T22:38:12.5192748Z [ 2025-08-14T22:38:12.5193037Z scalar_t=float 2025-08-14T22:38:12.5193244Z ] 2025-08-14T22:38:12.5193900Z 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-14T22:38:12.5194632Z with 2025-08-14T22:38:12.5194806Z [ 2025-08-14T22:38:12.5194982Z scalar_t=float 2025-08-14T22:38:12.5195193Z ] 2025-08-14T22:38:12.5195839Z 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-14T22:38:12.5196554Z with 2025-08-14T22:38:12.5196768Z [ 2025-08-14T22:38:12.5196936Z scalar_t=float 2025-08-14T22:38:12.5197148Z ] 2025-08-14T22:38:12.5197804Z 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-14T22:38:12.5198526Z with 2025-08-14T22:38:12.5198704Z [ 2025-08-14T22:38:12.5198879Z scalar_t=float 2025-08-14T22:38:12.5199090Z ] 2025-08-14T22:38:12.5199732Z 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-14T22:38:12.5201911Z with 2025-08-14T22:38:12.5202091Z [ 2025-08-14T22:38:12.5202263Z scalar_t=float 2025-08-14T22:38:12.5202474Z ] 2025-08-14T22:38:12.5203119Z 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-14T22:38:12.5203844Z with 2025-08-14T22:38:12.5204019Z [ 2025-08-14T22:38:12.5204194Z scalar_t=float 2025-08-14T22:38:12.5204396Z ] 2025-08-14T22:38:12.5205048Z 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-14T22:38:12.5205774Z with 2025-08-14T22:38:12.5205935Z [ 2025-08-14T22:38:12.5206112Z scalar_t=float 2025-08-14T22:38:12.5206313Z ] 2025-08-14T22:38:12.5206959Z 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-14T22:38:12.5207687Z with 2025-08-14T22:38:12.5207869Z [ 2025-08-14T22:38:12.5208035Z scalar_t=float 2025-08-14T22:38:12.5208256Z ] 2025-08-14T22:38:12.5208921Z 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-14T22:38:12.5209642Z with 2025-08-14T22:38:12.5209817Z [ 2025-08-14T22:38:12.5209992Z scalar_t=float 2025-08-14T22:38:12.5210205Z ] 2025-08-14T22:38:12.5210850Z 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-14T22:38:12.5211576Z with 2025-08-14T22:38:12.5211742Z [ 2025-08-14T22:38:12.5212002Z scalar_t=float 2025-08-14T22:38:12.5212215Z ] 2025-08-14T22:38:12.5212871Z 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-14T22:38:12.5213598Z with 2025-08-14T22:38:12.5213768Z [ 2025-08-14T22:38:12.5213951Z scalar_t=float 2025-08-14T22:38:12.5214161Z ] 2025-08-14T22:38:12.5214865Z 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-14T22:38:12.5215622Z with 2025-08-14T22:38:12.5215801Z [ 2025-08-14T22:38:12.5215985Z scalar_t=float 2025-08-14T22:38:12.5217694Z ] 2025-08-14T22:38:12.5218368Z 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-14T22:38:12.5219095Z with 2025-08-14T22:38:12.5219276Z [ 2025-08-14T22:38:12.5219446Z scalar_t=float 2025-08-14T22:38:12.5219658Z ] 2025-08-14T22:38:12.5220360Z 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-14T22:38:12.5221097Z with 2025-08-14T22:38:12.5221277Z [ 2025-08-14T22:38:12.5221445Z scalar_t=float 2025-08-14T22:38:12.5221668Z ] 2025-08-14T22:38:12.5222321Z 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-14T22:38:12.5223046Z with 2025-08-14T22:38:12.5223211Z [ 2025-08-14T22:38:12.5223400Z scalar_t=float 2025-08-14T22:38:12.5223602Z ] 2025-08-14T22:38:12.5224253Z 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-14T22:38:12.5224987Z with 2025-08-14T22:38:12.5225154Z [ 2025-08-14T22:38:12.5225334Z scalar_t=float 2025-08-14T22:38:12.5225536Z ] 2025-08-14T22:38:12.5226179Z 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-14T22:38:12.5226890Z with 2025-08-14T22:38:12.5227064Z [ 2025-08-14T22:38:12.5227232Z scalar_t=float 2025-08-14T22:38:12.5227440Z ] 2025-08-14T22:38:12.5228096Z 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-14T22:38:12.5228814Z with 2025-08-14T22:38:12.5228984Z [ 2025-08-14T22:38:12.5229154Z scalar_t=float 2025-08-14T22:38:12.5229367Z ] 2025-08-14T22:38:12.5230008Z 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-14T22:38:12.5230733Z with 2025-08-14T22:38:12.5230898Z [ 2025-08-14T22:38:12.5231068Z scalar_t=float 2025-08-14T22:38:12.5231332Z ] 2025-08-14T22:38:12.5231981Z 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-14T22:38:12.5232708Z with 2025-08-14T22:38:12.5232876Z [ 2025-08-14T22:38:12.5233065Z scalar_t=float 2025-08-14T22:38:12.5233270Z ] 2025-08-14T22:38:12.5233917Z 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-14T22:38:12.5234705Z with 2025-08-14T22:38:12.5234872Z [ 2025-08-14T22:38:12.5235052Z scalar_t=float 2025-08-14T22:38:12.5235263Z ] 2025-08-14T22:38:12.5235921Z 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-14T22:38:12.5236634Z with 2025-08-14T22:38:12.5236805Z [ 2025-08-14T22:38:12.5236974Z scalar_t=float 2025-08-14T22:38:12.5237182Z ] 2025-08-14T22:38:12.5237874Z 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-14T22:38:12.5238649Z with 2025-08-14T22:38:12.5238830Z [ 2025-08-14T22:38:12.5238997Z scalar_t=float 2025-08-14T22:38:12.5239207Z ] 2025-08-14T22:38:12.5239852Z 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-14T22:38:12.5240581Z with 2025-08-14T22:38:12.5240758Z [ 2025-08-14T22:38:12.5240930Z scalar_t=float 2025-08-14T22:38:12.5241174Z ] 2025-08-14T22:38:12.5241824Z 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-14T22:38:12.5242548Z with 2025-08-14T22:38:12.5242712Z [ 2025-08-14T22:38:12.5242897Z scalar_t=float 2025-08-14T22:38:12.5243108Z ] 2025-08-14T22:38:12.5243761Z 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-14T22:38:12.5244473Z with 2025-08-14T22:38:12.5244647Z [ 2025-08-14T22:38:12.5244817Z scalar_t=float 2025-08-14T22:38:12.5245021Z ] 2025-08-14T22:38:12.5245668Z 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-14T22:38:12.5246384Z with 2025-08-14T22:38:12.5246559Z [ 2025-08-14T22:38:12.5246725Z scalar_t=float 2025-08-14T22:38:12.5246934Z ] 2025-08-14T22:38:12.5248760Z 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-14T22:38:12.5249506Z with 2025-08-14T22:38:12.5249690Z [ 2025-08-14T22:38:12.5249863Z scalar_t=float 2025-08-14T22:38:12.5250075Z ] 2025-08-14T22:38:12.5250722Z 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-14T22:38:12.5251451Z with 2025-08-14T22:38:12.5251617Z [ 2025-08-14T22:38:12.5251797Z scalar_t=float 2025-08-14T22:38:12.5252003Z ] 2025-08-14T22:38:12.5252659Z 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-14T22:38:12.5253384Z with 2025-08-14T22:38:12.5253547Z [ 2025-08-14T22:38:12.5253730Z scalar_t=float 2025-08-14T22:38:12.5253941Z ] 2025-08-14T22:38:12.5254600Z 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-14T22:38:12.5255313Z with 2025-08-14T22:38:12.5255493Z [ 2025-08-14T22:38:12.5255663Z scalar_t=float 2025-08-14T22:38:12.5255880Z ] 2025-08-14T22:38:12.5256534Z 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-14T22:38:12.5257337Z with 2025-08-14T22:38:12.5257405Z [ 2025-08-14T22:38:12.5257499Z scalar_t=float 2025-08-14T22:38:12.5257566Z ] 2025-08-14T22:38:12.5258120Z 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-14T22:38:12.5258203Z with 2025-08-14T22:38:12.5258312Z [ 2025-08-14T22:38:12.5258436Z scalar_t=float 2025-08-14T22:38:12.5258504Z ] 2025-08-14T22:38:12.5259065Z 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-14T22:38:12.5259133Z with 2025-08-14T22:38:12.5259199Z [ 2025-08-14T22:38:12.5259288Z scalar_t=float 2025-08-14T22:38:12.5259355Z ] 2025-08-14T22:38:12.5259904Z 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-14T22:38:12.5260023Z with 2025-08-14T22:38:12.5260094Z [ 2025-08-14T22:38:12.5260171Z scalar_t=float 2025-08-14T22:38:12.5260236Z ] 2025-08-14T22:38:12.5260797Z 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-14T22:38:12.5260871Z with 2025-08-14T22:38:12.5260936Z [ 2025-08-14T22:38:12.5261021Z scalar_t=float 2025-08-14T22:38:12.5261086Z ] 2025-08-14T22:38:12.5261632Z 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-14T22:38:12.5261711Z with 2025-08-14T22:38:12.5261779Z [ 2025-08-14T22:38:12.5261853Z scalar_t=float 2025-08-14T22:38:12.5261918Z ] 2025-08-14T22:38:12.5262476Z 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-14T22:38:12.5262541Z with 2025-08-14T22:38:12.5262614Z [ 2025-08-14T22:38:12.5262699Z scalar_t=float 2025-08-14T22:38:12.5262762Z ] 2025-08-14T22:38:12.5263311Z 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-14T22:38:12.5263376Z with 2025-08-14T22:38:12.5263450Z [ 2025-08-14T22:38:12.5263526Z scalar_t=float 2025-08-14T22:38:12.5263590Z ] 2025-08-14T22:38:12.5264147Z 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-14T22:38:12.5264217Z with 2025-08-14T22:38:12.5264280Z [ 2025-08-14T22:38:12.5264359Z scalar_t=float 2025-08-14T22:38:12.5264439Z ] 2025-08-14T22:38:12.5264982Z 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-14T22:38:12.5265047Z with 2025-08-14T22:38:12.5265120Z [ 2025-08-14T22:38:12.5265193Z scalar_t=float 2025-08-14T22:38:12.5265264Z ] 2025-08-14T22:38:12.5265812Z 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-14T22:38:12.5265877Z with 2025-08-14T22:38:12.5265942Z [ 2025-08-14T22:38:12.5266849Z scalar_t=float 2025-08-14T22:38:12.5266924Z ] 2025-08-14T22:38:12.5267474Z 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-14T22:38:12.5267543Z with 2025-08-14T22:38:12.5267616Z [ 2025-08-14T22:38:12.5267698Z scalar_t=float 2025-08-14T22:38:12.5267764Z ] 2025-08-14T22:38:12.5268660Z 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-14T22:38:12.5268783Z with 2025-08-14T22:38:12.5268850Z [ 2025-08-14T22:38:12.5268926Z scalar_t=float 2025-08-14T22:38:12.5268999Z ] 2025-08-14T22:38:12.5269554Z 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-14T22:38:12.5269629Z with 2025-08-14T22:38:12.5269701Z [ 2025-08-14T22:38:12.5269778Z scalar_t=float 2025-08-14T22:38:12.5269842Z ] 2025-08-14T22:38:12.5270432Z 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-14T22:38:12.5270505Z with 2025-08-14T22:38:12.5270568Z [ 2025-08-14T22:38:12.5270651Z scalar_t=float 2025-08-14T22:38:12.5270721Z ] 2025-08-14T22:38:12.5271351Z 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-14T22:38:12.5271423Z with 2025-08-14T22:38:12.5271499Z [ 2025-08-14T22:38:12.5271579Z scalar_t=float 2025-08-14T22:38:12.5271644Z ] 2025-08-14T22:38:12.5272191Z 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-14T22:38:12.5272267Z with 2025-08-14T22:38:12.5272333Z [ 2025-08-14T22:38:12.5272416Z scalar_t=float 2025-08-14T22:38:12.5272489Z ] 2025-08-14T22:38:12.5273034Z 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-14T22:38:12.5273562Z 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-14T22:38:12.5274205Z 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-14T22:38:12.5274272Z with 2025-08-14T22:38:12.5274340Z [ 2025-08-14T22:38:12.5274409Z T=float 2025-08-14T22:38:12.5274485Z ] 2025-08-14T22:38:12.5275334Z 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-14T22:38:12.5275883Z 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-14T22:38:12.5276435Z 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-14T22:38:12.5276972Z 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-14T22:38:12.5277565Z 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-14T22:38:12.5278110Z 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-14T22:38:12.5278644Z 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-14T22:38:12.5279264Z 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-14T22:38:12.5279799Z 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-14T22:38:12.5280338Z 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-14T22:38:12.5280913Z 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-14T22:38:12.5281450Z 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-14T22:38:12.5281989Z 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-14T22:38:12.5282544Z 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-14T22:38:12.5283081Z 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-14T22:38:12.5283619Z 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-14T22:38:12.5284173Z 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-14T22:38:12.5284711Z 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-14T22:38:12.5285250Z 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-14T22:38:12.5285801Z 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-14T22:38:12.5286342Z 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-14T22:38:12.5286881Z 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-14T22:38:12.5287418Z 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-14T22:38:12.5287964Z 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-14T22:38:12.5288505Z 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-14T22:38:12.5289084Z 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-14T22:38:12.5289621Z 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-14T22:38:12.5290200Z 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-14T22:38:12.5290767Z 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-14T22:38:12.5291306Z 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-14T22:38:12.5291886Z 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-14T22:38:12.5292416Z 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-14T22:38:12.5293233Z 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-14T22:38:12.5293792Z 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-14T22:38:12.5294330Z 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-14T22:38:12.5294875Z 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-14T22:38:12.5295413Z 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-14T22:38:12.5295952Z 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-14T22:38:12.5296502Z 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-14T22:38:12.5297037Z 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-14T22:38:12.5297583Z 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-14T22:38:12.5298128Z 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-14T22:38:12.5298667Z 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-14T22:38:12.5299202Z 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-14T22:38:12.5299792Z 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-14T22:38:12.5300327Z 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-14T22:38:12.5300864Z 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-14T22:38:12.5301489Z 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-14T22:38:12.5302027Z 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-14T22:38:12.5302581Z 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-14T22:38:12.5304060Z 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-14T22:38:12.5305033Z 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-14T22:38:12.5305587Z 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-14T22:38:12.5306129Z 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-14T22:38:12.5306670Z 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-14T22:38:12.5307220Z 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-14T22:38:12.5307767Z 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-14T22:38:13.4273103Z 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-14T22:38:13.4273868Z with 2025-08-14T22:38:13.4274074Z [ 2025-08-14T22:38:13.4274249Z scalar_t=float 2025-08-14T22:38:13.4274472Z ] 2025-08-14T22:38:13.4275100Z 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-14T22:38:13.4278204Z 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-14T22:38:13.4279153Z with 2025-08-14T22:38:13.4279349Z [ 2025-08-14T22:38:13.4279518Z scalar_t=float 2025-08-14T22:38:13.4279737Z ] 2025-08-14T22:38:13.4280572Z 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-14T22:38:13.4281478Z with 2025-08-14T22:38:13.4281644Z [ 2025-08-14T22:38:13.4281829Z scalar_t=float 2025-08-14T22:38:13.4282038Z ] 2025-08-14T22:38:13.4282881Z 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-14T22:38:13.4283591Z with 2025-08-14T22:38:13.4283767Z [ 2025-08-14T22:38:13.4283947Z scalar_t=float 2025-08-14T22:38:13.4284152Z ] 2025-08-14T22:38:13.4284792Z 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-14T22:38:13.4285497Z with 2025-08-14T22:38:13.4285810Z [ 2025-08-14T22:38:13.4285993Z scalar_t=float 2025-08-14T22:38:13.4286204Z ] 2025-08-14T22:38:13.9960465Z 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-14T22:38:13.9961247Z with 2025-08-14T22:38:13.9961461Z [ 2025-08-14T22:38:13.9961639Z scalar_t=float 2025-08-14T22:38:13.9961848Z ] 2025-08-14T22:38:13.9962491Z 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-14T22:38:13.9964005Z 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-14T22:38:13.9964978Z with 2025-08-14T22:38:13.9965181Z [ 2025-08-14T22:38:13.9965357Z scalar_t=float 2025-08-14T22:38:13.9965576Z ] 2025-08-14T22:38:13.9967541Z 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-14T22:38:13.9968461Z with 2025-08-14T22:38:13.9968632Z [ 2025-08-14T22:38:13.9968807Z scalar_t=float 2025-08-14T22:38:13.9969019Z ] 2025-08-14T22:38:13.9969677Z 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-14T22:38:13.9970405Z with 2025-08-14T22:38:13.9970571Z [ 2025-08-14T22:38:13.9970756Z scalar_t=float 2025-08-14T22:38:13.9970993Z ] 2025-08-14T22:38:13.9971654Z 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-14T22:38:13.9972386Z with 2025-08-14T22:38:13.9972554Z [ 2025-08-14T22:38:13.9972734Z scalar_t=float 2025-08-14T22:38:13.9972939Z ] 2025-08-14T22:38:13.9973591Z 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-14T22:38:13.9974314Z with 2025-08-14T22:38:13.9974481Z [ 2025-08-14T22:38:13.9974654Z scalar_t=float 2025-08-14T22:38:13.9974859Z ] 2025-08-14T22:38:13.9975506Z 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-14T22:38:13.9976224Z with 2025-08-14T22:38:13.9976399Z [ 2025-08-14T22:38:13.9976568Z scalar_t=float 2025-08-14T22:38:13.9976785Z ] 2025-08-14T22:38:13.9977440Z 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-14T22:38:13.9978162Z with 2025-08-14T22:38:13.9978337Z [ 2025-08-14T22:38:13.9978504Z scalar_t=float 2025-08-14T22:38:13.9978843Z ] 2025-08-14T22:38:13.9979483Z 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-14T22:38:13.9980211Z with 2025-08-14T22:38:13.9980378Z [ 2025-08-14T22:38:13.9980575Z scalar_t=float 2025-08-14T22:38:13.9980787Z ] 2025-08-14T22:38:13.9981489Z 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-14T22:38:13.9983454Z with 2025-08-14T22:38:13.9983642Z [ 2025-08-14T22:38:13.9983842Z scalar_t=float 2025-08-14T22:38:13.9984048Z ] 2025-08-14T22:38:13.9984705Z 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-14T22:38:13.9985436Z with 2025-08-14T22:38:13.9985613Z [ 2025-08-14T22:38:13.9985788Z scalar_t=float 2025-08-14T22:38:13.9985991Z ] 2025-08-14T22:38:13.9986726Z 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-14T22:38:13.9987457Z with 2025-08-14T22:38:13.9987647Z [ 2025-08-14T22:38:13.9987817Z scalar_t=float 2025-08-14T22:38:13.9988040Z ] 2025-08-14T22:38:13.9988688Z 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-14T22:38:13.9989411Z with 2025-08-14T22:38:13.9989582Z [ 2025-08-14T22:38:13.9989748Z scalar_t=float 2025-08-14T22:38:13.9989961Z ] 2025-08-14T22:38:13.9990606Z 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-14T22:38:13.9991414Z with 2025-08-14T22:38:13.9991591Z [ 2025-08-14T22:38:13.9991769Z scalar_t=float 2025-08-14T22:38:13.9991983Z ] 2025-08-14T22:38:13.9992643Z 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-14T22:38:13.9993363Z with 2025-08-14T22:38:13.9993528Z [ 2025-08-14T22:38:13.9993707Z scalar_t=float 2025-08-14T22:38:13.9993912Z ] 2025-08-14T22:38:13.9994558Z 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-14T22:38:13.9995268Z with 2025-08-14T22:38:13.9995448Z [ 2025-08-14T22:38:13.9995613Z scalar_t=float 2025-08-14T22:38:13.9995828Z ] 2025-08-14T22:38:13.9996476Z 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-14T22:38:13.9997184Z with 2025-08-14T22:38:13.9997361Z [ 2025-08-14T22:38:13.9997536Z scalar_t=float 2025-08-14T22:38:13.9997742Z ] 2025-08-14T22:38:13.9998382Z 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-14T22:38:13.9999114Z with 2025-08-14T22:38:13.9999287Z [ 2025-08-14T22:38:13.9999455Z scalar_t=float 2025-08-14T22:38:13.9999666Z ] 2025-08-14T22:38:15.6039919Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64\link.exe" /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:C:\actions-runner\_work\pytorch\pytorch\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.38.33130\lib\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64" 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-14T22:38:15.9179549Z 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-14T22:38:15.9297358Z Generating code 2025-08-14T22:38:17.8238126Z Finished generating code 2025-08-14T22:38:17.9698211Z running install_lib 2025-08-14T22:38:17.9841608Z creating install\Jenkins\Miniconda3\Lib\site-packages 2025-08-14T22:38:17.9850160Z creating install\Jenkins\Miniconda3\Lib\site-packages\torch_test_cpp_extension 2025-08-14T22:38:17.9853654Z 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-14T22:38:17.9862909Z 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-14T22:38:17.9871507Z 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-14T22:38:17.9890230Z 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-14T22:38:17.9912649Z byte-compiling ./install\Jenkins\Miniconda3\Lib\site-packages\torch_test_cpp_extension\__init__.py to __init__.cpython-39.pyc 2025-08-14T22:38:17.9921048Z running install_egg_info 2025-08-14T22:38:18.0294625Z running egg_info 2025-08-14T22:38:18.0402319Z creating torch_test_cpp_extension.egg-info 2025-08-14T22:38:18.0406263Z writing torch_test_cpp_extension.egg-info\PKG-INFO 2025-08-14T22:38:18.0415809Z writing dependency_links to torch_test_cpp_extension.egg-info\dependency_links.txt 2025-08-14T22:38:18.0419993Z writing entry points to torch_test_cpp_extension.egg-info\entry_points.txt 2025-08-14T22:38:18.0435795Z writing top-level names to torch_test_cpp_extension.egg-info\top_level.txt 2025-08-14T22:38:18.0439077Z writing manifest file 'torch_test_cpp_extension.egg-info\SOURCES.txt' 2025-08-14T22:38:18.0565041Z reading manifest file 'torch_test_cpp_extension.egg-info\SOURCES.txt' 2025-08-14T22:38:18.0582136Z writing manifest file 'torch_test_cpp_extension.egg-info\SOURCES.txt' 2025-08-14T22:38:18.0586390Z 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-14T22:38:18.0624938Z running install_scripts 2025-08-14T22:38:22.6812380Z 2025-08-14T22:38:22.6812801Z Running tests... 2025-08-14T22:38:22.6813136Z ---------------------------------------------------------------------- 2025-08-14T22:38:22.9249669Z . 2025-08-14T22:38:22.9250029Z ---------------------------------------------------------------------- 2025-08-14T22:38:22.9250413Z Ran 1 test in 0.250s 2025-08-14T22:38:22.9250561Z 2025-08-14T22:38:22.9250627Z OK 2025-08-14T22:38:22.9250717Z 2025-08-14T22:38:22.9250819Z Generating XML reports... 2025-08-14T22:38:23.7443323Z Running test_cpp_extensions_aot_no_ninja 1/1 ... [2025-08-14 22:38:23.743991] 2025-08-14T22:38:27.8143100Z running install 2025-08-14T22:38:27.8147086Z C:\Jenkins\Miniconda3\lib\site-packages\setuptools\_distutils\cmd.py:90: SetuptoolsDeprecationWarning: setup.py install is deprecated. 2025-08-14T22:38:27.8147920Z !! 2025-08-14T22:38:27.8148016Z 2025-08-14T22:38:27.8148131Z ******************************************************************************** 2025-08-14T22:38:27.8148483Z Please avoid running ``setup.py`` directly. 2025-08-14T22:38:27.8148830Z Instead, use pypa/build, pypa/installer or other 2025-08-14T22:38:27.8149156Z standards-based tools. 2025-08-14T22:38:27.8149322Z 2025-08-14T22:38:27.8149799Z See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. 2025-08-14T22:38:27.8150422Z ******************************************************************************** 2025-08-14T22:38:27.8150642Z 2025-08-14T22:38:27.8150724Z !! 2025-08-14T22:38:27.8150907Z self.initialize_options() 2025-08-14T22:38:27.8285729Z running build 2025-08-14T22:38:27.8285976Z running build_py 2025-08-14T22:38:27.8403563Z creating build\lib.win-amd64-cpython-39\torch_test_cpp_extension 2025-08-14T22:38:27.8409628Z copying torch_test_cpp_extension\__init__.py -> build\lib.win-amd64-cpython-39\torch_test_cpp_extension 2025-08-14T22:38:27.8417410Z running build_ext 2025-08-14T22:38:27.8438633Z building 'torch_test_cpp_extension.cpp' extension 2025-08-14T22:38:27.8449958Z creating build\temp.win-amd64-cpython-39\Release 2025-08-14T22:38:27.8464277Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64\cl.exe" /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\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.38.33130\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" /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-14T22:38:27.8575505Z extension.cpp 2025-08-14T22:38:44.0477245Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64\link.exe" /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:C:\actions-runner\_work\pytorch\pytorch\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.38.33130\lib\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64" 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-14T22:38:44.2972172Z 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-14T22:38:44.3074886Z Generating code 2025-08-14T22:38:46.0187480Z Finished generating code 2025-08-14T22:38:46.1610044Z building 'torch_test_cpp_extension.maia' extension 2025-08-14T22:38:46.1622050Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64\cl.exe" /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\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.38.33130\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" /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-14T22:38:46.1731564Z maia_extension.cpp 2025-08-14T22:39:02.0561040Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64\link.exe" /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:C:\actions-runner\_work\pytorch\pytorch\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.38.33130\lib\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64" 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-14T22:39:02.3074955Z 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-14T22:39:02.3163561Z Generating code 2025-08-14T22:39:03.8200959Z Finished generating code 2025-08-14T22:39:03.9536164Z building 'torch_test_cpp_extension.rng' extension 2025-08-14T22:39:03.9547425Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64\cl.exe" /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\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.38.33130\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" /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-14T22:39:03.9669982Z rng_extension.cpp 2025-08-14T22:39:15.8408538Z 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-14T22:39:15.8409760Z 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-14T22:39:15.8411270Z 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-14T22:39:15.8412792Z with 2025-08-14T22:39:15.8413073Z [ 2025-08-14T22:39:15.8413264Z scalar_t=float 2025-08-14T22:39:15.8413518Z ] 2025-08-14T22:39:15.8416185Z 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-14T22:39:15.8417451Z 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-14T22:39:15.8418797Z 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-14T22:39:15.8419790Z with 2025-08-14T22:39:15.8419973Z [ 2025-08-14T22:39:15.8420141Z scalar_t=float 2025-08-14T22:39:15.8420362Z ] 2025-08-14T22:39:17.4129249Z 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-14T22:39:17.4130051Z with 2025-08-14T22:39:17.4130226Z [ 2025-08-14T22:39:17.4130415Z scalar_t=float 2025-08-14T22:39:17.4130652Z ] 2025-08-14T22:39:17.4131279Z 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-14T22:39:17.4132718Z 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-14T22:39:17.4133616Z with 2025-08-14T22:39:17.4133787Z [ 2025-08-14T22:39:17.4133956Z scalar_t=float 2025-08-14T22:39:17.4134171Z ] 2025-08-14T22:39:17.4135087Z 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-14T22:39:17.4136084Z with 2025-08-14T22:39:17.4136263Z [ 2025-08-14T22:39:17.4136437Z scalar_t=float 2025-08-14T22:39:17.4136656Z ] 2025-08-14T22:39:17.4137338Z 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-14T22:39:17.4138149Z with 2025-08-14T22:39:17.4138327Z [ 2025-08-14T22:39:17.4138494Z scalar_t=float 2025-08-14T22:39:17.4138703Z ] 2025-08-14T22:39:17.4139353Z 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-14T22:39:17.4140084Z with 2025-08-14T22:39:17.4140267Z [ 2025-08-14T22:39:17.4140432Z scalar_t=float 2025-08-14T22:39:17.4140640Z ] 2025-08-14T22:39:17.4141275Z 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-14T22:39:17.4142152Z with 2025-08-14T22:39:17.4142317Z [ 2025-08-14T22:39:17.4142507Z scalar_t=float 2025-08-14T22:39:17.4142716Z ] 2025-08-14T22:39:17.4143412Z 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-14T22:39:17.4144180Z with 2025-08-14T22:39:17.4144422Z [ 2025-08-14T22:39:17.4144674Z scalar_t=float 2025-08-14T22:39:17.4144941Z ] 2025-08-14T22:39:17.4145617Z 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-14T22:39:17.4146341Z with 2025-08-14T22:39:17.4146519Z [ 2025-08-14T22:39:17.4146689Z scalar_t=float 2025-08-14T22:39:17.4146901Z ] 2025-08-14T22:39:17.4147555Z 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-14T22:39:17.4148762Z with 2025-08-14T22:39:17.4149009Z [ 2025-08-14T22:39:17.4149181Z scalar_t=float 2025-08-14T22:39:17.4149435Z ] 2025-08-14T22:39:17.4150093Z 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-14T22:39:17.4150821Z with 2025-08-14T22:39:17.4150987Z [ 2025-08-14T22:39:17.4151161Z scalar_t=float 2025-08-14T22:39:17.4189046Z ] 2025-08-14T22:39:17.4190857Z 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-14T22:39:17.4191629Z with 2025-08-14T22:39:17.4191821Z [ 2025-08-14T22:39:17.4191994Z scalar_t=float 2025-08-14T22:39:17.4192226Z ] 2025-08-14T22:39:17.4192883Z 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-14T22:39:17.4193620Z with 2025-08-14T22:39:17.4193788Z [ 2025-08-14T22:39:17.4193976Z scalar_t=float 2025-08-14T22:39:17.4194183Z ] 2025-08-14T22:39:17.4194870Z 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-14T22:39:17.4196592Z with 2025-08-14T22:39:17.4196773Z [ 2025-08-14T22:39:17.4196963Z scalar_t=float 2025-08-14T22:39:17.4197176Z ] 2025-08-14T22:39:17.4197849Z 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-14T22:39:17.4198568Z with 2025-08-14T22:39:17.4198749Z [ 2025-08-14T22:39:17.4198924Z scalar_t=float 2025-08-14T22:39:17.4199143Z ] 2025-08-14T22:39:17.4199806Z 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-14T22:39:17.4200617Z with 2025-08-14T22:39:17.4200803Z [ 2025-08-14T22:39:17.4201971Z scalar_t=float 2025-08-14T22:39:17.4202194Z ] 2025-08-14T22:39:17.4202850Z 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-14T22:39:17.4203583Z with 2025-08-14T22:39:17.4203765Z [ 2025-08-14T22:39:17.4204091Z scalar_t=float 2025-08-14T22:39:17.4204320Z ] 2025-08-14T22:39:17.4204973Z 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-14T22:39:17.4205700Z with 2025-08-14T22:39:17.4205865Z [ 2025-08-14T22:39:17.4206054Z scalar_t=float 2025-08-14T22:39:17.4206258Z ] 2025-08-14T22:39:17.4207999Z 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-14T22:39:17.4208797Z with 2025-08-14T22:39:17.4208980Z [ 2025-08-14T22:39:17.4209154Z scalar_t=float 2025-08-14T22:39:17.4209378Z ] 2025-08-14T22:39:17.4210041Z 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-14T22:39:17.4210765Z with 2025-08-14T22:39:17.4210945Z [ 2025-08-14T22:39:17.4211112Z scalar_t=float 2025-08-14T22:39:17.4211334Z ] 2025-08-14T22:39:17.4212032Z 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-14T22:39:17.4213770Z with 2025-08-14T22:39:17.4213947Z [ 2025-08-14T22:39:17.4214133Z scalar_t=float 2025-08-14T22:39:17.4214352Z ] 2025-08-14T22:39:17.4215003Z 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-14T22:39:17.4215734Z with 2025-08-14T22:39:17.4215904Z [ 2025-08-14T22:39:17.4216079Z scalar_t=float 2025-08-14T22:39:17.4216279Z ] 2025-08-14T22:39:17.4216939Z 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-14T22:39:17.4217664Z with 2025-08-14T22:39:17.4217851Z [ 2025-08-14T22:39:17.4218036Z scalar_t=float 2025-08-14T22:39:17.4219225Z ] 2025-08-14T22:39:17.4219898Z 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-14T22:39:17.4220618Z with 2025-08-14T22:39:17.4220798Z [ 2025-08-14T22:39:17.4220974Z scalar_t=float 2025-08-14T22:39:17.4221190Z ] 2025-08-14T22:39:17.4221833Z 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-14T22:39:17.4222554Z with 2025-08-14T22:39:17.4222732Z [ 2025-08-14T22:39:17.4222899Z scalar_t=float 2025-08-14T22:39:17.4223116Z ] 2025-08-14T22:39:17.4223763Z 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-14T22:39:17.4225521Z with 2025-08-14T22:39:17.4225691Z [ 2025-08-14T22:39:17.4225873Z scalar_t=float 2025-08-14T22:39:17.4226079Z ] 2025-08-14T22:39:17.4226755Z 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-14T22:39:17.4227501Z with 2025-08-14T22:39:17.4227674Z [ 2025-08-14T22:39:17.4227866Z scalar_t=float 2025-08-14T22:39:17.4228076Z ] 2025-08-14T22:39:17.4228734Z 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-14T22:39:17.4229589Z with 2025-08-14T22:39:17.4230790Z [ 2025-08-14T22:39:17.4230979Z scalar_t=float 2025-08-14T22:39:17.4231208Z ] 2025-08-14T22:39:17.4231881Z 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-14T22:39:17.4232610Z with 2025-08-14T22:39:17.4232793Z [ 2025-08-14T22:39:17.4232968Z scalar_t=float 2025-08-14T22:39:17.4233263Z ] 2025-08-14T22:39:17.4233970Z 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-14T22:39:17.4234714Z with 2025-08-14T22:39:17.4234908Z [ 2025-08-14T22:39:17.4235085Z scalar_t=float 2025-08-14T22:39:17.4235296Z ] 2025-08-14T22:39:17.4236945Z 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-14T22:39:17.4237687Z with 2025-08-14T22:39:17.4237854Z [ 2025-08-14T22:39:17.4238100Z scalar_t=float 2025-08-14T22:39:17.4238313Z ] 2025-08-14T22:39:17.4238981Z 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-14T22:39:17.4239716Z with 2025-08-14T22:39:17.4239886Z [ 2025-08-14T22:39:17.4240075Z scalar_t=float 2025-08-14T22:39:17.4240280Z ] 2025-08-14T22:39:17.4240941Z 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-14T22:39:17.4242663Z with 2025-08-14T22:39:17.4242844Z [ 2025-08-14T22:39:17.4243016Z scalar_t=float 2025-08-14T22:39:17.4243240Z ] 2025-08-14T22:39:17.4243893Z 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-14T22:39:17.4244614Z with 2025-08-14T22:39:17.4244800Z [ 2025-08-14T22:39:17.4244969Z scalar_t=float 2025-08-14T22:39:17.4245177Z ] 2025-08-14T22:39:17.4245820Z 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-14T22:39:17.4246557Z with 2025-08-14T22:39:17.4246724Z [ 2025-08-14T22:39:17.4246900Z scalar_t=float 2025-08-14T22:39:17.4248093Z ] 2025-08-14T22:39:17.4248748Z 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-14T22:39:17.4249490Z with 2025-08-14T22:39:17.4249658Z [ 2025-08-14T22:39:17.4249835Z scalar_t=float 2025-08-14T22:39:17.4250036Z ] 2025-08-14T22:39:17.4250686Z 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-14T22:39:17.4251407Z with 2025-08-14T22:39:17.4251572Z [ 2025-08-14T22:39:17.4251869Z scalar_t=float 2025-08-14T22:39:17.4252085Z ] 2025-08-14T22:39:17.4253691Z 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-14T22:39:17.4254423Z with 2025-08-14T22:39:17.4254610Z [ 2025-08-14T22:39:17.4254788Z scalar_t=float 2025-08-14T22:39:17.4255006Z ] 2025-08-14T22:39:17.4255761Z 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-14T22:39:17.4256490Z with 2025-08-14T22:39:17.4256673Z [ 2025-08-14T22:39:17.4256853Z scalar_t=float 2025-08-14T22:39:17.4257067Z ] 2025-08-14T22:39:17.4257708Z 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-14T22:39:17.4259510Z with 2025-08-14T22:39:17.4259753Z [ 2025-08-14T22:39:17.4259930Z scalar_t=float 2025-08-14T22:39:17.4260141Z ] 2025-08-14T22:39:17.4260796Z 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-14T22:39:17.4261523Z with 2025-08-14T22:39:17.4261695Z [ 2025-08-14T22:39:17.4261871Z scalar_t=float 2025-08-14T22:39:17.4262074Z ] 2025-08-14T22:39:17.4262783Z 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-14T22:39:17.4263513Z with 2025-08-14T22:39:17.4263716Z [ 2025-08-14T22:39:17.4263894Z scalar_t=float 2025-08-14T22:39:17.4264712Z ] 2025-08-14T22:39:17.4265841Z 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-14T22:39:17.4266566Z with 2025-08-14T22:39:17.4266751Z [ 2025-08-14T22:39:17.4266926Z scalar_t=float 2025-08-14T22:39:17.4267143Z ] 2025-08-14T22:39:17.4267791Z 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-14T22:39:17.4268518Z with 2025-08-14T22:39:17.4268689Z [ 2025-08-14T22:39:17.4268866Z scalar_t=float 2025-08-14T22:39:17.4269077Z ] 2025-08-14T22:39:17.4269725Z 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-14T22:39:17.4271480Z with 2025-08-14T22:39:17.4271657Z [ 2025-08-14T22:39:17.4271843Z scalar_t=float 2025-08-14T22:39:17.4272066Z ] 2025-08-14T22:39:17.4272717Z 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-14T22:39:17.4273443Z with 2025-08-14T22:39:17.4273608Z [ 2025-08-14T22:39:17.4273787Z scalar_t=float 2025-08-14T22:39:17.4273992Z ] 2025-08-14T22:39:17.4274653Z 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-14T22:39:17.4275375Z with 2025-08-14T22:39:17.4275556Z [ 2025-08-14T22:39:17.4276699Z scalar_t=float 2025-08-14T22:39:17.4276935Z ] 2025-08-14T22:39:17.4277595Z 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-14T22:39:17.4278328Z with 2025-08-14T22:39:17.4278515Z [ 2025-08-14T22:39:17.4278686Z scalar_t=float 2025-08-14T22:39:17.4278913Z ] 2025-08-14T22:39:17.4279557Z 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-14T22:39:17.4280276Z with 2025-08-14T22:39:17.4280546Z [ 2025-08-14T22:39:17.4280747Z scalar_t=float 2025-08-14T22:39:17.4280968Z ] 2025-08-14T22:39:17.4282600Z 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-14T22:39:17.4283328Z with 2025-08-14T22:39:17.4283493Z [ 2025-08-14T22:39:17.4283684Z scalar_t=float 2025-08-14T22:39:17.4283897Z ] 2025-08-14T22:39:17.4284616Z 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-14T22:39:17.4285392Z with 2025-08-14T22:39:17.4285561Z [ 2025-08-14T22:39:17.4285737Z scalar_t=float 2025-08-14T22:39:17.4285942Z ] 2025-08-14T22:39:17.4286591Z 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-14T22:39:17.4288300Z with 2025-08-14T22:39:17.4288467Z [ 2025-08-14T22:39:17.4288647Z scalar_t=float 2025-08-14T22:39:17.4288856Z ] 2025-08-14T22:39:17.4289561Z 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-14T22:39:17.4290288Z with 2025-08-14T22:39:17.4290466Z [ 2025-08-14T22:39:17.4290636Z scalar_t=float 2025-08-14T22:39:17.4290859Z ] 2025-08-14T22:39:17.4291506Z 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-14T22:39:17.4292234Z with 2025-08-14T22:39:17.4292413Z [ 2025-08-14T22:39:17.4292583Z scalar_t=float 2025-08-14T22:39:17.4292802Z ] 2025-08-14T22:39:17.4294443Z 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-14T22:39:17.4295177Z with 2025-08-14T22:39:17.4295351Z [ 2025-08-14T22:39:17.4295544Z scalar_t=float 2025-08-14T22:39:17.4295750Z ] 2025-08-14T22:39:17.4296402Z 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-14T22:39:17.4297142Z with 2025-08-14T22:39:17.4297308Z [ 2025-08-14T22:39:17.4297484Z scalar_t=float 2025-08-14T22:39:17.4297687Z ] 2025-08-14T22:39:17.4298347Z 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-14T22:39:17.4300051Z with 2025-08-14T22:39:17.4300337Z [ 2025-08-14T22:39:17.4300521Z scalar_t=float 2025-08-14T22:39:17.4300727Z ] 2025-08-14T22:39:17.4301389Z 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-14T22:39:17.4302108Z with 2025-08-14T22:39:17.4302283Z [ 2025-08-14T22:39:17.4302448Z scalar_t=float 2025-08-14T22:39:17.4302658Z ] 2025-08-14T22:39:17.4303302Z 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-14T22:39:17.4304037Z with 2025-08-14T22:39:17.4304212Z [ 2025-08-14T22:39:17.4305394Z scalar_t=float 2025-08-14T22:39:17.4305632Z ] 2025-08-14T22:39:17.4306276Z 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-14T22:39:17.4307105Z with 2025-08-14T22:39:17.4307280Z [ 2025-08-14T22:39:17.4307462Z scalar_t=float 2025-08-14T22:39:17.4307666Z ] 2025-08-14T22:39:17.4308335Z 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-14T22:39:17.4309066Z with 2025-08-14T22:39:17.4309226Z [ 2025-08-14T22:39:17.4309409Z scalar_t=float 2025-08-14T22:39:17.4309722Z ] 2025-08-14T22:39:17.4311371Z 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-14T22:39:17.4312101Z with 2025-08-14T22:39:17.4312279Z [ 2025-08-14T22:39:17.4312451Z scalar_t=float 2025-08-14T22:39:17.4312672Z ] 2025-08-14T22:39:17.4313331Z 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-14T22:39:17.4314052Z with 2025-08-14T22:39:17.4314224Z [ 2025-08-14T22:39:17.4314446Z scalar_t=float 2025-08-14T22:39:17.4314666Z ] 2025-08-14T22:39:17.4315320Z 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-14T22:39:17.4317063Z with 2025-08-14T22:39:17.4317239Z [ 2025-08-14T22:39:17.4317426Z scalar_t=float 2025-08-14T22:39:17.4317642Z ] 2025-08-14T22:39:17.4318282Z 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-14T22:39:17.4319009Z with 2025-08-14T22:39:17.4319176Z [ 2025-08-14T22:39:17.4319352Z scalar_t=float 2025-08-14T22:39:17.4319564Z ] 2025-08-14T22:39:17.4320219Z 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-14T22:39:17.4320948Z with 2025-08-14T22:39:17.4321120Z [ 2025-08-14T22:39:17.4321303Z scalar_t=float 2025-08-14T22:39:17.4321513Z ] 2025-08-14T22:39:17.4323165Z 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-14T22:39:17.4323895Z with 2025-08-14T22:39:17.4324083Z [ 2025-08-14T22:39:17.4324266Z scalar_t=float 2025-08-14T22:39:17.4324482Z ] 2025-08-14T22:39:17.4325127Z 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-14T22:39:17.4325854Z with 2025-08-14T22:39:17.4326028Z [ 2025-08-14T22:39:17.4326194Z scalar_t=float 2025-08-14T22:39:17.4326407Z ] 2025-08-14T22:39:17.4327045Z 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-14T22:39:17.4328768Z with 2025-08-14T22:39:17.4328943Z [ 2025-08-14T22:39:17.4329134Z scalar_t=float 2025-08-14T22:39:17.4329344Z ] 2025-08-14T22:39:17.4330007Z 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-14T22:39:17.4330736Z with 2025-08-14T22:39:17.4330899Z [ 2025-08-14T22:39:17.4331081Z scalar_t=float 2025-08-14T22:39:17.4331998Z ] 2025-08-14T22:39:17.4332652Z 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-14T22:39:17.4334440Z with 2025-08-14T22:39:17.4334626Z [ 2025-08-14T22:39:17.4334823Z scalar_t=float 2025-08-14T22:39:17.4335031Z ] 2025-08-14T22:39:17.4335683Z 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-14T22:39:17.4336906Z with 2025-08-14T22:39:17.4337094Z [ 2025-08-14T22:39:17.4337270Z scalar_t=float 2025-08-14T22:39:17.4337495Z ] 2025-08-14T22:39:17.4338141Z 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-14T22:39:17.4338872Z with 2025-08-14T22:39:17.4340104Z [ 2025-08-14T22:39:17.4340276Z scalar_t=float 2025-08-14T22:39:17.4340503Z ] 2025-08-14T22:39:17.4341211Z 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-14T22:39:17.4341948Z with 2025-08-14T22:39:17.4342120Z [ 2025-08-14T22:39:17.4342307Z scalar_t=float 2025-08-14T22:39:17.4342518Z ] 2025-08-14T22:39:17.4343174Z 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-14T22:39:17.4343904Z with 2025-08-14T22:39:17.4344069Z [ 2025-08-14T22:39:17.4344250Z scalar_t=float 2025-08-14T22:39:17.4344458Z ] 2025-08-14T22:39:17.4346447Z 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-14T22:39:17.4347173Z with 2025-08-14T22:39:17.4347348Z [ 2025-08-14T22:39:17.4347513Z scalar_t=float 2025-08-14T22:39:17.4347720Z ] 2025-08-14T22:39:17.4348366Z 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-14T22:39:17.4349079Z with 2025-08-14T22:39:17.4349248Z [ 2025-08-14T22:39:17.4349417Z scalar_t=float 2025-08-14T22:39:17.4349633Z ] 2025-08-14T22:39:17.4350271Z 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-14T22:39:17.4351995Z with 2025-08-14T22:39:17.4352176Z [ 2025-08-14T22:39:17.4352351Z scalar_t=float 2025-08-14T22:39:17.4352584Z ] 2025-08-14T22:39:17.4353229Z 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-14T22:39:17.4353956Z with 2025-08-14T22:39:17.4354125Z [ 2025-08-14T22:39:17.4354302Z scalar_t=float 2025-08-14T22:39:17.4354510Z ] 2025-08-14T22:39:17.4355159Z 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-14T22:39:17.4355879Z with 2025-08-14T22:39:17.4356047Z [ 2025-08-14T22:39:17.4356227Z scalar_t=float 2025-08-14T22:39:17.4357424Z ] 2025-08-14T22:39:17.4358085Z 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-14T22:39:17.4358905Z with 2025-08-14T22:39:17.4359083Z [ 2025-08-14T22:39:17.4359258Z scalar_t=float 2025-08-14T22:39:17.4359474Z ] 2025-08-14T22:39:17.4360131Z 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-14T22:39:17.4360848Z with 2025-08-14T22:39:17.4361022Z [ 2025-08-14T22:39:17.4361193Z scalar_t=float 2025-08-14T22:39:17.4361407Z ] 2025-08-14T22:39:17.4363108Z 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-14T22:39:17.4363900Z with 2025-08-14T22:39:17.4364066Z [ 2025-08-14T22:39:17.4364249Z scalar_t=float 2025-08-14T22:39:17.4364469Z ] 2025-08-14T22:39:17.4365112Z 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-14T22:39:17.4365836Z with 2025-08-14T22:39:17.4366001Z [ 2025-08-14T22:39:17.4366174Z scalar_t=float 2025-08-14T22:39:17.4366377Z ] 2025-08-14T22:39:17.4367068Z 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-14T22:39:17.4368382Z with 2025-08-14T22:39:17.4368966Z [ 2025-08-14T22:39:17.4369160Z scalar_t=float 2025-08-14T22:39:17.4369375Z ] 2025-08-14T22:39:17.4370038Z 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-14T22:39:17.4370764Z with 2025-08-14T22:39:17.4370938Z [ 2025-08-14T22:39:17.4371111Z scalar_t=float 2025-08-14T22:39:17.4371325Z ] 2025-08-14T22:39:17.4371969Z 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-14T22:39:17.4372691Z with 2025-08-14T22:39:17.4372880Z [ 2025-08-14T22:39:17.4373051Z scalar_t=float 2025-08-14T22:39:17.4373297Z ] 2025-08-14T22:39:17.4374925Z 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-14T22:39:17.4375676Z with 2025-08-14T22:39:17.4375851Z [ 2025-08-14T22:39:17.4376045Z scalar_t=float 2025-08-14T22:39:17.4376268Z ] 2025-08-14T22:39:17.4376931Z 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-14T22:39:17.4377671Z with 2025-08-14T22:39:17.4377849Z [ 2025-08-14T22:39:17.4378054Z scalar_t=float 2025-08-14T22:39:17.4378264Z ] 2025-08-14T22:39:17.4378935Z 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-14T22:39:17.4381006Z with 2025-08-14T22:39:17.4381214Z [ 2025-08-14T22:39:17.4381394Z scalar_t=float 2025-08-14T22:39:17.4381628Z ] 2025-08-14T22:39:17.4382296Z 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-14T22:39:17.4383025Z with 2025-08-14T22:39:17.4383218Z [ 2025-08-14T22:39:17.4383401Z scalar_t=float 2025-08-14T22:39:17.4383629Z ] 2025-08-14T22:39:17.4384283Z 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-14T22:39:17.4385187Z with 2025-08-14T22:39:17.4391432Z [ 2025-08-14T22:39:17.4391626Z scalar_t=float 2025-08-14T22:39:17.4391858Z ] 2025-08-14T22:39:17.4392530Z 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-14T22:39:17.4393274Z with 2025-08-14T22:39:17.4393449Z [ 2025-08-14T22:39:17.4393714Z scalar_t=float 2025-08-14T22:39:17.4393987Z ] 2025-08-14T22:39:17.4394660Z 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-14T22:39:17.4395399Z with 2025-08-14T22:39:17.4395576Z [ 2025-08-14T22:39:17.4395765Z scalar_t=float 2025-08-14T22:39:17.4395986Z ] 2025-08-14T22:39:17.4436281Z 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-14T22:39:17.4437020Z with 2025-08-14T22:39:17.4437283Z [ 2025-08-14T22:39:17.4437466Z scalar_t=float 2025-08-14T22:39:17.4437697Z ] 2025-08-14T22:39:17.4438375Z 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-14T22:39:17.4439103Z with 2025-08-14T22:39:17.4439302Z [ 2025-08-14T22:39:17.4439482Z scalar_t=float 2025-08-14T22:39:17.4439713Z ] 2025-08-14T22:39:17.4441805Z 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-14T22:39:17.4442568Z with 2025-08-14T22:39:17.4442749Z [ 2025-08-14T22:39:17.4442956Z scalar_t=float 2025-08-14T22:39:17.4443185Z ] 2025-08-14T22:39:17.4443846Z 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-14T22:39:17.4444593Z with 2025-08-14T22:39:17.4444775Z [ 2025-08-14T22:39:17.4444972Z scalar_t=float 2025-08-14T22:39:17.4445189Z ] 2025-08-14T22:39:17.4445862Z 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-14T22:39:17.4447980Z with 2025-08-14T22:39:17.4448194Z [ 2025-08-14T22:39:17.4448396Z scalar_t=float 2025-08-14T22:39:17.4448613Z ] 2025-08-14T22:39:17.4449283Z 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-14T22:39:17.4450014Z with 2025-08-14T22:39:17.4450188Z [ 2025-08-14T22:39:17.4450359Z scalar_t=float 2025-08-14T22:39:17.4450571Z ] 2025-08-14T22:39:17.4451217Z 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-14T22:39:17.4451948Z with 2025-08-14T22:39:17.4452121Z [ 2025-08-14T22:39:17.4452290Z scalar_t=float 2025-08-14T22:39:17.4452504Z ] 2025-08-14T22:39:17.4454532Z 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-14T22:39:17.4455274Z with 2025-08-14T22:39:17.4455450Z [ 2025-08-14T22:39:17.4455634Z scalar_t=float 2025-08-14T22:39:17.4455944Z ] 2025-08-14T22:39:17.4456606Z 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-14T22:39:17.4457337Z with 2025-08-14T22:39:17.4457507Z [ 2025-08-14T22:39:17.4457691Z scalar_t=float 2025-08-14T22:39:17.4457894Z ] 2025-08-14T22:39:17.4458592Z 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-14T22:39:17.4460801Z with 2025-08-14T22:39:17.4460988Z [ 2025-08-14T22:39:17.4461157Z scalar_t=float 2025-08-14T22:39:17.4461376Z ] 2025-08-14T22:39:17.4462027Z 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-14T22:39:17.4462744Z with 2025-08-14T22:39:17.4462916Z [ 2025-08-14T22:39:17.4463086Z scalar_t=float 2025-08-14T22:39:17.4463302Z ] 2025-08-14T22:39:17.4463989Z 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-14T22:39:17.4464730Z with 2025-08-14T22:39:17.4464944Z [ 2025-08-14T22:39:17.4465127Z scalar_t=float 2025-08-14T22:39:17.4465341Z ] 2025-08-14T22:39:17.4466001Z 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-14T22:39:17.4466731Z with 2025-08-14T22:39:17.4466896Z [ 2025-08-14T22:39:17.4467068Z scalar_t=float 2025-08-14T22:39:17.4467276Z ] 2025-08-14T22:39:17.4467930Z 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-14T22:39:17.4468660Z with 2025-08-14T22:39:17.4468822Z [ 2025-08-14T22:39:17.4468993Z scalar_t=float 2025-08-14T22:39:17.4469195Z ] 2025-08-14T22:39:17.4471295Z 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-14T22:39:17.4472020Z with 2025-08-14T22:39:17.4472196Z [ 2025-08-14T22:39:17.4472377Z scalar_t=float 2025-08-14T22:39:17.4472597Z ] 2025-08-14T22:39:17.4473238Z 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-14T22:39:17.4473957Z with 2025-08-14T22:39:17.4474248Z [ 2025-08-14T22:39:17.4474424Z scalar_t=float 2025-08-14T22:39:17.4474643Z ] 2025-08-14T22:39:17.4475290Z 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-14T22:39:17.4476028Z with 2025-08-14T22:39:17.4476191Z [ 2025-08-14T22:39:17.4476365Z scalar_t=float 2025-08-14T22:39:17.4476563Z ] 2025-08-14T22:39:17.4477217Z 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-14T22:39:17.4477942Z with 2025-08-14T22:39:17.4478105Z [ 2025-08-14T22:39:17.4478278Z scalar_t=float 2025-08-14T22:39:17.4478480Z ] 2025-08-14T22:39:17.4479133Z 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-14T22:39:17.4479946Z with 2025-08-14T22:39:17.4480120Z [ 2025-08-14T22:39:17.4480300Z scalar_t=float 2025-08-14T22:39:17.4480512Z ] 2025-08-14T22:39:17.4481177Z 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-14T22:39:17.4481899Z with 2025-08-14T22:39:17.4482074Z [ 2025-08-14T22:39:17.4482237Z scalar_t=float 2025-08-14T22:39:17.4482453Z ] 2025-08-14T22:39:17.4483145Z 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-14T22:39:17.4483913Z with 2025-08-14T22:39:17.4484082Z [ 2025-08-14T22:39:17.4484250Z scalar_t=float 2025-08-14T22:39:17.4484472Z ] 2025-08-14T22:39:17.4485116Z 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-14T22:39:17.4485843Z with 2025-08-14T22:39:17.4487495Z [ 2025-08-14T22:39:17.4487678Z scalar_t=float 2025-08-14T22:39:17.4487954Z ] 2025-08-14T22:39:17.4488621Z 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-14T22:39:17.4489356Z with 2025-08-14T22:39:17.4489519Z [ 2025-08-14T22:39:17.4489702Z scalar_t=float 2025-08-14T22:39:17.4489902Z ] 2025-08-14T22:39:17.4490551Z 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-14T22:39:17.4491262Z with 2025-08-14T22:39:17.4491433Z [ 2025-08-14T22:39:17.4491600Z scalar_t=float 2025-08-14T22:39:17.4491811Z ] 2025-08-14T22:39:17.4492464Z 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-14T22:39:17.4493178Z with 2025-08-14T22:39:17.4493352Z [ 2025-08-14T22:39:17.4493530Z scalar_t=float 2025-08-14T22:39:17.4493744Z ] 2025-08-14T22:39:17.4494392Z 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-14T22:39:17.4495130Z with 2025-08-14T22:39:17.4495297Z [ 2025-08-14T22:39:17.4495474Z scalar_t=float 2025-08-14T22:39:17.4495686Z ] 2025-08-14T22:39:17.4496324Z 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-14T22:39:17.4497047Z with 2025-08-14T22:39:17.4497210Z [ 2025-08-14T22:39:17.4497392Z scalar_t=float 2025-08-14T22:39:17.4497593Z ] 2025-08-14T22:39:17.4498243Z 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-14T22:39:17.4498968Z with 2025-08-14T22:39:17.4499138Z [ 2025-08-14T22:39:17.4499315Z scalar_t=float 2025-08-14T22:39:17.4499520Z ] 2025-08-14T22:39:17.4500178Z 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-14T22:39:17.4500899Z with 2025-08-14T22:39:17.4501077Z [ 2025-08-14T22:39:17.4501249Z scalar_t=float 2025-08-14T22:39:17.4501463Z ] 2025-08-14T22:39:17.4502105Z 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-14T22:39:17.4502892Z with 2025-08-14T22:39:17.4503071Z [ 2025-08-14T22:39:17.4503240Z scalar_t=float 2025-08-14T22:39:17.4503459Z ] 2025-08-14T22:39:17.4504106Z 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-14T22:39:17.4504898Z with 2025-08-14T22:39:17.4505121Z [ 2025-08-14T22:39:17.4505376Z scalar_t=float 2025-08-14T22:39:17.4505585Z ] 2025-08-14T22:39:17.4506242Z 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-14T22:39:17.4506962Z with 2025-08-14T22:39:17.4507127Z [ 2025-08-14T22:39:17.4507303Z scalar_t=float 2025-08-14T22:39:17.4507501Z ] 2025-08-14T22:39:17.4508149Z 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-14T22:39:17.4508898Z with 2025-08-14T22:39:17.4509080Z [ 2025-08-14T22:39:17.4509261Z scalar_t=float 2025-08-14T22:39:17.4509468Z ] 2025-08-14T22:39:17.4510117Z 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-14T22:39:17.4510834Z with 2025-08-14T22:39:17.4511010Z [ 2025-08-14T22:39:17.4511179Z scalar_t=float 2025-08-14T22:39:17.4511393Z ] 2025-08-14T22:39:17.4512033Z 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-14T22:39:17.4512765Z with 2025-08-14T22:39:17.4512934Z [ 2025-08-14T22:39:17.4513104Z scalar_t=float 2025-08-14T22:39:17.4513317Z ] 2025-08-14T22:39:17.4513964Z 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-14T22:39:17.4514696Z with 2025-08-14T22:39:17.4514865Z [ 2025-08-14T22:39:17.4515041Z scalar_t=float 2025-08-14T22:39:17.4515240Z ] 2025-08-14T22:39:17.4515887Z 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-14T22:39:17.4516605Z with 2025-08-14T22:39:17.4516770Z [ 2025-08-14T22:39:17.4516944Z scalar_t=float 2025-08-14T22:39:17.4518292Z ] 2025-08-14T22:39:17.4518957Z 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-14T22:39:17.4519683Z with 2025-08-14T22:39:17.4519866Z [ 2025-08-14T22:39:17.4520041Z scalar_t=float 2025-08-14T22:39:17.4520254Z ] 2025-08-14T22:39:17.4520904Z 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-14T22:39:17.4521620Z with 2025-08-14T22:39:17.4521801Z [ 2025-08-14T22:39:17.4521973Z scalar_t=float 2025-08-14T22:39:17.4522191Z ] 2025-08-14T22:39:17.4522831Z 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-14T22:39:17.4523552Z with 2025-08-14T22:39:17.4523712Z [ 2025-08-14T22:39:17.4523966Z scalar_t=float 2025-08-14T22:39:17.4524185Z ] 2025-08-14T22:39:17.4524826Z 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-14T22:39:17.4525556Z with 2025-08-14T22:39:17.4525727Z [ 2025-08-14T22:39:17.4525903Z scalar_t=float 2025-08-14T22:39:17.4526105Z ] 2025-08-14T22:39:17.4526797Z 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-14T22:39:17.4527566Z with 2025-08-14T22:39:17.4527731Z [ 2025-08-14T22:39:17.4527910Z scalar_t=float 2025-08-14T22:39:17.4528110Z ] 2025-08-14T22:39:17.4528767Z 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-14T22:39:17.4529476Z with 2025-08-14T22:39:17.4529651Z [ 2025-08-14T22:39:17.4529820Z scalar_t=float 2025-08-14T22:39:17.4530032Z ] 2025-08-14T22:39:17.4530724Z 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-14T22:39:17.4531447Z with 2025-08-14T22:39:17.4531621Z [ 2025-08-14T22:39:17.4531802Z scalar_t=float 2025-08-14T22:39:17.4532025Z ] 2025-08-14T22:39:17.4532682Z 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-14T22:39:17.4534083Z with 2025-08-14T22:39:17.4534257Z [ 2025-08-14T22:39:17.4534445Z scalar_t=float 2025-08-14T22:39:17.4534653Z ] 2025-08-14T22:39:17.4535301Z 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-14T22:39:17.4536027Z with 2025-08-14T22:39:17.4536192Z [ 2025-08-14T22:39:17.4536366Z scalar_t=float 2025-08-14T22:39:17.4536582Z ] 2025-08-14T22:39:17.4537239Z 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-14T22:39:17.4537953Z with 2025-08-14T22:39:17.4538134Z [ 2025-08-14T22:39:17.4538309Z scalar_t=float 2025-08-14T22:39:17.4538522Z ] 2025-08-14T22:39:17.4539177Z 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-14T22:39:17.4539886Z with 2025-08-14T22:39:17.4540063Z [ 2025-08-14T22:39:17.4540237Z scalar_t=float 2025-08-14T22:39:17.4540451Z ] 2025-08-14T22:39:17.4541093Z 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-14T22:39:17.4541816Z with 2025-08-14T22:39:17.4541988Z [ 2025-08-14T22:39:17.4542153Z scalar_t=float 2025-08-14T22:39:17.4542368Z ] 2025-08-14T22:39:17.4543011Z 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-14T22:39:17.4543735Z with 2025-08-14T22:39:17.4543904Z [ 2025-08-14T22:39:17.4544081Z scalar_t=float 2025-08-14T22:39:17.4544289Z ] 2025-08-14T22:39:17.4544993Z 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-14T22:39:17.4545817Z with 2025-08-14T22:39:17.4545983Z [ 2025-08-14T22:39:17.4546165Z scalar_t=float 2025-08-14T22:39:17.4546374Z ] 2025-08-14T22:39:17.4547033Z 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-14T22:39:17.4547750Z with 2025-08-14T22:39:17.4547926Z [ 2025-08-14T22:39:17.4548095Z scalar_t=float 2025-08-14T22:39:17.4548301Z ] 2025-08-14T22:39:17.4549055Z 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-14T22:39:17.4549767Z with 2025-08-14T22:39:17.4549932Z [ 2025-08-14T22:39:17.4550096Z scalar_t=float 2025-08-14T22:39:17.4550305Z ] 2025-08-14T22:39:17.4550950Z 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-14T22:39:17.4551679Z with 2025-08-14T22:39:17.4551839Z [ 2025-08-14T22:39:17.4552013Z scalar_t=float 2025-08-14T22:39:17.4552266Z ] 2025-08-14T22:39:17.4552911Z 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-14T22:39:17.4553635Z with 2025-08-14T22:39:17.4553809Z [ 2025-08-14T22:39:17.4553983Z scalar_t=float 2025-08-14T22:39:17.4554191Z ] 2025-08-14T22:39:17.4554847Z 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-14T22:39:17.4555555Z with 2025-08-14T22:39:17.4555737Z [ 2025-08-14T22:39:17.4555916Z scalar_t=float 2025-08-14T22:39:17.4556120Z ] 2025-08-14T22:39:17.4556773Z 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-14T22:39:17.4557494Z with 2025-08-14T22:39:17.4557667Z [ 2025-08-14T22:39:17.4557833Z scalar_t=float 2025-08-14T22:39:17.4558048Z ] 2025-08-14T22:39:17.4558697Z 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-14T22:39:17.4559430Z with 2025-08-14T22:39:17.4559598Z [ 2025-08-14T22:39:17.4559763Z scalar_t=float 2025-08-14T22:39:17.4559971Z ] 2025-08-14T22:39:17.4560608Z 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-14T22:39:17.4561332Z with 2025-08-14T22:39:17.4561496Z [ 2025-08-14T22:39:17.4561674Z scalar_t=float 2025-08-14T22:39:17.4561872Z ] 2025-08-14T22:39:17.4562526Z 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-14T22:39:17.4563246Z with 2025-08-14T22:39:17.4563408Z [ 2025-08-14T22:39:17.4563588Z scalar_t=float 2025-08-14T22:39:17.4563791Z ] 2025-08-14T22:39:17.4564444Z 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-14T22:39:17.4565159Z with 2025-08-14T22:39:17.4565332Z [ 2025-08-14T22:39:17.4565500Z scalar_t=float 2025-08-14T22:39:17.4565708Z ] 2025-08-14T22:39:17.4566426Z 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-14T22:39:17.4567147Z with 2025-08-14T22:39:17.4567326Z [ 2025-08-14T22:39:17.4567494Z scalar_t=float 2025-08-14T22:39:17.4567706Z ] 2025-08-14T22:39:17.4568349Z 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-14T22:39:17.4569076Z with 2025-08-14T22:39:17.4569322Z [ 2025-08-14T22:39:17.4569502Z scalar_t=float 2025-08-14T22:39:17.4569724Z ] 2025-08-14T22:39:17.4570372Z 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-14T22:39:17.4571109Z with 2025-08-14T22:39:17.4571284Z [ 2025-08-14T22:39:17.4571473Z scalar_t=float 2025-08-14T22:39:17.4571679Z ] 2025-08-14T22:39:17.4572327Z 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-14T22:39:17.4573099Z with 2025-08-14T22:39:17.4573272Z [ 2025-08-14T22:39:17.4573451Z scalar_t=float 2025-08-14T22:39:17.4573654Z ] 2025-08-14T22:39:17.4574322Z 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-14T22:39:17.4575043Z with 2025-08-14T22:39:17.4575217Z [ 2025-08-14T22:39:17.4575383Z scalar_t=float 2025-08-14T22:39:17.4575595Z ] 2025-08-14T22:39:17.4576245Z 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-14T22:39:17.4576976Z with 2025-08-14T22:39:17.4577148Z [ 2025-08-14T22:39:17.4577313Z scalar_t=float 2025-08-14T22:39:17.4577524Z ] 2025-08-14T22:39:17.4578170Z 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-14T22:39:17.4578903Z with 2025-08-14T22:39:17.4579077Z [ 2025-08-14T22:39:17.4579252Z scalar_t=float 2025-08-14T22:39:17.4579457Z ] 2025-08-14T22:39:17.4580110Z 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-14T22:39:17.4580835Z with 2025-08-14T22:39:17.4581010Z [ 2025-08-14T22:39:17.4581188Z scalar_t=float 2025-08-14T22:39:17.4581389Z ] 2025-08-14T22:39:17.4582046Z 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-14T22:39:17.4582763Z with 2025-08-14T22:39:17.4582951Z [ 2025-08-14T22:39:17.4583130Z scalar_t=float 2025-08-14T22:39:17.4583332Z ] 2025-08-14T22:39:17.4583999Z 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-14T22:39:17.4584718Z with 2025-08-14T22:39:17.4584975Z [ 2025-08-14T22:39:17.4585148Z scalar_t=float 2025-08-14T22:39:17.4585372Z ] 2025-08-14T22:39:17.4586023Z 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-14T22:39:17.4586746Z with 2025-08-14T22:39:17.4586987Z [ 2025-08-14T22:39:17.4587153Z scalar_t=float 2025-08-14T22:39:17.4587365Z ] 2025-08-14T22:39:17.4588010Z 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-14T22:39:17.4588737Z with 2025-08-14T22:39:17.4588908Z [ 2025-08-14T22:39:17.4589086Z scalar_t=float 2025-08-14T22:39:17.4589295Z ] 2025-08-14T22:39:17.4589989Z 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-14T22:39:17.4591190Z with 2025-08-14T22:39:17.4591355Z [ 2025-08-14T22:39:17.4591531Z scalar_t=float 2025-08-14T22:39:17.4591733Z ] 2025-08-14T22:39:17.4592389Z 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-14T22:39:17.4593110Z with 2025-08-14T22:39:17.4593285Z [ 2025-08-14T22:39:17.4593453Z scalar_t=float 2025-08-14T22:39:17.4593663Z ] 2025-08-14T22:39:17.4594353Z 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-14T22:39:17.4595078Z with 2025-08-14T22:39:17.4595254Z [ 2025-08-14T22:39:17.4595419Z scalar_t=float 2025-08-14T22:39:17.4595633Z ] 2025-08-14T22:39:17.4596276Z 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-14T22:39:17.4597004Z with 2025-08-14T22:39:17.4597165Z [ 2025-08-14T22:39:17.4597336Z scalar_t=float 2025-08-14T22:39:17.4597542Z ] 2025-08-14T22:39:17.4598186Z 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-14T22:39:17.4598904Z with 2025-08-14T22:39:17.4599070Z [ 2025-08-14T22:39:17.4599250Z scalar_t=float 2025-08-14T22:39:17.4599451Z ] 2025-08-14T22:39:17.4600099Z 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-14T22:39:17.4600822Z with 2025-08-14T22:39:17.4600990Z [ 2025-08-14T22:39:17.4601163Z scalar_t=float 2025-08-14T22:39:17.4601369Z ] 2025-08-14T22:39:17.4602019Z 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-14T22:39:17.4602735Z with 2025-08-14T22:39:17.4602907Z [ 2025-08-14T22:39:17.4603071Z scalar_t=float 2025-08-14T22:39:17.4603285Z ] 2025-08-14T22:39:17.4603933Z 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-14T22:39:17.4604656Z with 2025-08-14T22:39:17.4604832Z [ 2025-08-14T22:39:17.4604998Z scalar_t=float 2025-08-14T22:39:17.4605211Z ] 2025-08-14T22:39:17.4605858Z 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-14T22:39:17.4606596Z with 2025-08-14T22:39:17.4606761Z [ 2025-08-14T22:39:17.4606932Z scalar_t=float 2025-08-14T22:39:17.4607139Z ] 2025-08-14T22:39:17.4607793Z 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-14T22:39:17.4608565Z with 2025-08-14T22:39:17.4608736Z [ 2025-08-14T22:39:17.4608921Z scalar_t=float 2025-08-14T22:39:17.4609130Z ] 2025-08-14T22:39:17.4609793Z 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-14T22:39:17.4610514Z with 2025-08-14T22:39:17.4610687Z [ 2025-08-14T22:39:17.4610856Z scalar_t=float 2025-08-14T22:39:17.4611455Z ] 2025-08-14T22:39:17.4612123Z 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-14T22:39:17.4612841Z with 2025-08-14T22:39:17.4613019Z [ 2025-08-14T22:39:17.4613189Z scalar_t=float 2025-08-14T22:39:17.4613411Z ] 2025-08-14T22:39:17.4614057Z 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-14T22:39:17.4614781Z with 2025-08-14T22:39:17.4614959Z [ 2025-08-14T22:39:17.4615357Z scalar_t=float 2025-08-14T22:39:17.4615584Z ] 2025-08-14T22:39:17.4616230Z 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-14T22:39:17.4616972Z with 2025-08-14T22:39:17.4617152Z [ 2025-08-14T22:39:17.4617344Z scalar_t=float 2025-08-14T22:39:17.4617548Z ] 2025-08-14T22:39:17.4618196Z 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-14T22:39:17.4618916Z with 2025-08-14T22:39:17.4619090Z [ 2025-08-14T22:39:17.4619268Z scalar_t=float 2025-08-14T22:39:17.4619473Z ] 2025-08-14T22:39:17.4620129Z 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-14T22:39:17.4620846Z with 2025-08-14T22:39:17.4621024Z [ 2025-08-14T22:39:17.4621193Z scalar_t=float 2025-08-14T22:39:17.4621405Z ] 2025-08-14T22:39:17.4692083Z 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-14T22:39:17.4693039Z with 2025-08-14T22:39:17.4693226Z [ 2025-08-14T22:39:17.4693416Z scalar_t=float 2025-08-14T22:39:17.4693642Z ] 2025-08-14T22:39:17.4694314Z 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-14T22:39:17.4695059Z with 2025-08-14T22:39:17.4695229Z [ 2025-08-14T22:39:17.4695412Z scalar_t=float 2025-08-14T22:39:17.4695623Z ] 2025-08-14T22:39:17.4696288Z 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-14T22:39:17.4697024Z with 2025-08-14T22:39:17.4697195Z [ 2025-08-14T22:39:17.4697373Z scalar_t=float 2025-08-14T22:39:17.4697583Z ] 2025-08-14T22:39:17.4698242Z 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-14T22:39:17.4698969Z with 2025-08-14T22:39:17.4699153Z [ 2025-08-14T22:39:17.4699322Z scalar_t=float 2025-08-14T22:39:17.4699669Z ] 2025-08-14T22:39:17.4700338Z 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-14T22:39:17.4701069Z with 2025-08-14T22:39:17.4701250Z [ 2025-08-14T22:39:17.4701427Z scalar_t=float 2025-08-14T22:39:17.4701642Z ] 2025-08-14T22:39:17.4702289Z 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-14T22:39:17.4703508Z with 2025-08-14T22:39:17.4703674Z [ 2025-08-14T22:39:17.4703873Z scalar_t=float 2025-08-14T22:39:17.4704083Z ] 2025-08-14T22:39:17.4704814Z 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-14T22:39:17.4705559Z with 2025-08-14T22:39:17.4705731Z [ 2025-08-14T22:39:17.4705917Z scalar_t=float 2025-08-14T22:39:17.4706126Z ] 2025-08-14T22:39:17.4706848Z 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-14T22:39:17.4707571Z with 2025-08-14T22:39:17.4707762Z [ 2025-08-14T22:39:17.4707939Z scalar_t=float 2025-08-14T22:39:17.4708165Z ] 2025-08-14T22:39:17.4708827Z 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-14T22:39:17.4709572Z with 2025-08-14T22:39:17.4709755Z [ 2025-08-14T22:39:17.4709923Z scalar_t=float 2025-08-14T22:39:17.4710146Z ] 2025-08-14T22:39:17.4710795Z 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-14T22:39:17.4711522Z with 2025-08-14T22:39:17.4711686Z [ 2025-08-14T22:39:17.4711862Z scalar_t=float 2025-08-14T22:39:17.4712077Z ] 2025-08-14T22:39:17.4712731Z 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-14T22:39:17.4713459Z with 2025-08-14T22:39:17.4713629Z [ 2025-08-14T22:39:17.4713811Z scalar_t=float 2025-08-14T22:39:17.4714019Z ] 2025-08-14T22:39:17.4714681Z 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-14T22:39:17.4715398Z with 2025-08-14T22:39:17.4715571Z [ 2025-08-14T22:39:17.4715744Z scalar_t=float 2025-08-14T22:39:17.4715960Z ] 2025-08-14T22:39:17.4716613Z 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-14T22:39:17.4717328Z with 2025-08-14T22:39:17.4717502Z [ 2025-08-14T22:39:17.4717670Z scalar_t=float 2025-08-14T22:39:17.4717879Z ] 2025-08-14T22:39:17.4718526Z 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-14T22:39:17.4719252Z with 2025-08-14T22:39:17.4719422Z [ 2025-08-14T22:39:17.4719604Z scalar_t=float 2025-08-14T22:39:17.4719814Z ] 2025-08-14T22:39:17.4720456Z 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-14T22:39:17.4721247Z with 2025-08-14T22:39:17.4721419Z [ 2025-08-14T22:39:17.4721599Z scalar_t=float 2025-08-14T22:39:17.4721815Z ] 2025-08-14T22:39:17.4722479Z 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-14T22:39:17.4723211Z with 2025-08-14T22:39:17.4723377Z [ 2025-08-14T22:39:17.4723561Z scalar_t=float 2025-08-14T22:39:17.4723773Z ] 2025-08-14T22:39:17.4724486Z 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-14T22:39:17.4725558Z with 2025-08-14T22:39:17.4725752Z [ 2025-08-14T22:39:17.4725931Z scalar_t=float 2025-08-14T22:39:17.4726160Z ] 2025-08-14T22:39:17.4726819Z 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-14T22:39:17.4727564Z with 2025-08-14T22:39:17.4727741Z [ 2025-08-14T22:39:17.4727914Z scalar_t=float 2025-08-14T22:39:17.4728135Z ] 2025-08-14T22:39:17.4728834Z 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-14T22:39:17.4729570Z with 2025-08-14T22:39:17.4729746Z [ 2025-08-14T22:39:17.4729940Z scalar_t=float 2025-08-14T22:39:17.4730159Z ] 2025-08-14T22:39:17.4730822Z 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-14T22:39:17.4731563Z with 2025-08-14T22:39:17.4731726Z [ 2025-08-14T22:39:17.4731905Z scalar_t=float 2025-08-14T22:39:17.4732118Z ] 2025-08-14T22:39:17.4732772Z 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-14T22:39:17.4733486Z with 2025-08-14T22:39:17.4733660Z [ 2025-08-14T22:39:17.4733842Z scalar_t=float 2025-08-14T22:39:17.4734050Z ] 2025-08-14T22:39:17.4734709Z 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-14T22:39:17.4735427Z with 2025-08-14T22:39:17.4735604Z [ 2025-08-14T22:39:17.4735780Z scalar_t=float 2025-08-14T22:39:17.4735995Z ] 2025-08-14T22:39:17.4736639Z 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-14T22:39:17.4737364Z with 2025-08-14T22:39:17.4737549Z [ 2025-08-14T22:39:17.4737718Z scalar_t=float 2025-08-14T22:39:17.4737782Z ] 2025-08-14T22:39:17.4738357Z 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-14T22:39:17.4738426Z with 2025-08-14T22:39:17.4738490Z [ 2025-08-14T22:39:17.4738573Z scalar_t=float 2025-08-14T22:39:17.4738637Z ] 2025-08-14T22:39:17.4739186Z 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-14T22:39:17.4739254Z with 2025-08-14T22:39:17.4739328Z [ 2025-08-14T22:39:17.4739405Z scalar_t=float 2025-08-14T22:39:17.4739469Z ] 2025-08-14T22:39:17.4740023Z 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-14T22:39:17.4740142Z with 2025-08-14T22:39:17.4740213Z [ 2025-08-14T22:39:17.4740292Z scalar_t=float 2025-08-14T22:39:17.4740373Z ] 2025-08-14T22:39:17.4740928Z 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-14T22:39:17.4740995Z with 2025-08-14T22:39:17.4741070Z [ 2025-08-14T22:39:17.4741202Z scalar_t=float 2025-08-14T22:39:17.4741578Z ] 2025-08-14T22:39:17.4742141Z 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-14T22:39:17.4742209Z with 2025-08-14T22:39:17.4742275Z [ 2025-08-14T22:39:17.4742351Z scalar_t=float 2025-08-14T22:39:17.4742429Z ] 2025-08-14T22:39:17.4742979Z 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-14T22:39:17.4743050Z with 2025-08-14T22:39:17.4743172Z [ 2025-08-14T22:39:17.4743252Z scalar_t=float 2025-08-14T22:39:17.4743315Z ] 2025-08-14T22:39:17.4743879Z 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-14T22:39:17.4743951Z with 2025-08-14T22:39:17.4744015Z [ 2025-08-14T22:39:17.4744091Z scalar_t=float 2025-08-14T22:39:17.4744170Z ] 2025-08-14T22:39:17.4744715Z 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-14T22:39:17.4744863Z with 2025-08-14T22:39:17.4744938Z [ 2025-08-14T22:39:17.4745014Z scalar_t=float 2025-08-14T22:39:17.4745085Z ] 2025-08-14T22:39:17.4745649Z 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-14T22:39:17.4745715Z with 2025-08-14T22:39:17.4745779Z [ 2025-08-14T22:39:17.4745865Z scalar_t=float 2025-08-14T22:39:17.4745939Z ] 2025-08-14T22:39:17.4746483Z 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-14T22:39:17.4746555Z with 2025-08-14T22:39:17.4746626Z [ 2025-08-14T22:39:17.4746701Z scalar_t=float 2025-08-14T22:39:17.4746771Z ] 2025-08-14T22:39:17.4747315Z 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-14T22:39:17.4747397Z with 2025-08-14T22:39:17.4747461Z [ 2025-08-14T22:39:17.4747534Z scalar_t=float 2025-08-14T22:39:17.4747604Z ] 2025-08-14T22:39:17.4748148Z 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-14T22:39:17.4748213Z with 2025-08-14T22:39:17.4748284Z [ 2025-08-14T22:39:17.4748361Z scalar_t=float 2025-08-14T22:39:17.4748428Z ] 2025-08-14T22:39:17.4748973Z 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-14T22:39:17.4749045Z with 2025-08-14T22:39:17.4749108Z [ 2025-08-14T22:39:17.4749182Z scalar_t=float 2025-08-14T22:39:17.4749310Z ] 2025-08-14T22:39:17.4749859Z 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-14T22:39:17.4749924Z with 2025-08-14T22:39:17.4749998Z [ 2025-08-14T22:39:17.4750086Z scalar_t=float 2025-08-14T22:39:17.4750151Z ] 2025-08-14T22:39:17.4750733Z 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-14T22:39:17.4750845Z with 2025-08-14T22:39:17.4750909Z [ 2025-08-14T22:39:17.4750983Z scalar_t=float 2025-08-14T22:39:17.4751055Z ] 2025-08-14T22:39:17.4751602Z 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-14T22:39:17.4751671Z with 2025-08-14T22:39:17.4751736Z [ 2025-08-14T22:39:17.4751826Z scalar_t=float 2025-08-14T22:39:17.4751890Z ] 2025-08-14T22:39:17.4752475Z 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-14T22:39:17.4752550Z with 2025-08-14T22:39:17.4752616Z [ 2025-08-14T22:39:17.4752696Z scalar_t=float 2025-08-14T22:39:17.4752759Z ] 2025-08-14T22:39:17.4753315Z 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-14T22:39:17.4753384Z with 2025-08-14T22:39:17.4753452Z [ 2025-08-14T22:39:17.4753538Z scalar_t=float 2025-08-14T22:39:17.4753605Z ] 2025-08-14T22:39:17.4754150Z 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-14T22:39:17.4754227Z with 2025-08-14T22:39:17.4754293Z [ 2025-08-14T22:39:17.4754366Z scalar_t=float 2025-08-14T22:39:17.4754438Z ] 2025-08-14T22:39:17.4754992Z 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-14T22:39:17.4755061Z with 2025-08-14T22:39:17.4755126Z [ 2025-08-14T22:39:17.4755212Z scalar_t=float 2025-08-14T22:39:17.4755277Z ] 2025-08-14T22:39:17.4755821Z 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-14T22:39:17.4755900Z with 2025-08-14T22:39:17.4755969Z [ 2025-08-14T22:39:17.4756046Z scalar_t=float 2025-08-14T22:39:17.4756115Z ] 2025-08-14T22:39:17.4756677Z 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-14T22:39:17.4756743Z with 2025-08-14T22:39:17.4756811Z [ 2025-08-14T22:39:17.4756895Z scalar_t=float 2025-08-14T22:39:17.4756958Z ] 2025-08-14T22:39:17.4757503Z 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-14T22:39:17.4757572Z with 2025-08-14T22:39:17.4757645Z [ 2025-08-14T22:39:17.4757721Z scalar_t=float 2025-08-14T22:39:17.4757785Z ] 2025-08-14T22:39:17.4758338Z 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-14T22:39:17.4758450Z with 2025-08-14T22:39:17.4758516Z [ 2025-08-14T22:39:17.4758591Z scalar_t=float 2025-08-14T22:39:17.4758667Z ] 2025-08-14T22:39:17.4759218Z 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-14T22:39:17.4759287Z with 2025-08-14T22:39:17.4759381Z [ 2025-08-14T22:39:17.4759460Z scalar_t=float 2025-08-14T22:39:17.4759528Z ] 2025-08-14T22:39:17.4760127Z 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-14T22:39:17.4760230Z with 2025-08-14T22:39:17.4760296Z [ 2025-08-14T22:39:17.4760376Z scalar_t=float 2025-08-14T22:39:17.4760454Z ] 2025-08-14T22:39:17.4761004Z 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-14T22:39:17.4761078Z with 2025-08-14T22:39:17.4761153Z [ 2025-08-14T22:39:17.4761227Z scalar_t=float 2025-08-14T22:39:17.4761293Z ] 2025-08-14T22:39:17.4761881Z 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-14T22:39:17.4761948Z with 2025-08-14T22:39:17.4762012Z [ 2025-08-14T22:39:17.4762094Z scalar_t=float 2025-08-14T22:39:17.4762166Z ] 2025-08-14T22:39:17.4762715Z 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-14T22:39:17.4762787Z with 2025-08-14T22:39:17.4762863Z [ 2025-08-14T22:39:17.4762938Z scalar_t=float 2025-08-14T22:39:17.4763005Z ] 2025-08-14T22:39:17.4763549Z 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-14T22:39:17.4763639Z with 2025-08-14T22:39:17.4763708Z [ 2025-08-14T22:39:17.4763793Z scalar_t=float 2025-08-14T22:39:17.4763872Z ] 2025-08-14T22:39:17.4764424Z 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-14T22:39:17.4764493Z with 2025-08-14T22:39:17.4764566Z [ 2025-08-14T22:39:17.4764643Z scalar_t=float 2025-08-14T22:39:17.4764709Z ] 2025-08-14T22:39:17.4765256Z 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-14T22:39:17.4765333Z with 2025-08-14T22:39:17.4765398Z [ 2025-08-14T22:39:17.4765474Z scalar_t=float 2025-08-14T22:39:17.4765546Z ] 2025-08-14T22:39:17.4766092Z 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-14T22:39:17.4766160Z with 2025-08-14T22:39:17.4766226Z [ 2025-08-14T22:39:17.4766320Z scalar_t=float 2025-08-14T22:39:17.4766383Z ] 2025-08-14T22:39:17.4766940Z 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-14T22:39:17.4767008Z with 2025-08-14T22:39:17.4767075Z [ 2025-08-14T22:39:17.4767148Z scalar_t=float 2025-08-14T22:39:17.4767220Z ] 2025-08-14T22:39:17.4767766Z 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-14T22:39:17.4768310Z with 2025-08-14T22:39:17.4768387Z [ 2025-08-14T22:39:17.4768463Z scalar_t=float 2025-08-14T22:39:17.4768530Z ] 2025-08-14T22:39:17.4769095Z 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-14T22:39:17.4769164Z with 2025-08-14T22:39:17.4769235Z [ 2025-08-14T22:39:17.4769720Z scalar_t=float 2025-08-14T22:39:17.4769799Z ] 2025-08-14T22:39:17.4770350Z 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-14T22:39:17.4770421Z with 2025-08-14T22:39:17.4770496Z [ 2025-08-14T22:39:17.4770577Z scalar_t=float 2025-08-14T22:39:17.4770643Z ] 2025-08-14T22:39:17.4771192Z 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-14T22:39:17.4771265Z with 2025-08-14T22:39:17.4771370Z [ 2025-08-14T22:39:17.4771450Z scalar_t=float 2025-08-14T22:39:17.4771523Z ] 2025-08-14T22:39:17.4772073Z 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-14T22:39:17.4772142Z with 2025-08-14T22:39:17.4772216Z [ 2025-08-14T22:39:17.4772291Z scalar_t=float 2025-08-14T22:39:17.4772354Z ] 2025-08-14T22:39:17.4772896Z 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-14T22:39:17.4772980Z with 2025-08-14T22:39:17.4773046Z [ 2025-08-14T22:39:17.4773120Z scalar_t=float 2025-08-14T22:39:17.4773200Z ] 2025-08-14T22:39:17.4773748Z 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-14T22:39:17.4773814Z with 2025-08-14T22:39:17.4773879Z [ 2025-08-14T22:39:17.4773962Z scalar_t=float 2025-08-14T22:39:17.4774025Z ] 2025-08-14T22:39:17.4774575Z 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-14T22:39:17.4774652Z with 2025-08-14T22:39:17.4774716Z [ 2025-08-14T22:39:17.4774792Z scalar_t=float 2025-08-14T22:39:17.4774867Z ] 2025-08-14T22:39:17.4775410Z 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-14T22:39:17.4775481Z with 2025-08-14T22:39:17.4775545Z [ 2025-08-14T22:39:17.4775625Z scalar_t=float 2025-08-14T22:39:17.4775693Z ] 2025-08-14T22:39:17.4776238Z 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-14T22:39:17.4776314Z with 2025-08-14T22:39:17.4776380Z [ 2025-08-14T22:39:17.4776457Z scalar_t=float 2025-08-14T22:39:17.4776523Z ] 2025-08-14T22:39:17.4777075Z 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-14T22:39:17.4777141Z with 2025-08-14T22:39:17.4777205Z [ 2025-08-14T22:39:17.4777328Z scalar_t=float 2025-08-14T22:39:17.4777392Z ] 2025-08-14T22:39:17.4777937Z 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-14T22:39:17.4778012Z with 2025-08-14T22:39:17.4778077Z [ 2025-08-14T22:39:17.4778155Z scalar_t=float 2025-08-14T22:39:17.4778220Z ] 2025-08-14T22:39:17.4778814Z 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-14T22:39:17.4778925Z with 2025-08-14T22:39:17.4778992Z [ 2025-08-14T22:39:17.4779073Z scalar_t=float 2025-08-14T22:39:17.4779139Z ] 2025-08-14T22:39:17.4779684Z 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-14T22:39:17.4779763Z with 2025-08-14T22:39:17.4779832Z [ 2025-08-14T22:39:17.4779911Z scalar_t=float 2025-08-14T22:39:17.4779976Z ] 2025-08-14T22:39:17.4780568Z 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-14T22:39:17.4780635Z with 2025-08-14T22:39:17.4780707Z [ 2025-08-14T22:39:17.4780787Z scalar_t=float 2025-08-14T22:39:17.4780862Z ] 2025-08-14T22:39:17.4781407Z 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-14T22:39:17.4781475Z with 2025-08-14T22:39:17.4781549Z [ 2025-08-14T22:39:17.4781625Z scalar_t=float 2025-08-14T22:39:17.4781688Z ] 2025-08-14T22:39:17.4782242Z 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-14T22:39:17.4782310Z with 2025-08-14T22:39:17.4782374Z [ 2025-08-14T22:39:17.4782447Z scalar_t=float 2025-08-14T22:39:17.4782521Z ] 2025-08-14T22:39:17.4783071Z 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-14T22:39:17.4783141Z with 2025-08-14T22:39:17.4783219Z [ 2025-08-14T22:39:17.4783297Z scalar_t=float 2025-08-14T22:39:17.4783361Z ] 2025-08-14T22:39:17.4783914Z 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-14T22:39:17.4783989Z with 2025-08-14T22:39:17.4784055Z [ 2025-08-14T22:39:17.4784132Z scalar_t=float 2025-08-14T22:39:17.4784203Z ] 2025-08-14T22:39:17.4784826Z 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-14T22:39:17.4784902Z with 2025-08-14T22:39:17.4784977Z [ 2025-08-14T22:39:17.4785052Z scalar_t=float 2025-08-14T22:39:17.4785118Z ] 2025-08-14T22:39:17.4785664Z 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-14T22:39:17.4785741Z with 2025-08-14T22:39:17.4785808Z [ 2025-08-14T22:39:17.4785883Z scalar_t=float 2025-08-14T22:39:17.4785957Z ] 2025-08-14T22:39:17.4786498Z 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-14T22:39:17.4786620Z with 2025-08-14T22:39:17.4786695Z [ 2025-08-14T22:39:17.4786779Z scalar_t=float 2025-08-14T22:39:17.4786842Z ] 2025-08-14T22:39:17.4787393Z 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-14T22:39:17.4787474Z with 2025-08-14T22:39:17.4787541Z [ 2025-08-14T22:39:17.4787617Z scalar_t=float 2025-08-14T22:39:17.4787692Z ] 2025-08-14T22:39:17.4788310Z 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-14T22:39:17.4788378Z with 2025-08-14T22:39:17.4788455Z [ 2025-08-14T22:39:17.4788531Z scalar_t=float 2025-08-14T22:39:17.4788600Z ] 2025-08-14T22:39:17.4789143Z 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-14T22:39:17.4789218Z with 2025-08-14T22:39:17.4789283Z [ 2025-08-14T22:39:17.4789363Z scalar_t=float 2025-08-14T22:39:17.4789474Z ] 2025-08-14T22:39:17.4790020Z 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-14T22:39:17.4790084Z with 2025-08-14T22:39:17.4790154Z [ 2025-08-14T22:39:17.4790239Z scalar_t=float 2025-08-14T22:39:17.4790304Z ] 2025-08-14T22:39:17.4792531Z 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-14T22:39:17.4792620Z with 2025-08-14T22:39:17.4792688Z [ 2025-08-14T22:39:17.4792776Z scalar_t=float 2025-08-14T22:39:17.4792842Z ] 2025-08-14T22:39:17.4793423Z 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-14T22:39:17.4793493Z with 2025-08-14T22:39:17.4793556Z [ 2025-08-14T22:39:17.4793641Z scalar_t=float 2025-08-14T22:39:17.4793708Z ] 2025-08-14T22:39:17.4794254Z 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-14T22:39:17.4794331Z with 2025-08-14T22:39:17.4794394Z [ 2025-08-14T22:39:17.4794468Z scalar_t=float 2025-08-14T22:39:17.4794538Z ] 2025-08-14T22:39:17.4795088Z 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-14T22:39:17.4795157Z with 2025-08-14T22:39:17.4795224Z [ 2025-08-14T22:39:17.4795305Z scalar_t=float 2025-08-14T22:39:17.4795368Z ] 2025-08-14T22:39:17.4795915Z 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-14T22:39:17.4795993Z with 2025-08-14T22:39:17.4796056Z [ 2025-08-14T22:39:17.4796133Z scalar_t=float 2025-08-14T22:39:17.4796197Z ] 2025-08-14T22:39:17.4796755Z 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-14T22:39:17.4796821Z with 2025-08-14T22:39:17.4796885Z [ 2025-08-14T22:39:17.4796967Z scalar_t=float 2025-08-14T22:39:17.4797030Z ] 2025-08-14T22:39:17.4798691Z 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-14T22:39:17.4798765Z with 2025-08-14T22:39:17.4798846Z [ 2025-08-14T22:39:17.4798926Z scalar_t=float 2025-08-14T22:39:17.4798995Z ] 2025-08-14T22:39:17.4799559Z 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-14T22:39:17.4799629Z with 2025-08-14T22:39:17.4799787Z [ 2025-08-14T22:39:17.4799873Z scalar_t=float 2025-08-14T22:39:17.4799941Z ] 2025-08-14T22:39:17.4800487Z 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-14T22:39:17.4800557Z with 2025-08-14T22:39:17.4800634Z [ 2025-08-14T22:39:17.4800712Z scalar_t=float 2025-08-14T22:39:17.4800778Z ] 2025-08-14T22:39:17.4801461Z 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-14T22:39:17.4801575Z with 2025-08-14T22:39:17.4801647Z [ 2025-08-14T22:39:17.4801727Z scalar_t=float 2025-08-14T22:39:17.4801805Z ] 2025-08-14T22:39:17.4802355Z 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-14T22:39:17.4802424Z with 2025-08-14T22:39:17.4802501Z [ 2025-08-14T22:39:17.4802581Z scalar_t=float 2025-08-14T22:39:17.4802647Z ] 2025-08-14T22:39:17.4804192Z 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-14T22:39:17.4804275Z with 2025-08-14T22:39:17.4804343Z [ 2025-08-14T22:39:17.4804423Z scalar_t=float 2025-08-14T22:39:17.4804499Z ] 2025-08-14T22:39:17.4805056Z 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-14T22:39:17.4805128Z with 2025-08-14T22:39:17.4805204Z [ 2025-08-14T22:39:17.4805283Z scalar_t=float 2025-08-14T22:39:17.4805353Z ] 2025-08-14T22:39:17.4805902Z 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-14T22:39:17.4805984Z with 2025-08-14T22:39:17.4806052Z [ 2025-08-14T22:39:17.4806131Z scalar_t=float 2025-08-14T22:39:17.4806206Z ] 2025-08-14T22:39:17.4806752Z 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-14T22:39:17.4806819Z with 2025-08-14T22:39:17.4806891Z [ 2025-08-14T22:39:17.4806973Z scalar_t=float 2025-08-14T22:39:17.4807036Z ] 2025-08-14T22:39:17.4807587Z 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-14T22:39:17.4807664Z with 2025-08-14T22:39:17.4807731Z [ 2025-08-14T22:39:17.4807805Z scalar_t=float 2025-08-14T22:39:17.4807875Z ] 2025-08-14T22:39:17.4808419Z 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-14T22:39:17.4808485Z with 2025-08-14T22:39:17.4808623Z [ 2025-08-14T22:39:17.4808702Z scalar_t=float 2025-08-14T22:39:17.4809367Z ] 2025-08-14T22:39:17.4810317Z 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-14T22:39:17.4810413Z with 2025-08-14T22:39:17.4810477Z [ 2025-08-14T22:39:17.4810554Z scalar_t=float 2025-08-14T22:39:17.4810630Z ] 2025-08-14T22:39:17.4811224Z 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-14T22:39:17.4811332Z with 2025-08-14T22:39:17.4811395Z [ 2025-08-14T22:39:17.4811481Z scalar_t=float 2025-08-14T22:39:17.4811545Z ] 2025-08-14T22:39:17.4812094Z 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-14T22:39:17.4812182Z with 2025-08-14T22:39:17.4812248Z [ 2025-08-14T22:39:17.4812322Z scalar_t=float 2025-08-14T22:39:17.4812387Z ] 2025-08-14T22:39:17.4812983Z 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-14T22:39:17.4813050Z with 2025-08-14T22:39:17.4813113Z [ 2025-08-14T22:39:17.4813218Z scalar_t=float 2025-08-14T22:39:17.4813285Z ] 2025-08-14T22:39:17.4813835Z 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-14T22:39:17.4813910Z with 2025-08-14T22:39:17.4813982Z [ 2025-08-14T22:39:17.4814059Z scalar_t=float 2025-08-14T22:39:17.4814123Z ] 2025-08-14T22:39:17.4815679Z 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-14T22:39:17.4815755Z with 2025-08-14T22:39:17.4815824Z [ 2025-08-14T22:39:17.4815913Z scalar_t=float 2025-08-14T22:39:17.4815977Z ] 2025-08-14T22:39:17.4816526Z 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-14T22:39:17.4816602Z with 2025-08-14T22:39:17.4816670Z [ 2025-08-14T22:39:17.4816746Z scalar_t=float 2025-08-14T22:39:17.4816811Z ] 2025-08-14T22:39:17.4817360Z 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-14T22:39:17.4817430Z with 2025-08-14T22:39:17.4817495Z [ 2025-08-14T22:39:17.4817577Z scalar_t=float 2025-08-14T22:39:17.4817640Z ] 2025-08-14T22:39:17.4818186Z 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-14T22:39:17.4818251Z with 2025-08-14T22:39:17.4818325Z [ 2025-08-14T22:39:17.4818399Z scalar_t=float 2025-08-14T22:39:17.4818465Z ] 2025-08-14T22:39:17.4819017Z 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-14T22:39:17.4819085Z with 2025-08-14T22:39:17.4819147Z [ 2025-08-14T22:39:17.4819233Z scalar_t=float 2025-08-14T22:39:17.4819296Z ] 2025-08-14T22:39:17.4819840Z 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-14T22:39:17.4819971Z with 2025-08-14T22:39:17.4820046Z [ 2025-08-14T22:39:17.4820120Z scalar_t=float 2025-08-14T22:39:17.4820189Z ] 2025-08-14T22:39:17.4821731Z 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-14T22:39:17.4821806Z with 2025-08-14T22:39:17.4821874Z [ 2025-08-14T22:39:17.4821956Z scalar_t=float 2025-08-14T22:39:17.4822086Z ] 2025-08-14T22:39:17.4822672Z 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-14T22:39:17.4822740Z with 2025-08-14T22:39:17.4822816Z [ 2025-08-14T22:39:17.4822898Z scalar_t=float 2025-08-14T22:39:17.4822965Z ] 2025-08-14T22:39:17.4823525Z 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-14T22:39:17.4823596Z with 2025-08-14T22:39:17.4823661Z [ 2025-08-14T22:39:17.4823776Z scalar_t=float 2025-08-14T22:39:17.4823849Z ] 2025-08-14T22:39:17.4824395Z 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-14T22:39:17.4824463Z with 2025-08-14T22:39:17.4824534Z [ 2025-08-14T22:39:17.4824609Z scalar_t=float 2025-08-14T22:39:17.4824673Z ] 2025-08-14T22:39:17.4825276Z 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-14T22:39:17.4825358Z with 2025-08-14T22:39:17.4825426Z [ 2025-08-14T22:39:17.4825506Z scalar_t=float 2025-08-14T22:39:17.4825579Z ] 2025-08-14T22:39:17.4827139Z 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-14T22:39:17.4827215Z with 2025-08-14T22:39:17.4827288Z [ 2025-08-14T22:39:17.4827368Z scalar_t=float 2025-08-14T22:39:17.4827432Z ] 2025-08-14T22:39:17.4827982Z 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-14T22:39:17.4828061Z with 2025-08-14T22:39:17.4828125Z [ 2025-08-14T22:39:17.4828200Z scalar_t=float 2025-08-14T22:39:17.4828270Z ] 2025-08-14T22:39:17.4828819Z 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-14T22:39:17.4828889Z with 2025-08-14T22:39:17.4828952Z [ 2025-08-14T22:39:17.4829035Z scalar_t=float 2025-08-14T22:39:17.4829101Z ] 2025-08-14T22:39:17.4829652Z 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-14T22:39:17.4829727Z with 2025-08-14T22:39:17.4829794Z [ 2025-08-14T22:39:17.4829872Z scalar_t=float 2025-08-14T22:39:17.4829951Z ] 2025-08-14T22:39:17.4830495Z 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-14T22:39:17.4830565Z with 2025-08-14T22:39:17.4830628Z [ 2025-08-14T22:39:17.4830710Z scalar_t=float 2025-08-14T22:39:17.4830774Z ] 2025-08-14T22:39:17.4831381Z 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-14T22:39:17.4831455Z with 2025-08-14T22:39:17.4831520Z [ 2025-08-14T22:39:17.4831597Z scalar_t=float 2025-08-14T22:39:17.4831670Z ] 2025-08-14T22:39:17.4833211Z 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-14T22:39:17.4833340Z with 2025-08-14T22:39:17.4833451Z [ 2025-08-14T22:39:17.4833543Z scalar_t=float 2025-08-14T22:39:17.4833607Z ] 2025-08-14T22:39:17.4834151Z 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-14T22:39:17.4834223Z with 2025-08-14T22:39:17.4834287Z [ 2025-08-14T22:39:17.4834362Z scalar_t=float 2025-08-14T22:39:17.4834425Z ] 2025-08-14T22:39:17.4835023Z 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-14T22:39:17.4835090Z with 2025-08-14T22:39:17.4835157Z [ 2025-08-14T22:39:17.4835244Z scalar_t=float 2025-08-14T22:39:17.4835312Z ] 2025-08-14T22:39:17.4835858Z 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-14T22:39:17.4835937Z with 2025-08-14T22:39:17.4836005Z [ 2025-08-14T22:39:17.4836091Z scalar_t=float 2025-08-14T22:39:17.4836162Z ] 2025-08-14T22:39:17.4836727Z 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-14T22:39:17.4836798Z with 2025-08-14T22:39:17.4836870Z [ 2025-08-14T22:39:17.4836957Z scalar_t=float 2025-08-14T22:39:17.4837024Z ] 2025-08-14T22:39:17.4838558Z 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-14T22:39:17.4838631Z with 2025-08-14T22:39:17.4838723Z [ 2025-08-14T22:39:17.4838803Z scalar_t=float 2025-08-14T22:39:17.4838873Z ] 2025-08-14T22:39:17.4839433Z 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-14T22:39:17.4839507Z with 2025-08-14T22:39:17.4839571Z [ 2025-08-14T22:39:17.4839658Z scalar_t=float 2025-08-14T22:39:17.4839724Z ] 2025-08-14T22:39:17.4840267Z 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-14T22:39:17.4840333Z with 2025-08-14T22:39:17.4840406Z [ 2025-08-14T22:39:17.4840483Z scalar_t=float 2025-08-14T22:39:17.4840552Z ] 2025-08-14T22:39:17.4841102Z 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-14T22:39:17.4841171Z with 2025-08-14T22:39:17.4841238Z [ 2025-08-14T22:39:17.4841315Z scalar_t=float 2025-08-14T22:39:17.4841390Z ] 2025-08-14T22:39:17.4841932Z 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-14T22:39:17.4841998Z with 2025-08-14T22:39:17.4842131Z [ 2025-08-14T22:39:17.4842208Z scalar_t=float 2025-08-14T22:39:17.4842276Z ] 2025-08-14T22:39:17.4842845Z 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-14T22:39:17.4842914Z with 2025-08-14T22:39:17.4842981Z [ 2025-08-14T22:39:17.4843059Z scalar_t=float 2025-08-14T22:39:17.4843139Z ] 2025-08-14T22:39:17.4844741Z 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-14T22:39:17.4844853Z with 2025-08-14T22:39:17.4844930Z [ 2025-08-14T22:39:17.4845006Z scalar_t=float 2025-08-14T22:39:17.4845074Z ] 2025-08-14T22:39:17.4845624Z 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-14T22:39:17.4845702Z with 2025-08-14T22:39:17.4845787Z [ 2025-08-14T22:39:17.4845866Z scalar_t=float 2025-08-14T22:39:17.4845935Z ] 2025-08-14T22:39:17.4846870Z 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-14T22:39:17.4846939Z with 2025-08-14T22:39:17.4847013Z [ 2025-08-14T22:39:17.4847089Z scalar_t=float 2025-08-14T22:39:17.4847157Z ] 2025-08-14T22:39:17.4847698Z 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-14T22:39:17.4847772Z with 2025-08-14T22:39:17.4847836Z [ 2025-08-14T22:39:17.4847911Z scalar_t=float 2025-08-14T22:39:17.4847987Z ] 2025-08-14T22:39:17.4848530Z 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-14T22:39:17.4848594Z with 2025-08-14T22:39:17.4848664Z [ 2025-08-14T22:39:17.4848739Z scalar_t=float 2025-08-14T22:39:17.4848802Z ] 2025-08-14T22:39:17.4850362Z 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-14T22:39:17.4850453Z with 2025-08-14T22:39:17.4850520Z [ 2025-08-14T22:39:17.4850602Z scalar_t=float 2025-08-14T22:39:17.4850675Z ] 2025-08-14T22:39:17.4851222Z 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-14T22:39:17.4851292Z with 2025-08-14T22:39:17.4851355Z [ 2025-08-14T22:39:17.4851442Z scalar_t=float 2025-08-14T22:39:17.4851505Z ] 2025-08-14T22:39:17.4852051Z 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-14T22:39:17.4852128Z with 2025-08-14T22:39:17.4852190Z [ 2025-08-14T22:39:17.4852263Z scalar_t=float 2025-08-14T22:39:17.4852332Z ] 2025-08-14T22:39:17.4852875Z 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-14T22:39:17.4852943Z with 2025-08-14T22:39:17.4853008Z [ 2025-08-14T22:39:17.4853094Z scalar_t=float 2025-08-14T22:39:17.4853158Z ] 2025-08-14T22:39:17.4853698Z 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-14T22:39:17.4853838Z with 2025-08-14T22:39:17.4853903Z [ 2025-08-14T22:39:17.4853981Z scalar_t=float 2025-08-14T22:39:17.4854047Z ] 2025-08-14T22:39:17.4854615Z 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-14T22:39:17.4854682Z with 2025-08-14T22:39:17.4854748Z [ 2025-08-14T22:39:17.4854883Z scalar_t=float 2025-08-14T22:39:17.4854984Z ] 2025-08-14T22:39:17.4856529Z 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-14T22:39:17.4856612Z with 2025-08-14T22:39:17.4856683Z [ 2025-08-14T22:39:17.4856759Z scalar_t=float 2025-08-14T22:39:17.4856827Z ] 2025-08-14T22:39:17.4857386Z 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-14T22:39:17.4857455Z with 2025-08-14T22:39:17.4857522Z [ 2025-08-14T22:39:17.4857649Z scalar_t=float 2025-08-14T22:39:17.4857715Z ] 2025-08-14T22:39:17.4858261Z 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-14T22:39:17.4858338Z with 2025-08-14T22:39:17.4858406Z [ 2025-08-14T22:39:17.4858480Z scalar_t=float 2025-08-14T22:39:17.4858553Z ] 2025-08-14T22:39:17.4859112Z 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-14T22:39:17.4859182Z with 2025-08-14T22:39:17.4859247Z [ 2025-08-14T22:39:17.4859330Z scalar_t=float 2025-08-14T22:39:17.4859397Z ] 2025-08-14T22:39:17.4859939Z 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-14T22:39:17.4860005Z with 2025-08-14T22:39:17.4860084Z [ 2025-08-14T22:39:17.4860158Z scalar_t=float 2025-08-14T22:39:17.4860221Z ] 2025-08-14T22:39:17.4861374Z 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-14T22:39:17.4861842Z with 2025-08-14T22:39:17.4861914Z [ 2025-08-14T22:39:17.4861992Z scalar_t=float 2025-08-14T22:39:17.4862070Z ] 2025-08-14T22:39:17.4862621Z 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-14T22:39:17.4862695Z with 2025-08-14T22:39:17.4862771Z [ 2025-08-14T22:39:17.4862848Z scalar_t=float 2025-08-14T22:39:17.4862918Z ] 2025-08-14T22:39:17.4863475Z 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-14T22:39:17.4863549Z with 2025-08-14T22:39:17.4863614Z [ 2025-08-14T22:39:17.4863691Z scalar_t=float 2025-08-14T22:39:17.4863766Z ] 2025-08-14T22:39:17.4864311Z 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-14T22:39:17.4864378Z with 2025-08-14T22:39:17.4864448Z [ 2025-08-14T22:39:17.4864523Z scalar_t=float 2025-08-14T22:39:17.4864647Z ] 2025-08-14T22:39:17.4865253Z 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-14T22:39:17.4865324Z with 2025-08-14T22:39:17.4865392Z [ 2025-08-14T22:39:17.4865469Z scalar_t=float 2025-08-14T22:39:17.4865548Z ] 2025-08-14T22:39:17.4866134Z 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-14T22:39:17.4866241Z with 2025-08-14T22:39:17.4866315Z [ 2025-08-14T22:39:17.4866392Z scalar_t=float 2025-08-14T22:39:17.4866457Z ] 2025-08-14T22:39:17.4867997Z 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-14T22:39:17.4868080Z with 2025-08-14T22:39:17.4868146Z [ 2025-08-14T22:39:17.4868229Z scalar_t=float 2025-08-14T22:39:17.4868304Z ] 2025-08-14T22:39:17.4868892Z 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-14T22:39:17.4868960Z with 2025-08-14T22:39:17.4869038Z [ 2025-08-14T22:39:17.4869112Z scalar_t=float 2025-08-14T22:39:17.4869177Z ] 2025-08-14T22:39:17.4869725Z 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-14T22:39:17.4869808Z with 2025-08-14T22:39:17.4869871Z [ 2025-08-14T22:39:17.4869948Z scalar_t=float 2025-08-14T22:39:17.4870020Z ] 2025-08-14T22:39:17.4870562Z 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-14T22:39:17.4870633Z with 2025-08-14T22:39:17.4870697Z [ 2025-08-14T22:39:17.4870785Z scalar_t=float 2025-08-14T22:39:17.4870850Z ] 2025-08-14T22:39:17.4871396Z 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-14T22:39:17.4871473Z with 2025-08-14T22:39:17.4871535Z [ 2025-08-14T22:39:17.4871612Z scalar_t=float 2025-08-14T22:39:17.4871686Z ] 2025-08-14T22:39:17.4872230Z 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-14T22:39:17.4873279Z with 2025-08-14T22:39:17.4873351Z [ 2025-08-14T22:39:17.4873440Z scalar_t=float 2025-08-14T22:39:17.4873520Z ] 2025-08-14T22:39:17.4874069Z 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-14T22:39:17.4874145Z with 2025-08-14T22:39:17.4874219Z [ 2025-08-14T22:39:17.4874295Z scalar_t=float 2025-08-14T22:39:17.4874362Z ] 2025-08-14T22:39:17.4874918Z 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-14T22:39:17.4874987Z with 2025-08-14T22:39:17.4875051Z [ 2025-08-14T22:39:17.4875135Z scalar_t=float 2025-08-14T22:39:17.4875197Z ] 2025-08-14T22:39:17.4875745Z 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-14T22:39:17.4875886Z with 2025-08-14T22:39:17.4875951Z [ 2025-08-14T22:39:17.4876028Z scalar_t=float 2025-08-14T22:39:17.4876098Z ] 2025-08-14T22:39:17.4876671Z 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-14T22:39:17.4876738Z with 2025-08-14T22:39:17.4876809Z [ 2025-08-14T22:39:17.4876899Z scalar_t=float 2025-08-14T22:39:17.4876967Z ] 2025-08-14T22:39:17.4877555Z 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-14T22:39:17.4877671Z with 2025-08-14T22:39:17.4877738Z [ 2025-08-14T22:39:17.4877816Z scalar_t=float 2025-08-14T22:39:17.4877889Z ] 2025-08-14T22:39:17.4881805Z 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-14T22:39:17.4881881Z with 2025-08-14T22:39:17.4881952Z [ 2025-08-14T22:39:17.4882046Z scalar_t=float 2025-08-14T22:39:17.4882114Z ] 2025-08-14T22:39:17.4883087Z 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-14T22:39:17.4883166Z with 2025-08-14T22:39:17.4883243Z [ 2025-08-14T22:39:17.4883325Z scalar_t=float 2025-08-14T22:39:17.4883396Z ] 2025-08-14T22:39:17.4883963Z 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-14T22:39:17.4884043Z with 2025-08-14T22:39:17.4884110Z [ 2025-08-14T22:39:17.4884187Z scalar_t=float 2025-08-14T22:39:17.4884274Z ] 2025-08-14T22:39:17.4884823Z 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-14T22:39:17.4884891Z with 2025-08-14T22:39:17.4884972Z [ 2025-08-14T22:39:17.4885049Z scalar_t=float 2025-08-14T22:39:17.4885116Z ] 2025-08-14T22:39:17.4885680Z 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-14T22:39:17.4885750Z with 2025-08-14T22:39:17.4885814Z [ 2025-08-14T22:39:17.4885890Z scalar_t=float 2025-08-14T22:39:17.4885971Z ] 2025-08-14T22:39:17.4900101Z 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-14T22:39:17.4900178Z with 2025-08-14T22:39:17.4900257Z [ 2025-08-14T22:39:17.4900339Z scalar_t=float 2025-08-14T22:39:17.4900405Z ] 2025-08-14T22:39:17.4900964Z 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-14T22:39:17.4901037Z with 2025-08-14T22:39:17.4901103Z [ 2025-08-14T22:39:17.4901178Z scalar_t=float 2025-08-14T22:39:17.4901256Z ] 2025-08-14T22:39:17.4901802Z 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-14T22:39:17.4901871Z with 2025-08-14T22:39:17.4901942Z [ 2025-08-14T22:39:17.4902015Z scalar_t=float 2025-08-14T22:39:17.4902082Z ] 2025-08-14T22:39:17.4902623Z 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-14T22:39:17.4902776Z with 2025-08-14T22:39:17.4902842Z [ 2025-08-14T22:39:17.4902923Z scalar_t=float 2025-08-14T22:39:17.4902999Z ] 2025-08-14T22:39:17.4903545Z 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-14T22:39:17.4903612Z with 2025-08-14T22:39:17.4903689Z [ 2025-08-14T22:39:17.4903842Z scalar_t=float 2025-08-14T22:39:17.4903905Z ] 2025-08-14T22:39:17.4913414Z 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-14T22:39:17.4913501Z with 2025-08-14T22:39:17.4913568Z [ 2025-08-14T22:39:17.4913647Z scalar_t=float 2025-08-14T22:39:17.4913723Z ] 2025-08-14T22:39:17.4914272Z 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-14T22:39:17.4914336Z with 2025-08-14T22:39:17.4914469Z [ 2025-08-14T22:39:17.4914553Z scalar_t=float 2025-08-14T22:39:17.4914626Z ] 2025-08-14T22:39:17.4915178Z 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-14T22:39:17.4915258Z with 2025-08-14T22:39:17.4915322Z [ 2025-08-14T22:39:17.4915398Z scalar_t=float 2025-08-14T22:39:17.4915462Z ] 2025-08-14T22:39:17.4916018Z 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-14T22:39:17.4916085Z with 2025-08-14T22:39:17.4916147Z [ 2025-08-14T22:39:17.4916236Z scalar_t=float 2025-08-14T22:39:17.4916301Z ] 2025-08-14T22:39:17.4916847Z 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-14T22:39:17.4916917Z with 2025-08-14T22:39:17.4916982Z [ 2025-08-14T22:39:17.4917055Z scalar_t=float 2025-08-14T22:39:17.4917119Z ] 2025-08-14T22:39:17.4917671Z 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-14T22:39:17.4917738Z with 2025-08-14T22:39:17.4917803Z [ 2025-08-14T22:39:17.4929456Z scalar_t=float 2025-08-14T22:39:17.4929536Z ] 2025-08-14T22:39:17.4930111Z 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-14T22:39:17.4930191Z with 2025-08-14T22:39:17.4930256Z [ 2025-08-14T22:39:17.4930331Z scalar_t=float 2025-08-14T22:39:17.4930402Z ] 2025-08-14T22:39:17.4930954Z 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-14T22:39:17.4931020Z with 2025-08-14T22:39:17.4931089Z [ 2025-08-14T22:39:17.4931174Z scalar_t=float 2025-08-14T22:39:17.4931237Z ] 2025-08-14T22:39:17.4931779Z 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-14T22:39:17.4931845Z with 2025-08-14T22:39:17.4931925Z [ 2025-08-14T22:39:17.4932071Z scalar_t=float 2025-08-14T22:39:17.4932138Z ] 2025-08-14T22:39:17.4932691Z 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-14T22:39:17.4932757Z with 2025-08-14T22:39:17.4932830Z [ 2025-08-14T22:39:17.4932914Z scalar_t=float 2025-08-14T22:39:17.4932979Z ] 2025-08-14T22:39:17.4933567Z 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-14T22:39:17.4933672Z with 2025-08-14T22:39:17.4933748Z [ 2025-08-14T22:39:17.4933830Z scalar_t=float 2025-08-14T22:39:17.4933893Z ] 2025-08-14T22:39:17.4935855Z 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-14T22:39:17.4935928Z with 2025-08-14T22:39:17.4935994Z [ 2025-08-14T22:39:17.4936071Z scalar_t=float 2025-08-14T22:39:17.4936148Z ] 2025-08-14T22:39:17.4936745Z 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-14T22:39:17.4936812Z with 2025-08-14T22:39:17.4936885Z [ 2025-08-14T22:39:17.4936961Z scalar_t=float 2025-08-14T22:39:17.4937035Z ] 2025-08-14T22:39:17.4937594Z 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-14T22:39:17.4937664Z with 2025-08-14T22:39:17.4937737Z [ 2025-08-14T22:39:17.4937813Z scalar_t=float 2025-08-14T22:39:17.4937892Z ] 2025-08-14T22:39:17.4938436Z 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-14T22:39:17.4938509Z with 2025-08-14T22:39:17.4938581Z [ 2025-08-14T22:39:17.4938654Z scalar_t=float 2025-08-14T22:39:17.4938721Z ] 2025-08-14T22:39:17.4939262Z 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-14T22:39:17.4939340Z with 2025-08-14T22:39:17.4939404Z [ 2025-08-14T22:39:17.4939481Z scalar_t=float 2025-08-14T22:39:17.4939553Z ] 2025-08-14T22:39:17.4940093Z 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-14T22:39:17.4940159Z with 2025-08-14T22:39:17.4941613Z [ 2025-08-14T22:39:17.4941709Z scalar_t=float 2025-08-14T22:39:17.4941779Z ] 2025-08-14T22:39:17.4942329Z 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-14T22:39:17.4942410Z with 2025-08-14T22:39:17.4942476Z [ 2025-08-14T22:39:17.4942560Z scalar_t=float 2025-08-14T22:39:17.4942636Z ] 2025-08-14T22:39:17.4943190Z 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-14T22:39:17.4943261Z with 2025-08-14T22:39:17.4943334Z [ 2025-08-14T22:39:17.4943413Z scalar_t=float 2025-08-14T22:39:17.4943480Z ] 2025-08-14T22:39:17.4944026Z 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-14T22:39:17.4944167Z with 2025-08-14T22:39:17.4944232Z [ 2025-08-14T22:39:17.4944308Z scalar_t=float 2025-08-14T22:39:17.4944387Z ] 2025-08-14T22:39:17.4944982Z 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-14T22:39:17.4945048Z with 2025-08-14T22:39:17.4945113Z [ 2025-08-14T22:39:17.4945203Z scalar_t=float 2025-08-14T22:39:17.4945266Z ] 2025-08-14T22:39:17.4945853Z 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-14T22:39:17.4945965Z with 2025-08-14T22:39:17.4946033Z [ 2025-08-14T22:39:17.4946109Z scalar_t=float 2025-08-14T22:39:17.4946176Z ] 2025-08-14T22:39:17.4948125Z 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-14T22:39:17.4948201Z with 2025-08-14T22:39:17.4948267Z [ 2025-08-14T22:39:17.4948359Z scalar_t=float 2025-08-14T22:39:17.4948477Z ] 2025-08-14T22:39:17.4949024Z 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-14T22:39:17.4949103Z with 2025-08-14T22:39:17.4949171Z [ 2025-08-14T22:39:17.4949259Z scalar_t=float 2025-08-14T22:39:17.4949326Z ] 2025-08-14T22:39:17.4949884Z 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-14T22:39:17.4949963Z with 2025-08-14T22:39:17.4950029Z [ 2025-08-14T22:39:17.4950119Z scalar_t=float 2025-08-14T22:39:17.4950187Z ] 2025-08-14T22:39:17.4950726Z 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-14T22:39:17.4950800Z with 2025-08-14T22:39:17.4950864Z [ 2025-08-14T22:39:17.4950937Z scalar_t=float 2025-08-14T22:39:17.4951003Z ] 2025-08-14T22:39:17.4951554Z 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-14T22:39:17.4951621Z with 2025-08-14T22:39:17.4951689Z [ 2025-08-14T22:39:17.4951772Z scalar_t=float 2025-08-14T22:39:17.4951840Z ] 2025-08-14T22:39:17.4952382Z 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-14T22:39:17.4953837Z with 2025-08-14T22:39:17.4953922Z [ 2025-08-14T22:39:17.4954003Z scalar_t=float 2025-08-14T22:39:17.4954069Z ] 2025-08-14T22:39:17.4954644Z 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-14T22:39:17.4954713Z with 2025-08-14T22:39:17.4954777Z [ 2025-08-14T22:39:17.4954864Z scalar_t=float 2025-08-14T22:39:17.4954931Z ] 2025-08-14T22:39:17.4955480Z 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-14T22:39:17.4955548Z with 2025-08-14T22:39:17.4955619Z [ 2025-08-14T22:39:17.4955694Z scalar_t=float 2025-08-14T22:39:17.4955758Z ] 2025-08-14T22:39:17.4956309Z 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-14T22:39:17.4956448Z with 2025-08-14T22:39:17.4956519Z [ 2025-08-14T22:39:17.4956598Z scalar_t=float 2025-08-14T22:39:17.4956678Z ] 2025-08-14T22:39:17.4957226Z 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-14T22:39:17.4957295Z with 2025-08-14T22:39:17.4957415Z [ 2025-08-14T22:39:17.4957534Z scalar_t=float 2025-08-14T22:39:17.4957608Z ] 2025-08-14T22:39:17.4958164Z 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-14T22:39:17.4958237Z with 2025-08-14T22:39:17.4958302Z [ 2025-08-14T22:39:17.4958382Z scalar_t=float 2025-08-14T22:39:17.4958460Z ] 2025-08-14T22:39:17.4959009Z 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-14T22:39:17.4959114Z with 2025-08-14T22:39:17.4959194Z [ 2025-08-14T22:39:17.4959270Z scalar_t=float 2025-08-14T22:39:17.4959342Z ] 2025-08-14T22:39:17.4959887Z 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-14T22:39:17.4959963Z with 2025-08-14T22:39:17.4960032Z [ 2025-08-14T22:39:17.4960109Z scalar_t=float 2025-08-14T22:39:17.4960186Z ] 2025-08-14T22:39:17.4960730Z 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-14T22:39:17.4960799Z with 2025-08-14T22:39:17.4960873Z [ 2025-08-14T22:39:17.4960951Z scalar_t=float 2025-08-14T22:39:17.4961016Z ] 2025-08-14T22:39:17.4961563Z 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-14T22:39:17.4961642Z with 2025-08-14T22:39:17.4961707Z [ 2025-08-14T22:39:17.4961803Z scalar_t=float 2025-08-14T22:39:17.4961880Z ] 2025-08-14T22:39:17.4962430Z 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-14T22:39:17.4962497Z with 2025-08-14T22:39:17.4962561Z [ 2025-08-14T22:39:17.4962644Z scalar_t=float 2025-08-14T22:39:17.4962708Z ] 2025-08-14T22:39:17.4963252Z 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-14T22:39:17.4963330Z with 2025-08-14T22:39:17.4963395Z [ 2025-08-14T22:39:17.4963473Z scalar_t=float 2025-08-14T22:39:17.4965053Z ] 2025-08-14T22:39:17.4965610Z 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-14T22:39:17.4965677Z with 2025-08-14T22:39:17.4965744Z [ 2025-08-14T22:39:17.4965830Z scalar_t=float 2025-08-14T22:39:17.4965894Z ] 2025-08-14T22:39:17.4966442Z 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-14T22:39:17.4966516Z with 2025-08-14T22:39:17.4966587Z [ 2025-08-14T22:39:17.4966725Z scalar_t=float 2025-08-14T22:39:17.4966790Z ] 2025-08-14T22:39:17.4967359Z 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-14T22:39:17.4967430Z with 2025-08-14T22:39:17.4967495Z [ 2025-08-14T22:39:17.4967581Z scalar_t=float 2025-08-14T22:39:17.4967648Z ] 2025-08-14T22:39:17.4968234Z 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-14T22:39:17.4968344Z with 2025-08-14T22:39:17.4968407Z [ 2025-08-14T22:39:17.4968482Z scalar_t=float 2025-08-14T22:39:17.4968545Z ] 2025-08-14T22:39:17.4969101Z 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-14T22:39:17.4969173Z with 2025-08-14T22:39:17.4969240Z [ 2025-08-14T22:39:17.4969322Z scalar_t=float 2025-08-14T22:39:17.4969387Z ] 2025-08-14T22:39:17.4969972Z 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-14T22:39:17.4970048Z with 2025-08-14T22:39:17.4970114Z [ 2025-08-14T22:39:17.4970187Z scalar_t=float 2025-08-14T22:39:17.4970253Z ] 2025-08-14T22:39:17.4970811Z 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-14T22:39:17.4970886Z with 2025-08-14T22:39:17.4970953Z [ 2025-08-14T22:39:17.4971036Z scalar_t=float 2025-08-14T22:39:17.4971101Z ] 2025-08-14T22:39:17.4971646Z 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-14T22:39:17.4971712Z with 2025-08-14T22:39:17.4971788Z [ 2025-08-14T22:39:17.4971863Z scalar_t=float 2025-08-14T22:39:17.4971928Z ] 2025-08-14T22:39:17.4972481Z 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-14T22:39:17.4972545Z with 2025-08-14T22:39:17.4972615Z [ 2025-08-14T22:39:17.4972696Z scalar_t=float 2025-08-14T22:39:17.4972758Z ] 2025-08-14T22:39:17.4973301Z 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-14T22:39:17.4973369Z with 2025-08-14T22:39:17.4973445Z [ 2025-08-14T22:39:17.4973519Z scalar_t=float 2025-08-14T22:39:17.4973585Z ] 2025-08-14T22:39:17.4974136Z 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-14T22:39:17.4974205Z with 2025-08-14T22:39:17.4974270Z [ 2025-08-14T22:39:17.4974345Z scalar_t=float 2025-08-14T22:39:17.4974416Z ] 2025-08-14T22:39:17.4974959Z 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-14T22:39:17.4975032Z with 2025-08-14T22:39:17.4975107Z [ 2025-08-14T22:39:17.4975182Z scalar_t=float 2025-08-14T22:39:17.4975244Z ] 2025-08-14T22:39:17.4975793Z 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-14T22:39:17.4976435Z with 2025-08-14T22:39:17.4976506Z [ 2025-08-14T22:39:17.4976584Z scalar_t=float 2025-08-14T22:39:17.4976659Z ] 2025-08-14T22:39:17.4977215Z 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-14T22:39:17.4977284Z with 2025-08-14T22:39:17.4977358Z [ 2025-08-14T22:39:17.4977437Z scalar_t=float 2025-08-14T22:39:17.4977872Z ] 2025-08-14T22:39:17.4978465Z 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-14T22:39:17.4978540Z with 2025-08-14T22:39:17.4978605Z [ 2025-08-14T22:39:17.4978684Z scalar_t=float 2025-08-14T22:39:17.4978767Z ] 2025-08-14T22:39:17.4979318Z 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-14T22:39:17.4979383Z with 2025-08-14T22:39:17.4979459Z [ 2025-08-14T22:39:17.4979581Z scalar_t=float 2025-08-14T22:39:17.4979645Z ] 2025-08-14T22:39:17.4981776Z 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-14T22:39:17.4981858Z with 2025-08-14T22:39:17.4981932Z [ 2025-08-14T22:39:17.4982010Z scalar_t=float 2025-08-14T22:39:17.4982081Z ] 2025-08-14T22:39:17.4982627Z 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-14T22:39:17.4982694Z with 2025-08-14T22:39:17.4982761Z [ 2025-08-14T22:39:17.4982852Z scalar_t=float 2025-08-14T22:39:17.4982916Z ] 2025-08-14T22:39:17.4983460Z 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-14T22:39:17.4983538Z with 2025-08-14T22:39:17.4983603Z [ 2025-08-14T22:39:17.4983676Z scalar_t=float 2025-08-14T22:39:17.4983751Z ] 2025-08-14T22:39:17.4984296Z 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-14T22:39:17.4984366Z with 2025-08-14T22:39:17.4984428Z [ 2025-08-14T22:39:17.4984510Z scalar_t=float 2025-08-14T22:39:17.4984580Z ] 2025-08-14T22:39:17.4985197Z 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-14T22:39:17.4985277Z with 2025-08-14T22:39:17.4985342Z [ 2025-08-14T22:39:17.4985417Z scalar_t=float 2025-08-14T22:39:17.4985489Z ] 2025-08-14T22:39:17.4986043Z 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-14T22:39:17.4986110Z with 2025-08-14T22:39:17.4986179Z [ 2025-08-14T22:39:17.4986262Z scalar_t=float 2025-08-14T22:39:17.4986333Z ] 2025-08-14T22:39:17.4986877Z 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-14T22:39:17.4986953Z with 2025-08-14T22:39:17.4987016Z [ 2025-08-14T22:39:17.4987091Z scalar_t=float 2025-08-14T22:39:17.4987155Z ] 2025-08-14T22:39:17.4988195Z 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-14T22:39:17.4988265Z with 2025-08-14T22:39:17.4988330Z [ 2025-08-14T22:39:17.4988414Z scalar_t=float 2025-08-14T22:39:17.4988484Z ] 2025-08-14T22:39:17.4989029Z 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-14T22:39:17.4989154Z with 2025-08-14T22:39:17.4989258Z [ 2025-08-14T22:39:17.4989336Z scalar_t=float 2025-08-14T22:39:17.4989402Z ] 2025-08-14T22:39:17.4989970Z 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-14T22:39:17.4990049Z with 2025-08-14T22:39:17.4990120Z [ 2025-08-14T22:39:17.4990204Z scalar_t=float 2025-08-14T22:39:17.4990269Z ] 2025-08-14T22:39:17.4990852Z 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-14T22:39:17.4990922Z with 2025-08-14T22:39:17.4991002Z [ 2025-08-14T22:39:17.4991077Z scalar_t=float 2025-08-14T22:39:17.4991146Z ] 2025-08-14T22:39:17.4991706Z 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-14T22:39:17.4991777Z with 2025-08-14T22:39:17.4991846Z [ 2025-08-14T22:39:17.4991929Z scalar_t=float 2025-08-14T22:39:17.4991995Z ] 2025-08-14T22:39:17.4992542Z 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-14T22:39:17.4992615Z with 2025-08-14T22:39:17.4992693Z [ 2025-08-14T22:39:17.4992770Z scalar_t=float 2025-08-14T22:39:17.4992835Z ] 2025-08-14T22:39:17.4993393Z 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-14T22:39:17.4993459Z with 2025-08-14T22:39:17.4993522Z [ 2025-08-14T22:39:17.4993599Z scalar_t=float 2025-08-14T22:39:17.4993677Z ] 2025-08-14T22:39:17.4994218Z 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-14T22:39:17.4994289Z with 2025-08-14T22:39:17.4994362Z [ 2025-08-14T22:39:17.4994441Z scalar_t=float 2025-08-14T22:39:17.4994512Z ] 2025-08-14T22:39:17.4995065Z 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-14T22:39:17.4995136Z with 2025-08-14T22:39:17.4995203Z [ 2025-08-14T22:39:17.4995284Z scalar_t=float 2025-08-14T22:39:17.4995357Z ] 2025-08-14T22:39:17.4995902Z 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-14T22:39:17.4995975Z with 2025-08-14T22:39:17.4996053Z [ 2025-08-14T22:39:17.4996131Z scalar_t=float 2025-08-14T22:39:17.4996195Z ] 2025-08-14T22:39:17.4996740Z 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-14T22:39:17.4996819Z with 2025-08-14T22:39:17.4997247Z [ 2025-08-14T22:39:17.4997326Z scalar_t=float 2025-08-14T22:39:17.4997408Z ] 2025-08-14T22:39:17.4997960Z 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-14T22:39:17.4998030Z with 2025-08-14T22:39:17.4998105Z [ 2025-08-14T22:39:17.4998182Z scalar_t=float 2025-08-14T22:39:17.4998248Z ] 2025-08-14T22:39:17.4998834Z 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-14T22:39:17.4998946Z with 2025-08-14T22:39:17.4999014Z [ 2025-08-14T22:39:17.4999089Z scalar_t=float 2025-08-14T22:39:17.4999169Z ] 2025-08-14T22:39:17.4999717Z 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-14T22:39:17.4999784Z with 2025-08-14T22:39:17.4999849Z [ 2025-08-14T22:39:17.4999935Z scalar_t=float 2025-08-14T22:39:17.5000000Z ] 2025-08-14T22:39:17.5000584Z 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-14T22:39:17.5000661Z with 2025-08-14T22:39:17.5000730Z [ 2025-08-14T22:39:17.5000804Z scalar_t=float 2025-08-14T22:39:17.5000879Z ] 2025-08-14T22:39:17.5001429Z 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-14T22:39:17.5001496Z with 2025-08-14T22:39:17.5001559Z [ 2025-08-14T22:39:17.5001648Z scalar_t=float 2025-08-14T22:39:17.5001714Z ] 2025-08-14T22:39:17.5002256Z 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-14T22:39:17.5002329Z with 2025-08-14T22:39:17.5002396Z [ 2025-08-14T22:39:17.5002475Z scalar_t=float 2025-08-14T22:39:17.5002543Z ] 2025-08-14T22:39:17.5003097Z 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-14T22:39:17.5003164Z with 2025-08-14T22:39:17.5003238Z [ 2025-08-14T22:39:17.5003322Z scalar_t=float 2025-08-14T22:39:17.5003391Z ] 2025-08-14T22:39:17.5003931Z 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-14T22:39:17.5004007Z with 2025-08-14T22:39:17.5004072Z [ 2025-08-14T22:39:17.5004144Z scalar_t=float 2025-08-14T22:39:17.5004209Z ] 2025-08-14T22:39:17.5004765Z 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-14T22:39:17.5004829Z with 2025-08-14T22:39:17.5004898Z [ 2025-08-14T22:39:17.5004980Z scalar_t=float 2025-08-14T22:39:17.5005047Z ] 2025-08-14T22:39:17.5005591Z 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-14T22:39:17.5005669Z with 2025-08-14T22:39:17.5005731Z [ 2025-08-14T22:39:17.5005808Z scalar_t=float 2025-08-14T22:39:17.5005871Z ] 2025-08-14T22:39:17.5006425Z 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-14T22:39:17.5006847Z with 2025-08-14T22:39:17.5006917Z [ 2025-08-14T22:39:17.5007008Z scalar_t=float 2025-08-14T22:39:17.5007073Z ] 2025-08-14T22:39:17.5007623Z 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-14T22:39:17.5007690Z with 2025-08-14T22:39:17.5007766Z [ 2025-08-14T22:39:17.5007843Z scalar_t=float 2025-08-14T22:39:17.5007982Z ] 2025-08-14T22:39:17.5008538Z 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-14T22:39:17.5008607Z with 2025-08-14T22:39:17.5008669Z [ 2025-08-14T22:39:17.5008743Z scalar_t=float 2025-08-14T22:39:17.5008819Z ] 2025-08-14T22:39:17.5009362Z 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-14T22:39:17.5009430Z with 2025-08-14T22:39:17.5009505Z [ 2025-08-14T22:39:17.5009621Z scalar_t=float 2025-08-14T22:39:17.5009686Z ] 2025-08-14T22:39:17.5010239Z 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-14T22:39:17.5010308Z with 2025-08-14T22:39:17.5010371Z [ 2025-08-14T22:39:17.5010445Z scalar_t=float 2025-08-14T22:39:17.5010523Z ] 2025-08-14T22:39:17.5012298Z 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-14T22:39:17.5012372Z with 2025-08-14T22:39:17.5012450Z [ 2025-08-14T22:39:17.5012526Z scalar_t=float 2025-08-14T22:39:17.5012592Z ] 2025-08-14T22:39:17.5013152Z 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-14T22:39:17.5013220Z with 2025-08-14T22:39:17.5013284Z [ 2025-08-14T22:39:17.5013360Z scalar_t=float 2025-08-14T22:39:17.5013434Z ] 2025-08-14T22:39:17.5013982Z 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-14T22:39:17.5014051Z with 2025-08-14T22:39:17.5014128Z [ 2025-08-14T22:39:17.5014204Z scalar_t=float 2025-08-14T22:39:17.5014268Z ] 2025-08-14T22:39:17.5014815Z 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-14T22:39:17.5014894Z with 2025-08-14T22:39:17.5014958Z [ 2025-08-14T22:39:17.5015033Z scalar_t=float 2025-08-14T22:39:17.5015107Z ] 2025-08-14T22:39:17.5015656Z 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-14T22:39:17.5015723Z with 2025-08-14T22:39:17.5015795Z [ 2025-08-14T22:39:17.5015876Z scalar_t=float 2025-08-14T22:39:17.5015949Z ] 2025-08-14T22:39:17.5016494Z 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-14T22:39:17.5016568Z with 2025-08-14T22:39:17.5016638Z [ 2025-08-14T22:39:17.5016714Z scalar_t=float 2025-08-14T22:39:17.5017243Z ] 2025-08-14T22:39:17.5017794Z 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-14T22:39:17.5017862Z with 2025-08-14T22:39:17.5017928Z [ 2025-08-14T22:39:17.5018017Z scalar_t=float 2025-08-14T22:39:17.5018083Z ] 2025-08-14T22:39:17.5018635Z 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-14T22:39:17.5018796Z with 2025-08-14T22:39:17.5018863Z [ 2025-08-14T22:39:17.5018942Z scalar_t=float 2025-08-14T22:39:17.5019016Z ] 2025-08-14T22:39:17.5019563Z 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-14T22:39:17.5019639Z with 2025-08-14T22:39:17.5019704Z [ 2025-08-14T22:39:17.5019792Z scalar_t=float 2025-08-14T22:39:17.5019866Z ] 2025-08-14T22:39:17.5020445Z 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-14T22:39:17.5020522Z with 2025-08-14T22:39:17.5020587Z [ 2025-08-14T22:39:17.5020662Z scalar_t=float 2025-08-14T22:39:17.5020725Z ] 2025-08-14T22:39:17.5021278Z 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-14T22:39:17.5021350Z with 2025-08-14T22:39:17.5021421Z [ 2025-08-14T22:39:17.5021506Z scalar_t=float 2025-08-14T22:39:17.5021576Z ] 2025-08-14T22:39:17.5022121Z 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-14T22:39:17.5022197Z with 2025-08-14T22:39:17.5022267Z [ 2025-08-14T22:39:17.5022345Z scalar_t=float 2025-08-14T22:39:17.5022410Z ] 2025-08-14T22:39:17.5022965Z 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-14T22:39:17.5023045Z with 2025-08-14T22:39:17.5023110Z [ 2025-08-14T22:39:17.5023194Z scalar_t=float 2025-08-14T22:39:17.5023260Z ] 2025-08-14T22:39:17.5023802Z 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-14T22:39:17.5023873Z with 2025-08-14T22:39:17.5023936Z [ 2025-08-14T22:39:17.5024008Z scalar_t=float 2025-08-14T22:39:17.5024074Z ] 2025-08-14T22:39:17.5024623Z 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-14T22:39:17.5024690Z with 2025-08-14T22:39:17.5024821Z [ 2025-08-14T22:39:17.5024916Z scalar_t=float 2025-08-14T22:39:17.5024986Z ] 2025-08-14T22:39:17.5025533Z 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-14T22:39:17.5025603Z with 2025-08-14T22:39:17.5025681Z [ 2025-08-14T22:39:17.5025755Z scalar_t=float 2025-08-14T22:39:17.5025819Z ] 2025-08-14T22:39:17.5026389Z 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-14T22:39:17.5026498Z with 2025-08-14T22:39:17.5026563Z [ 2025-08-14T22:39:17.5026636Z scalar_t=float 2025-08-14T22:39:17.5026710Z ] 2025-08-14T22:39:17.5027262Z 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-14T22:39:17.5027330Z with 2025-08-14T22:39:17.5027405Z [ 2025-08-14T22:39:17.5027490Z scalar_t=float 2025-08-14T22:39:17.5027561Z ] 2025-08-14T22:39:17.5028156Z 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-14T22:39:17.5028258Z with 2025-08-14T22:39:17.5028322Z [ 2025-08-14T22:39:17.5028397Z scalar_t=float 2025-08-14T22:39:17.5028470Z ] 2025-08-14T22:39:17.5029016Z 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-14T22:39:17.5029088Z with 2025-08-14T22:39:17.5029165Z [ 2025-08-14T22:39:17.5029242Z scalar_t=float 2025-08-14T22:39:17.5029307Z ] 2025-08-14T22:39:17.5029889Z 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-14T22:39:17.5029963Z with 2025-08-14T22:39:17.5030027Z [ 2025-08-14T22:39:17.5030104Z scalar_t=float 2025-08-14T22:39:17.5030184Z ] 2025-08-14T22:39:17.5030728Z 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-14T22:39:17.5030797Z with 2025-08-14T22:39:17.5030873Z [ 2025-08-14T22:39:17.5030949Z scalar_t=float 2025-08-14T22:39:17.5031022Z ] 2025-08-14T22:39:17.5031565Z 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-14T22:39:17.5031641Z with 2025-08-14T22:39:17.5031710Z [ 2025-08-14T22:39:17.5031793Z scalar_t=float 2025-08-14T22:39:17.5031865Z ] 2025-08-14T22:39:17.5032410Z 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-14T22:39:17.5032479Z with 2025-08-14T22:39:17.5032553Z [ 2025-08-14T22:39:17.5032628Z scalar_t=float 2025-08-14T22:39:17.5032694Z ] 2025-08-14T22:39:17.5033237Z 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-14T22:39:17.5033315Z with 2025-08-14T22:39:17.5033380Z [ 2025-08-14T22:39:17.5033453Z scalar_t=float 2025-08-14T22:39:17.5033527Z ] 2025-08-14T22:39:17.5034073Z 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-14T22:39:17.5034139Z with 2025-08-14T22:39:17.5034203Z [ 2025-08-14T22:39:17.5034289Z scalar_t=float 2025-08-14T22:39:17.5034353Z ] 2025-08-14T22:39:17.5034899Z 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-14T22:39:17.5034975Z with 2025-08-14T22:39:17.5035041Z [ 2025-08-14T22:39:17.5035117Z scalar_t=float 2025-08-14T22:39:17.5035180Z ] 2025-08-14T22:39:17.5035735Z 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-14T22:39:17.5035845Z with 2025-08-14T22:39:17.5035928Z [ 2025-08-14T22:39:17.5036012Z scalar_t=float 2025-08-14T22:39:17.5036083Z ] 2025-08-14T22:39:17.5036633Z 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-14T22:39:17.5036707Z with 2025-08-14T22:39:17.5036774Z [ 2025-08-14T22:39:17.5037693Z scalar_t=float 2025-08-14T22:39:17.5037828Z ] 2025-08-14T22:39:17.5038389Z 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-14T22:39:17.5038457Z with 2025-08-14T22:39:17.5038522Z [ 2025-08-14T22:39:17.5038607Z scalar_t=float 2025-08-14T22:39:17.5038675Z ] 2025-08-14T22:39:17.5039224Z 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-14T22:39:17.5039309Z with 2025-08-14T22:39:17.5039409Z [ 2025-08-14T22:39:17.5039485Z scalar_t=float 2025-08-14T22:39:17.5039547Z ] 2025-08-14T22:39:17.5040099Z 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-14T22:39:17.5040167Z with 2025-08-14T22:39:17.5040229Z [ 2025-08-14T22:39:17.5040315Z scalar_t=float 2025-08-14T22:39:17.5040377Z ] 2025-08-14T22:39:17.5040923Z 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-14T22:39:17.5040999Z with 2025-08-14T22:39:17.5041062Z [ 2025-08-14T22:39:17.5041139Z scalar_t=float 2025-08-14T22:39:17.5041203Z ] 2025-08-14T22:39:17.5041759Z 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-14T22:39:17.5041826Z with 2025-08-14T22:39:17.5041889Z [ 2025-08-14T22:39:17.5041972Z scalar_t=float 2025-08-14T22:39:17.5042038Z ] 2025-08-14T22:39:17.5042581Z 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-14T22:39:17.5042649Z with 2025-08-14T22:39:17.5042724Z [ 2025-08-14T22:39:17.5042801Z scalar_t=float 2025-08-14T22:39:17.5042867Z ] 2025-08-14T22:39:17.5043413Z 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-14T22:39:17.5043482Z with 2025-08-14T22:39:17.5043546Z [ 2025-08-14T22:39:17.5043620Z scalar_t=float 2025-08-14T22:39:17.5043697Z ] 2025-08-14T22:39:17.5044245Z 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-14T22:39:17.5044310Z with 2025-08-14T22:39:17.5044382Z [ 2025-08-14T22:39:17.5044458Z scalar_t=float 2025-08-14T22:39:17.5044521Z ] 2025-08-14T22:39:17.5045071Z 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-14T22:39:17.5045137Z with 2025-08-14T22:39:17.5045200Z [ 2025-08-14T22:39:17.5045275Z scalar_t=float 2025-08-14T22:39:17.5045391Z ] 2025-08-14T22:39:17.5045935Z 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-14T22:39:17.5046003Z with 2025-08-14T22:39:17.5046077Z [ 2025-08-14T22:39:17.5046154Z scalar_t=float 2025-08-14T22:39:17.5046220Z ] 2025-08-14T22:39:17.5046800Z 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-14T22:39:17.5046911Z with 2025-08-14T22:39:17.5046975Z [ 2025-08-14T22:39:17.5047050Z scalar_t=float 2025-08-14T22:39:17.5047124Z ] 2025-08-14T22:39:17.5047667Z 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-14T22:39:17.5047735Z with 2025-08-14T22:39:17.5047804Z [ 2025-08-14T22:39:17.5047879Z scalar_t=float 2025-08-14T22:39:17.5047942Z ] 2025-08-14T22:39:17.5048517Z 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-14T22:39:17.5048591Z with 2025-08-14T22:39:17.5048655Z [ 2025-08-14T22:39:17.5048729Z scalar_t=float 2025-08-14T22:39:17.5048799Z ] 2025-08-14T22:39:17.5049349Z 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-14T22:39:17.5049419Z with 2025-08-14T22:39:17.5049490Z [ 2025-08-14T22:39:17.5049565Z scalar_t=float 2025-08-14T22:39:17.5049635Z ] 2025-08-14T22:39:17.5050176Z 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-14T22:39:17.5050253Z with 2025-08-14T22:39:17.5050318Z [ 2025-08-14T22:39:17.5050396Z scalar_t=float 2025-08-14T22:39:17.5050470Z ] 2025-08-14T22:39:17.5051014Z 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-14T22:39:17.5051081Z with 2025-08-14T22:39:17.5051150Z [ 2025-08-14T22:39:17.5051237Z scalar_t=float 2025-08-14T22:39:17.5051304Z ] 2025-08-14T22:39:17.5051846Z 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-14T22:39:17.5051917Z with 2025-08-14T22:39:17.5051988Z [ 2025-08-14T22:39:17.5052065Z scalar_t=float 2025-08-14T22:39:17.5052131Z ] 2025-08-14T22:39:17.5052692Z 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-14T22:39:17.5052758Z with 2025-08-14T22:39:17.5052823Z [ 2025-08-14T22:39:17.5052901Z scalar_t=float 2025-08-14T22:39:17.5052964Z ] 2025-08-14T22:39:17.5053510Z 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-14T22:39:17.5053590Z with 2025-08-14T22:39:17.5053653Z [ 2025-08-14T22:39:17.5053729Z scalar_t=float 2025-08-14T22:39:17.5053793Z ] 2025-08-14T22:39:17.5054347Z 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-14T22:39:17.5054460Z with 2025-08-14T22:39:17.5054523Z [ 2025-08-14T22:39:17.5054606Z scalar_t=float 2025-08-14T22:39:17.5054670Z ] 2025-08-14T22:39:17.5055220Z 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-14T22:39:17.5055299Z with 2025-08-14T22:39:17.5055363Z [ 2025-08-14T22:39:17.5055437Z scalar_t=float 2025-08-14T22:39:17.5055499Z ] 2025-08-14T22:39:17.5056091Z 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-14T22:39:17.5056193Z with 2025-08-14T22:39:17.5056257Z [ 2025-08-14T22:39:17.5056341Z scalar_t=float 2025-08-14T22:39:17.5056403Z ] 2025-08-14T22:39:17.5056947Z 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-14T22:39:17.5057016Z with 2025-08-14T22:39:17.5057087Z [ 2025-08-14T22:39:17.5057162Z scalar_t=float 2025-08-14T22:39:17.5057262Z ] 2025-08-14T22:39:17.5057823Z 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-14T22:39:17.5057888Z with 2025-08-14T22:39:17.5057951Z [ 2025-08-14T22:39:17.5058042Z scalar_t=float 2025-08-14T22:39:17.5058105Z ] 2025-08-14T22:39:17.5058649Z 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-14T22:39:17.5058718Z with 2025-08-14T22:39:17.5058796Z [ 2025-08-14T22:39:17.5058871Z scalar_t=float 2025-08-14T22:39:17.5058945Z ] 2025-08-14T22:39:17.5059495Z 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-14T22:39:17.5059569Z with 2025-08-14T22:39:17.5059639Z [ 2025-08-14T22:39:17.5059715Z scalar_t=float 2025-08-14T22:39:17.5059794Z ] 2025-08-14T22:39:17.5060338Z 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-14T22:39:17.5060407Z with 2025-08-14T22:39:17.5060480Z [ 2025-08-14T22:39:17.5060555Z scalar_t=float 2025-08-14T22:39:17.5060618Z ] 2025-08-14T22:39:17.5061181Z 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-14T22:39:17.5061250Z with 2025-08-14T22:39:17.5061316Z [ 2025-08-14T22:39:17.5061390Z scalar_t=float 2025-08-14T22:39:17.5061465Z ] 2025-08-14T22:39:17.5062011Z 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-14T22:39:17.5062081Z with 2025-08-14T22:39:17.5062156Z [ 2025-08-14T22:39:17.5062231Z scalar_t=float 2025-08-14T22:39:17.5062295Z ] 2025-08-14T22:39:17.5062843Z 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-14T22:39:17.5062920Z with 2025-08-14T22:39:17.5062988Z [ 2025-08-14T22:39:17.5063064Z scalar_t=float 2025-08-14T22:39:17.5063138Z ] 2025-08-14T22:39:17.5063684Z 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-14T22:39:17.5063793Z with 2025-08-14T22:39:17.5063873Z [ 2025-08-14T22:39:17.5063947Z scalar_t=float 2025-08-14T22:39:17.5064017Z ] 2025-08-14T22:39:17.5064558Z 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-14T22:39:17.5064636Z with 2025-08-14T22:39:17.5064817Z [ 2025-08-14T22:39:17.5065619Z scalar_t=float 2025-08-14T22:39:17.5065705Z ] 2025-08-14T22:39:17.5066260Z 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-14T22:39:17.5066338Z with 2025-08-14T22:39:17.5066406Z [ 2025-08-14T22:39:17.5066497Z scalar_t=float 2025-08-14T22:39:17.5066571Z ] 2025-08-14T22:39:17.5067118Z 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-14T22:39:17.5067240Z with 2025-08-14T22:39:17.5067309Z [ 2025-08-14T22:39:17.5067386Z scalar_t=float 2025-08-14T22:39:17.5067461Z ] 2025-08-14T22:39:17.5068010Z 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-14T22:39:17.5068080Z with 2025-08-14T22:39:17.5068148Z [ 2025-08-14T22:39:17.5068237Z scalar_t=float 2025-08-14T22:39:17.5068311Z ] 2025-08-14T22:39:17.5068856Z 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-14T22:39:17.5068936Z with 2025-08-14T22:39:17.5069005Z [ 2025-08-14T22:39:17.5069083Z scalar_t=float 2025-08-14T22:39:17.5069149Z ] 2025-08-14T22:39:17.5076075Z 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-14T22:39:17.5076227Z with 2025-08-14T22:39:17.5076297Z [ 2025-08-14T22:39:17.5076399Z scalar_t=float 2025-08-14T22:39:17.5076471Z ] 2025-08-14T22:39:17.5077071Z 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-14T22:39:17.5077161Z with 2025-08-14T22:39:17.5077237Z [ 2025-08-14T22:39:17.5077315Z scalar_t=float 2025-08-14T22:39:17.5077383Z ] 2025-08-14T22:39:17.5077952Z 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-14T22:39:17.5078024Z with 2025-08-14T22:39:17.5078090Z [ 2025-08-14T22:39:17.5078182Z scalar_t=float 2025-08-14T22:39:17.5078249Z ] 2025-08-14T22:39:17.5078801Z 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-14T22:39:17.5078868Z with 2025-08-14T22:39:17.5078954Z [ 2025-08-14T22:39:17.5079038Z scalar_t=float 2025-08-14T22:39:17.5079104Z ] 2025-08-14T22:39:17.5079668Z 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-14T22:39:17.5079739Z with 2025-08-14T22:39:17.5079804Z [ 2025-08-14T22:39:17.5079989Z scalar_t=float 2025-08-14T22:39:17.5080068Z ] 2025-08-14T22:39:17.5080623Z 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-14T22:39:17.5080699Z with 2025-08-14T22:39:17.5080779Z [ 2025-08-14T22:39:17.5080863Z scalar_t=float 2025-08-14T22:39:17.5080933Z ] 2025-08-14T22:39:17.5081532Z 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-14T22:39:17.5081643Z with 2025-08-14T22:39:17.5081709Z [ 2025-08-14T22:39:17.5081785Z scalar_t=float 2025-08-14T22:39:17.5081862Z ] 2025-08-14T22:39:17.5082407Z 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-14T22:39:17.5082480Z with 2025-08-14T22:39:17.5082552Z [ 2025-08-14T22:39:17.5082632Z scalar_t=float 2025-08-14T22:39:17.5082698Z ] 2025-08-14T22:39:17.5083589Z 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-14T22:39:17.5083675Z with 2025-08-14T22:39:17.5083752Z [ 2025-08-14T22:39:17.5083836Z scalar_t=float 2025-08-14T22:39:17.5083918Z ] 2025-08-14T22:39:17.5084473Z 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-14T22:39:17.5084543Z with 2025-08-14T22:39:17.5084616Z [ 2025-08-14T22:39:17.5084695Z scalar_t=float 2025-08-14T22:39:17.5084762Z ] 2025-08-14T22:39:17.5085304Z 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-14T22:39:17.5085380Z with 2025-08-14T22:39:17.5085449Z [ 2025-08-14T22:39:17.5085530Z scalar_t=float 2025-08-14T22:39:17.5085605Z ] 2025-08-14T22:39:17.5086156Z 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-14T22:39:17.5086225Z with 2025-08-14T22:39:17.5086304Z [ 2025-08-14T22:39:17.5086383Z scalar_t=float 2025-08-14T22:39:17.5086447Z ] 2025-08-14T22:39:17.5086989Z 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-14T22:39:17.5087069Z with 2025-08-14T22:39:17.5087133Z [ 2025-08-14T22:39:17.5087211Z scalar_t=float 2025-08-14T22:39:17.5087286Z ] 2025-08-14T22:39:17.5087827Z 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-14T22:39:17.5087895Z with 2025-08-14T22:39:17.5087959Z [ 2025-08-14T22:39:17.5088041Z scalar_t=float 2025-08-14T22:39:17.5088108Z ] 2025-08-14T22:39:17.5088653Z 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-14T22:39:17.5088733Z with 2025-08-14T22:39:17.5088812Z [ 2025-08-14T22:39:17.5088893Z scalar_t=float 2025-08-14T22:39:17.5088966Z ] 2025-08-14T22:39:17.5089519Z 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-14T22:39:17.5089628Z with 2025-08-14T22:39:17.5089691Z [ 2025-08-14T22:39:17.5089769Z scalar_t=float 2025-08-14T22:39:17.5089852Z ] 2025-08-14T22:39:17.5090400Z 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-14T22:39:17.5090468Z with 2025-08-14T22:39:17.5090546Z [ 2025-08-14T22:39:17.5090622Z scalar_t=float 2025-08-14T22:39:17.5090696Z ] 2025-08-14T22:39:17.5091338Z 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-14T22:39:17.5091407Z with 2025-08-14T22:39:17.5091476Z [ 2025-08-14T22:39:17.5091555Z scalar_t=float 2025-08-14T22:39:17.5091632Z ] 2025-08-14T22:39:17.5092181Z 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-14T22:39:17.5092249Z with 2025-08-14T22:39:17.5092321Z [ 2025-08-14T22:39:17.5092402Z scalar_t=float 2025-08-14T22:39:17.5092507Z ] 2025-08-14T22:39:17.5093065Z 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-14T22:39:17.5093130Z with 2025-08-14T22:39:17.5093198Z [ 2025-08-14T22:39:17.5093274Z scalar_t=float 2025-08-14T22:39:17.5093349Z ] 2025-08-14T22:39:17.5093901Z 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-14T22:39:17.5093980Z with 2025-08-14T22:39:17.5094053Z [ 2025-08-14T22:39:17.5094133Z scalar_t=float 2025-08-14T22:39:17.5094204Z ] 2025-08-14T22:39:17.5094746Z 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-14T22:39:17.5094822Z with 2025-08-14T22:39:17.5094888Z [ 2025-08-14T22:39:17.5094964Z scalar_t=float 2025-08-14T22:39:17.5095034Z ] 2025-08-14T22:39:17.5095592Z 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-14T22:39:17.5095667Z with 2025-08-14T22:39:17.5095738Z [ 2025-08-14T22:39:17.5095819Z scalar_t=float 2025-08-14T22:39:17.5095890Z ] 2025-08-14T22:39:17.5096433Z 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-14T22:39:17.5096511Z with 2025-08-14T22:39:17.5096576Z [ 2025-08-14T22:39:17.5096651Z scalar_t=float 2025-08-14T22:39:17.5096728Z ] 2025-08-14T22:39:17.5097275Z 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-14T22:39:17.5097341Z with 2025-08-14T22:39:17.5097412Z [ 2025-08-14T22:39:17.5097496Z scalar_t=float 2025-08-14T22:39:17.5097563Z ] 2025-08-14T22:39:17.5098113Z 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-14T22:39:17.5098191Z with 2025-08-14T22:39:17.5098259Z [ 2025-08-14T22:39:17.5098335Z scalar_t=float 2025-08-14T22:39:17.5098413Z ] 2025-08-14T22:39:17.5098994Z 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-14T22:39:17.5099061Z with 2025-08-14T22:39:17.5099125Z [ 2025-08-14T22:39:17.5099213Z scalar_t=float 2025-08-14T22:39:17.5099279Z ] 2025-08-14T22:39:17.5099824Z 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-14T22:39:17.5099902Z with 2025-08-14T22:39:17.5100045Z [ 2025-08-14T22:39:17.5100119Z scalar_t=float 2025-08-14T22:39:17.5100190Z ] 2025-08-14T22:39:17.5100744Z 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-14T22:39:17.5100813Z with 2025-08-14T22:39:17.5100883Z [ 2025-08-14T22:39:17.5100973Z scalar_t=float 2025-08-14T22:39:17.5101041Z ] 2025-08-14T22:39:17.5101585Z 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-14T22:39:17.5101695Z with 2025-08-14T22:39:17.5101763Z [ 2025-08-14T22:39:17.5101846Z scalar_t=float 2025-08-14T22:39:17.5101920Z ] 2025-08-14T22:39:17.5102477Z 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-14T22:39:17.5102548Z with 2025-08-14T22:39:17.5102614Z [ 2025-08-14T22:39:17.5102701Z scalar_t=float 2025-08-14T22:39:17.5102769Z ] 2025-08-14T22:39:17.5103321Z 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-14T22:39:17.5103407Z with 2025-08-14T22:39:17.5103475Z [ 2025-08-14T22:39:17.5103561Z scalar_t=float 2025-08-14T22:39:17.5103626Z ] 2025-08-14T22:39:17.5104183Z 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-14T22:39:17.5104256Z with 2025-08-14T22:39:17.5104326Z [ 2025-08-14T22:39:17.5104419Z scalar_t=float 2025-08-14T22:39:17.5104494Z ] 2025-08-14T22:39:17.5105146Z 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-14T22:39:17.5105220Z with 2025-08-14T22:39:17.5105304Z [ 2025-08-14T22:39:17.5105383Z scalar_t=float 2025-08-14T22:39:17.5105456Z ] 2025-08-14T22:39:17.5106029Z 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-14T22:39:17.5106101Z with 2025-08-14T22:39:17.5106171Z [ 2025-08-14T22:39:17.5106251Z scalar_t=float 2025-08-14T22:39:17.5106336Z ] 2025-08-14T22:39:17.5106885Z 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-14T22:39:17.5106954Z with 2025-08-14T22:39:17.5107036Z [ 2025-08-14T22:39:17.5107113Z scalar_t=float 2025-08-14T22:39:17.5107179Z ] 2025-08-14T22:39:17.5107746Z 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-14T22:39:17.5107817Z with 2025-08-14T22:39:17.5107931Z [ 2025-08-14T22:39:17.5108009Z scalar_t=float 2025-08-14T22:39:17.5108087Z ] 2025-08-14T22:39:17.5108641Z 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-14T22:39:17.5108716Z with 2025-08-14T22:39:17.5108796Z [ 2025-08-14T22:39:17.5108873Z scalar_t=float 2025-08-14T22:39:17.5108945Z ] 2025-08-14T22:39:17.5109533Z 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-14T22:39:17.5109646Z with 2025-08-14T22:39:17.5109709Z [ 2025-08-14T22:39:17.5109787Z scalar_t=float 2025-08-14T22:39:17.5109866Z ] 2025-08-14T22:39:17.5110418Z 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-14T22:39:17.5110489Z with 2025-08-14T22:39:17.5110566Z [ 2025-08-14T22:39:17.5110640Z scalar_t=float 2025-08-14T22:39:17.5110705Z ] 2025-08-14T22:39:17.5111288Z 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-14T22:39:17.5111371Z with 2025-08-14T22:39:17.5111444Z [ 2025-08-14T22:39:17.5111527Z scalar_t=float 2025-08-14T22:39:17.5111601Z ] 2025-08-14T22:39:17.5112150Z 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-14T22:39:17.5112226Z with 2025-08-14T22:39:17.5112302Z [ 2025-08-14T22:39:17.5112379Z scalar_t=float 2025-08-14T22:39:17.5112450Z ] 2025-08-14T22:39:17.5112999Z 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-14T22:39:17.5113074Z with 2025-08-14T22:39:17.5113144Z [ 2025-08-14T22:39:17.5113224Z scalar_t=float 2025-08-14T22:39:17.5113298Z ] 2025-08-14T22:39:17.5113848Z 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-14T22:39:17.5113917Z with 2025-08-14T22:39:17.5113984Z [ 2025-08-14T22:39:17.5114069Z scalar_t=float 2025-08-14T22:39:17.5114135Z ] 2025-08-14T22:39:17.5114678Z 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-14T22:39:17.5114762Z with 2025-08-14T22:39:17.5114829Z [ 2025-08-14T22:39:17.5114906Z scalar_t=float 2025-08-14T22:39:17.5114973Z ] 2025-08-14T22:39:17.5115530Z 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-14T22:39:17.5115599Z with 2025-08-14T22:39:17.5115667Z [ 2025-08-14T22:39:17.5115753Z scalar_t=float 2025-08-14T22:39:17.5115817Z ] 2025-08-14T22:39:17.5116365Z 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-14T22:39:17.5116446Z with 2025-08-14T22:39:17.5116511Z [ 2025-08-14T22:39:17.5116593Z scalar_t=float 2025-08-14T22:39:17.5116662Z ] 2025-08-14T22:39:17.5117212Z 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-14T22:39:17.5117326Z with 2025-08-14T22:39:17.5117390Z [ 2025-08-14T22:39:17.5117478Z scalar_t=float 2025-08-14T22:39:17.5117543Z ] 2025-08-14T22:39:17.5118097Z 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-14T22:39:17.5118178Z with 2025-08-14T22:39:17.5118243Z [ 2025-08-14T22:39:17.5118319Z scalar_t=float 2025-08-14T22:39:17.5118454Z ] 2025-08-14T22:39:17.5119007Z 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-14T22:39:17.5119084Z with 2025-08-14T22:39:17.5119155Z [ 2025-08-14T22:39:17.5119245Z scalar_t=float 2025-08-14T22:39:17.5119314Z ] 2025-08-14T22:39:17.5119866Z 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-14T22:39:17.5119947Z with 2025-08-14T22:39:17.5120014Z [ 2025-08-14T22:39:17.5120123Z scalar_t=float 2025-08-14T22:39:17.5120188Z ] 2025-08-14T22:39:17.5120740Z 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-14T22:39:17.5120809Z with 2025-08-14T22:39:17.5120875Z [ 2025-08-14T22:39:17.5120956Z scalar_t=float 2025-08-14T22:39:17.5121018Z ] 2025-08-14T22:39:17.5121558Z 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-14T22:39:17.5121623Z with 2025-08-14T22:39:17.5121702Z [ 2025-08-14T22:39:17.5121779Z scalar_t=float 2025-08-14T22:39:17.5121842Z ] 2025-08-14T22:39:17.5122394Z 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-14T22:39:17.5122460Z with 2025-08-14T22:39:17.5122524Z [ 2025-08-14T22:39:17.5122610Z scalar_t=float 2025-08-14T22:39:17.5122673Z ] 2025-08-14T22:39:17.5123221Z 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-14T22:39:17.5123292Z with 2025-08-14T22:39:17.5123366Z [ 2025-08-14T22:39:17.5123439Z scalar_t=float 2025-08-14T22:39:17.5123501Z ] 2025-08-14T22:39:17.5124058Z 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-14T22:39:17.5124130Z with 2025-08-14T22:39:17.5124193Z [ 2025-08-14T22:39:17.5124267Z scalar_t=float 2025-08-14T22:39:17.5124351Z ] 2025-08-14T22:39:17.5124899Z 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-14T22:39:17.5124965Z with 2025-08-14T22:39:17.5125036Z [ 2025-08-14T22:39:17.5125110Z scalar_t=float 2025-08-14T22:39:17.5125177Z ] 2025-08-14T22:39:17.5125728Z 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-14T22:39:17.5125794Z with 2025-08-14T22:39:17.5125859Z [ 2025-08-14T22:39:17.5125934Z scalar_t=float 2025-08-14T22:39:17.5126046Z ] 2025-08-14T22:39:17.5126589Z 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-14T22:39:17.5126655Z with 2025-08-14T22:39:17.5126728Z [ 2025-08-14T22:39:17.5126806Z scalar_t=float 2025-08-14T22:39:17.5126879Z ] 2025-08-14T22:39:17.5127419Z 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-14T22:39:17.5127566Z with 2025-08-14T22:39:17.5127632Z [ 2025-08-14T22:39:17.5127707Z scalar_t=float 2025-08-14T22:39:17.5127778Z ] 2025-08-14T22:39:17.5128321Z 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-14T22:39:17.5128388Z with 2025-08-14T22:39:17.5128467Z [ 2025-08-14T22:39:17.5128542Z scalar_t=float 2025-08-14T22:39:17.5128606Z ] 2025-08-14T22:39:17.5129184Z 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-14T22:39:17.5129261Z with 2025-08-14T22:39:17.5129326Z [ 2025-08-14T22:39:17.5129400Z scalar_t=float 2025-08-14T22:39:17.5129469Z ] 2025-08-14T22:39:17.5130013Z 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-14T22:39:17.5130085Z with 2025-08-14T22:39:17.5130149Z [ 2025-08-14T22:39:17.5130235Z scalar_t=float 2025-08-14T22:39:17.5130300Z ] 2025-08-14T22:39:17.5130844Z 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-14T22:39:17.5130919Z with 2025-08-14T22:39:17.5130984Z [ 2025-08-14T22:39:17.5131059Z scalar_t=float 2025-08-14T22:39:17.5131136Z ] 2025-08-14T22:39:17.5131683Z 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-14T22:39:17.5131749Z with 2025-08-14T22:39:17.5131816Z [ 2025-08-14T22:39:17.5131908Z scalar_t=float 2025-08-14T22:39:17.5131975Z ] 2025-08-14T22:39:17.5132526Z 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-14T22:39:17.5132602Z with 2025-08-14T22:39:17.5132666Z [ 2025-08-14T22:39:17.5132745Z scalar_t=float 2025-08-14T22:39:17.5132815Z ] 2025-08-14T22:39:17.5133366Z 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-14T22:39:17.5133436Z with 2025-08-14T22:39:17.5133504Z [ 2025-08-14T22:39:17.5133592Z scalar_t=float 2025-08-14T22:39:17.5133667Z ] 2025-08-14T22:39:17.5134217Z 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-14T22:39:17.5134297Z with 2025-08-14T22:39:17.5134362Z [ 2025-08-14T22:39:17.5134441Z scalar_t=float 2025-08-14T22:39:17.5134506Z ] 2025-08-14T22:39:17.5135067Z 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-14T22:39:17.5135210Z with 2025-08-14T22:39:17.5135275Z [ 2025-08-14T22:39:17.5135361Z scalar_t=float 2025-08-14T22:39:17.5135435Z ] 2025-08-14T22:39:17.5135987Z 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-14T22:39:17.5136070Z with 2025-08-14T22:39:17.5136136Z [ 2025-08-14T22:39:17.5136218Z scalar_t=float 2025-08-14T22:39:17.5136283Z ] 2025-08-14T22:39:17.5137274Z 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-14T22:39:17.5137386Z with 2025-08-14T22:39:17.5137455Z [ 2025-08-14T22:39:17.5137550Z scalar_t=float 2025-08-14T22:39:17.5137617Z ] 2025-08-14T22:39:17.5138167Z 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-14T22:39:17.5138237Z with 2025-08-14T22:39:17.5138317Z [ 2025-08-14T22:39:17.5138398Z scalar_t=float 2025-08-14T22:39:17.5138467Z ] 2025-08-14T22:39:17.5139063Z 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-14T22:39:17.5139131Z with 2025-08-14T22:39:17.5139198Z [ 2025-08-14T22:39:17.5139283Z scalar_t=float 2025-08-14T22:39:17.5139354Z ] 2025-08-14T22:39:17.5139901Z 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-14T22:39:17.5139969Z with 2025-08-14T22:39:17.5140045Z [ 2025-08-14T22:39:17.5140123Z scalar_t=float 2025-08-14T22:39:17.5140189Z ] 2025-08-14T22:39:17.5140756Z 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-14T22:39:17.5140828Z with 2025-08-14T22:39:17.5140894Z [ 2025-08-14T22:39:17.5140974Z scalar_t=float 2025-08-14T22:39:17.5141054Z ] 2025-08-14T22:39:17.5141607Z 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-14T22:39:17.5141677Z with 2025-08-14T22:39:17.5141752Z [ 2025-08-14T22:39:17.5141829Z scalar_t=float 2025-08-14T22:39:17.5141892Z ] 2025-08-14T22:39:17.5142456Z 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-14T22:39:17.5142528Z with 2025-08-14T22:39:17.5142595Z [ 2025-08-14T22:39:17.5142672Z scalar_t=float 2025-08-14T22:39:17.5142757Z ] 2025-08-14T22:39:17.5143306Z 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-14T22:39:17.5143376Z with 2025-08-14T22:39:17.5143463Z [ 2025-08-14T22:39:17.5143538Z scalar_t=float 2025-08-14T22:39:17.5143601Z ] 2025-08-14T22:39:17.5144156Z 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-14T22:39:17.5144223Z with 2025-08-14T22:39:17.5144291Z [ 2025-08-14T22:39:17.5144373Z scalar_t=float 2025-08-14T22:39:17.5144437Z ] 2025-08-14T22:39:17.5145062Z 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-14T22:39:17.5145184Z with 2025-08-14T22:39:17.5145264Z [ 2025-08-14T22:39:17.5145344Z scalar_t=float 2025-08-14T22:39:17.5145413Z ] 2025-08-14T22:39:17.5145969Z 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-14T22:39:17.5146037Z with 2025-08-14T22:39:17.5146101Z [ 2025-08-14T22:39:17.5146557Z scalar_t=float 2025-08-14T22:39:17.5146663Z ] 2025-08-14T22:39:17.5147215Z 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-14T22:39:17.5147281Z with 2025-08-14T22:39:17.5147356Z [ 2025-08-14T22:39:17.5147430Z scalar_t=float 2025-08-14T22:39:17.5147497Z ] 2025-08-14T22:39:17.5148058Z 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-14T22:39:17.5148130Z with 2025-08-14T22:39:17.5148233Z [ 2025-08-14T22:39:17.5148314Z scalar_t=float 2025-08-14T22:39:17.5148386Z ] 2025-08-14T22:39:17.5148930Z 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-14T22:39:17.5148997Z with 2025-08-14T22:39:17.5149067Z [ 2025-08-14T22:39:17.5149142Z scalar_t=float 2025-08-14T22:39:17.5149204Z ] 2025-08-14T22:39:17.5149755Z 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-14T22:39:17.5149827Z with 2025-08-14T22:39:17.5149892Z [ 2025-08-14T22:39:17.5149968Z scalar_t=float 2025-08-14T22:39:17.5150038Z ] 2025-08-14T22:39:17.5150588Z 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-14T22:39:17.5150660Z with 2025-08-14T22:39:17.5150728Z [ 2025-08-14T22:39:17.5150808Z scalar_t=float 2025-08-14T22:39:17.5150871Z ] 2025-08-14T22:39:17.5151420Z 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-14T22:39:17.5151502Z with 2025-08-14T22:39:17.5151566Z [ 2025-08-14T22:39:17.5151640Z scalar_t=float 2025-08-14T22:39:17.5151710Z ] 2025-08-14T22:39:17.5152250Z 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-14T22:39:17.5152317Z with 2025-08-14T22:39:17.5152387Z [ 2025-08-14T22:39:17.5152463Z scalar_t=float 2025-08-14T22:39:17.5152530Z ] 2025-08-14T22:39:17.5153074Z 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-14T22:39:17.5153153Z with 2025-08-14T22:39:17.5153217Z [ 2025-08-14T22:39:17.5153292Z scalar_t=float 2025-08-14T22:39:17.5153368Z ] 2025-08-14T22:39:17.5153913Z 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-14T22:39:17.5153980Z with 2025-08-14T22:39:17.5154046Z [ 2025-08-14T22:39:17.5154127Z scalar_t=float 2025-08-14T22:39:17.5154234Z ] 2025-08-14T22:39:17.5154776Z 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-14T22:39:17.5154857Z with 2025-08-14T22:39:17.5154923Z [ 2025-08-14T22:39:17.5154998Z scalar_t=float 2025-08-14T22:39:17.5155078Z ] 2025-08-14T22:39:17.5155942Z 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-14T22:39:17.5156051Z with 2025-08-14T22:39:17.5156115Z [ 2025-08-14T22:39:17.5156204Z scalar_t=float 2025-08-14T22:39:17.5156271Z ] 2025-08-14T22:39:17.5156817Z 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-14T22:39:17.5156904Z with 2025-08-14T22:39:17.5156973Z [ 2025-08-14T22:39:17.5157050Z scalar_t=float 2025-08-14T22:39:17.5157114Z ] 2025-08-14T22:39:17.5157711Z 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-14T22:39:17.5157780Z with 2025-08-14T22:39:17.5157850Z [ 2025-08-14T22:39:17.5157932Z scalar_t=float 2025-08-14T22:39:17.5157996Z ] 2025-08-14T22:39:17.5158546Z 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-14T22:39:17.5158622Z with 2025-08-14T22:39:17.5158694Z [ 2025-08-14T22:39:17.5158771Z scalar_t=float 2025-08-14T22:39:17.5158834Z ] 2025-08-14T22:39:17.5159393Z 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-14T22:39:17.5159469Z with 2025-08-14T22:39:17.5159534Z [ 2025-08-14T22:39:17.5159614Z scalar_t=float 2025-08-14T22:39:17.5159686Z ] 2025-08-14T22:39:17.5160230Z 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-14T22:39:17.5160304Z with 2025-08-14T22:39:17.5160366Z [ 2025-08-14T22:39:17.5160443Z scalar_t=float 2025-08-14T22:39:17.5160513Z ] 2025-08-14T22:39:17.5161068Z 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-14T22:39:17.5161135Z with 2025-08-14T22:39:17.5161203Z [ 2025-08-14T22:39:17.5161284Z scalar_t=float 2025-08-14T22:39:17.5161354Z ] 2025-08-14T22:39:17.5161900Z 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-14T22:39:17.5161969Z with 2025-08-14T22:39:17.5162042Z [ 2025-08-14T22:39:17.5162123Z scalar_t=float 2025-08-14T22:39:17.5162189Z ] 2025-08-14T22:39:17.5162744Z 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-14T22:39:17.5162814Z with 2025-08-14T22:39:17.5162878Z [ 2025-08-14T22:39:17.5162964Z scalar_t=float 2025-08-14T22:39:17.5163027Z ] 2025-08-14T22:39:17.5163569Z 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-14T22:39:17.5163671Z with 2025-08-14T22:39:17.5163743Z [ 2025-08-14T22:39:17.5163819Z scalar_t=float 2025-08-14T22:39:17.5163883Z ] 2025-08-14T22:39:17.5164434Z 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-14T22:39:17.5164498Z with 2025-08-14T22:39:17.5164563Z [ 2025-08-14T22:39:17.5164642Z scalar_t=float 2025-08-14T22:39:17.5164716Z ] 2025-08-14T22:39:17.5165566Z 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-14T22:39:17.5165677Z with 2025-08-14T22:39:17.5165750Z [ 2025-08-14T22:39:17.5165829Z scalar_t=float 2025-08-14T22:39:17.5165894Z ] 2025-08-14T22:39:17.5166452Z 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-14T22:39:17.5166522Z with 2025-08-14T22:39:17.5166588Z [ 2025-08-14T22:39:17.5166663Z scalar_t=float 2025-08-14T22:39:17.5166737Z ] 2025-08-14T22:39:17.5167321Z 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-14T22:39:17.5167389Z with 2025-08-14T22:39:17.5167466Z [ 2025-08-14T22:39:17.5167545Z scalar_t=float 2025-08-14T22:39:17.5167609Z ] 2025-08-14T22:39:17.5168154Z 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-14T22:39:17.5168231Z with 2025-08-14T22:39:17.5168305Z [ 2025-08-14T22:39:17.5168381Z scalar_t=float 2025-08-14T22:39:17.5168458Z ] 2025-08-14T22:39:17.5169008Z 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-14T22:39:17.5169078Z with 2025-08-14T22:39:17.5169152Z [ 2025-08-14T22:39:17.5169227Z scalar_t=float 2025-08-14T22:39:17.5169300Z ] 2025-08-14T22:39:17.5169846Z 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-14T22:39:17.5169924Z with 2025-08-14T22:39:17.5169993Z [ 2025-08-14T22:39:17.5170068Z scalar_t=float 2025-08-14T22:39:17.5170143Z ] 2025-08-14T22:39:17.5170693Z 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-14T22:39:17.5170762Z with 2025-08-14T22:39:17.5170824Z [ 2025-08-14T22:39:17.5170906Z scalar_t=float 2025-08-14T22:39:17.5170970Z ] 2025-08-14T22:39:17.5171518Z 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-14T22:39:17.5171595Z with 2025-08-14T22:39:17.5171662Z [ 2025-08-14T22:39:17.5171742Z scalar_t=float 2025-08-14T22:39:17.5171817Z ] 2025-08-14T22:39:17.5172362Z 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-14T22:39:17.5172437Z with 2025-08-14T22:39:17.5172505Z [ 2025-08-14T22:39:17.5172590Z scalar_t=float 2025-08-14T22:39:17.5172653Z ] 2025-08-14T22:39:17.5173194Z 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-14T22:39:17.5173309Z with 2025-08-14T22:39:17.5173375Z [ 2025-08-14T22:39:17.5173450Z scalar_t=float 2025-08-14T22:39:17.5173519Z ] 2025-08-14T22:39:17.5174068Z 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-14T22:39:17.5174139Z with 2025-08-14T22:39:17.5174204Z [ 2025-08-14T22:39:17.5174642Z scalar_t=float 2025-08-14T22:39:17.5174712Z ] 2025-08-14T22:39:17.5175266Z 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-14T22:39:17.5175365Z with 2025-08-14T22:39:17.5175435Z [ 2025-08-14T22:39:17.5175517Z scalar_t=float 2025-08-14T22:39:17.5175584Z ] 2025-08-14T22:39:17.5176143Z 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-14T22:39:17.5176215Z with 2025-08-14T22:39:17.5176318Z [ 2025-08-14T22:39:17.5176403Z scalar_t=float 2025-08-14T22:39:17.5176466Z ] 2025-08-14T22:39:17.5177014Z 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-14T22:39:17.5177092Z with 2025-08-14T22:39:17.5177160Z [ 2025-08-14T22:39:17.5177237Z scalar_t=float 2025-08-14T22:39:17.5177303Z ] 2025-08-14T22:39:17.5177856Z 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-14T22:39:17.5178386Z 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-14T22:39:17.5179028Z 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-14T22:39:17.5179113Z with 2025-08-14T22:39:17.5179179Z [ 2025-08-14T22:39:17.5179248Z T=float 2025-08-14T22:39:17.5179328Z ] 2025-08-14T22:39:17.5180181Z 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-14T22:39:17.5180734Z 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-14T22:39:17.5181295Z 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-14T22:39:17.5181835Z 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-14T22:39:17.5182372Z 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-14T22:39:17.5182916Z 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-14T22:39:17.5183454Z 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-14T22:39:17.5184041Z 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-14T22:39:17.5184588Z 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-14T22:39:17.5185564Z 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-14T22:39:17.5186146Z 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-14T22:39:17.5186702Z 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-14T22:39:17.5187240Z 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-14T22:39:17.5187817Z 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-14T22:39:17.5188356Z 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-14T22:39:17.5188895Z 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-14T22:39:17.5189439Z 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-14T22:39:17.5189977Z 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-14T22:39:17.5190517Z 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-14T22:39:17.5191067Z 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-14T22:39:17.5191603Z 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-14T22:39:17.5192139Z 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-14T22:39:17.5192690Z 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-14T22:39:17.5193228Z 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-14T22:39:17.5195461Z 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-14T22:39:17.5196046Z 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-14T22:39:17.5196585Z 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-14T22:39:17.5197190Z 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-14T22:39:17.5197737Z 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-14T22:39:17.5198653Z 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-14T22:39:17.5199252Z 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-14T22:39:17.5199776Z 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-14T22:39:17.5200612Z 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-14T22:39:17.5201208Z 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-14T22:39:17.5201751Z 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-14T22:39:17.5202288Z 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-14T22:39:17.5202835Z 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-14T22:39:17.5203375Z 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-14T22:39:17.5203915Z 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-14T22:39:17.5204461Z 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-14T22:39:17.5205000Z 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-14T22:39:17.5205537Z 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-14T22:39:17.5206080Z 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-14T22:39:17.5206621Z 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-14T22:39:17.5207167Z 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-14T22:39:17.5207703Z 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-14T22:39:17.5208238Z 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-14T22:39:17.5208832Z 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-14T22:39:17.5209369Z 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-14T22:39:17.5210218Z 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-14T22:39:17.5210814Z 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-14T22:39:17.5211354Z 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-14T22:39:17.5211894Z 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-14T22:39:17.5212477Z 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-14T22:39:17.5213017Z 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-14T22:39:17.5213557Z 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-14T22:39:17.5214102Z 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-14T22:39:18.4344755Z 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-14T22:39:18.4345525Z with 2025-08-14T22:39:18.4345771Z [ 2025-08-14T22:39:18.4345974Z scalar_t=float 2025-08-14T22:39:18.4346240Z ] 2025-08-14T22:39:18.4346866Z 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-14T22:39:18.4348264Z 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-14T22:39:18.4349210Z with 2025-08-14T22:39:18.4349383Z [ 2025-08-14T22:39:18.4349565Z scalar_t=float 2025-08-14T22:39:18.4349776Z ] 2025-08-14T22:39:18.4350625Z 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-14T22:39:18.4351584Z with 2025-08-14T22:39:18.4351754Z [ 2025-08-14T22:39:18.4351973Z scalar_t=float 2025-08-14T22:39:18.4352178Z ] 2025-08-14T22:39:18.4352814Z 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-14T22:39:18.4353508Z with 2025-08-14T22:39:18.4353685Z [ 2025-08-14T22:39:18.4353850Z scalar_t=float 2025-08-14T22:39:18.4354062Z ] 2025-08-14T22:39:18.4354685Z 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-14T22:39:18.4355551Z with 2025-08-14T22:39:18.4355730Z [ 2025-08-14T22:39:18.4355903Z scalar_t=float 2025-08-14T22:39:18.4356131Z ] 2025-08-14T22:39:19.0022051Z 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-14T22:39:19.0022935Z with 2025-08-14T22:39:19.0023152Z [ 2025-08-14T22:39:19.0023342Z scalar_t=float 2025-08-14T22:39:19.0023615Z ] 2025-08-14T22:39:19.0025088Z 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-14T22:39:19.0026766Z 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-14T22:39:19.0027826Z with 2025-08-14T22:39:19.0028006Z [ 2025-08-14T22:39:19.0028244Z scalar_t=float 2025-08-14T22:39:19.0028453Z ] 2025-08-14T22:39:19.0029359Z 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-14T22:39:19.0030260Z with 2025-08-14T22:39:19.0030443Z [ 2025-08-14T22:39:19.0030617Z scalar_t=float 2025-08-14T22:39:19.0030850Z ] 2025-08-14T22:39:19.0031509Z 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-14T22:39:19.0032237Z with 2025-08-14T22:39:19.0032409Z [ 2025-08-14T22:39:19.0032573Z scalar_t=float 2025-08-14T22:39:19.0032810Z ] 2025-08-14T22:39:19.0033457Z 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-14T22:39:19.0034321Z with 2025-08-14T22:39:19.0034499Z [ 2025-08-14T22:39:19.0034704Z scalar_t=float 2025-08-14T22:39:19.0034923Z ] 2025-08-14T22:39:19.0035655Z 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-14T22:39:19.0036386Z with 2025-08-14T22:39:19.0036547Z [ 2025-08-14T22:39:19.0036720Z scalar_t=float 2025-08-14T22:39:19.0036930Z ] 2025-08-14T22:39:19.0037586Z 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-14T22:39:19.0038311Z with 2025-08-14T22:39:19.0038482Z [ 2025-08-14T22:39:19.0038655Z scalar_t=float 2025-08-14T22:39:19.0038862Z ] 2025-08-14T22:39:19.0039518Z 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-14T22:39:19.0040233Z with 2025-08-14T22:39:19.0040404Z [ 2025-08-14T22:39:19.0040570Z scalar_t=float 2025-08-14T22:39:19.0040830Z ] 2025-08-14T22:39:19.0041573Z 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-14T22:39:19.0042378Z with 2025-08-14T22:39:19.0042559Z [ 2025-08-14T22:39:19.0042768Z scalar_t=float 2025-08-14T22:39:19.0042980Z ] 2025-08-14T22:39:19.0043718Z 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-14T22:39:19.0044586Z with 2025-08-14T22:39:19.0044762Z [ 2025-08-14T22:39:19.0044938Z scalar_t=float 2025-08-14T22:39:19.0045152Z ] 2025-08-14T22:39:19.0045800Z 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-14T22:39:19.0046527Z with 2025-08-14T22:39:19.0046692Z [ 2025-08-14T22:39:19.0046875Z scalar_t=float 2025-08-14T22:39:19.0047650Z ] 2025-08-14T22:39:19.0048621Z 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-14T22:39:19.0049410Z with 2025-08-14T22:39:19.0049623Z [ 2025-08-14T22:39:19.0049804Z scalar_t=float 2025-08-14T22:39:19.0050059Z ] 2025-08-14T22:39:19.0050719Z 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-14T22:39:19.0051439Z with 2025-08-14T22:39:19.0051610Z [ 2025-08-14T22:39:19.0051840Z scalar_t=float 2025-08-14T22:39:19.0052056Z ] 2025-08-14T22:39:19.0052706Z 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-14T22:39:19.0053427Z with 2025-08-14T22:39:19.0053612Z [ 2025-08-14T22:39:19.0053781Z scalar_t=float 2025-08-14T22:39:19.0053995Z ] 2025-08-14T22:39:19.0054642Z 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-14T22:39:19.0055416Z with 2025-08-14T22:39:19.0055627Z [ 2025-08-14T22:39:19.0055800Z scalar_t=float 2025-08-14T22:39:19.0056057Z ] 2025-08-14T22:39:19.0056708Z 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-14T22:39:19.0057425Z with 2025-08-14T22:39:19.0057588Z [ 2025-08-14T22:39:19.0057765Z scalar_t=float 2025-08-14T22:39:19.0057978Z ] 2025-08-14T22:39:19.0058639Z 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-14T22:39:19.0059354Z with 2025-08-14T22:39:19.0059536Z [ 2025-08-14T22:39:19.0059733Z scalar_t=float 2025-08-14T22:39:19.0059946Z ] 2025-08-14T22:39:19.0060614Z 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-14T22:39:19.0061385Z with 2025-08-14T22:39:19.0061580Z [ 2025-08-14T22:39:19.0061810Z scalar_t=float 2025-08-14T22:39:19.0062095Z ] 2025-08-14T22:39:20.5771885Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64\link.exe" /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:C:\actions-runner\_work\pytorch\pytorch\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.38.33130\lib\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64" 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-14T22:39:20.8329691Z 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-14T22:39:20.8471997Z Generating code 2025-08-14T22:39:22.7138530Z Finished generating code 2025-08-14T22:39:22.8633368Z running install_lib 2025-08-14T22:39:22.8813114Z 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-14T22:39:22.8825904Z 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-14T22:39:22.8836366Z 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-14T22:39:22.8862866Z running install_egg_info 2025-08-14T22:39:22.9138114Z running egg_info 2025-08-14T22:39:22.9246970Z writing torch_test_cpp_extension.egg-info\PKG-INFO 2025-08-14T22:39:22.9268762Z writing dependency_links to torch_test_cpp_extension.egg-info\dependency_links.txt 2025-08-14T22:39:22.9269404Z writing entry points to torch_test_cpp_extension.egg-info\entry_points.txt 2025-08-14T22:39:22.9269975Z writing top-level names to torch_test_cpp_extension.egg-info\top_level.txt 2025-08-14T22:39:22.9386985Z reading manifest file 'torch_test_cpp_extension.egg-info\SOURCES.txt' 2025-08-14T22:39:22.9409017Z writing manifest file 'torch_test_cpp_extension.egg-info\SOURCES.txt' 2025-08-14T22:39:22.9411816Z removing './install\Jenkins\Miniconda3\Lib\site-packages\torch_test_cpp_extension-0.0.0-py3.9.egg-info' (and everything under it) 2025-08-14T22:39:22.9420146Z 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-14T22:39:22.9461380Z running install_scripts 2025-08-14T22:39:23.7424406Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:39:23.7431853Z 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-14 22:39:23.743011] 2025-08-14T22:39:29.0044380Z 2025-08-14T22:39:29.0045502Z 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_09f7cc9bab7cf53c_.log 2025-08-14T22:39:29.0068556Z 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-14T22:39:29.0076511Z 2025-08-14T22:39:29.0078622Z Running test_autoload_disable 1/1 ... [2025-08-14 22:39:29.007214] 2025-08-14T22:39:33.0182860Z running install 2025-08-14T22:39:33.0186567Z C:\Jenkins\Miniconda3\lib\site-packages\setuptools\_distutils\cmd.py:90: SetuptoolsDeprecationWarning: setup.py install is deprecated. 2025-08-14T22:39:33.0187222Z !! 2025-08-14T22:39:33.0187350Z 2025-08-14T22:39:33.0187467Z ******************************************************************************** 2025-08-14T22:39:33.0187829Z Please avoid running ``setup.py`` directly. 2025-08-14T22:39:33.0188188Z Instead, use pypa/build, pypa/installer or other 2025-08-14T22:39:33.0188701Z standards-based tools. 2025-08-14T22:39:33.0188872Z 2025-08-14T22:39:33.0189184Z See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. 2025-08-14T22:39:33.0189673Z ******************************************************************************** 2025-08-14T22:39:33.0189919Z 2025-08-14T22:39:33.0189993Z !! 2025-08-14T22:39:33.0190181Z self.initialize_options() 2025-08-14T22:39:33.0324984Z running build 2025-08-14T22:39:33.0325643Z running build_py 2025-08-14T22:39:33.0454172Z creating build\lib.win-amd64-cpython-39\torch_test_cpp_extension 2025-08-14T22:39:33.0459901Z copying torch_test_cpp_extension\__init__.py -> build\lib.win-amd64-cpython-39\torch_test_cpp_extension 2025-08-14T22:39:33.0468592Z running build_ext 2025-08-14T22:39:33.0490770Z building 'torch_test_cpp_extension.cpp' extension 2025-08-14T22:39:33.0502415Z creating build\temp.win-amd64-cpython-39\Release 2025-08-14T22:39:33.0518066Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64\cl.exe" /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\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.38.33130\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" /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-14T22:39:33.0645445Z extension.cpp 2025-08-14T22:39:49.4105507Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64\link.exe" /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:C:\actions-runner\_work\pytorch\pytorch\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.38.33130\lib\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64" 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-14T22:39:49.6637313Z 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-14T22:39:49.6737371Z Generating code 2025-08-14T22:39:51.4729316Z Finished generating code 2025-08-14T22:39:51.6180411Z building 'torch_test_cpp_extension.maia' extension 2025-08-14T22:39:51.6191705Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64\cl.exe" /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\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.38.33130\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" /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-14T22:39:51.6301499Z maia_extension.cpp 2025-08-14T22:40:07.9758960Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64\link.exe" /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:C:\actions-runner\_work\pytorch\pytorch\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.38.33130\lib\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64" 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-14T22:40:08.2329933Z 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-14T22:40:08.2472237Z Generating code 2025-08-14T22:40:09.7772642Z Finished generating code 2025-08-14T22:40:09.9205688Z building 'torch_test_cpp_extension.rng' extension 2025-08-14T22:40:09.9216956Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64\cl.exe" /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\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.38.33130\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" /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-14T22:40:09.9330317Z rng_extension.cpp 2025-08-14T22:40:22.2328790Z 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-14T22:40:22.2330209Z 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-14T22:40:22.2331584Z 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-14T22:40:22.2332495Z with 2025-08-14T22:40:22.2332687Z [ 2025-08-14T22:40:22.2332887Z scalar_t=float 2025-08-14T22:40:22.2333107Z ] 2025-08-14T22:40:22.2336186Z 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-14T22:40:22.2337384Z 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-14T22:40:22.2338821Z 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-14T22:40:22.2339726Z with 2025-08-14T22:40:22.2339909Z [ 2025-08-14T22:40:22.2340111Z scalar_t=float 2025-08-14T22:40:22.2340343Z ] 2025-08-14T22:40:23.8503168Z 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-14T22:40:23.8503959Z with 2025-08-14T22:40:23.8504157Z [ 2025-08-14T22:40:23.8504344Z scalar_t=float 2025-08-14T22:40:23.8504617Z ] 2025-08-14T22:40:23.8505256Z 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-14T22:40:23.8506633Z 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-14T22:40:23.8507589Z with 2025-08-14T22:40:23.8507771Z [ 2025-08-14T22:40:23.8507964Z scalar_t=float 2025-08-14T22:40:23.8508199Z ] 2025-08-14T22:40:23.8509145Z 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-14T22:40:23.8510207Z with 2025-08-14T22:40:23.8510423Z [ 2025-08-14T22:40:23.8510847Z scalar_t=float 2025-08-14T22:40:23.8511063Z ] 2025-08-14T22:40:23.8511736Z 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-14T22:40:23.8512459Z with 2025-08-14T22:40:23.8512653Z [ 2025-08-14T22:40:23.8512830Z scalar_t=float 2025-08-14T22:40:23.8513055Z ] 2025-08-14T22:40:23.8513830Z 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-14T22:40:23.8514633Z with 2025-08-14T22:40:23.8514829Z [ 2025-08-14T22:40:23.8515024Z scalar_t=float 2025-08-14T22:40:23.8515238Z ] 2025-08-14T22:40:23.8515915Z 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-14T22:40:23.8516729Z with 2025-08-14T22:40:23.8516925Z [ 2025-08-14T22:40:23.8517102Z scalar_t=float 2025-08-14T22:40:23.8517330Z ] 2025-08-14T22:40:23.8518053Z 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-14T22:40:23.8518789Z with 2025-08-14T22:40:23.8518983Z [ 2025-08-14T22:40:23.8519159Z scalar_t=float 2025-08-14T22:40:23.8519385Z ] 2025-08-14T22:40:23.8520046Z 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-14T22:40:23.8520782Z with 2025-08-14T22:40:23.8520960Z [ 2025-08-14T22:40:23.8521150Z scalar_t=float 2025-08-14T22:40:23.8521368Z ] 2025-08-14T22:40:23.8522076Z 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-14T22:40:23.8522864Z with 2025-08-14T22:40:23.8523041Z [ 2025-08-14T22:40:23.8523242Z scalar_t=float 2025-08-14T22:40:23.8523458Z ] 2025-08-14T22:40:23.8524130Z 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-14T22:40:23.8524853Z with 2025-08-14T22:40:23.8525052Z [ 2025-08-14T22:40:23.8525235Z scalar_t=float 2025-08-14T22:40:23.8525461Z ] 2025-08-14T22:40:23.8526129Z 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-14T22:40:23.8526857Z with 2025-08-14T22:40:23.8527048Z [ 2025-08-14T22:40:23.8527237Z scalar_t=float 2025-08-14T22:40:23.8527507Z ] 2025-08-14T22:40:23.8528205Z 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-14T22:40:23.8528965Z with 2025-08-14T22:40:23.8529141Z [ 2025-08-14T22:40:23.8529340Z scalar_t=float 2025-08-14T22:40:23.8529566Z ] 2025-08-14T22:40:23.8530222Z 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-14T22:40:23.8530969Z with 2025-08-14T22:40:23.8531146Z [ 2025-08-14T22:40:23.8531333Z scalar_t=float 2025-08-14T22:40:23.8531547Z ] 2025-08-14T22:40:23.8532216Z 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-14T22:40:23.8533039Z with 2025-08-14T22:40:23.8533258Z [ 2025-08-14T22:40:23.8533450Z scalar_t=float 2025-08-14T22:40:23.8533664Z ] 2025-08-14T22:40:23.8534368Z 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-14T22:40:23.8535089Z with 2025-08-14T22:40:23.8535276Z [ 2025-08-14T22:40:23.8535453Z scalar_t=float 2025-08-14T22:40:23.8535678Z ] 2025-08-14T22:40:23.8536461Z 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-14T22:40:23.8537205Z with 2025-08-14T22:40:23.8537396Z [ 2025-08-14T22:40:23.8537572Z scalar_t=float 2025-08-14T22:40:23.8537800Z ] 2025-08-14T22:40:23.8538537Z 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-14T22:40:23.8539319Z with 2025-08-14T22:40:23.8539497Z [ 2025-08-14T22:40:23.8539731Z scalar_t=float 2025-08-14T22:40:23.8540019Z ] 2025-08-14T22:40:23.8540692Z 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-14T22:40:23.8541434Z with 2025-08-14T22:40:23.8541622Z [ 2025-08-14T22:40:23.8541819Z scalar_t=float 2025-08-14T22:40:23.8542034Z ] 2025-08-14T22:40:23.8542702Z 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-14T22:40:23.8543426Z with 2025-08-14T22:40:23.8543627Z [ 2025-08-14T22:40:23.8543821Z scalar_t=float 2025-08-14T22:40:23.8544116Z ] 2025-08-14T22:40:23.8544789Z 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-14T22:40:23.8545599Z with 2025-08-14T22:40:23.8545789Z [ 2025-08-14T22:40:23.8545974Z scalar_t=float 2025-08-14T22:40:23.8546207Z ] 2025-08-14T22:40:23.8546860Z 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-14T22:40:23.8547616Z with 2025-08-14T22:40:23.8547813Z [ 2025-08-14T22:40:23.8547996Z scalar_t=float 2025-08-14T22:40:23.8548225Z ] 2025-08-14T22:40:23.8548876Z 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-14T22:40:23.8549618Z with 2025-08-14T22:40:23.8549802Z [ 2025-08-14T22:40:23.8550003Z scalar_t=float 2025-08-14T22:40:23.8550214Z ] 2025-08-14T22:40:23.8550927Z 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-14T22:40:23.8551710Z with 2025-08-14T22:40:23.8551888Z [ 2025-08-14T22:40:23.8552083Z scalar_t=float 2025-08-14T22:40:23.8552296Z ] 2025-08-14T22:40:23.8552966Z 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-14T22:40:23.8553695Z with 2025-08-14T22:40:23.8553886Z [ 2025-08-14T22:40:23.8554060Z scalar_t=float 2025-08-14T22:40:23.8554289Z ] 2025-08-14T22:40:23.8555665Z 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-14T22:40:23.8556451Z with 2025-08-14T22:40:23.8556645Z [ 2025-08-14T22:40:23.8556830Z scalar_t=float 2025-08-14T22:40:23.8557105Z ] 2025-08-14T22:40:23.8557771Z 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-14T22:40:23.8558526Z with 2025-08-14T22:40:23.8558843Z [ 2025-08-14T22:40:23.8559026Z scalar_t=float 2025-08-14T22:40:23.8559261Z ] 2025-08-14T22:40:23.8559918Z 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-14T22:40:23.8560653Z with 2025-08-14T22:40:23.8560839Z [ 2025-08-14T22:40:23.8561031Z scalar_t=float 2025-08-14T22:40:23.8561249Z ] 2025-08-14T22:40:23.8561922Z 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-14T22:40:23.8562800Z with 2025-08-14T22:40:23.8562983Z [ 2025-08-14T22:40:23.8563179Z scalar_t=float 2025-08-14T22:40:23.8563395Z ] 2025-08-14T22:40:23.8564069Z 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-14T22:40:23.8564800Z with 2025-08-14T22:40:23.8564995Z [ 2025-08-14T22:40:23.8565177Z scalar_t=float 2025-08-14T22:40:23.8565420Z ] 2025-08-14T22:40:23.8566090Z 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-14T22:40:23.8566825Z with 2025-08-14T22:40:23.8567017Z [ 2025-08-14T22:40:23.8567197Z scalar_t=float 2025-08-14T22:40:23.8567442Z ] 2025-08-14T22:40:23.8568147Z 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-14T22:40:23.8568942Z with 2025-08-14T22:40:23.8569133Z [ 2025-08-14T22:40:23.8569326Z scalar_t=float 2025-08-14T22:40:23.8569567Z ] 2025-08-14T22:40:23.8570228Z 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-14T22:40:23.8570971Z with 2025-08-14T22:40:23.8571149Z [ 2025-08-14T22:40:23.8571348Z scalar_t=float 2025-08-14T22:40:23.8571564Z ] 2025-08-14T22:40:23.8572241Z 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-14T22:40:23.8572977Z with 2025-08-14T22:40:23.8573177Z [ 2025-08-14T22:40:23.8573374Z scalar_t=float 2025-08-14T22:40:23.8573619Z ] 2025-08-14T22:40:23.8574326Z 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-14T22:40:23.8575067Z with 2025-08-14T22:40:23.8575266Z [ 2025-08-14T22:40:23.8575452Z scalar_t=float 2025-08-14T22:40:23.8575684Z ] 2025-08-14T22:40:23.8576338Z 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-14T22:40:23.8577099Z with 2025-08-14T22:40:23.8577368Z [ 2025-08-14T22:40:23.8577556Z scalar_t=float 2025-08-14T22:40:23.8577784Z ] 2025-08-14T22:40:23.8578525Z 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-14T22:40:23.8579967Z with 2025-08-14T22:40:23.8580295Z [ 2025-08-14T22:40:23.8580583Z scalar_t=float 2025-08-14T22:40:23.8580915Z ] 2025-08-14T22:40:23.8582081Z 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-14T22:40:23.8583362Z with 2025-08-14T22:40:23.8583655Z [ 2025-08-14T22:40:23.8583952Z scalar_t=float 2025-08-14T22:40:23.8584299Z ] 2025-08-14T22:40:23.8585402Z 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-14T22:40:23.8586586Z with 2025-08-14T22:40:23.8586878Z [ 2025-08-14T22:40:23.8587167Z scalar_t=float 2025-08-14T22:40:23.8587542Z ] 2025-08-14T22:40:23.8588714Z 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-14T22:40:23.8590215Z with 2025-08-14T22:40:23.8590454Z [ 2025-08-14T22:40:23.8590648Z scalar_t=float 2025-08-14T22:40:23.8590897Z ] 2025-08-14T22:40:23.8591580Z 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-14T22:40:23.8592333Z with 2025-08-14T22:40:23.8592523Z [ 2025-08-14T22:40:23.8592723Z scalar_t=float 2025-08-14T22:40:23.8592987Z ] 2025-08-14T22:40:23.8593657Z 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-14T22:40:23.8594407Z with 2025-08-14T22:40:23.8594584Z [ 2025-08-14T22:40:23.8594783Z scalar_t=float 2025-08-14T22:40:23.8595054Z ] 2025-08-14T22:40:23.8595792Z 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-14T22:40:23.8596565Z with 2025-08-14T22:40:23.8596747Z [ 2025-08-14T22:40:23.8596941Z scalar_t=float 2025-08-14T22:40:23.8597160Z ] 2025-08-14T22:40:23.8597827Z 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-14T22:40:23.8598555Z with 2025-08-14T22:40:23.8598751Z [ 2025-08-14T22:40:23.8598933Z scalar_t=float 2025-08-14T22:40:23.8599166Z ] 2025-08-14T22:40:23.8599845Z 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-14T22:40:23.8600578Z with 2025-08-14T22:40:23.8600765Z [ 2025-08-14T22:40:23.8600998Z scalar_t=float 2025-08-14T22:40:23.8601235Z ] 2025-08-14T22:40:23.8601934Z 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-14T22:40:23.8602689Z with 2025-08-14T22:40:23.8602867Z [ 2025-08-14T22:40:23.8603065Z scalar_t=float 2025-08-14T22:40:23.8603298Z ] 2025-08-14T22:40:23.8603968Z 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-14T22:40:23.8604867Z with 2025-08-14T22:40:23.8605043Z [ 2025-08-14T22:40:23.8605238Z scalar_t=float 2025-08-14T22:40:23.8605457Z ] 2025-08-14T22:40:23.8606135Z 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-14T22:40:23.8606924Z with 2025-08-14T22:40:23.8607121Z [ 2025-08-14T22:40:23.8607353Z scalar_t=float 2025-08-14T22:40:23.8607698Z ] 2025-08-14T22:40:23.8608380Z 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-14T22:40:23.8609109Z with 2025-08-14T22:40:23.8609299Z [ 2025-08-14T22:40:23.8609474Z scalar_t=float 2025-08-14T22:40:23.8609705Z ] 2025-08-14T22:40:23.8610369Z 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-14T22:40:23.8611121Z with 2025-08-14T22:40:23.8611319Z [ 2025-08-14T22:40:23.8611558Z scalar_t=float 2025-08-14T22:40:23.8611795Z ] 2025-08-14T22:40:23.8612451Z 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-14T22:40:23.8613291Z with 2025-08-14T22:40:23.8613518Z [ 2025-08-14T22:40:23.8613726Z scalar_t=float 2025-08-14T22:40:23.8613992Z ] 2025-08-14T22:40:23.8614756Z 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-14T22:40:23.8615593Z with 2025-08-14T22:40:23.8615830Z [ 2025-08-14T22:40:23.8616039Z scalar_t=float 2025-08-14T22:40:23.8616290Z ] 2025-08-14T22:40:23.8617048Z 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-14T22:40:23.8617867Z with 2025-08-14T22:40:23.8618204Z [ 2025-08-14T22:40:23.8618395Z scalar_t=float 2025-08-14T22:40:23.8618675Z ] 2025-08-14T22:40:23.8619435Z 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-14T22:40:23.8620262Z with 2025-08-14T22:40:23.8620451Z [ 2025-08-14T22:40:23.8620685Z scalar_t=float 2025-08-14T22:40:23.8620962Z ] 2025-08-14T22:40:23.8621813Z 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-14T22:40:23.8622659Z with 2025-08-14T22:40:23.8622876Z [ 2025-08-14T22:40:23.8623073Z scalar_t=float 2025-08-14T22:40:23.8623347Z ] 2025-08-14T22:40:23.8624094Z 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-14T22:40:23.8624933Z with 2025-08-14T22:40:23.8625148Z [ 2025-08-14T22:40:23.8625366Z scalar_t=float 2025-08-14T22:40:23.8625635Z ] 2025-08-14T22:40:23.8626398Z 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-14T22:40:23.8627237Z with 2025-08-14T22:40:23.8627416Z [ 2025-08-14T22:40:23.8627654Z scalar_t=float 2025-08-14T22:40:23.8628018Z ] 2025-08-14T22:40:23.8628787Z 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-14T22:40:23.8629603Z with 2025-08-14T22:40:23.8629837Z [ 2025-08-14T22:40:23.8630030Z scalar_t=float 2025-08-14T22:40:23.8630307Z ] 2025-08-14T22:40:23.8631046Z 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-14T22:40:23.8631939Z with 2025-08-14T22:40:23.8632232Z [ 2025-08-14T22:40:23.8632412Z scalar_t=float 2025-08-14T22:40:23.8632690Z ] 2025-08-14T22:40:23.8633427Z 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-14T22:40:23.8634261Z with 2025-08-14T22:40:23.8634485Z [ 2025-08-14T22:40:23.8728070Z scalar_t=float 2025-08-14T22:40:23.8728412Z ] 2025-08-14T22:40:23.8729265Z 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-14T22:40:23.8730006Z with 2025-08-14T22:40:23.8730211Z [ 2025-08-14T22:40:23.8730411Z scalar_t=float 2025-08-14T22:40:23.8730641Z ] 2025-08-14T22:40:23.8731340Z 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-14T22:40:23.8732081Z with 2025-08-14T22:40:23.8732284Z [ 2025-08-14T22:40:23.8732473Z scalar_t=float 2025-08-14T22:40:23.8732711Z ] 2025-08-14T22:40:23.8733376Z 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-14T22:40:23.8734135Z with 2025-08-14T22:40:23.8734332Z [ 2025-08-14T22:40:23.8734515Z scalar_t=float 2025-08-14T22:40:23.8734755Z ] 2025-08-14T22:40:23.8735415Z 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-14T22:40:23.8736169Z with 2025-08-14T22:40:23.8736355Z [ 2025-08-14T22:40:23.8736558Z scalar_t=float 2025-08-14T22:40:23.8736784Z ] 2025-08-14T22:40:23.8737470Z 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-14T22:40:23.8738296Z with 2025-08-14T22:40:23.8738477Z [ 2025-08-14T22:40:23.8738671Z scalar_t=float 2025-08-14T22:40:23.8738889Z ] 2025-08-14T22:40:23.8739561Z 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-14T22:40:23.8740287Z with 2025-08-14T22:40:23.8740480Z [ 2025-08-14T22:40:23.8740665Z scalar_t=float 2025-08-14T22:40:23.8740902Z ] 2025-08-14T22:40:23.8741574Z 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-14T22:40:23.8742312Z with 2025-08-14T22:40:23.8742506Z [ 2025-08-14T22:40:23.8742683Z scalar_t=float 2025-08-14T22:40:23.8742916Z ] 2025-08-14T22:40:23.8743570Z 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-14T22:40:23.8744316Z with 2025-08-14T22:40:23.8744588Z [ 2025-08-14T22:40:23.8744782Z scalar_t=float 2025-08-14T22:40:23.8745016Z ] 2025-08-14T22:40:23.8745673Z 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-14T22:40:23.8746419Z with 2025-08-14T22:40:23.8746596Z [ 2025-08-14T22:40:23.8746794Z scalar_t=float 2025-08-14T22:40:23.8747013Z ] 2025-08-14T22:40:23.8747748Z 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-14T22:40:23.8748570Z with 2025-08-14T22:40:23.8748745Z [ 2025-08-14T22:40:23.8748947Z scalar_t=float 2025-08-14T22:40:23.8749166Z ] 2025-08-14T22:40:23.8749835Z 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-14T22:40:23.8750563Z with 2025-08-14T22:40:23.8750769Z [ 2025-08-14T22:40:23.8750955Z scalar_t=float 2025-08-14T22:40:23.8751182Z ] 2025-08-14T22:40:23.8751893Z 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-14T22:40:23.8752638Z with 2025-08-14T22:40:23.8752844Z [ 2025-08-14T22:40:23.8753030Z scalar_t=float 2025-08-14T22:40:23.8753263Z ] 2025-08-14T22:40:23.8753934Z 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-14T22:40:23.8754684Z with 2025-08-14T22:40:23.8754869Z [ 2025-08-14T22:40:23.8755070Z scalar_t=float 2025-08-14T22:40:23.8755294Z ] 2025-08-14T22:40:23.8755968Z 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-14T22:40:23.8756722Z with 2025-08-14T22:40:23.8756900Z [ 2025-08-14T22:40:23.8757104Z scalar_t=float 2025-08-14T22:40:23.8757331Z ] 2025-08-14T22:40:23.8758005Z 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-14T22:40:23.8758991Z with 2025-08-14T22:40:23.8759180Z [ 2025-08-14T22:40:23.8759377Z scalar_t=float 2025-08-14T22:40:23.8759592Z ] 2025-08-14T22:40:23.8760257Z 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-14T22:40:23.8760997Z with 2025-08-14T22:40:23.8761194Z [ 2025-08-14T22:40:23.8761370Z scalar_t=float 2025-08-14T22:40:23.8761616Z ] 2025-08-14T22:40:23.8762275Z 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-14T22:40:23.8763024Z with 2025-08-14T22:40:23.8763230Z [ 2025-08-14T22:40:23.8763413Z scalar_t=float 2025-08-14T22:40:23.8763644Z ] 2025-08-14T22:40:23.8764304Z 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-14T22:40:23.8765053Z with 2025-08-14T22:40:23.8765227Z [ 2025-08-14T22:40:23.8765428Z scalar_t=float 2025-08-14T22:40:23.8765643Z ] 2025-08-14T22:40:23.8766329Z 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-14T22:40:23.8767164Z with 2025-08-14T22:40:23.8767341Z [ 2025-08-14T22:40:23.8767541Z scalar_t=float 2025-08-14T22:40:23.8767755Z ] 2025-08-14T22:40:23.8768430Z 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-14T22:40:23.8769155Z with 2025-08-14T22:40:23.8769348Z [ 2025-08-14T22:40:23.8769590Z scalar_t=float 2025-08-14T22:40:23.8769882Z ] 2025-08-14T22:40:23.8770553Z 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-14T22:40:23.8771289Z with 2025-08-14T22:40:23.8771485Z [ 2025-08-14T22:40:23.8771666Z scalar_t=float 2025-08-14T22:40:23.8771910Z ] 2025-08-14T22:40:23.8772574Z 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-14T22:40:23.8773326Z with 2025-08-14T22:40:23.8773523Z [ 2025-08-14T22:40:23.8773764Z scalar_t=float 2025-08-14T22:40:23.8774002Z ] 2025-08-14T22:40:23.8774661Z 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-14T22:40:23.8775419Z with 2025-08-14T22:40:23.8775600Z [ 2025-08-14T22:40:23.8775804Z scalar_t=float 2025-08-14T22:40:23.8776021Z ] 2025-08-14T22:40:23.8776695Z 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-14T22:40:23.8777445Z with 2025-08-14T22:40:23.8777626Z [ 2025-08-14T22:40:23.8777825Z scalar_t=float 2025-08-14T22:40:23.8778032Z ] 2025-08-14T22:40:23.8778826Z 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-14T22:40:23.8779563Z with 2025-08-14T22:40:23.8779741Z [ 2025-08-14T22:40:23.8779939Z scalar_t=float 2025-08-14T22:40:23.8780156Z ] 2025-08-14T22:40:23.8780901Z 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-14T22:40:23.8781675Z with 2025-08-14T22:40:23.8781868Z [ 2025-08-14T22:40:23.8782046Z scalar_t=float 2025-08-14T22:40:23.8782273Z ] 2025-08-14T22:40:23.8782937Z 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-14T22:40:23.8783667Z with 2025-08-14T22:40:23.8783861Z [ 2025-08-14T22:40:23.8784040Z scalar_t=float 2025-08-14T22:40:23.8784276Z ] 2025-08-14T22:40:23.8784938Z 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-14T22:40:23.8785675Z with 2025-08-14T22:40:23.8785851Z [ 2025-08-14T22:40:23.8786056Z scalar_t=float 2025-08-14T22:40:23.8786287Z ] 2025-08-14T22:40:23.8787018Z 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-14T22:40:23.8787828Z with 2025-08-14T22:40:23.8788040Z [ 2025-08-14T22:40:23.8788232Z scalar_t=float 2025-08-14T22:40:23.8788569Z ] 2025-08-14T22:40:23.8789305Z 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-14T22:40:23.8790126Z with 2025-08-14T22:40:23.8790343Z [ 2025-08-14T22:40:23.8790537Z scalar_t=float 2025-08-14T22:40:23.8790747Z ] 2025-08-14T22:40:23.8791473Z 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-14T22:40:23.8792238Z with 2025-08-14T22:40:23.8792428Z [ 2025-08-14T22:40:23.8792619Z scalar_t=float 2025-08-14T22:40:23.8792842Z ] 2025-08-14T22:40:23.8793494Z 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-14T22:40:23.8794243Z with 2025-08-14T22:40:23.8794433Z [ 2025-08-14T22:40:23.8794615Z scalar_t=float 2025-08-14T22:40:23.8794849Z ] 2025-08-14T22:40:23.8795596Z 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-14T22:40:23.8796421Z with 2025-08-14T22:40:23.8796597Z [ 2025-08-14T22:40:23.8796831Z scalar_t=float 2025-08-14T22:40:23.8797056Z ] 2025-08-14T22:40:23.8797802Z 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-14T22:40:23.8798660Z with 2025-08-14T22:40:23.8798842Z [ 2025-08-14T22:40:23.8799078Z scalar_t=float 2025-08-14T22:40:23.8799295Z ] 2025-08-14T22:40:23.8800041Z 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-14T22:40:23.8800845Z with 2025-08-14T22:40:23.8801074Z [ 2025-08-14T22:40:23.8801273Z scalar_t=float 2025-08-14T22:40:23.8801528Z ] 2025-08-14T22:40:23.8802269Z 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-14T22:40:23.8803069Z with 2025-08-14T22:40:23.8803269Z [ 2025-08-14T22:40:23.8803489Z scalar_t=float 2025-08-14T22:40:23.8803759Z ] 2025-08-14T22:40:23.8804458Z 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-14T22:40:23.8805307Z with 2025-08-14T22:40:23.8805504Z [ 2025-08-14T22:40:23.8805722Z scalar_t=float 2025-08-14T22:40:23.8805956Z ] 2025-08-14T22:40:23.8806693Z 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-14T22:40:23.8807512Z with 2025-08-14T22:40:23.8807743Z [ 2025-08-14T22:40:23.8807907Z scalar_t=float 2025-08-14T22:40:23.8808158Z ] 2025-08-14T22:40:23.8808878Z 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-14T22:40:23.8809681Z with 2025-08-14T22:40:23.8809846Z [ 2025-08-14T22:40:23.8810053Z scalar_t=float 2025-08-14T22:40:23.8810252Z ] 2025-08-14T22:40:23.8810974Z 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-14T22:40:23.8811846Z with 2025-08-14T22:40:23.8812048Z [ 2025-08-14T22:40:23.8812225Z scalar_t=float 2025-08-14T22:40:23.8812474Z ] 2025-08-14T22:40:23.8813199Z 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-14T22:40:23.8813990Z with 2025-08-14T22:40:23.8814163Z [ 2025-08-14T22:40:23.8814373Z scalar_t=float 2025-08-14T22:40:23.8814582Z ] 2025-08-14T22:40:23.8815357Z 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-14T22:40:23.8816267Z with 2025-08-14T22:40:23.8816444Z [ 2025-08-14T22:40:23.8816651Z scalar_t=float 2025-08-14T22:40:23.8816867Z ] 2025-08-14T22:40:23.8817592Z 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-14T22:40:23.8818467Z with 2025-08-14T22:40:23.8818670Z [ 2025-08-14T22:40:23.8818854Z scalar_t=float 2025-08-14T22:40:23.8819116Z ] 2025-08-14T22:40:23.8819891Z 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-14T22:40:23.8820685Z with 2025-08-14T22:40:23.8820849Z [ 2025-08-14T22:40:23.8821069Z scalar_t=float 2025-08-14T22:40:23.8821317Z ] 2025-08-14T22:40:23.8822015Z 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-14T22:40:23.8822854Z with 2025-08-14T22:40:23.8823022Z [ 2025-08-14T22:40:23.8823194Z scalar_t=float 2025-08-14T22:40:23.8823435Z ] 2025-08-14T22:40:23.8824163Z 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-14T22:40:23.8824947Z with 2025-08-14T22:40:23.8825122Z [ 2025-08-14T22:40:23.8825324Z scalar_t=float 2025-08-14T22:40:23.8825575Z ] 2025-08-14T22:40:23.8826261Z 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-14T22:40:23.8827067Z with 2025-08-14T22:40:23.8827283Z [ 2025-08-14T22:40:23.8827451Z scalar_t=float 2025-08-14T22:40:23.8827703Z ] 2025-08-14T22:40:23.8828425Z 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-14T22:40:23.8829229Z with 2025-08-14T22:40:23.8829397Z [ 2025-08-14T22:40:23.8829614Z scalar_t=float 2025-08-14T22:40:23.8829857Z ] 2025-08-14T22:40:23.8830555Z 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-14T22:40:23.8831386Z with 2025-08-14T22:40:23.8831554Z [ 2025-08-14T22:40:23.8831735Z scalar_t=float 2025-08-14T22:40:23.8831984Z ] 2025-08-14T22:40:23.8832712Z 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-14T22:40:23.8833506Z with 2025-08-14T22:40:23.8833715Z [ 2025-08-14T22:40:23.8833906Z scalar_t=float 2025-08-14T22:40:23.8834143Z ] 2025-08-14T22:40:23.8834850Z 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-14T22:40:23.8835650Z with 2025-08-14T22:40:23.8835835Z [ 2025-08-14T22:40:23.8836006Z scalar_t=float 2025-08-14T22:40:23.8836220Z ] 2025-08-14T22:40:23.8836873Z 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-14T22:40:23.8837608Z with 2025-08-14T22:40:23.8837781Z [ 2025-08-14T22:40:23.8838050Z scalar_t=float 2025-08-14T22:40:23.8838268Z ] 2025-08-14T22:40:23.8838912Z 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-14T22:40:23.8839634Z with 2025-08-14T22:40:23.8839801Z [ 2025-08-14T22:40:23.8840024Z scalar_t=float 2025-08-14T22:40:23.8840227Z ] 2025-08-14T22:40:23.8840955Z 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-14T22:40:23.8841682Z with 2025-08-14T22:40:23.8841898Z [ 2025-08-14T22:40:23.8842078Z scalar_t=float 2025-08-14T22:40:23.8842284Z ] 2025-08-14T22:40:23.8842939Z 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-14T22:40:23.8843659Z with 2025-08-14T22:40:23.8843839Z [ 2025-08-14T22:40:23.8844010Z scalar_t=float 2025-08-14T22:40:23.8844222Z ] 2025-08-14T22:40:23.8844869Z 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-14T22:40:23.8845581Z with 2025-08-14T22:40:23.8845758Z [ 2025-08-14T22:40:23.8845961Z scalar_t=float 2025-08-14T22:40:23.8846178Z ] 2025-08-14T22:40:23.8846913Z 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-14T22:40:23.8847669Z with 2025-08-14T22:40:23.8847847Z [ 2025-08-14T22:40:23.8848054Z scalar_t=float 2025-08-14T22:40:23.8848284Z ] 2025-08-14T22:40:23.8848941Z 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-14T22:40:23.8849683Z with 2025-08-14T22:40:23.8849863Z [ 2025-08-14T22:40:23.8850062Z scalar_t=float 2025-08-14T22:40:23.8850272Z ] 2025-08-14T22:40:23.8850948Z 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-14T22:40:23.8851689Z with 2025-08-14T22:40:23.8851870Z [ 2025-08-14T22:40:23.8852103Z scalar_t=float 2025-08-14T22:40:23.8852317Z ] 2025-08-14T22:40:23.8853056Z 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-14T22:40:23.8853789Z with 2025-08-14T22:40:23.8853977Z [ 2025-08-14T22:40:23.8854159Z scalar_t=float 2025-08-14T22:40:23.8854385Z ] 2025-08-14T22:40:23.8855037Z 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-14T22:40:23.8855784Z with 2025-08-14T22:40:23.8855986Z [ 2025-08-14T22:40:23.8856226Z scalar_t=float 2025-08-14T22:40:23.8856457Z ] 2025-08-14T22:40:23.8857116Z 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-14T22:40:23.8857894Z with 2025-08-14T22:40:23.8858136Z [ 2025-08-14T22:40:23.8858372Z scalar_t=float 2025-08-14T22:40:23.8858585Z ] 2025-08-14T22:40:23.8859300Z 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-14T22:40:23.8860582Z with 2025-08-14T22:40:23.8860764Z [ 2025-08-14T22:40:23.8860956Z scalar_t=float 2025-08-14T22:40:23.8861175Z ] 2025-08-14T22:40:23.8861845Z 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-14T22:40:23.8862584Z with 2025-08-14T22:40:23.8862778Z [ 2025-08-14T22:40:23.8862976Z scalar_t=float 2025-08-14T22:40:23.8863195Z ] 2025-08-14T22:40:23.8863915Z 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-14T22:40:23.8864641Z with 2025-08-14T22:40:23.8864836Z [ 2025-08-14T22:40:23.8865014Z scalar_t=float 2025-08-14T22:40:23.8865249Z ] 2025-08-14T22:40:23.8865902Z 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-14T22:40:23.8866774Z with 2025-08-14T22:40:23.8866969Z [ 2025-08-14T22:40:23.8867158Z scalar_t=float 2025-08-14T22:40:23.8867390Z ] 2025-08-14T22:40:23.8868048Z 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-14T22:40:23.8868843Z with 2025-08-14T22:40:23.8869054Z [ 2025-08-14T22:40:23.8869248Z scalar_t=float 2025-08-14T22:40:23.8869462Z ] 2025-08-14T22:40:23.8870138Z 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-14T22:40:23.8870877Z with 2025-08-14T22:40:23.8871059Z [ 2025-08-14T22:40:23.8871254Z scalar_t=float 2025-08-14T22:40:23.8871472Z ] 2025-08-14T22:40:23.8872143Z 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-14T22:40:23.8872866Z with 2025-08-14T22:40:23.8873055Z [ 2025-08-14T22:40:23.8873237Z scalar_t=float 2025-08-14T22:40:23.8873465Z ] 2025-08-14T22:40:23.8874133Z 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-14T22:40:23.8874855Z with 2025-08-14T22:40:23.8875045Z [ 2025-08-14T22:40:23.8875222Z scalar_t=float 2025-08-14T22:40:23.8875447Z ] 2025-08-14T22:40:23.8876103Z 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-14T22:40:23.8876849Z with 2025-08-14T22:40:23.8877023Z [ 2025-08-14T22:40:23.8877224Z scalar_t=float 2025-08-14T22:40:23.8877456Z ] 2025-08-14T22:40:23.8878113Z 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-14T22:40:23.8878937Z with 2025-08-14T22:40:23.8879116Z [ 2025-08-14T22:40:23.8879317Z scalar_t=float 2025-08-14T22:40:23.8879529Z ] 2025-08-14T22:40:23.8880197Z 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-14T22:40:23.8880943Z with 2025-08-14T22:40:23.8881123Z [ 2025-08-14T22:40:23.8881315Z scalar_t=float 2025-08-14T22:40:23.8881529Z ] 2025-08-14T22:40:23.8882247Z 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-14T22:40:23.8883023Z with 2025-08-14T22:40:23.8883217Z [ 2025-08-14T22:40:23.8883401Z scalar_t=float 2025-08-14T22:40:23.8883632Z ] 2025-08-14T22:40:23.8884343Z 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-14T22:40:23.8885125Z with 2025-08-14T22:40:23.8885316Z [ 2025-08-14T22:40:23.8885500Z scalar_t=float 2025-08-14T22:40:23.8886120Z ] 2025-08-14T22:40:23.8886783Z 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-14T22:40:23.8887523Z with 2025-08-14T22:40:23.8887703Z [ 2025-08-14T22:40:23.8887905Z scalar_t=float 2025-08-14T22:40:23.8888129Z ] 2025-08-14T22:40:23.8888779Z 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-14T22:40:23.8889500Z with 2025-08-14T22:40:23.8889667Z [ 2025-08-14T22:40:23.8889843Z scalar_t=float 2025-08-14T22:40:23.8890042Z ] 2025-08-14T22:40:23.8890687Z 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-14T22:40:23.8891398Z with 2025-08-14T22:40:23.8891571Z [ 2025-08-14T22:40:23.8891749Z scalar_t=float 2025-08-14T22:40:23.8891952Z ] 2025-08-14T22:40:23.8892595Z 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-14T22:40:23.8893305Z with 2025-08-14T22:40:23.8893471Z [ 2025-08-14T22:40:23.8893631Z scalar_t=float 2025-08-14T22:40:23.8893842Z ] 2025-08-14T22:40:23.8894479Z 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-14T22:40:23.8895208Z with 2025-08-14T22:40:23.8895383Z [ 2025-08-14T22:40:23.8895551Z scalar_t=float 2025-08-14T22:40:23.8895756Z ] 2025-08-14T22:40:23.8896396Z 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-14T22:40:23.8897114Z with 2025-08-14T22:40:23.8897276Z [ 2025-08-14T22:40:23.8897449Z scalar_t=float 2025-08-14T22:40:23.8897653Z ] 2025-08-14T22:40:23.8898372Z 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-14T22:40:23.8899096Z with 2025-08-14T22:40:23.8899266Z [ 2025-08-14T22:40:23.8899446Z scalar_t=float 2025-08-14T22:40:23.8899656Z ] 2025-08-14T22:40:23.8900306Z 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-14T22:40:23.8901104Z with 2025-08-14T22:40:23.8901285Z [ 2025-08-14T22:40:23.8901452Z scalar_t=float 2025-08-14T22:40:23.8901677Z ] 2025-08-14T22:40:23.8902329Z 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-14T22:40:23.8903048Z with 2025-08-14T22:40:23.8903273Z [ 2025-08-14T22:40:23.8903490Z scalar_t=float 2025-08-14T22:40:23.8903710Z ] 2025-08-14T22:40:23.8904348Z 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-14T22:40:23.8905073Z with 2025-08-14T22:40:23.8905253Z [ 2025-08-14T22:40:23.8905454Z scalar_t=float 2025-08-14T22:40:23.8905661Z ] 2025-08-14T22:40:23.8906302Z 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-14T22:40:23.8907068Z with 2025-08-14T22:40:23.8907237Z [ 2025-08-14T22:40:23.8907412Z scalar_t=float 2025-08-14T22:40:23.8907615Z ] 2025-08-14T22:40:23.8908281Z 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-14T22:40:23.8909004Z with 2025-08-14T22:40:23.8909186Z [ 2025-08-14T22:40:23.8909363Z scalar_t=float 2025-08-14T22:40:23.8909568Z ] 2025-08-14T22:40:23.8910215Z 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-14T22:40:23.8910932Z with 2025-08-14T22:40:23.8911110Z [ 2025-08-14T22:40:23.8911276Z scalar_t=float 2025-08-14T22:40:23.8911484Z ] 2025-08-14T22:40:23.8912123Z 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-14T22:40:23.8912854Z with 2025-08-14T22:40:23.8913029Z [ 2025-08-14T22:40:23.8913197Z scalar_t=float 2025-08-14T22:40:23.8913407Z ] 2025-08-14T22:40:23.8914057Z 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-14T22:40:23.8914781Z with 2025-08-14T22:40:23.8914947Z [ 2025-08-14T22:40:23.8915178Z scalar_t=float 2025-08-14T22:40:23.8915395Z ] 2025-08-14T22:40:23.8916099Z 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-14T22:40:23.8916833Z with 2025-08-14T22:40:23.8917004Z [ 2025-08-14T22:40:23.8917185Z scalar_t=float 2025-08-14T22:40:23.8917390Z ] 2025-08-14T22:40:23.8918046Z 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-14T22:40:23.8918756Z with 2025-08-14T22:40:23.8918942Z [ 2025-08-14T22:40:23.8919109Z scalar_t=float 2025-08-14T22:40:23.8919324Z ] 2025-08-14T22:40:23.8919974Z 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-14T22:40:23.8920687Z with 2025-08-14T22:40:23.8920862Z [ 2025-08-14T22:40:23.8921091Z scalar_t=float 2025-08-14T22:40:23.8921309Z ] 2025-08-14T22:40:23.8921956Z 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-14T22:40:23.8922682Z with 2025-08-14T22:40:23.8922859Z [ 2025-08-14T22:40:23.8923029Z scalar_t=float 2025-08-14T22:40:23.8923243Z ] 2025-08-14T22:40:23.8923929Z 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-14T22:40:23.8924693Z with 2025-08-14T22:40:23.8924861Z [ 2025-08-14T22:40:23.8925048Z scalar_t=float 2025-08-14T22:40:23.8925269Z ] 2025-08-14T22:40:23.8925931Z 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-14T22:40:23.8926656Z with 2025-08-14T22:40:23.8926825Z [ 2025-08-14T22:40:23.8927001Z scalar_t=float 2025-08-14T22:40:23.8927209Z ] 2025-08-14T22:40:23.8927897Z 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-14T22:40:23.8928609Z with 2025-08-14T22:40:23.8928785Z [ 2025-08-14T22:40:23.8928954Z scalar_t=float 2025-08-14T22:40:23.8929169Z ] 2025-08-14T22:40:23.8929811Z 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-14T22:40:23.8930526Z with 2025-08-14T22:40:23.8930696Z [ 2025-08-14T22:40:23.8930863Z scalar_t=float 2025-08-14T22:40:23.8931075Z ] 2025-08-14T22:40:23.8931714Z 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-14T22:40:23.8932444Z with 2025-08-14T22:40:23.8932610Z [ 2025-08-14T22:40:23.8932783Z scalar_t=float 2025-08-14T22:40:23.8932997Z ] 2025-08-14T22:40:23.8933638Z 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-14T22:40:23.8934355Z with 2025-08-14T22:40:23.8934526Z [ 2025-08-14T22:40:23.8934698Z scalar_t=float 2025-08-14T22:40:23.8934896Z ] 2025-08-14T22:40:23.8935554Z 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-14T22:40:23.8936281Z with 2025-08-14T22:40:23.8936448Z [ 2025-08-14T22:40:23.8936625Z scalar_t=float 2025-08-14T22:40:23.8936832Z ] 2025-08-14T22:40:23.8937482Z 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-14T22:40:23.8938272Z with 2025-08-14T22:40:23.8938453Z [ 2025-08-14T22:40:23.8938627Z scalar_t=float 2025-08-14T22:40:23.8938840Z ] 2025-08-14T22:40:23.8939489Z 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-14T22:40:23.8940211Z with 2025-08-14T22:40:23.8940384Z [ 2025-08-14T22:40:23.8940559Z scalar_t=float 2025-08-14T22:40:23.8940773Z ] 2025-08-14T22:40:23.8941417Z 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-14T22:40:23.8942203Z with 2025-08-14T22:40:23.8942366Z [ 2025-08-14T22:40:23.8942556Z scalar_t=float 2025-08-14T22:40:23.8942763Z ] 2025-08-14T22:40:23.8943417Z 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-14T22:40:23.8944142Z with 2025-08-14T22:40:23.8944311Z [ 2025-08-14T22:40:23.8944484Z scalar_t=float 2025-08-14T22:40:23.8944742Z ] 2025-08-14T22:40:23.8945442Z 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-14T22:40:23.8946156Z with 2025-08-14T22:40:23.8946334Z [ 2025-08-14T22:40:23.8946509Z scalar_t=float 2025-08-14T22:40:23.8946719Z ] 2025-08-14T22:40:23.8947367Z 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-14T22:40:23.8948079Z with 2025-08-14T22:40:23.8948245Z [ 2025-08-14T22:40:23.8948452Z scalar_t=float 2025-08-14T22:40:23.8948664Z ] 2025-08-14T22:40:23.8949304Z 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-14T22:40:23.8950027Z with 2025-08-14T22:40:23.8950209Z [ 2025-08-14T22:40:23.8950378Z scalar_t=float 2025-08-14T22:40:23.8950597Z ] 2025-08-14T22:40:23.8951239Z 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-14T22:40:23.8951958Z with 2025-08-14T22:40:23.8952126Z [ 2025-08-14T22:40:23.8952300Z scalar_t=float 2025-08-14T22:40:23.8952499Z ] 2025-08-14T22:40:23.8953149Z 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-14T22:40:23.8953868Z with 2025-08-14T22:40:23.8954035Z [ 2025-08-14T22:40:23.8954211Z scalar_t=float 2025-08-14T22:40:23.8954410Z ] 2025-08-14T22:40:23.8955064Z 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-14T22:40:23.8955783Z with 2025-08-14T22:40:23.8955962Z [ 2025-08-14T22:40:23.8956126Z scalar_t=float 2025-08-14T22:40:23.8956343Z ] 2025-08-14T22:40:23.8956996Z 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-14T22:40:23.8957713Z with 2025-08-14T22:40:23.8957892Z [ 2025-08-14T22:40:23.8958056Z scalar_t=float 2025-08-14T22:40:23.8958269Z ] 2025-08-14T22:40:23.8958915Z 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-14T22:40:23.8959647Z with 2025-08-14T22:40:23.8959809Z [ 2025-08-14T22:40:23.8959988Z scalar_t=float 2025-08-14T22:40:23.8960204Z ] 2025-08-14T22:40:23.8960853Z 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-14T22:40:23.8961579Z with 2025-08-14T22:40:23.8961740Z [ 2025-08-14T22:40:23.8961922Z scalar_t=float 2025-08-14T22:40:23.8962126Z ] 2025-08-14T22:40:23.8962841Z 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-14T22:40:23.8963561Z with 2025-08-14T22:40:23.8963740Z [ 2025-08-14T22:40:23.8963940Z scalar_t=float 2025-08-14T22:40:23.8964143Z ] 2025-08-14T22:40:23.8964795Z 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-14T22:40:23.8965546Z with 2025-08-14T22:40:23.8965764Z [ 2025-08-14T22:40:23.8965939Z scalar_t=float 2025-08-14T22:40:23.8966157Z ] 2025-08-14T22:40:23.8966798Z 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-14T22:40:23.8967522Z with 2025-08-14T22:40:23.8967706Z [ 2025-08-14T22:40:23.8967878Z scalar_t=float 2025-08-14T22:40:23.8968094Z ] 2025-08-14T22:40:23.8968786Z 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-14T22:40:23.8969508Z with 2025-08-14T22:40:23.8969678Z [ 2025-08-14T22:40:23.8969875Z scalar_t=float 2025-08-14T22:40:23.8970080Z ] 2025-08-14T22:40:23.8970734Z 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-14T22:40:23.8971546Z with 2025-08-14T22:40:23.8971711Z [ 2025-08-14T22:40:23.8971925Z scalar_t=float 2025-08-14T22:40:23.8972132Z ] 2025-08-14T22:40:23.8972783Z 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-14T22:40:23.8973499Z with 2025-08-14T22:40:23.8973668Z [ 2025-08-14T22:40:23.8973835Z scalar_t=float 2025-08-14T22:40:23.8974043Z ] 2025-08-14T22:40:23.8974706Z 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-14T22:40:23.8975424Z with 2025-08-14T22:40:23.8975595Z [ 2025-08-14T22:40:23.8975761Z scalar_t=float 2025-08-14T22:40:23.8975977Z ] 2025-08-14T22:40:23.8976617Z 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-14T22:40:23.8977339Z with 2025-08-14T22:40:23.8977510Z [ 2025-08-14T22:40:23.8977683Z scalar_t=float 2025-08-14T22:40:23.8977897Z ] 2025-08-14T22:40:23.8978613Z 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-14T22:40:23.8979338Z with 2025-08-14T22:40:23.8979503Z [ 2025-08-14T22:40:23.8979686Z scalar_t=float 2025-08-14T22:40:23.8979898Z ] 2025-08-14T22:40:23.8980564Z 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-14T22:40:23.8981299Z with 2025-08-14T22:40:23.8981470Z [ 2025-08-14T22:40:23.8981638Z scalar_t=float 2025-08-14T22:40:23.8981841Z ] 2025-08-14T22:40:23.8982491Z 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-14T22:40:23.8983203Z with 2025-08-14T22:40:23.8983460Z [ 2025-08-14T22:40:23.8983630Z scalar_t=float 2025-08-14T22:40:23.8983843Z ] 2025-08-14T22:40:23.8984496Z 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-14T22:40:23.8985211Z with 2025-08-14T22:40:23.8985380Z [ 2025-08-14T22:40:23.8985542Z scalar_t=float 2025-08-14T22:40:23.8985756Z ] 2025-08-14T22:40:23.8986439Z 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-14T22:40:23.8987204Z with 2025-08-14T22:40:23.8987372Z [ 2025-08-14T22:40:23.8987548Z scalar_t=float 2025-08-14T22:40:23.8987758Z ] 2025-08-14T22:40:23.8988396Z 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-14T22:40:23.8989125Z with 2025-08-14T22:40:23.8989286Z [ 2025-08-14T22:40:23.8989462Z scalar_t=float 2025-08-14T22:40:23.8989661Z ] 2025-08-14T22:40:23.8990354Z 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-14T22:40:23.8991069Z with 2025-08-14T22:40:23.8991254Z [ 2025-08-14T22:40:23.8991440Z scalar_t=float 2025-08-14T22:40:23.8991654Z ] 2025-08-14T22:40:23.8992311Z 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-14T22:40:23.8993027Z with 2025-08-14T22:40:23.8993203Z [ 2025-08-14T22:40:23.8993380Z scalar_t=float 2025-08-14T22:40:23.8993594Z ] 2025-08-14T22:40:23.8994236Z 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-14T22:40:23.8994958Z with 2025-08-14T22:40:23.8995129Z [ 2025-08-14T22:40:23.8995298Z scalar_t=float 2025-08-14T22:40:23.8995512Z ] 2025-08-14T22:40:23.8996151Z 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-14T22:40:23.8996882Z with 2025-08-14T22:40:23.8997051Z [ 2025-08-14T22:40:23.8997239Z scalar_t=float 2025-08-14T22:40:23.8997442Z ] 2025-08-14T22:40:23.8998094Z 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-14T22:40:23.8998810Z with 2025-08-14T22:40:23.8998982Z [ 2025-08-14T22:40:23.8999159Z scalar_t=float 2025-08-14T22:40:23.8999363Z ] 2025-08-14T22:40:23.9000016Z 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-14T22:40:23.9000724Z with 2025-08-14T22:40:23.9000903Z [ 2025-08-14T22:40:23.9001069Z scalar_t=float 2025-08-14T22:40:23.9001282Z ] 2025-08-14T22:40:23.9001929Z 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-14T22:40:23.9002647Z with 2025-08-14T22:40:23.9002830Z [ 2025-08-14T22:40:23.9002995Z scalar_t=float 2025-08-14T22:40:23.9003206Z ] 2025-08-14T22:40:23.9003848Z 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-14T22:40:23.9005168Z with 2025-08-14T22:40:23.9005336Z [ 2025-08-14T22:40:23.9005521Z scalar_t=float 2025-08-14T22:40:23.9005744Z ] 2025-08-14T22:40:23.9006389Z 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-14T22:40:23.9007112Z with 2025-08-14T22:40:23.9007277Z [ 2025-08-14T22:40:23.9008412Z scalar_t=float 2025-08-14T22:40:23.9008685Z ] 2025-08-14T22:40:23.9009357Z 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-14T22:40:23.9010092Z with 2025-08-14T22:40:23.9010264Z [ 2025-08-14T22:40:23.9010439Z scalar_t=float 2025-08-14T22:40:23.9010644Z ] 2025-08-14T22:40:23.9011294Z 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-14T22:40:23.9012013Z with 2025-08-14T22:40:23.9012181Z [ 2025-08-14T22:40:23.9012391Z scalar_t=float 2025-08-14T22:40:23.9012612Z ] 2025-08-14T22:40:23.9013260Z 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-14T22:40:23.9013988Z with 2025-08-14T22:40:23.9014171Z [ 2025-08-14T22:40:23.9014350Z scalar_t=float 2025-08-14T22:40:23.9014565Z ] 2025-08-14T22:40:23.9015203Z 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-14T22:40:23.9015927Z with 2025-08-14T22:40:23.9016092Z [ 2025-08-14T22:40:23.9016282Z scalar_t=float 2025-08-14T22:40:23.9016486Z ] 2025-08-14T22:40:23.9017144Z 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-14T22:40:23.9017865Z with 2025-08-14T22:40:23.9018028Z [ 2025-08-14T22:40:23.9018330Z scalar_t=float 2025-08-14T22:40:23.9018539Z ] 2025-08-14T22:40:23.9019194Z 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-14T22:40:23.9019916Z with 2025-08-14T22:40:23.9020100Z [ 2025-08-14T22:40:23.9020277Z scalar_t=float 2025-08-14T22:40:23.9020486Z ] 2025-08-14T22:40:23.9021138Z 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-14T22:40:23.9021857Z with 2025-08-14T22:40:23.9022028Z [ 2025-08-14T22:40:23.9022197Z scalar_t=float 2025-08-14T22:40:23.9022405Z ] 2025-08-14T22:40:23.9023042Z 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-14T22:40:23.9023769Z with 2025-08-14T22:40:23.9023946Z [ 2025-08-14T22:40:23.9024113Z scalar_t=float 2025-08-14T22:40:23.9024329Z ] 2025-08-14T22:40:23.9024965Z 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-14T22:40:23.9025682Z with 2025-08-14T22:40:23.9025843Z [ 2025-08-14T22:40:23.9026024Z scalar_t=float 2025-08-14T22:40:23.9026561Z ] 2025-08-14T22:40:23.9027119Z 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-14T22:40:23.9027205Z with 2025-08-14T22:40:23.9027273Z [ 2025-08-14T22:40:23.9027352Z scalar_t=float 2025-08-14T22:40:23.9027423Z ] 2025-08-14T22:40:23.9028017Z 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-14T22:40:23.9028128Z with 2025-08-14T22:40:23.9028207Z [ 2025-08-14T22:40:23.9028284Z scalar_t=float 2025-08-14T22:40:23.9028353Z ] 2025-08-14T22:40:23.9028908Z 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-14T22:40:23.9028992Z with 2025-08-14T22:40:23.9029057Z [ 2025-08-14T22:40:23.9029132Z scalar_t=float 2025-08-14T22:40:23.9029206Z ] 2025-08-14T22:40:23.9029793Z 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-14T22:40:23.9029861Z with 2025-08-14T22:40:23.9029929Z [ 2025-08-14T22:40:23.9030018Z scalar_t=float 2025-08-14T22:40:23.9030084Z ] 2025-08-14T22:40:23.9030627Z 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-14T22:40:23.9030706Z with 2025-08-14T22:40:23.9030772Z [ 2025-08-14T22:40:23.9030850Z scalar_t=float 2025-08-14T22:40:23.9030937Z ] 2025-08-14T22:40:23.9031487Z 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-14T22:40:23.9031559Z with 2025-08-14T22:40:23.9031628Z [ 2025-08-14T22:40:23.9031712Z scalar_t=float 2025-08-14T22:40:23.9031776Z ] 2025-08-14T22:40:23.9032322Z 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-14T22:40:23.9032395Z with 2025-08-14T22:40:23.9032459Z [ 2025-08-14T22:40:23.9032538Z scalar_t=float 2025-08-14T22:40:23.9032609Z ] 2025-08-14T22:40:23.9033158Z 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-14T22:40:23.9033229Z with 2025-08-14T22:40:23.9033294Z [ 2025-08-14T22:40:23.9033381Z scalar_t=float 2025-08-14T22:40:23.9033448Z ] 2025-08-14T22:40:23.9033990Z 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-14T22:40:23.9034067Z with 2025-08-14T22:40:23.9034137Z [ 2025-08-14T22:40:23.9034212Z scalar_t=float 2025-08-14T22:40:23.9034277Z ] 2025-08-14T22:40:23.9034830Z 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-14T22:40:23.9034899Z with 2025-08-14T22:40:23.9034965Z [ 2025-08-14T22:40:23.9035047Z scalar_t=float 2025-08-14T22:40:23.9035113Z ] 2025-08-14T22:40:23.9035652Z 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-14T22:40:23.9036110Z with 2025-08-14T22:40:23.9036178Z [ 2025-08-14T22:40:23.9036258Z scalar_t=float 2025-08-14T22:40:23.9036329Z ] 2025-08-14T22:40:23.9036891Z 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-14T22:40:23.9036964Z with 2025-08-14T22:40:23.9037039Z [ 2025-08-14T22:40:23.9037125Z scalar_t=float 2025-08-14T22:40:23.9037193Z ] 2025-08-14T22:40:23.9037781Z 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-14T22:40:23.9037886Z with 2025-08-14T22:40:23.9037958Z [ 2025-08-14T22:40:23.9038037Z scalar_t=float 2025-08-14T22:40:23.9038105Z ] 2025-08-14T22:40:23.9038677Z 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-14T22:40:23.9038747Z with 2025-08-14T22:40:23.9038816Z [ 2025-08-14T22:40:23.9038892Z scalar_t=float 2025-08-14T22:40:23.9038974Z ] 2025-08-14T22:40:23.9039552Z 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-14T22:40:23.9039619Z with 2025-08-14T22:40:23.9039694Z [ 2025-08-14T22:40:23.9039778Z scalar_t=float 2025-08-14T22:40:23.9039846Z ] 2025-08-14T22:40:23.9040400Z 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-14T22:40:23.9040467Z with 2025-08-14T22:40:23.9040533Z [ 2025-08-14T22:40:23.9040607Z scalar_t=float 2025-08-14T22:40:23.9040690Z ] 2025-08-14T22:40:23.9041238Z 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-14T22:40:23.9041303Z with 2025-08-14T22:40:23.9041402Z [ 2025-08-14T22:40:23.9041486Z scalar_t=float 2025-08-14T22:40:23.9041560Z ] 2025-08-14T22:40:23.9042122Z 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-14T22:40:23.9042200Z with 2025-08-14T22:40:23.9042273Z [ 2025-08-14T22:40:23.9042359Z scalar_t=float 2025-08-14T22:40:23.9042440Z ] 2025-08-14T22:40:23.9042996Z 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-14T22:40:23.9043075Z with 2025-08-14T22:40:23.9043156Z [ 2025-08-14T22:40:23.9043234Z scalar_t=float 2025-08-14T22:40:23.9043306Z ] 2025-08-14T22:40:23.9043854Z 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-14T22:40:23.9043943Z with 2025-08-14T22:40:23.9044012Z [ 2025-08-14T22:40:23.9044092Z scalar_t=float 2025-08-14T22:40:23.9044170Z ] 2025-08-14T22:40:23.9044717Z 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-14T22:40:23.9044791Z with 2025-08-14T22:40:23.9044870Z [ 2025-08-14T22:40:23.9044948Z scalar_t=float 2025-08-14T22:40:23.9045016Z ] 2025-08-14T22:40:23.9045568Z 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-14T22:40:23.9046024Z with 2025-08-14T22:40:23.9046093Z [ 2025-08-14T22:40:23.9046177Z scalar_t=float 2025-08-14T22:40:23.9046262Z ] 2025-08-14T22:40:23.9046817Z 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-14T22:40:23.9046892Z with 2025-08-14T22:40:23.9046966Z [ 2025-08-14T22:40:23.9047103Z scalar_t=float 2025-08-14T22:40:23.9047206Z ] 2025-08-14T22:40:23.9047760Z 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-14T22:40:23.9047842Z with 2025-08-14T22:40:23.9047910Z [ 2025-08-14T22:40:23.9047991Z scalar_t=float 2025-08-14T22:40:23.9048085Z ] 2025-08-14T22:40:23.9048633Z 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-14T22:40:23.9048707Z with 2025-08-14T22:40:23.9048811Z [ 2025-08-14T22:40:23.9048905Z scalar_t=float 2025-08-14T22:40:23.9048978Z ] 2025-08-14T22:40:23.9049529Z 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-14T22:40:23.9049617Z with 2025-08-14T22:40:23.9049692Z [ 2025-08-14T22:40:23.9049778Z scalar_t=float 2025-08-14T22:40:23.9049850Z ] 2025-08-14T22:40:23.9050414Z 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-14T22:40:23.9050488Z with 2025-08-14T22:40:23.9050562Z [ 2025-08-14T22:40:23.9050664Z scalar_t=float 2025-08-14T22:40:23.9050735Z ] 2025-08-14T22:40:23.9051287Z 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-14T22:40:23.9051371Z with 2025-08-14T22:40:23.9051443Z [ 2025-08-14T22:40:23.9051521Z scalar_t=float 2025-08-14T22:40:23.9051590Z ] 2025-08-14T22:40:23.9052153Z 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-14T22:40:23.9052226Z with 2025-08-14T22:40:23.9052294Z [ 2025-08-14T22:40:23.9052384Z scalar_t=float 2025-08-14T22:40:23.9052453Z ] 2025-08-14T22:40:23.9052998Z 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-14T22:40:23.9053088Z with 2025-08-14T22:40:23.9053159Z [ 2025-08-14T22:40:23.9053237Z scalar_t=float 2025-08-14T22:40:23.9053306Z ] 2025-08-14T22:40:23.9053878Z 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-14T22:40:23.9053950Z with 2025-08-14T22:40:23.9054018Z [ 2025-08-14T22:40:23.9054114Z scalar_t=float 2025-08-14T22:40:23.9054185Z ] 2025-08-14T22:40:23.9054737Z 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-14T22:40:23.9054808Z with 2025-08-14T22:40:23.9054898Z [ 2025-08-14T22:40:23.9054981Z scalar_t=float 2025-08-14T22:40:23.9055402Z ] 2025-08-14T22:40:23.9055981Z 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-14T22:40:23.9056057Z with 2025-08-14T22:40:23.9056128Z [ 2025-08-14T22:40:23.9056207Z scalar_t=float 2025-08-14T22:40:23.9056297Z ] 2025-08-14T22:40:23.9056894Z 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-14T22:40:23.9057014Z with 2025-08-14T22:40:23.9057102Z [ 2025-08-14T22:40:23.9057187Z scalar_t=float 2025-08-14T22:40:23.9057260Z ] 2025-08-14T22:40:23.9057824Z 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-14T22:40:23.9057898Z with 2025-08-14T22:40:23.9057970Z [ 2025-08-14T22:40:23.9058163Z scalar_t=float 2025-08-14T22:40:23.9058254Z ] 2025-08-14T22:40:23.9058847Z 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-14T22:40:23.9058920Z with 2025-08-14T22:40:23.9059011Z [ 2025-08-14T22:40:23.9059094Z scalar_t=float 2025-08-14T22:40:23.9059164Z ] 2025-08-14T22:40:23.9059734Z 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-14T22:40:23.9059814Z with 2025-08-14T22:40:23.9059883Z [ 2025-08-14T22:40:23.9059965Z scalar_t=float 2025-08-14T22:40:23.9060056Z ] 2025-08-14T22:40:23.9060603Z 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-14T22:40:23.9060682Z with 2025-08-14T22:40:23.9060764Z [ 2025-08-14T22:40:23.9060843Z scalar_t=float 2025-08-14T22:40:23.9060915Z ] 2025-08-14T22:40:23.9061463Z 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-14T22:40:23.9061546Z with 2025-08-14T22:40:23.9061616Z [ 2025-08-14T22:40:23.9061707Z scalar_t=float 2025-08-14T22:40:23.9061791Z ] 2025-08-14T22:40:23.9062341Z 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-14T22:40:23.9062415Z with 2025-08-14T22:40:23.9062504Z [ 2025-08-14T22:40:23.9062586Z scalar_t=float 2025-08-14T22:40:23.9062656Z ] 2025-08-14T22:40:23.9063203Z 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-14T22:40:23.9063285Z with 2025-08-14T22:40:23.9063356Z [ 2025-08-14T22:40:23.9063439Z scalar_t=float 2025-08-14T22:40:23.9063520Z ] 2025-08-14T22:40:23.9064067Z 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-14T22:40:23.9064139Z with 2025-08-14T22:40:23.9064207Z [ 2025-08-14T22:40:23.9064301Z scalar_t=float 2025-08-14T22:40:23.9064370Z ] 2025-08-14T22:40:23.9064925Z 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-14T22:40:23.9065385Z with 2025-08-14T22:40:23.9065454Z [ 2025-08-14T22:40:23.9065532Z scalar_t=float 2025-08-14T22:40:23.9065606Z ] 2025-08-14T22:40:23.9066173Z 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-14T22:40:23.9066244Z with 2025-08-14T22:40:23.9066315Z [ 2025-08-14T22:40:23.9066408Z scalar_t=float 2025-08-14T22:40:23.9066478Z ] 2025-08-14T22:40:23.9067073Z 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-14T22:40:23.9067196Z with 2025-08-14T22:40:23.9067267Z [ 2025-08-14T22:40:23.9067347Z scalar_t=float 2025-08-14T22:40:23.9067419Z ] 2025-08-14T22:40:23.9067985Z 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-14T22:40:23.9068060Z with 2025-08-14T22:40:23.9068131Z [ 2025-08-14T22:40:23.9068230Z scalar_t=float 2025-08-14T22:40:23.9068342Z ] 2025-08-14T22:40:23.9068892Z 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-14T22:40:23.9068979Z with 2025-08-14T22:40:23.9069051Z [ 2025-08-14T22:40:23.9069133Z scalar_t=float 2025-08-14T22:40:23.9069202Z ] 2025-08-14T22:40:23.9069762Z 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-14T22:40:23.9069833Z with 2025-08-14T22:40:23.9069904Z [ 2025-08-14T22:40:23.9070009Z scalar_t=float 2025-08-14T22:40:23.9070079Z ] 2025-08-14T22:40:23.9070629Z 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-14T22:40:23.9070707Z with 2025-08-14T22:40:23.9070792Z [ 2025-08-14T22:40:23.9070874Z scalar_t=float 2025-08-14T22:40:23.9070945Z ] 2025-08-14T22:40:23.9071514Z 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-14T22:40:23.9071590Z with 2025-08-14T22:40:23.9071661Z [ 2025-08-14T22:40:23.9071752Z scalar_t=float 2025-08-14T22:40:23.9071824Z ] 2025-08-14T22:40:23.9072371Z 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-14T22:40:23.9072518Z with 2025-08-14T22:40:23.9072610Z [ 2025-08-14T22:40:23.9072693Z scalar_t=float 2025-08-14T22:40:23.9072766Z ] 2025-08-14T22:40:23.9073380Z 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-14T22:40:23.9073456Z with 2025-08-14T22:40:23.9073530Z [ 2025-08-14T22:40:23.9073611Z scalar_t=float 2025-08-14T22:40:23.9073701Z ] 2025-08-14T22:40:23.9074252Z 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-14T22:40:23.9074328Z with 2025-08-14T22:40:23.9074409Z [ 2025-08-14T22:40:23.9074494Z scalar_t=float 2025-08-14T22:40:23.9074565Z ] 2025-08-14T22:40:23.9075127Z 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-14T22:40:23.9075568Z with 2025-08-14T22:40:23.9075640Z [ 2025-08-14T22:40:23.9075720Z scalar_t=float 2025-08-14T22:40:23.9075806Z ] 2025-08-14T22:40:23.9076361Z 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-14T22:40:23.9087273Z with 2025-08-14T22:40:23.9087493Z [ 2025-08-14T22:40:23.9087628Z scalar_t=float 2025-08-14T22:40:23.9087702Z ] 2025-08-14T22:40:23.9088300Z 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-14T22:40:23.9088376Z with 2025-08-14T22:40:23.9088442Z [ 2025-08-14T22:40:23.9088536Z scalar_t=float 2025-08-14T22:40:23.9088601Z ] 2025-08-14T22:40:23.9089158Z 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-14T22:40:23.9089279Z with 2025-08-14T22:40:23.9089348Z [ 2025-08-14T22:40:23.9089424Z scalar_t=float 2025-08-14T22:40:23.9089502Z ] 2025-08-14T22:40:23.9090054Z 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-14T22:40:23.9090124Z with 2025-08-14T22:40:23.9090191Z [ 2025-08-14T22:40:23.9090281Z scalar_t=float 2025-08-14T22:40:23.9090420Z ] 2025-08-14T22:40:23.9091009Z 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-14T22:40:23.9091091Z with 2025-08-14T22:40:23.9091161Z [ 2025-08-14T22:40:23.9091240Z scalar_t=float 2025-08-14T22:40:23.9091304Z ] 2025-08-14T22:40:23.9091864Z 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-14T22:40:23.9091933Z with 2025-08-14T22:40:23.9091997Z [ 2025-08-14T22:40:23.9092088Z scalar_t=float 2025-08-14T22:40:23.9092156Z ] 2025-08-14T22:40:23.9092705Z 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-14T22:40:23.9092783Z with 2025-08-14T22:40:23.9092849Z [ 2025-08-14T22:40:23.9092924Z scalar_t=float 2025-08-14T22:40:23.9092991Z ] 2025-08-14T22:40:23.9093546Z 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-14T22:40:23.9093614Z with 2025-08-14T22:40:23.9093686Z [ 2025-08-14T22:40:23.9093769Z scalar_t=float 2025-08-14T22:40:23.9093841Z ] 2025-08-14T22:40:23.9094388Z 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-14T22:40:23.9094474Z with 2025-08-14T22:40:23.9094540Z [ 2025-08-14T22:40:23.9094625Z scalar_t=float 2025-08-14T22:40:23.9094693Z ] 2025-08-14T22:40:23.9095244Z 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-14T22:40:23.9095314Z with 2025-08-14T22:40:23.9095382Z [ 2025-08-14T22:40:23.9095961Z scalar_t=float 2025-08-14T22:40:23.9096023Z ] 2025-08-14T22:40:23.9096620Z 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-14T22:40:23.9096726Z with 2025-08-14T22:40:23.9096805Z [ 2025-08-14T22:40:23.9096881Z scalar_t=float 2025-08-14T22:40:23.9096954Z ] 2025-08-14T22:40:23.9097549Z 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-14T22:40:23.9097658Z with 2025-08-14T22:40:23.9097726Z [ 2025-08-14T22:40:23.9097812Z scalar_t=float 2025-08-14T22:40:23.9097878Z ] 2025-08-14T22:40:23.9098508Z 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-14T22:40:23.9098580Z with 2025-08-14T22:40:23.9098659Z [ 2025-08-14T22:40:23.9098737Z scalar_t=float 2025-08-14T22:40:23.9098806Z ] 2025-08-14T22:40:23.9099405Z 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-14T22:40:23.9099472Z with 2025-08-14T22:40:23.9099542Z [ 2025-08-14T22:40:23.9099620Z scalar_t=float 2025-08-14T22:40:23.9099697Z ] 2025-08-14T22:40:23.9100243Z 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-14T22:40:23.9100312Z with 2025-08-14T22:40:23.9100388Z [ 2025-08-14T22:40:23.9100470Z scalar_t=float 2025-08-14T22:40:23.9100537Z ] 2025-08-14T22:40:23.9101090Z 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-14T22:40:23.9101156Z with 2025-08-14T22:40:23.9101220Z [ 2025-08-14T22:40:23.9101294Z scalar_t=float 2025-08-14T22:40:23.9101369Z ] 2025-08-14T22:40:23.9101914Z 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-14T22:40:23.9101980Z with 2025-08-14T22:40:23.9102062Z [ 2025-08-14T22:40:23.9102178Z scalar_t=float 2025-08-14T22:40:23.9102246Z ] 2025-08-14T22:40:23.9102840Z 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-14T22:40:23.9102919Z with 2025-08-14T22:40:23.9102984Z [ 2025-08-14T22:40:23.9103062Z scalar_t=float 2025-08-14T22:40:23.9103134Z ] 2025-08-14T22:40:23.9103677Z 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-14T22:40:23.9103747Z with 2025-08-14T22:40:23.9103824Z [ 2025-08-14T22:40:23.9103901Z scalar_t=float 2025-08-14T22:40:23.9103968Z ] 2025-08-14T22:40:23.9104514Z 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-14T22:40:23.9104590Z with 2025-08-14T22:40:23.9104657Z [ 2025-08-14T22:40:23.9104731Z scalar_t=float 2025-08-14T22:40:23.9104801Z ] 2025-08-14T22:40:23.9105343Z 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-14T22:40:23.9105825Z with 2025-08-14T22:40:23.9105892Z [ 2025-08-14T22:40:23.9105993Z scalar_t=float 2025-08-14T22:40:23.9106058Z ] 2025-08-14T22:40:23.9106609Z 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-14T22:40:23.9106686Z with 2025-08-14T22:40:23.9106751Z [ 2025-08-14T22:40:23.9106829Z scalar_t=float 2025-08-14T22:40:23.9106907Z ] 2025-08-14T22:40:23.9107525Z 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-14T22:40:23.9107595Z with 2025-08-14T22:40:23.9107664Z [ 2025-08-14T22:40:23.9107749Z scalar_t=float 2025-08-14T22:40:23.9108187Z ] 2025-08-14T22:40:23.9108776Z 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-14T22:40:23.9108858Z with 2025-08-14T22:40:23.9108925Z [ 2025-08-14T22:40:23.9109038Z scalar_t=float 2025-08-14T22:40:23.9109115Z ] 2025-08-14T22:40:23.9109664Z 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-14T22:40:23.9109731Z with 2025-08-14T22:40:23.9109804Z [ 2025-08-14T22:40:23.9109898Z scalar_t=float 2025-08-14T22:40:23.9109966Z ] 2025-08-14T22:40:23.9110512Z 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-14T22:40:23.9110595Z with 2025-08-14T22:40:23.9110670Z [ 2025-08-14T22:40:23.9110750Z scalar_t=float 2025-08-14T22:40:23.9110815Z ] 2025-08-14T22:40:23.9111385Z 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-14T22:40:23.9111458Z with 2025-08-14T22:40:23.9111535Z [ 2025-08-14T22:40:23.9111623Z scalar_t=float 2025-08-14T22:40:23.9111694Z ] 2025-08-14T22:40:23.9112241Z 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-14T22:40:23.9112325Z with 2025-08-14T22:40:23.9112391Z [ 2025-08-14T22:40:23.9112482Z scalar_t=float 2025-08-14T22:40:23.9112551Z ] 2025-08-14T22:40:23.9113104Z 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-14T22:40:23.9113178Z with 2025-08-14T22:40:23.9113250Z [ 2025-08-14T22:40:23.9113339Z scalar_t=float 2025-08-14T22:40:23.9113410Z ] 2025-08-14T22:40:23.9113994Z 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-14T22:40:23.9114068Z with 2025-08-14T22:40:23.9114135Z [ 2025-08-14T22:40:23.9114209Z scalar_t=float 2025-08-14T22:40:23.9114275Z ] 2025-08-14T22:40:23.9114863Z 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-14T22:40:23.9114931Z with 2025-08-14T22:40:23.9114998Z [ 2025-08-14T22:40:23.9115089Z scalar_t=float 2025-08-14T22:40:23.9115153Z ] 2025-08-14T22:40:23.9116092Z 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-14T22:40:23.9116164Z with 2025-08-14T22:40:23.9116242Z [ 2025-08-14T22:40:23.9116322Z scalar_t=float 2025-08-14T22:40:23.9116390Z ] 2025-08-14T22:40:23.9116949Z 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-14T22:40:23.9117090Z with 2025-08-14T22:40:23.9117428Z [ 2025-08-14T22:40:23.9117506Z scalar_t=float 2025-08-14T22:40:23.9117586Z ] 2025-08-14T22:40:23.9118137Z 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-14T22:40:23.9118207Z with 2025-08-14T22:40:23.9118281Z [ 2025-08-14T22:40:23.9118362Z scalar_t=float 2025-08-14T22:40:23.9118429Z ] 2025-08-14T22:40:23.9119035Z 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-14T22:40:23.9119109Z with 2025-08-14T22:40:23.9119176Z [ 2025-08-14T22:40:23.9119254Z scalar_t=float 2025-08-14T22:40:23.9119328Z ] 2025-08-14T22:40:23.9119918Z 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-14T22:40:23.9119991Z with 2025-08-14T22:40:23.9120064Z [ 2025-08-14T22:40:23.9120140Z scalar_t=float 2025-08-14T22:40:23.9120205Z ] 2025-08-14T22:40:23.9120826Z 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-14T22:40:23.9120902Z with 2025-08-14T22:40:23.9120968Z [ 2025-08-14T22:40:23.9121051Z scalar_t=float 2025-08-14T22:40:23.9121134Z ] 2025-08-14T22:40:23.9121684Z 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-14T22:40:23.9121751Z with 2025-08-14T22:40:23.9121831Z [ 2025-08-14T22:40:23.9121912Z scalar_t=float 2025-08-14T22:40:23.9121983Z ] 2025-08-14T22:40:23.9122525Z 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-14T22:40:23.9122601Z with 2025-08-14T22:40:23.9122667Z [ 2025-08-14T22:40:23.9122741Z scalar_t=float 2025-08-14T22:40:23.9122820Z ] 2025-08-14T22:40:23.9123364Z 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-14T22:40:23.9123431Z with 2025-08-14T22:40:23.9123503Z [ 2025-08-14T22:40:23.9123581Z scalar_t=float 2025-08-14T22:40:23.9123646Z ] 2025-08-14T22:40:23.9124195Z 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-14T22:40:23.9124275Z with 2025-08-14T22:40:23.9124344Z [ 2025-08-14T22:40:23.9124422Z scalar_t=float 2025-08-14T22:40:23.9124498Z ] 2025-08-14T22:40:23.9125045Z 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-14T22:40:23.9125119Z with 2025-08-14T22:40:23.9125555Z [ 2025-08-14T22:40:23.9125652Z scalar_t=float 2025-08-14T22:40:23.9125725Z ] 2025-08-14T22:40:23.9126323Z 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-14T22:40:23.9126439Z with 2025-08-14T22:40:23.9126507Z [ 2025-08-14T22:40:23.9126585Z scalar_t=float 2025-08-14T22:40:23.9126665Z ] 2025-08-14T22:40:23.9127259Z 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-14T22:40:23.9127370Z with 2025-08-14T22:40:23.9127438Z [ 2025-08-14T22:40:23.9127530Z scalar_t=float 2025-08-14T22:40:23.9127600Z ] 2025-08-14T22:40:23.9128152Z 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-14T22:40:23.9128239Z with 2025-08-14T22:40:23.9128307Z [ 2025-08-14T22:40:23.9128396Z scalar_t=float 2025-08-14T22:40:23.9128467Z ] 2025-08-14T22:40:23.9129261Z 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-14T22:40:23.9129337Z with 2025-08-14T22:40:23.9129410Z [ 2025-08-14T22:40:23.9129506Z scalar_t=float 2025-08-14T22:40:23.9129578Z ] 2025-08-14T22:40:23.9130129Z 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-14T22:40:23.9130215Z with 2025-08-14T22:40:23.9130283Z [ 2025-08-14T22:40:23.9130361Z scalar_t=float 2025-08-14T22:40:23.9130434Z ] 2025-08-14T22:40:23.9131000Z 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-14T22:40:23.9131069Z with 2025-08-14T22:40:23.9131135Z [ 2025-08-14T22:40:23.9131227Z scalar_t=float 2025-08-14T22:40:23.9131293Z ] 2025-08-14T22:40:23.9131882Z 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-14T22:40:23.9131970Z with 2025-08-14T22:40:23.9132048Z [ 2025-08-14T22:40:23.9132160Z scalar_t=float 2025-08-14T22:40:23.9132229Z ] 2025-08-14T22:40:23.9132779Z 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-14T22:40:23.9132845Z with 2025-08-14T22:40:23.9132913Z [ 2025-08-14T22:40:23.9133006Z scalar_t=float 2025-08-14T22:40:23.9133070Z ] 2025-08-14T22:40:23.9133618Z 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-14T22:40:23.9133694Z with 2025-08-14T22:40:23.9133758Z [ 2025-08-14T22:40:23.9133836Z scalar_t=float 2025-08-14T22:40:23.9133911Z ] 2025-08-14T22:40:23.9134455Z 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-14T22:40:23.9134522Z with 2025-08-14T22:40:23.9134586Z [ 2025-08-14T22:40:23.9134668Z scalar_t=float 2025-08-14T22:40:23.9134730Z ] 2025-08-14T22:40:23.9135271Z 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-14T22:40:23.9135711Z with 2025-08-14T22:40:23.9135785Z [ 2025-08-14T22:40:23.9135867Z scalar_t=float 2025-08-14T22:40:23.9135942Z ] 2025-08-14T22:40:23.9136496Z 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-14T22:40:23.9136571Z with 2025-08-14T22:40:23.9136639Z [ 2025-08-14T22:40:23.9136725Z scalar_t=float 2025-08-14T22:40:23.9136867Z ] 2025-08-14T22:40:23.9137454Z 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-14T22:40:23.9137534Z with 2025-08-14T22:40:23.9137600Z [ 2025-08-14T22:40:23.9137686Z scalar_t=float 2025-08-14T22:40:23.9137754Z ] 2025-08-14T22:40:23.9138419Z 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-14T22:40:23.9138487Z with 2025-08-14T22:40:23.9138552Z [ 2025-08-14T22:40:23.9138686Z scalar_t=float 2025-08-14T22:40:23.9138758Z ] 2025-08-14T22:40:23.9139299Z 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-14T22:40:23.9139380Z with 2025-08-14T22:40:23.9139447Z [ 2025-08-14T22:40:23.9139524Z scalar_t=float 2025-08-14T22:40:23.9139589Z ] 2025-08-14T22:40:23.9140144Z 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-14T22:40:23.9140208Z with 2025-08-14T22:40:23.9140274Z [ 2025-08-14T22:40:23.9140363Z scalar_t=float 2025-08-14T22:40:23.9140429Z ] 2025-08-14T22:40:23.9140976Z 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-14T22:40:23.9141053Z with 2025-08-14T22:40:23.9141119Z [ 2025-08-14T22:40:23.9141194Z scalar_t=float 2025-08-14T22:40:23.9141266Z ] 2025-08-14T22:40:23.9141823Z 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-14T22:40:23.9141891Z with 2025-08-14T22:40:23.9141965Z [ 2025-08-14T22:40:23.9142049Z scalar_t=float 2025-08-14T22:40:23.9142119Z ] 2025-08-14T22:40:23.9142660Z 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-14T22:40:23.9142727Z with 2025-08-14T22:40:23.9142799Z [ 2025-08-14T22:40:23.9142873Z scalar_t=float 2025-08-14T22:40:23.9142936Z ] 2025-08-14T22:40:23.9143529Z 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-14T22:40:23.9143636Z with 2025-08-14T22:40:23.9143702Z [ 2025-08-14T22:40:23.9143782Z scalar_t=float 2025-08-14T22:40:23.9143860Z ] 2025-08-14T22:40:23.9144405Z 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-14T22:40:23.9144476Z with 2025-08-14T22:40:23.9144552Z [ 2025-08-14T22:40:23.9144626Z scalar_t=float 2025-08-14T22:40:23.9145079Z ] 2025-08-14T22:40:23.9145637Z 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-14T22:40:23.9145705Z with 2025-08-14T22:40:23.9145770Z [ 2025-08-14T22:40:23.9145853Z scalar_t=float 2025-08-14T22:40:23.9145929Z ] 2025-08-14T22:40:23.9146473Z 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-14T22:40:23.9146618Z with 2025-08-14T22:40:23.9146697Z [ 2025-08-14T22:40:23.9146776Z scalar_t=float 2025-08-14T22:40:23.9146844Z ] 2025-08-14T22:40:23.9147402Z 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-14T22:40:23.9147475Z with 2025-08-14T22:40:23.9147541Z [ 2025-08-14T22:40:23.9147616Z scalar_t=float 2025-08-14T22:40:23.9147691Z ] 2025-08-14T22:40:23.9148269Z 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-14T22:40:23.9148337Z with 2025-08-14T22:40:23.9148409Z [ 2025-08-14T22:40:23.9148484Z scalar_t=float 2025-08-14T22:40:23.9148548Z ] 2025-08-14T22:40:23.9149135Z 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-14T22:40:23.9149217Z with 2025-08-14T22:40:23.9149320Z [ 2025-08-14T22:40:23.9149399Z scalar_t=float 2025-08-14T22:40:23.9149473Z ] 2025-08-14T22:40:23.9150016Z 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-14T22:40:23.9150084Z with 2025-08-14T22:40:23.9150163Z [ 2025-08-14T22:40:23.9150238Z scalar_t=float 2025-08-14T22:40:23.9150304Z ] 2025-08-14T22:40:23.9150853Z 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-14T22:40:23.9150931Z with 2025-08-14T22:40:23.9150998Z [ 2025-08-14T22:40:23.9151077Z scalar_t=float 2025-08-14T22:40:23.9151154Z ] 2025-08-14T22:40:23.9151703Z 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-14T22:40:23.9151768Z with 2025-08-14T22:40:23.9151832Z [ 2025-08-14T22:40:23.9151926Z scalar_t=float 2025-08-14T22:40:23.9151992Z ] 2025-08-14T22:40:23.9152539Z 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-14T22:40:23.9152611Z with 2025-08-14T22:40:23.9152677Z [ 2025-08-14T22:40:23.9152754Z scalar_t=float 2025-08-14T22:40:23.9152826Z ] 2025-08-14T22:40:23.9153368Z 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-14T22:40:23.9153439Z with 2025-08-14T22:40:23.9153506Z [ 2025-08-14T22:40:23.9153591Z scalar_t=float 2025-08-14T22:40:23.9153658Z ] 2025-08-14T22:40:23.9154199Z 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-14T22:40:23.9154739Z with 2025-08-14T22:40:23.9154810Z [ 2025-08-14T22:40:23.9154893Z scalar_t=float 2025-08-14T22:40:23.9154961Z ] 2025-08-14T22:40:23.9155558Z 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-14T22:40:23.9155629Z with 2025-08-14T22:40:23.9155700Z [ 2025-08-14T22:40:23.9155788Z scalar_t=float 2025-08-14T22:40:23.9155853Z ] 2025-08-14T22:40:23.9156447Z 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-14T22:40:23.9156566Z with 2025-08-14T22:40:23.9156635Z [ 2025-08-14T22:40:23.9156718Z scalar_t=float 2025-08-14T22:40:23.9156794Z ] 2025-08-14T22:40:23.9157349Z 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-14T22:40:23.9157422Z with 2025-08-14T22:40:23.9157490Z [ 2025-08-14T22:40:23.9157581Z scalar_t=float 2025-08-14T22:40:23.9157646Z ] 2025-08-14T22:40:23.9158232Z 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-14T22:40:23.9158331Z with 2025-08-14T22:40:23.9158404Z [ 2025-08-14T22:40:23.9158489Z scalar_t=float 2025-08-14T22:40:23.9158567Z ] 2025-08-14T22:40:23.9159114Z 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-14T22:40:23.9159181Z with 2025-08-14T22:40:23.9159245Z [ 2025-08-14T22:40:23.9159328Z scalar_t=float 2025-08-14T22:40:23.9159394Z ] 2025-08-14T22:40:23.9159938Z 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-14T22:40:23.9160016Z with 2025-08-14T22:40:23.9160081Z [ 2025-08-14T22:40:23.9160155Z scalar_t=float 2025-08-14T22:40:23.9160229Z ] 2025-08-14T22:40:23.9160847Z 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-14T22:40:23.9160925Z with 2025-08-14T22:40:23.9160993Z [ 2025-08-14T22:40:23.9161072Z scalar_t=float 2025-08-14T22:40:23.9161138Z ] 2025-08-14T22:40:23.9161680Z 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-14T22:40:23.9161755Z with 2025-08-14T22:40:23.9161827Z [ 2025-08-14T22:40:23.9161899Z scalar_t=float 2025-08-14T22:40:23.9161962Z ] 2025-08-14T22:40:23.9162513Z 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-14T22:40:23.9162579Z with 2025-08-14T22:40:23.9162641Z [ 2025-08-14T22:40:23.9162726Z scalar_t=float 2025-08-14T22:40:23.9162788Z ] 2025-08-14T22:40:23.9163345Z 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-14T22:40:23.9163423Z with 2025-08-14T22:40:23.9163495Z [ 2025-08-14T22:40:23.9163572Z scalar_t=float 2025-08-14T22:40:23.9163640Z ] 2025-08-14T22:40:23.9164195Z 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-14T22:40:23.9164308Z with 2025-08-14T22:40:23.9164373Z [ 2025-08-14T22:40:23.9164460Z scalar_t=float 2025-08-14T22:40:23.9164524Z ] 2025-08-14T22:40:23.9165069Z 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-14T22:40:23.9165142Z with 2025-08-14T22:40:23.9165207Z [ 2025-08-14T22:40:23.9165331Z scalar_t=float 2025-08-14T22:40:23.9165427Z ] 2025-08-14T22:40:23.9165977Z 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-14T22:40:23.9166081Z with 2025-08-14T22:40:23.9166159Z [ 2025-08-14T22:40:23.9166242Z scalar_t=float 2025-08-14T22:40:23.9166308Z ] 2025-08-14T22:40:23.9166891Z 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-14T22:40:23.9166957Z with 2025-08-14T22:40:23.9167076Z [ 2025-08-14T22:40:23.9167152Z scalar_t=float 2025-08-14T22:40:23.9167215Z ] 2025-08-14T22:40:23.9167772Z 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-14T22:40:23.9167841Z with 2025-08-14T22:40:23.9167905Z [ 2025-08-14T22:40:23.9167981Z scalar_t=float 2025-08-14T22:40:23.9168057Z ] 2025-08-14T22:40:23.9168597Z 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-14T22:40:23.9168664Z with 2025-08-14T22:40:23.9168736Z [ 2025-08-14T22:40:23.9168809Z scalar_t=float 2025-08-14T22:40:23.9168872Z ] 2025-08-14T22:40:23.9169424Z 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-14T22:40:23.9169489Z with 2025-08-14T22:40:23.9169564Z [ 2025-08-14T22:40:23.9169642Z scalar_t=float 2025-08-14T22:40:23.9169715Z ] 2025-08-14T22:40:23.9170258Z 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-14T22:40:23.9170326Z with 2025-08-14T22:40:23.9170397Z [ 2025-08-14T22:40:23.9170472Z scalar_t=float 2025-08-14T22:40:23.9170535Z ] 2025-08-14T22:40:23.9171085Z 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-14T22:40:23.9171152Z with 2025-08-14T22:40:23.9171216Z [ 2025-08-14T22:40:23.9171294Z scalar_t=float 2025-08-14T22:40:23.9171370Z ] 2025-08-14T22:40:23.9171952Z 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-14T22:40:23.9172021Z with 2025-08-14T22:40:23.9172096Z [ 2025-08-14T22:40:23.9172171Z scalar_t=float 2025-08-14T22:40:23.9172274Z ] 2025-08-14T22:40:23.9172820Z 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-14T22:40:23.9172903Z with 2025-08-14T22:40:23.9172969Z [ 2025-08-14T22:40:23.9173042Z scalar_t=float 2025-08-14T22:40:23.9173158Z ] 2025-08-14T22:40:23.9173705Z 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-14T22:40:23.9173771Z with 2025-08-14T22:40:23.9173849Z [ 2025-08-14T22:40:23.9173928Z scalar_t=float 2025-08-14T22:40:23.9173993Z ] 2025-08-14T22:40:23.9174571Z 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-14T22:40:23.9174682Z with 2025-08-14T22:40:23.9174747Z [ 2025-08-14T22:40:23.9174822Z scalar_t=float 2025-08-14T22:40:23.9174894Z ] 2025-08-14T22:40:23.9175438Z 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-14T22:40:23.9175512Z with 2025-08-14T22:40:23.9175577Z [ 2025-08-14T22:40:23.9175660Z scalar_t=float 2025-08-14T22:40:23.9175728Z ] 2025-08-14T22:40:23.9176309Z 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-14T22:40:23.9176384Z with 2025-08-14T22:40:23.9176448Z [ 2025-08-14T22:40:23.9176523Z scalar_t=float 2025-08-14T22:40:23.9176602Z ] 2025-08-14T22:40:23.9177148Z 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-14T22:40:23.9177216Z with 2025-08-14T22:40:23.9177286Z [ 2025-08-14T22:40:23.9177370Z scalar_t=float 2025-08-14T22:40:23.9177438Z ] 2025-08-14T22:40:23.9178124Z 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-14T22:40:23.9178208Z with 2025-08-14T22:40:23.9178275Z [ 2025-08-14T22:40:23.9178350Z scalar_t=float 2025-08-14T22:40:23.9178414Z ] 2025-08-14T22:40:23.9178971Z 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-14T22:40:23.9179040Z with 2025-08-14T22:40:23.9179108Z [ 2025-08-14T22:40:23.9179195Z scalar_t=float 2025-08-14T22:40:23.9179261Z ] 2025-08-14T22:40:23.9179807Z 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-14T22:40:23.9179892Z with 2025-08-14T22:40:23.9179958Z [ 2025-08-14T22:40:23.9180034Z scalar_t=float 2025-08-14T22:40:23.9180102Z ] 2025-08-14T22:40:23.9180652Z 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-14T22:40:23.9180718Z with 2025-08-14T22:40:23.9180783Z [ 2025-08-14T22:40:23.9180870Z scalar_t=float 2025-08-14T22:40:23.9180933Z ] 2025-08-14T22:40:23.9181478Z 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-14T22:40:23.9181556Z with 2025-08-14T22:40:23.9181619Z [ 2025-08-14T22:40:23.9181691Z scalar_t=float 2025-08-14T22:40:23.9181756Z ] 2025-08-14T22:40:23.9182302Z 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-14T22:40:23.9182424Z with 2025-08-14T22:40:23.9182492Z [ 2025-08-14T22:40:23.9182589Z scalar_t=float 2025-08-14T22:40:23.9182658Z ] 2025-08-14T22:40:23.9183205Z 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-14T22:40:23.9183316Z with 2025-08-14T22:40:23.9183391Z [ 2025-08-14T22:40:23.9183467Z scalar_t=float 2025-08-14T22:40:23.9183535Z ] 2025-08-14T22:40:23.9184560Z 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-14T22:40:23.9184672Z with 2025-08-14T22:40:23.9184740Z [ 2025-08-14T22:40:23.9184819Z scalar_t=float 2025-08-14T22:40:23.9184901Z ] 2025-08-14T22:40:23.9185451Z 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-14T22:40:23.9185523Z with 2025-08-14T22:40:23.9185606Z [ 2025-08-14T22:40:23.9185684Z scalar_t=float 2025-08-14T22:40:23.9185748Z ] 2025-08-14T22:40:23.9186349Z 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-14T22:40:23.9186422Z with 2025-08-14T22:40:23.9186489Z [ 2025-08-14T22:40:23.9186568Z scalar_t=float 2025-08-14T22:40:23.9186641Z ] 2025-08-14T22:40:23.9187184Z 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-14T22:40:23.9187249Z with 2025-08-14T22:40:23.9187328Z [ 2025-08-14T22:40:23.9187409Z scalar_t=float 2025-08-14T22:40:23.9187476Z ] 2025-08-14T22:40:23.9188016Z 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-14T22:40:23.9188094Z with 2025-08-14T22:40:23.9188161Z [ 2025-08-14T22:40:23.9188236Z scalar_t=float 2025-08-14T22:40:23.9188313Z ] 2025-08-14T22:40:23.9188859Z 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-14T22:40:23.9188931Z with 2025-08-14T22:40:23.9189043Z [ 2025-08-14T22:40:23.9189119Z scalar_t=float 2025-08-14T22:40:23.9189183Z ] 2025-08-14T22:40:23.9189767Z 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-14T22:40:23.9189845Z with 2025-08-14T22:40:23.9189916Z [ 2025-08-14T22:40:23.9189990Z scalar_t=float 2025-08-14T22:40:23.9190073Z ] 2025-08-14T22:40:23.9190618Z 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-14T22:40:23.9190684Z with 2025-08-14T22:40:23.9190762Z [ 2025-08-14T22:40:23.9190842Z scalar_t=float 2025-08-14T22:40:23.9190907Z ] 2025-08-14T22:40:23.9191456Z 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-14T22:40:23.9191549Z with 2025-08-14T22:40:23.9191619Z [ 2025-08-14T22:40:23.9191700Z scalar_t=float 2025-08-14T22:40:23.9191783Z ] 2025-08-14T22:40:23.9192343Z 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-14T22:40:23.9192465Z with 2025-08-14T22:40:23.9192535Z [ 2025-08-14T22:40:23.9192642Z scalar_t=float 2025-08-14T22:40:23.9192713Z ] 2025-08-14T22:40:23.9193261Z 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-14T22:40:23.9193348Z with 2025-08-14T22:40:23.9193421Z [ 2025-08-14T22:40:23.9193572Z scalar_t=float 2025-08-14T22:40:23.9193642Z ] 2025-08-14T22:40:23.9194209Z 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-14T22:40:23.9194288Z with 2025-08-14T22:40:23.9194355Z [ 2025-08-14T22:40:23.9194456Z scalar_t=float 2025-08-14T22:40:23.9194526Z ] 2025-08-14T22:40:23.9195115Z 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-14T22:40:23.9195276Z with 2025-08-14T22:40:23.9195347Z [ 2025-08-14T22:40:23.9195427Z scalar_t=float 2025-08-14T22:40:23.9195495Z ] 2025-08-14T22:40:23.9196058Z 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-14T22:40:23.9196131Z with 2025-08-14T22:40:23.9196199Z [ 2025-08-14T22:40:23.9196302Z scalar_t=float 2025-08-14T22:40:23.9196370Z ] 2025-08-14T22:40:23.9196918Z 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-14T22:40:23.9197003Z with 2025-08-14T22:40:23.9197072Z [ 2025-08-14T22:40:23.9197150Z scalar_t=float 2025-08-14T22:40:23.9197219Z ] 2025-08-14T22:40:23.9197785Z 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-14T22:40:23.9197855Z with 2025-08-14T22:40:23.9197922Z [ 2025-08-14T22:40:23.9198016Z scalar_t=float 2025-08-14T22:40:23.9198083Z ] 2025-08-14T22:40:23.9198632Z 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-14T22:40:23.9198704Z with 2025-08-14T22:40:23.9198796Z [ 2025-08-14T22:40:23.9198876Z scalar_t=float 2025-08-14T22:40:23.9198944Z ] 2025-08-14T22:40:23.9199512Z 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-14T22:40:23.9199589Z with 2025-08-14T22:40:23.9199658Z [ 2025-08-14T22:40:23.9199753Z scalar_t=float 2025-08-14T22:40:23.9199828Z ] 2025-08-14T22:40:23.9200376Z 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-14T22:40:23.9200453Z with 2025-08-14T22:40:23.9200578Z [ 2025-08-14T22:40:23.9200666Z scalar_t=float 2025-08-14T22:40:23.9200737Z ] 2025-08-14T22:40:23.9201336Z 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-14T22:40:23.9201409Z with 2025-08-14T22:40:23.9201483Z [ 2025-08-14T22:40:23.9201616Z scalar_t=float 2025-08-14T22:40:23.9201702Z ] 2025-08-14T22:40:23.9202254Z 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-14T22:40:23.9202329Z with 2025-08-14T22:40:23.9202416Z [ 2025-08-14T22:40:23.9202499Z scalar_t=float 2025-08-14T22:40:23.9202575Z ] 2025-08-14T22:40:23.9203190Z 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-14T22:40:23.9203295Z with 2025-08-14T22:40:23.9203367Z [ 2025-08-14T22:40:23.9203453Z scalar_t=float 2025-08-14T22:40:23.9203543Z ] 2025-08-14T22:40:23.9204089Z 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-14T22:40:23.9204166Z with 2025-08-14T22:40:23.9204254Z [ 2025-08-14T22:40:23.9204335Z scalar_t=float 2025-08-14T22:40:23.9204406Z ] 2025-08-14T22:40:23.9204992Z 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-14T22:40:23.9205077Z with 2025-08-14T22:40:23.9205152Z [ 2025-08-14T22:40:23.9205234Z scalar_t=float 2025-08-14T22:40:23.9205317Z ] 2025-08-14T22:40:23.9205866Z 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-14T22:40:23.9205941Z with 2025-08-14T22:40:23.9206022Z [ 2025-08-14T22:40:23.9206101Z scalar_t=float 2025-08-14T22:40:23.9206171Z ] 2025-08-14T22:40:23.9206800Z 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-14T22:40:23.9206889Z with 2025-08-14T22:40:23.9206958Z [ 2025-08-14T22:40:23.9207041Z scalar_t=float 2025-08-14T22:40:23.9207167Z ] 2025-08-14T22:40:23.9207752Z 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-14T22:40:23.9207827Z with 2025-08-14T22:40:23.9207934Z [ 2025-08-14T22:40:23.9208027Z scalar_t=float 2025-08-14T22:40:23.9208106Z ] 2025-08-14T22:40:23.9208728Z 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-14T22:40:23.9208814Z with 2025-08-14T22:40:23.9208883Z [ 2025-08-14T22:40:23.9208966Z scalar_t=float 2025-08-14T22:40:23.9209090Z ] 2025-08-14T22:40:23.9209648Z 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-14T22:40:23.9209721Z with 2025-08-14T22:40:23.9209791Z [ 2025-08-14T22:40:23.9209897Z scalar_t=float 2025-08-14T22:40:23.9209969Z ] 2025-08-14T22:40:23.9210520Z 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-14T22:40:23.9210610Z with 2025-08-14T22:40:23.9210688Z [ 2025-08-14T22:40:23.9210769Z scalar_t=float 2025-08-14T22:40:23.9210846Z ] 2025-08-14T22:40:23.9211406Z 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-14T22:40:23.9211539Z with 2025-08-14T22:40:23.9211613Z [ 2025-08-14T22:40:23.9211707Z scalar_t=float 2025-08-14T22:40:23.9211778Z ] 2025-08-14T22:40:23.9212328Z 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-14T22:40:23.9212417Z with 2025-08-14T22:40:23.9212480Z [ 2025-08-14T22:40:23.9212563Z scalar_t=float 2025-08-14T22:40:23.9212636Z ] 2025-08-14T22:40:23.9213277Z 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-14T22:40:23.9213347Z with 2025-08-14T22:40:23.9213420Z [ 2025-08-14T22:40:23.9213516Z scalar_t=float 2025-08-14T22:40:23.9213583Z ] 2025-08-14T22:40:23.9214125Z 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-14T22:40:23.9214209Z with 2025-08-14T22:40:23.9214278Z [ 2025-08-14T22:40:23.9214393Z scalar_t=float 2025-08-14T22:40:23.9214506Z ] 2025-08-14T22:40:23.9215105Z 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-14T22:40:23.9215176Z with 2025-08-14T22:40:23.9215250Z [ 2025-08-14T22:40:23.9215342Z scalar_t=float 2025-08-14T22:40:23.9215413Z ] 2025-08-14T22:40:23.9215964Z 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-14T22:40:23.9216035Z with 2025-08-14T22:40:23.9216121Z [ 2025-08-14T22:40:23.9216206Z scalar_t=float 2025-08-14T22:40:23.9216285Z ] 2025-08-14T22:40:23.9216847Z 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-14T22:40:23.9216920Z with 2025-08-14T22:40:23.9216999Z [ 2025-08-14T22:40:23.9217093Z scalar_t=float 2025-08-14T22:40:23.9217164Z ] 2025-08-14T22:40:23.9217713Z 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-14T22:40:23.9217787Z with 2025-08-14T22:40:23.9217872Z [ 2025-08-14T22:40:23.9217953Z scalar_t=float 2025-08-14T22:40:23.9218025Z ] 2025-08-14T22:40:23.9218662Z 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-14T22:40:23.9218741Z with 2025-08-14T22:40:23.9218815Z [ 2025-08-14T22:40:23.9218902Z scalar_t=float 2025-08-14T22:40:23.9218993Z ] 2025-08-14T22:40:23.9219551Z 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-14T22:40:23.9219624Z with 2025-08-14T22:40:23.9219712Z [ 2025-08-14T22:40:23.9219795Z scalar_t=float 2025-08-14T22:40:23.9219867Z ] 2025-08-14T22:40:23.9220508Z 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-14T22:40:23.9220585Z with 2025-08-14T22:40:23.9220657Z [ 2025-08-14T22:40:23.9220744Z scalar_t=float 2025-08-14T22:40:23.9220860Z ] 2025-08-14T22:40:23.9221517Z 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-14T22:40:23.9221592Z with 2025-08-14T22:40:23.9221677Z [ 2025-08-14T22:40:23.9221765Z scalar_t=float 2025-08-14T22:40:23.9221837Z ] 2025-08-14T22:40:23.9222386Z 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-14T22:40:23.9222474Z with 2025-08-14T22:40:23.9222622Z [ 2025-08-14T22:40:23.9222705Z scalar_t=float 2025-08-14T22:40:23.9222791Z ] 2025-08-14T22:40:23.9223339Z 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-14T22:40:23.9223412Z with 2025-08-14T22:40:23.9223497Z [ 2025-08-14T22:40:23.9223580Z scalar_t=float 2025-08-14T22:40:23.9223651Z ] 2025-08-14T22:40:23.9224203Z 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-14T22:40:23.9224328Z with 2025-08-14T22:40:23.9224400Z [ 2025-08-14T22:40:23.9224479Z scalar_t=float 2025-08-14T22:40:23.9224562Z ] 2025-08-14T22:40:23.9225111Z 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-14T22:40:23.9225184Z with 2025-08-14T22:40:23.9225257Z [ 2025-08-14T22:40:23.9225348Z scalar_t=float 2025-08-14T22:40:23.9225418Z ] 2025-08-14T22:40:23.9225965Z 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-14T22:40:23.9226053Z with 2025-08-14T22:40:23.9226126Z [ 2025-08-14T22:40:23.9226209Z scalar_t=float 2025-08-14T22:40:23.9226300Z ] 2025-08-14T22:40:23.9226921Z 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-14T22:40:23.9226994Z with 2025-08-14T22:40:23.9227066Z [ 2025-08-14T22:40:23.9227159Z scalar_t=float 2025-08-14T22:40:23.9227234Z ] 2025-08-14T22:40:23.9227860Z 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-14T22:40:23.9227957Z with 2025-08-14T22:40:23.9228059Z [ 2025-08-14T22:40:23.9228148Z scalar_t=float 2025-08-14T22:40:23.9228222Z ] 2025-08-14T22:40:23.9228869Z 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-14T22:40:23.9228936Z with 2025-08-14T22:40:23.9229003Z [ 2025-08-14T22:40:23.9229087Z scalar_t=float 2025-08-14T22:40:23.9229153Z ] 2025-08-14T22:40:23.9229694Z 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-14T22:40:23.9229768Z with 2025-08-14T22:40:23.9229839Z [ 2025-08-14T22:40:23.9229914Z scalar_t=float 2025-08-14T22:40:23.9229978Z ] 2025-08-14T22:40:23.9230530Z 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-14T22:40:23.9230594Z with 2025-08-14T22:40:23.9230707Z [ 2025-08-14T22:40:23.9230791Z scalar_t=float 2025-08-14T22:40:23.9230860Z ] 2025-08-14T22:40:23.9231399Z 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-14T22:40:23.9231477Z with 2025-08-14T22:40:23.9231541Z [ 2025-08-14T22:40:23.9231617Z scalar_t=float 2025-08-14T22:40:23.9231682Z ] 2025-08-14T22:40:23.9232269Z 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-14T22:40:23.9232372Z with 2025-08-14T22:40:23.9232438Z [ 2025-08-14T22:40:23.9232524Z scalar_t=float 2025-08-14T22:40:23.9232594Z ] 2025-08-14T22:40:23.9233136Z 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-14T22:40:23.9233208Z with 2025-08-14T22:40:23.9233286Z [ 2025-08-14T22:40:23.9233360Z scalar_t=float 2025-08-14T22:40:23.9233424Z ] 2025-08-14T22:40:23.9234023Z 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-14T22:40:23.9234130Z with 2025-08-14T22:40:23.9234195Z [ 2025-08-14T22:40:23.9234284Z scalar_t=float 2025-08-14T22:40:23.9234351Z ] 2025-08-14T22:40:23.9234940Z 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-14T22:40:23.9235008Z with 2025-08-14T22:40:23.9235080Z [ 2025-08-14T22:40:23.9235161Z scalar_t=float 2025-08-14T22:40:23.9235226Z ] 2025-08-14T22:40:23.9235781Z 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-14T22:40:23.9235847Z with 2025-08-14T22:40:23.9235913Z [ 2025-08-14T22:40:23.9235988Z scalar_t=float 2025-08-14T22:40:23.9236064Z ] 2025-08-14T22:40:23.9236610Z 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-14T22:40:23.9236679Z with 2025-08-14T22:40:23.9236753Z [ 2025-08-14T22:40:23.9236831Z scalar_t=float 2025-08-14T22:40:23.9236901Z ] 2025-08-14T22:40:23.9237452Z 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-14T22:40:23.9237518Z with 2025-08-14T22:40:23.9237585Z [ 2025-08-14T22:40:23.9237660Z scalar_t=float 2025-08-14T22:40:23.9237730Z ] 2025-08-14T22:40:23.9238276Z 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-14T22:40:23.9238342Z with 2025-08-14T22:40:23.9238415Z [ 2025-08-14T22:40:23.9238491Z scalar_t=float 2025-08-14T22:40:23.9238555Z ] 2025-08-14T22:40:23.9239102Z 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-14T22:40:23.9239181Z with 2025-08-14T22:40:23.9239244Z [ 2025-08-14T22:40:23.9239326Z scalar_t=float 2025-08-14T22:40:23.9239398Z ] 2025-08-14T22:40:23.9239983Z 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-14T22:40:23.9240095Z with 2025-08-14T22:40:23.9240167Z [ 2025-08-14T22:40:23.9240280Z scalar_t=float 2025-08-14T22:40:23.9240347Z ] 2025-08-14T22:40:23.9240930Z 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-14T22:40:23.9241042Z with 2025-08-14T22:40:23.9241111Z [ 2025-08-14T22:40:23.9241188Z scalar_t=float 2025-08-14T22:40:23.9241307Z ] 2025-08-14T22:40:23.9241884Z 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-14T22:40:23.9241958Z with 2025-08-14T22:40:23.9242022Z [ 2025-08-14T22:40:23.9242106Z scalar_t=float 2025-08-14T22:40:23.9242174Z ] 2025-08-14T22:40:23.9242717Z 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-14T22:40:23.9242793Z with 2025-08-14T22:40:23.9242858Z [ 2025-08-14T22:40:23.9242974Z scalar_t=float 2025-08-14T22:40:23.9243045Z ] 2025-08-14T22:40:23.9243587Z 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-14T22:40:23.9243660Z with 2025-08-14T22:40:23.9243725Z [ 2025-08-14T22:40:23.9243810Z scalar_t=float 2025-08-14T22:40:23.9243877Z ] 2025-08-14T22:40:23.9244418Z 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-14T22:40:23.9244491Z with 2025-08-14T22:40:23.9244557Z [ 2025-08-14T22:40:23.9244632Z scalar_t=float 2025-08-14T22:40:23.9244698Z ] 2025-08-14T22:40:23.9245256Z 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-14T22:40:23.9245325Z with 2025-08-14T22:40:23.9245388Z [ 2025-08-14T22:40:23.9245472Z scalar_t=float 2025-08-14T22:40:23.9245538Z ] 2025-08-14T22:40:23.9246082Z 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-14T22:40:23.9246164Z with 2025-08-14T22:40:23.9246260Z [ 2025-08-14T22:40:23.9246341Z scalar_t=float 2025-08-14T22:40:23.9246406Z ] 2025-08-14T22:40:23.9247004Z 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-14T22:40:23.9247108Z with 2025-08-14T22:40:23.9247178Z [ 2025-08-14T22:40:23.9247267Z scalar_t=float 2025-08-14T22:40:23.9247338Z ] 2025-08-14T22:40:23.9247958Z 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-14T22:40:23.9248031Z with 2025-08-14T22:40:23.9248100Z [ 2025-08-14T22:40:23.9248178Z scalar_t=float 2025-08-14T22:40:23.9248285Z ] 2025-08-14T22:40:23.9248884Z 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-14T22:40:23.9248957Z with 2025-08-14T22:40:23.9249062Z [ 2025-08-14T22:40:23.9249144Z scalar_t=float 2025-08-14T22:40:23.9249211Z ] 2025-08-14T22:40:23.9249885Z 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-14T22:40:23.9249951Z with 2025-08-14T22:40:23.9250029Z [ 2025-08-14T22:40:23.9250106Z scalar_t=float 2025-08-14T22:40:23.9250169Z ] 2025-08-14T22:40:23.9250716Z 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-14T22:40:23.9250821Z with 2025-08-14T22:40:23.9250916Z [ 2025-08-14T22:40:23.9250992Z scalar_t=float 2025-08-14T22:40:23.9251069Z ] 2025-08-14T22:40:23.9251621Z 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-14T22:40:23.9251686Z with 2025-08-14T22:40:23.9251761Z [ 2025-08-14T22:40:23.9251840Z scalar_t=float 2025-08-14T22:40:23.9251905Z ] 2025-08-14T22:40:23.9252512Z 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-14T22:40:23.9252578Z with 2025-08-14T22:40:23.9252641Z [ 2025-08-14T22:40:23.9252719Z scalar_t=float 2025-08-14T22:40:23.9252795Z ] 2025-08-14T22:40:23.9253344Z 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-14T22:40:23.9253414Z with 2025-08-14T22:40:23.9253489Z [ 2025-08-14T22:40:23.9253566Z scalar_t=float 2025-08-14T22:40:23.9253631Z ] 2025-08-14T22:40:23.9254180Z 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-14T22:40:23.9254247Z with 2025-08-14T22:40:23.9254312Z [ 2025-08-14T22:40:23.9254389Z scalar_t=float 2025-08-14T22:40:23.9254460Z ] 2025-08-14T22:40:23.9255009Z 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-14T22:40:23.9255111Z with 2025-08-14T22:40:23.9255187Z [ 2025-08-14T22:40:23.9255261Z scalar_t=float 2025-08-14T22:40:23.9255330Z ] 2025-08-14T22:40:23.9255949Z 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-14T22:40:23.9256028Z with 2025-08-14T22:40:23.9256094Z [ 2025-08-14T22:40:23.9256167Z scalar_t=float 2025-08-14T22:40:23.9256282Z ] 2025-08-14T22:40:23.9256868Z 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-14T22:40:23.9256941Z with 2025-08-14T22:40:23.9257054Z [ 2025-08-14T22:40:23.9257134Z scalar_t=float 2025-08-14T22:40:23.9257199Z ] 2025-08-14T22:40:23.9257812Z 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-14T22:40:23.9257894Z with 2025-08-14T22:40:23.9257960Z [ 2025-08-14T22:40:23.9258112Z scalar_t=float 2025-08-14T22:40:23.9258191Z ] 2025-08-14T22:40:23.9258735Z 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-14T22:40:23.9258803Z with 2025-08-14T22:40:23.9258930Z [ 2025-08-14T22:40:23.9259023Z scalar_t=float 2025-08-14T22:40:23.9259093Z ] 2025-08-14T22:40:23.9259639Z 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-14T22:40:23.9259719Z with 2025-08-14T22:40:23.9259786Z [ 2025-08-14T22:40:23.9259864Z scalar_t=float 2025-08-14T22:40:23.9259946Z ] 2025-08-14T22:40:23.9260529Z 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-14T22:40:23.9260629Z with 2025-08-14T22:40:23.9260693Z [ 2025-08-14T22:40:23.9260782Z scalar_t=float 2025-08-14T22:40:23.9260847Z ] 2025-08-14T22:40:23.9261390Z 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-14T22:40:23.9261473Z with 2025-08-14T22:40:23.9261540Z [ 2025-08-14T22:40:23.9261621Z scalar_t=float 2025-08-14T22:40:23.9261688Z ] 2025-08-14T22:40:23.9262282Z 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-14T22:40:23.9262350Z with 2025-08-14T22:40:23.9262415Z [ 2025-08-14T22:40:23.9262502Z scalar_t=float 2025-08-14T22:40:23.9262567Z ] 2025-08-14T22:40:23.9263149Z 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-14T22:40:23.9263236Z with 2025-08-14T22:40:23.9263302Z [ 2025-08-14T22:40:23.9263378Z scalar_t=float 2025-08-14T22:40:23.9263477Z ] 2025-08-14T22:40:23.9264037Z 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-14T22:40:23.9264110Z with 2025-08-14T22:40:23.9264181Z [ 2025-08-14T22:40:23.9264267Z scalar_t=float 2025-08-14T22:40:23.9264330Z ] 2025-08-14T22:40:23.9264870Z 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-14T22:40:23.9264948Z with 2025-08-14T22:40:23.9265012Z [ 2025-08-14T22:40:23.9265087Z scalar_t=float 2025-08-14T22:40:23.9265151Z ] 2025-08-14T22:40:23.9265701Z 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-14T22:40:23.9265769Z with 2025-08-14T22:40:23.9265831Z [ 2025-08-14T22:40:23.9265912Z scalar_t=float 2025-08-14T22:40:23.9265975Z ] 2025-08-14T22:40:23.9266518Z 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-14T22:40:23.9266583Z with 2025-08-14T22:40:23.9266656Z [ 2025-08-14T22:40:23.9266729Z scalar_t=float 2025-08-14T22:40:23.9266792Z ] 2025-08-14T22:40:23.9267357Z 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-14T22:40:23.9267425Z with 2025-08-14T22:40:23.9267492Z [ 2025-08-14T22:40:23.9267568Z scalar_t=float 2025-08-14T22:40:23.9267639Z ] 2025-08-14T22:40:23.9268187Z 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-14T22:40:23.9268298Z with 2025-08-14T22:40:23.9268368Z [ 2025-08-14T22:40:23.9268442Z scalar_t=float 2025-08-14T22:40:23.9268505Z ] 2025-08-14T22:40:23.9269129Z 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-14T22:40:23.9269200Z with 2025-08-14T22:40:23.9269265Z [ 2025-08-14T22:40:23.9269380Z scalar_t=float 2025-08-14T22:40:23.9269972Z ] 2025-08-14T22:40:23.9270519Z 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-14T22:40:23.9270588Z with 2025-08-14T22:40:23.9270665Z [ 2025-08-14T22:40:23.9270745Z scalar_t=float 2025-08-14T22:40:23.9270821Z ] 2025-08-14T22:40:23.9271371Z 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-14T22:40:23.9271440Z with 2025-08-14T22:40:23.9271507Z [ 2025-08-14T22:40:23.9271622Z scalar_t=float 2025-08-14T22:40:23.9271696Z ] 2025-08-14T22:40:23.9272241Z 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-14T22:40:23.9272312Z with 2025-08-14T22:40:23.9272385Z [ 2025-08-14T22:40:23.9272459Z scalar_t=float 2025-08-14T22:40:23.9272524Z ] 2025-08-14T22:40:23.9273065Z 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-14T22:40:23.9273150Z with 2025-08-14T22:40:23.9273216Z [ 2025-08-14T22:40:23.9273293Z scalar_t=float 2025-08-14T22:40:23.9273371Z ] 2025-08-14T22:40:23.9273920Z 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-14T22:40:23.9273987Z with 2025-08-14T22:40:23.9274062Z [ 2025-08-14T22:40:23.9274141Z scalar_t=float 2025-08-14T22:40:23.9274205Z ] 2025-08-14T22:40:23.9274827Z 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-14T22:40:23.9274904Z with 2025-08-14T22:40:23.9274969Z [ 2025-08-14T22:40:23.9275044Z scalar_t=float 2025-08-14T22:40:23.9275149Z ] 2025-08-14T22:40:23.9275742Z 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-14T22:40:23.9275824Z with 2025-08-14T22:40:23.9275919Z [ 2025-08-14T22:40:23.9276013Z scalar_t=float 2025-08-14T22:40:23.9276077Z ] 2025-08-14T22:40:23.9276657Z 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-14T22:40:23.9276738Z with 2025-08-14T22:40:23.9276807Z [ 2025-08-14T22:40:23.9276893Z scalar_t=float 2025-08-14T22:40:23.9276959Z ] 2025-08-14T22:40:23.9277512Z 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-14T22:40:23.9277580Z with 2025-08-14T22:40:23.9277646Z [ 2025-08-14T22:40:23.9277736Z scalar_t=float 2025-08-14T22:40:23.9277856Z ] 2025-08-14T22:40:23.9278403Z 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-14T22:40:23.9278481Z with 2025-08-14T22:40:23.9278546Z [ 2025-08-14T22:40:23.9278624Z scalar_t=float 2025-08-14T22:40:23.9278697Z ] 2025-08-14T22:40:23.9279285Z 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-14T22:40:23.9279392Z with 2025-08-14T22:40:23.9279457Z [ 2025-08-14T22:40:23.9279539Z scalar_t=float 2025-08-14T22:40:23.9279608Z ] 2025-08-14T22:40:23.9280154Z 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-14T22:40:23.9280238Z with 2025-08-14T22:40:23.9280306Z [ 2025-08-14T22:40:23.9280385Z scalar_t=float 2025-08-14T22:40:23.9280449Z ] 2025-08-14T22:40:23.9281287Z 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-14T22:40:23.9281359Z with 2025-08-14T22:40:23.9281426Z [ 2025-08-14T22:40:23.9281514Z scalar_t=float 2025-08-14T22:40:23.9281627Z ] 2025-08-14T22:40:23.9282216Z 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-14T22:40:23.9282286Z with 2025-08-14T22:40:23.9282395Z [ 2025-08-14T22:40:23.9282473Z scalar_t=float 2025-08-14T22:40:23.9282537Z ] 2025-08-14T22:40:23.9283132Z 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-14T22:40:23.9283235Z with 2025-08-14T22:40:23.9283300Z [ 2025-08-14T22:40:23.9283383Z scalar_t=float 2025-08-14T22:40:23.9283446Z ] 2025-08-14T22:40:23.9284031Z 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-14T22:40:23.9284099Z with 2025-08-14T22:40:23.9284168Z [ 2025-08-14T22:40:23.9284245Z scalar_t=float 2025-08-14T22:40:23.9284312Z ] 2025-08-14T22:40:23.9284861Z 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-14T22:40:23.9284928Z with 2025-08-14T22:40:23.9284998Z [ 2025-08-14T22:40:23.9285072Z scalar_t=float 2025-08-14T22:40:23.9285149Z ] 2025-08-14T22:40:23.9285689Z 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-14T22:40:23.9285755Z with 2025-08-14T22:40:23.9285844Z [ 2025-08-14T22:40:23.9285920Z scalar_t=float 2025-08-14T22:40:23.9285983Z ] 2025-08-14T22:40:23.9286540Z 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-14T22:40:23.9286607Z with 2025-08-14T22:40:23.9286673Z [ 2025-08-14T22:40:23.9286748Z scalar_t=float 2025-08-14T22:40:23.9286825Z ] 2025-08-14T22:40:23.9287373Z 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-14T22:40:23.9287497Z with 2025-08-14T22:40:23.9287575Z [ 2025-08-14T22:40:23.9287656Z scalar_t=float 2025-08-14T22:40:23.9287723Z ] 2025-08-14T22:40:23.9288267Z 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-14T22:40:23.9288348Z with 2025-08-14T22:40:23.9288417Z [ 2025-08-14T22:40:23.9288492Z scalar_t=float 2025-08-14T22:40:23.9288566Z ] 2025-08-14T22:40:23.9289192Z 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-14T22:40:23.9289334Z with 2025-08-14T22:40:23.9289408Z [ 2025-08-14T22:40:23.9289487Z scalar_t=float 2025-08-14T22:40:23.9289554Z ] 2025-08-14T22:40:23.9290179Z 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-14T22:40:23.9290272Z with 2025-08-14T22:40:23.9290339Z [ 2025-08-14T22:40:23.9290453Z scalar_t=float 2025-08-14T22:40:23.9290532Z ] 2025-08-14T22:40:23.9291151Z 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-14T22:40:23.9291220Z with 2025-08-14T22:40:23.9291297Z [ 2025-08-14T22:40:23.9291375Z scalar_t=float 2025-08-14T22:40:23.9291442Z ] 2025-08-14T22:40:23.9291984Z 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-14T22:40:23.9292061Z with 2025-08-14T22:40:23.9292126Z [ 2025-08-14T22:40:23.9292204Z scalar_t=float 2025-08-14T22:40:23.9292288Z ] 2025-08-14T22:40:23.9292831Z 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-14T22:40:23.9292901Z with 2025-08-14T22:40:23.9292974Z [ 2025-08-14T22:40:23.9293058Z scalar_t=float 2025-08-14T22:40:23.9293125Z ] 2025-08-14T22:40:23.9293667Z 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-14T22:40:23.9293742Z with 2025-08-14T22:40:23.9293811Z [ 2025-08-14T22:40:23.9293892Z scalar_t=float 2025-08-14T22:40:23.9293957Z ] 2025-08-14T22:40:23.9294514Z 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-14T22:40:23.9294582Z with 2025-08-14T22:40:23.9294646Z [ 2025-08-14T22:40:23.9294734Z scalar_t=float 2025-08-14T22:40:23.9294799Z ] 2025-08-14T22:40:23.9295340Z 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-14T22:40:23.9295420Z with 2025-08-14T22:40:23.9295485Z [ 2025-08-14T22:40:23.9295560Z scalar_t=float 2025-08-14T22:40:23.9295627Z ] 2025-08-14T22:40:23.9296219Z 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-14T22:40:23.9296289Z with 2025-08-14T22:40:23.9296353Z [ 2025-08-14T22:40:23.9296472Z scalar_t=float 2025-08-14T22:40:23.9296548Z ] 2025-08-14T22:40:23.9297134Z 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-14T22:40:23.9297296Z with 2025-08-14T22:40:23.9297361Z [ 2025-08-14T22:40:23.9297438Z scalar_t=float 2025-08-14T22:40:23.9297503Z ] 2025-08-14T22:40:23.9298124Z 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-14T22:40:23.9298194Z with 2025-08-14T22:40:23.9298264Z [ 2025-08-14T22:40:23.9298427Z scalar_t=float 2025-08-14T22:40:23.9298516Z ] 2025-08-14T22:40:23.9299058Z 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-14T22:40:23.9299131Z with 2025-08-14T22:40:23.9299205Z [ 2025-08-14T22:40:23.9299283Z scalar_t=float 2025-08-14T22:40:23.9299353Z ] 2025-08-14T22:40:23.9299908Z 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-14T22:40:23.9299977Z with 2025-08-14T22:40:23.9300077Z [ 2025-08-14T22:40:23.9300163Z scalar_t=float 2025-08-14T22:40:23.9300228Z ] 2025-08-14T22:40:23.9300776Z 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-14T22:40:23.9300850Z with 2025-08-14T22:40:23.9300921Z [ 2025-08-14T22:40:23.9300997Z scalar_t=float 2025-08-14T22:40:23.9301059Z ] 2025-08-14T22:40:23.9301614Z 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-14T22:40:23.9301689Z with 2025-08-14T22:40:23.9301753Z [ 2025-08-14T22:40:23.9301828Z scalar_t=float 2025-08-14T22:40:23.9301905Z ] 2025-08-14T22:40:23.9302448Z 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-14T22:40:23.9302551Z with 2025-08-14T22:40:23.9302623Z [ 2025-08-14T22:40:23.9302706Z scalar_t=float 2025-08-14T22:40:23.9302769Z ] 2025-08-14T22:40:23.9303395Z 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-14T22:40:23.9303466Z with 2025-08-14T22:40:23.9303530Z [ 2025-08-14T22:40:23.9303604Z scalar_t=float 2025-08-14T22:40:23.9303678Z ] 2025-08-14T22:40:23.9304222Z 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-14T22:40:23.9304295Z with 2025-08-14T22:40:23.9304365Z [ 2025-08-14T22:40:23.9304442Z scalar_t=float 2025-08-14T22:40:23.9304511Z ] 2025-08-14T22:40:23.9305053Z 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-14T22:40:23.9305129Z with 2025-08-14T22:40:23.9305200Z [ 2025-08-14T22:40:23.9305284Z scalar_t=float 2025-08-14T22:40:23.9305361Z ] 2025-08-14T22:40:23.9305902Z 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-14T22:40:23.9305968Z with 2025-08-14T22:40:23.9306039Z [ 2025-08-14T22:40:23.9306162Z scalar_t=float 2025-08-14T22:40:23.9306227Z ] 2025-08-14T22:40:23.9306767Z 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-14T22:40:23.9306838Z with 2025-08-14T22:40:23.9306910Z [ 2025-08-14T22:40:23.9306986Z scalar_t=float 2025-08-14T22:40:23.9307056Z ] 2025-08-14T22:40:23.9307633Z 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-14T22:40:23.9307733Z with 2025-08-14T22:40:23.9307803Z [ 2025-08-14T22:40:23.9307877Z scalar_t=float 2025-08-14T22:40:23.9307943Z ] 2025-08-14T22:40:23.9308488Z 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-14T22:40:23.9308604Z with 2025-08-14T22:40:23.9308670Z [ 2025-08-14T22:40:23.9308745Z scalar_t=float 2025-08-14T22:40:23.9308819Z ] 2025-08-14T22:40:23.9309441Z 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-14T22:40:23.9309510Z with 2025-08-14T22:40:23.9309580Z [ 2025-08-14T22:40:23.9309663Z scalar_t=float 2025-08-14T22:40:23.9309727Z ] 2025-08-14T22:40:23.9310273Z 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-14T22:40:23.9310351Z with 2025-08-14T22:40:23.9310416Z [ 2025-08-14T22:40:23.9310490Z scalar_t=float 2025-08-14T22:40:23.9310554Z ] 2025-08-14T22:40:23.9311118Z 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-14T22:40:23.9311188Z with 2025-08-14T22:40:23.9311251Z [ 2025-08-14T22:40:23.9311338Z scalar_t=float 2025-08-14T22:40:23.9311403Z ] 2025-08-14T22:40:23.9311946Z 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-14T22:40:23.9312020Z with 2025-08-14T22:40:23.9312086Z [ 2025-08-14T22:40:23.9312167Z scalar_t=float 2025-08-14T22:40:23.9312231Z ] 2025-08-14T22:40:23.9312786Z 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-14T22:40:23.9312852Z with 2025-08-14T22:40:23.9312917Z [ 2025-08-14T22:40:23.9313001Z scalar_t=float 2025-08-14T22:40:23.9313068Z ] 2025-08-14T22:40:23.9313609Z 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-14T22:40:23.9313683Z with 2025-08-14T22:40:23.9313749Z [ 2025-08-14T22:40:23.9313824Z scalar_t=float 2025-08-14T22:40:23.9313888Z ] 2025-08-14T22:40:23.9314481Z 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-14T22:40:23.9314553Z with 2025-08-14T22:40:23.9314616Z [ 2025-08-14T22:40:23.9314733Z scalar_t=float 2025-08-14T22:40:23.9314803Z ] 2025-08-14T22:40:23.9315388Z 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-14T22:40:23.9315503Z with 2025-08-14T22:40:23.9315575Z [ 2025-08-14T22:40:23.9315654Z scalar_t=float 2025-08-14T22:40:23.9315720Z ] 2025-08-14T22:40:23.9316273Z 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-14T22:40:23.9316339Z with 2025-08-14T22:40:23.9316403Z [ 2025-08-14T22:40:23.9316487Z scalar_t=float 2025-08-14T22:40:23.9316550Z ] 2025-08-14T22:40:23.9317132Z 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-14T22:40:23.9317233Z with 2025-08-14T22:40:23.9317303Z [ 2025-08-14T22:40:23.9317378Z scalar_t=float 2025-08-14T22:40:23.9317443Z ] 2025-08-14T22:40:23.9317999Z 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-14T22:40:23.9318069Z with 2025-08-14T22:40:23.9318133Z [ 2025-08-14T22:40:23.9318208Z scalar_t=float 2025-08-14T22:40:23.9318327Z ] 2025-08-14T22:40:23.9318871Z 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-14T22:40:23.9318944Z with 2025-08-14T22:40:23.9319017Z [ 2025-08-14T22:40:23.9319091Z scalar_t=float 2025-08-14T22:40:23.9319158Z ] 2025-08-14T22:40:23.9319713Z 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-14T22:40:23.9319779Z with 2025-08-14T22:40:23.9319844Z [ 2025-08-14T22:40:23.9319919Z scalar_t=float 2025-08-14T22:40:23.9320000Z ] 2025-08-14T22:40:23.9320586Z 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-14T22:40:23.9320659Z with 2025-08-14T22:40:23.9320767Z [ 2025-08-14T22:40:23.9320844Z scalar_t=float 2025-08-14T22:40:23.9320909Z ] 2025-08-14T22:40:23.9321493Z 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-14T22:40:23.9321573Z with 2025-08-14T22:40:23.9321638Z [ 2025-08-14T22:40:23.9321710Z scalar_t=float 2025-08-14T22:40:23.9321784Z ] 2025-08-14T22:40:23.9322325Z 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-14T22:40:23.9322392Z with 2025-08-14T22:40:23.9322464Z [ 2025-08-14T22:40:23.9322539Z scalar_t=float 2025-08-14T22:40:23.9322612Z ] 2025-08-14T22:40:23.9323156Z 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-14T22:40:23.9323231Z with 2025-08-14T22:40:23.9323295Z [ 2025-08-14T22:40:23.9323369Z scalar_t=float 2025-08-14T22:40:23.9323440Z ] 2025-08-14T22:40:23.9323982Z 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-14T22:40:23.9324049Z with 2025-08-14T22:40:23.9324116Z [ 2025-08-14T22:40:23.9324203Z scalar_t=float 2025-08-14T22:40:23.9324267Z ] 2025-08-14T22:40:23.9324814Z 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-14T22:40:23.9324935Z with 2025-08-14T22:40:23.9325000Z [ 2025-08-14T22:40:23.9325076Z scalar_t=float 2025-08-14T22:40:23.9325150Z ] 2025-08-14T22:40:23.9325692Z 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-14T22:40:23.9325761Z with 2025-08-14T22:40:23.9325867Z [ 2025-08-14T22:40:23.9325981Z scalar_t=float 2025-08-14T22:40:23.9326047Z ] 2025-08-14T22:40:23.9326631Z 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-14T22:40:23.9326711Z with 2025-08-14T22:40:23.9326809Z [ 2025-08-14T22:40:23.9326890Z scalar_t=float 2025-08-14T22:40:23.9326956Z ] 2025-08-14T22:40:23.9327545Z 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-14T22:40:23.9327648Z with 2025-08-14T22:40:23.9327713Z [ 2025-08-14T22:40:23.9327799Z scalar_t=float 2025-08-14T22:40:23.9327864Z ] 2025-08-14T22:40:23.9328409Z 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-14T22:40:23.9328487Z with 2025-08-14T22:40:23.9328553Z [ 2025-08-14T22:40:23.9328629Z scalar_t=float 2025-08-14T22:40:23.9328699Z ] 2025-08-14T22:40:23.9329249Z 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-14T22:40:23.9329320Z with 2025-08-14T22:40:23.9329385Z [ 2025-08-14T22:40:23.9329470Z scalar_t=float 2025-08-14T22:40:23.9329538Z ] 2025-08-14T22:40:23.9330082Z 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-14T22:40:23.9330166Z with 2025-08-14T22:40:23.9330230Z [ 2025-08-14T22:40:23.9330308Z scalar_t=float 2025-08-14T22:40:23.9330372Z ] 2025-08-14T22:40:23.9330925Z 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-14T22:40:23.9330990Z with 2025-08-14T22:40:23.9331055Z [ 2025-08-14T22:40:23.9331141Z scalar_t=float 2025-08-14T22:40:23.9331204Z ] 2025-08-14T22:40:23.9331747Z 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-14T22:40:23.9331817Z with 2025-08-14T22:40:23.9331890Z [ 2025-08-14T22:40:23.9331966Z scalar_t=float 2025-08-14T22:40:23.9332031Z ] 2025-08-14T22:40:23.9332589Z 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-14T22:40:23.9332655Z with 2025-08-14T22:40:23.9332724Z [ 2025-08-14T22:40:23.9332811Z scalar_t=float 2025-08-14T22:40:23.9332875Z ] 2025-08-14T22:40:23.9333417Z 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-14T22:40:23.9333482Z with 2025-08-14T22:40:23.9333554Z [ 2025-08-14T22:40:23.9334179Z scalar_t=float 2025-08-14T22:40:23.9334245Z ] 2025-08-14T22:40:23.9334797Z 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-14T22:40:23.9334870Z with 2025-08-14T22:40:23.9334934Z [ 2025-08-14T22:40:23.9335014Z scalar_t=float 2025-08-14T22:40:23.9335089Z ] 2025-08-14T22:40:23.9335982Z 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-14T22:40:23.9336092Z with 2025-08-14T22:40:23.9336171Z [ 2025-08-14T22:40:23.9336246Z scalar_t=float 2025-08-14T22:40:23.9336314Z ] 2025-08-14T22:40:23.9336867Z 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-14T22:40:23.9336941Z with 2025-08-14T22:40:23.9337006Z [ 2025-08-14T22:40:23.9337080Z scalar_t=float 2025-08-14T22:40:23.9337153Z ] 2025-08-14T22:40:23.9337809Z 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-14T22:40:23.9337923Z with 2025-08-14T22:40:23.9337996Z [ 2025-08-14T22:40:23.9338145Z scalar_t=float 2025-08-14T22:40:23.9338215Z ] 2025-08-14T22:40:23.9338802Z 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-14T22:40:23.9338882Z with 2025-08-14T22:40:23.9338949Z [ 2025-08-14T22:40:23.9339023Z scalar_t=float 2025-08-14T22:40:23.9339100Z ] 2025-08-14T22:40:23.9339643Z 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-14T22:40:23.9339707Z with 2025-08-14T22:40:23.9339777Z [ 2025-08-14T22:40:23.9339855Z scalar_t=float 2025-08-14T22:40:23.9339920Z ] 2025-08-14T22:40:23.9340462Z 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-14T22:40:23.9340532Z with 2025-08-14T22:40:23.9340608Z [ 2025-08-14T22:40:23.9340681Z scalar_t=float 2025-08-14T22:40:23.9340749Z ] 2025-08-14T22:40:23.9341287Z 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-14T22:40:23.9341354Z with 2025-08-14T22:40:23.9341418Z [ 2025-08-14T22:40:23.9341499Z scalar_t=float 2025-08-14T22:40:23.9341564Z ] 2025-08-14T22:40:23.9342104Z 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-14T22:40:23.9342177Z with 2025-08-14T22:40:23.9342243Z [ 2025-08-14T22:40:23.9342317Z scalar_t=float 2025-08-14T22:40:23.9342390Z ] 2025-08-14T22:40:23.9342934Z 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-14T22:40:23.9343002Z with 2025-08-14T22:40:23.9343067Z [ 2025-08-14T22:40:23.9343148Z scalar_t=float 2025-08-14T22:40:23.9343211Z ] 2025-08-14T22:40:23.9343751Z 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-14T22:40:23.9344218Z with 2025-08-14T22:40:23.9344287Z [ 2025-08-14T22:40:23.9344368Z scalar_t=float 2025-08-14T22:40:23.9344434Z ] 2025-08-14T22:40:23.9344995Z 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-14T22:40:23.9345062Z with 2025-08-14T22:40:23.9345127Z [ 2025-08-14T22:40:23.9345219Z scalar_t=float 2025-08-14T22:40:23.9345320Z ] 2025-08-14T22:40:23.9345900Z 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-14T22:40:23.9345974Z with 2025-08-14T22:40:23.9346039Z [ 2025-08-14T22:40:23.9346113Z scalar_t=float 2025-08-14T22:40:23.9346178Z ] 2025-08-14T22:40:23.9346740Z 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-14T22:40:23.9346807Z with 2025-08-14T22:40:23.9346875Z [ 2025-08-14T22:40:23.9346998Z scalar_t=float 2025-08-14T22:40:23.9347063Z ] 2025-08-14T22:40:23.9347607Z 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-14T22:40:23.9347682Z with 2025-08-14T22:40:23.9347747Z [ 2025-08-14T22:40:23.9347825Z scalar_t=float 2025-08-14T22:40:23.9347888Z ] 2025-08-14T22:40:23.9348448Z 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-14T22:40:23.9348514Z with 2025-08-14T22:40:23.9348583Z [ 2025-08-14T22:40:23.9348677Z scalar_t=float 2025-08-14T22:40:23.9348742Z ] 2025-08-14T22:40:23.9349294Z 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-14T22:40:23.9349369Z with 2025-08-14T22:40:23.9349445Z [ 2025-08-14T22:40:23.9349525Z scalar_t=float 2025-08-14T22:40:23.9349587Z ] 2025-08-14T22:40:23.9350139Z 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-14T22:40:23.9350209Z with 2025-08-14T22:40:23.9350271Z [ 2025-08-14T22:40:23.9350344Z scalar_t=float 2025-08-14T22:40:23.9350418Z ] 2025-08-14T22:40:23.9350959Z 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-14T22:40:23.9351027Z with 2025-08-14T22:40:23.9351097Z [ 2025-08-14T22:40:23.9351171Z scalar_t=float 2025-08-14T22:40:23.9351237Z ] 2025-08-14T22:40:23.9351785Z 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-14T22:40:23.9351851Z with 2025-08-14T22:40:23.9351921Z [ 2025-08-14T22:40:23.9351994Z scalar_t=float 2025-08-14T22:40:23.9352068Z ] 2025-08-14T22:40:23.9352610Z 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-14T22:40:23.9352674Z with 2025-08-14T22:40:23.9352744Z [ 2025-08-14T22:40:23.9352818Z scalar_t=float 2025-08-14T22:40:23.9352885Z ] 2025-08-14T22:40:23.9353864Z 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-14T22:40:23.9353931Z with 2025-08-14T22:40:23.9353996Z [ 2025-08-14T22:40:23.9354112Z scalar_t=float 2025-08-14T22:40:23.9354196Z ] 2025-08-14T22:40:23.9354739Z 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-14T22:40:23.9354847Z with 2025-08-14T22:40:23.9354961Z [ 2025-08-14T22:40:23.9355039Z scalar_t=float 2025-08-14T22:40:23.9355109Z ] 2025-08-14T22:40:23.9355653Z 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-14T22:40:23.9355737Z with 2025-08-14T22:40:23.9355807Z [ 2025-08-14T22:40:23.9355882Z scalar_t=float 2025-08-14T22:40:23.9355955Z ] 2025-08-14T22:40:23.9356535Z 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-14T22:40:23.9356609Z with 2025-08-14T22:40:23.9356682Z [ 2025-08-14T22:40:23.9356760Z scalar_t=float 2025-08-14T22:40:23.9356825Z ] 2025-08-14T22:40:23.9357368Z 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-14T22:40:23.9357449Z with 2025-08-14T22:40:23.9357516Z [ 2025-08-14T22:40:23.9357593Z scalar_t=float 2025-08-14T22:40:23.9357670Z ] 2025-08-14T22:40:23.9358211Z 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-14T22:40:23.9358281Z with 2025-08-14T22:40:23.9358353Z [ 2025-08-14T22:40:23.9358436Z scalar_t=float 2025-08-14T22:40:23.9358500Z ] 2025-08-14T22:40:23.9359047Z 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-14T22:40:23.9359124Z with 2025-08-14T22:40:23.9359193Z [ 2025-08-14T22:40:23.9359272Z scalar_t=float 2025-08-14T22:40:23.9359390Z ] 2025-08-14T22:40:23.9359932Z 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-14T22:40:23.9359999Z with 2025-08-14T22:40:23.9360063Z [ 2025-08-14T22:40:23.9360144Z scalar_t=float 2025-08-14T22:40:23.9360208Z ] 2025-08-14T22:40:23.9360754Z 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-14T22:40:23.9360829Z with 2025-08-14T22:40:23.9360894Z [ 2025-08-14T22:40:23.9360972Z scalar_t=float 2025-08-14T22:40:23.9361037Z ] 2025-08-14T22:40:23.9361586Z 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-14T22:40:23.9361654Z with 2025-08-14T22:40:23.9361720Z [ 2025-08-14T22:40:23.9361800Z scalar_t=float 2025-08-14T22:40:23.9361864Z ] 2025-08-14T22:40:23.9362405Z 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-14T22:40:23.9362477Z with 2025-08-14T22:40:23.9362933Z [ 2025-08-14T22:40:23.9363012Z scalar_t=float 2025-08-14T22:40:23.9363086Z ] 2025-08-14T22:40:23.9363652Z 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-14T22:40:23.9363725Z with 2025-08-14T22:40:23.9363793Z [ 2025-08-14T22:40:23.9363880Z scalar_t=float 2025-08-14T22:40:23.9363946Z ] 2025-08-14T22:40:23.9364539Z 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-14T22:40:23.9364649Z with 2025-08-14T22:40:23.9364719Z [ 2025-08-14T22:40:23.9364798Z scalar_t=float 2025-08-14T22:40:23.9364865Z ] 2025-08-14T22:40:23.9365422Z 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-14T22:40:23.9365496Z with 2025-08-14T22:40:23.9365566Z [ 2025-08-14T22:40:23.9365655Z scalar_t=float 2025-08-14T22:40:23.9365721Z ] 2025-08-14T22:40:23.9366297Z 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-14T22:40:23.9366365Z with 2025-08-14T22:40:23.9366444Z [ 2025-08-14T22:40:23.9366519Z scalar_t=float 2025-08-14T22:40:23.9366592Z ] 2025-08-14T22:40:23.9367142Z 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-14T22:40:23.9367211Z with 2025-08-14T22:40:23.9367277Z [ 2025-08-14T22:40:23.9367353Z scalar_t=float 2025-08-14T22:40:23.9367432Z ] 2025-08-14T22:40:23.9367978Z 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-14T22:40:23.9368047Z with 2025-08-14T22:40:23.9368132Z [ 2025-08-14T22:40:23.9368233Z scalar_t=float 2025-08-14T22:40:23.9368297Z ] 2025-08-14T22:40:23.9368848Z 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-14T22:40:23.9368920Z with 2025-08-14T22:40:23.9368984Z [ 2025-08-14T22:40:23.9369058Z scalar_t=float 2025-08-14T22:40:23.9369131Z ] 2025-08-14T22:40:23.9369673Z 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-14T22:40:23.9369738Z with 2025-08-14T22:40:23.9369816Z [ 2025-08-14T22:40:23.9369889Z scalar_t=float 2025-08-14T22:40:23.9369960Z ] 2025-08-14T22:40:23.9370508Z 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-14T22:40:23.9370572Z with 2025-08-14T22:40:23.9370640Z [ 2025-08-14T22:40:23.9370713Z scalar_t=float 2025-08-14T22:40:23.9370783Z ] 2025-08-14T22:40:23.9371326Z 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-14T22:40:23.9371396Z with 2025-08-14T22:40:23.9371468Z [ 2025-08-14T22:40:23.9371540Z scalar_t=float 2025-08-14T22:40:23.9371605Z ] 2025-08-14T22:40:23.9372146Z 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-14T22:40:23.9372592Z with 2025-08-14T22:40:23.9372656Z [ 2025-08-14T22:40:23.9372732Z scalar_t=float 2025-08-14T22:40:23.9372815Z ] 2025-08-14T22:40:23.9373364Z 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-14T22:40:23.9373431Z with 2025-08-14T22:40:23.9373506Z [ 2025-08-14T22:40:23.9373620Z scalar_t=float 2025-08-14T22:40:23.9373723Z ] 2025-08-14T22:40:23.9374266Z 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-14T22:40:23.9374345Z with 2025-08-14T22:40:23.9374411Z [ 2025-08-14T22:40:23.9374488Z scalar_t=float 2025-08-14T22:40:23.9374565Z ] 2025-08-14T22:40:23.9375112Z 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-14T22:40:23.9375181Z with 2025-08-14T22:40:23.9375253Z [ 2025-08-14T22:40:23.9375383Z scalar_t=float 2025-08-14T22:40:23.9375448Z ] 2025-08-14T22:40:23.9375990Z 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-14T22:40:23.9376065Z with 2025-08-14T22:40:23.9376130Z [ 2025-08-14T22:40:23.9376204Z scalar_t=float 2025-08-14T22:40:23.9376283Z ] 2025-08-14T22:40:23.9376826Z 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-14T22:40:23.9376892Z with 2025-08-14T22:40:23.9376959Z [ 2025-08-14T22:40:23.9377045Z scalar_t=float 2025-08-14T22:40:23.9377112Z ] 2025-08-14T22:40:23.9377653Z 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-14T22:40:23.9377728Z with 2025-08-14T22:40:23.9377792Z [ 2025-08-14T22:40:23.9377866Z scalar_t=float 2025-08-14T22:40:23.9377932Z ] 2025-08-14T22:40:23.9378575Z 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-14T22:40:23.9378650Z with 2025-08-14T22:40:23.9378714Z [ 2025-08-14T22:40:23.9378811Z scalar_t=float 2025-08-14T22:40:23.9378877Z ] 2025-08-14T22:40:23.9379422Z 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-14T22:40:23.9379505Z with 2025-08-14T22:40:23.9379574Z [ 2025-08-14T22:40:23.9379649Z scalar_t=float 2025-08-14T22:40:23.9379714Z ] 2025-08-14T22:40:23.9380271Z 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-14T22:40:23.9380339Z with 2025-08-14T22:40:23.9380408Z [ 2025-08-14T22:40:23.9380491Z scalar_t=float 2025-08-14T22:40:23.9380562Z ] 2025-08-14T22:40:23.9381104Z 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-14T22:40:23.9381178Z with 2025-08-14T22:40:23.9381246Z [ 2025-08-14T22:40:23.9381323Z scalar_t=float 2025-08-14T22:40:23.9381782Z ] 2025-08-14T22:40:23.9382342Z 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-14T22:40:23.9382415Z with 2025-08-14T22:40:23.9382481Z [ 2025-08-14T22:40:23.9382568Z scalar_t=float 2025-08-14T22:40:23.9382633Z ] 2025-08-14T22:40:23.9383217Z 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-14T22:40:23.9383319Z with 2025-08-14T22:40:23.9383397Z [ 2025-08-14T22:40:23.9383475Z scalar_t=float 2025-08-14T22:40:23.9383543Z ] 2025-08-14T22:40:23.9384096Z 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-14T22:40:23.9384163Z with 2025-08-14T22:40:23.9384228Z [ 2025-08-14T22:40:23.9384312Z scalar_t=float 2025-08-14T22:40:23.9384386Z ] 2025-08-14T22:40:23.9384962Z 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-14T22:40:23.9385031Z with 2025-08-14T22:40:23.9385106Z [ 2025-08-14T22:40:23.9385180Z scalar_t=float 2025-08-14T22:40:23.9385244Z ] 2025-08-14T22:40:23.9385795Z 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-14T22:40:23.9385872Z with 2025-08-14T22:40:23.9385938Z [ 2025-08-14T22:40:23.9386015Z scalar_t=float 2025-08-14T22:40:23.9386086Z ] 2025-08-14T22:40:23.9386631Z 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-14T22:40:23.9386700Z with 2025-08-14T22:40:23.9386774Z [ 2025-08-14T22:40:23.9386849Z scalar_t=float 2025-08-14T22:40:23.9386915Z ] 2025-08-14T22:40:23.9387463Z 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-14T22:40:23.9387536Z with 2025-08-14T22:40:23.9387601Z [ 2025-08-14T22:40:23.9387680Z scalar_t=float 2025-08-14T22:40:23.9387754Z ] 2025-08-14T22:40:23.9388297Z 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-14T22:40:23.9388369Z with 2025-08-14T22:40:23.9388441Z [ 2025-08-14T22:40:23.9388516Z scalar_t=float 2025-08-14T22:40:23.9388582Z ] 2025-08-14T22:40:23.9389123Z 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-14T22:40:23.9389204Z with 2025-08-14T22:40:23.9389271Z [ 2025-08-14T22:40:23.9389346Z scalar_t=float 2025-08-14T22:40:23.9389417Z ] 2025-08-14T22:40:23.9389960Z 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-14T22:40:23.9390029Z with 2025-08-14T22:40:23.9390103Z [ 2025-08-14T22:40:23.9390180Z scalar_t=float 2025-08-14T22:40:23.9390246Z ] 2025-08-14T22:40:23.9390789Z 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-14T22:40:23.9391232Z with 2025-08-14T22:40:23.9391303Z [ 2025-08-14T22:40:23.9391383Z scalar_t=float 2025-08-14T22:40:23.9391462Z ] 2025-08-14T22:40:23.9392010Z 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-14T22:40:23.9392076Z with 2025-08-14T22:40:23.9392140Z [ 2025-08-14T22:40:23.9392228Z scalar_t=float 2025-08-14T22:40:23.9392293Z ] 2025-08-14T22:40:23.9392882Z 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-14T22:40:23.9392998Z with 2025-08-14T22:40:23.9393063Z [ 2025-08-14T22:40:23.9393143Z scalar_t=float 2025-08-14T22:40:23.9393217Z ] 2025-08-14T22:40:23.9393770Z 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-14T22:40:23.9393837Z with 2025-08-14T22:40:23.9393906Z [ 2025-08-14T22:40:23.9393994Z scalar_t=float 2025-08-14T22:40:23.9394063Z ] 2025-08-14T22:40:23.9394651Z 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-14T22:40:23.9394726Z with 2025-08-14T22:40:23.9394792Z [ 2025-08-14T22:40:23.9394868Z scalar_t=float 2025-08-14T22:40:23.9394937Z ] 2025-08-14T22:40:23.9395486Z 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-14T22:40:23.9395552Z with 2025-08-14T22:40:23.9395620Z [ 2025-08-14T22:40:23.9395702Z scalar_t=float 2025-08-14T22:40:23.9395775Z ] 2025-08-14T22:40:23.9396321Z 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-14T22:40:23.9396404Z with 2025-08-14T22:40:23.9396479Z [ 2025-08-14T22:40:23.9396559Z scalar_t=float 2025-08-14T22:40:23.9396624Z ] 2025-08-14T22:40:23.9397177Z 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-14T22:40:23.9397244Z with 2025-08-14T22:40:23.9397309Z [ 2025-08-14T22:40:23.9397389Z scalar_t=float 2025-08-14T22:40:23.9397459Z ] 2025-08-14T22:40:23.9398000Z 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-14T22:40:23.9398068Z with 2025-08-14T22:40:23.9398141Z [ 2025-08-14T22:40:23.9398217Z scalar_t=float 2025-08-14T22:40:23.9398283Z ] 2025-08-14T22:40:23.9398836Z 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-14T22:40:23.9398903Z with 2025-08-14T22:40:23.9398970Z [ 2025-08-14T22:40:23.9399053Z scalar_t=float 2025-08-14T22:40:23.9399123Z ] 2025-08-14T22:40:23.9399672Z 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-14T22:40:23.9399747Z with 2025-08-14T22:40:23.9399821Z [ 2025-08-14T22:40:23.9399898Z scalar_t=float 2025-08-14T22:40:23.9399964Z ] 2025-08-14T22:40:23.9400513Z 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-14T22:40:23.9400945Z with 2025-08-14T22:40:23.9401017Z [ 2025-08-14T22:40:23.9401101Z scalar_t=float 2025-08-14T22:40:23.9401187Z ] 2025-08-14T22:40:23.9401733Z 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-14T22:40:23.9407057Z with 2025-08-14T22:40:23.9407171Z [ 2025-08-14T22:40:23.9407375Z scalar_t=float 2025-08-14T22:40:23.9407495Z ] 2025-08-14T22:40:23.9408079Z 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-14T22:40:23.9408149Z with 2025-08-14T22:40:23.9408223Z [ 2025-08-14T22:40:23.9408304Z scalar_t=float 2025-08-14T22:40:23.9408375Z ] 2025-08-14T22:40:23.9408930Z 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-14T22:40:23.9409008Z with 2025-08-14T22:40:23.9409114Z [ 2025-08-14T22:40:23.9409197Z scalar_t=float 2025-08-14T22:40:23.9409281Z ] 2025-08-14T22:40:23.9409831Z 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-14T22:40:23.9409905Z with 2025-08-14T22:40:23.9409973Z [ 2025-08-14T22:40:23.9410060Z scalar_t=float 2025-08-14T22:40:23.9410130Z ] 2025-08-14T22:40:23.9410675Z 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-14T22:40:23.9410758Z with 2025-08-14T22:40:23.9410829Z [ 2025-08-14T22:40:23.9410910Z scalar_t=float 2025-08-14T22:40:23.9410990Z ] 2025-08-14T22:40:23.9411544Z 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-14T22:40:23.9411616Z with 2025-08-14T22:40:23.9411689Z [ 2025-08-14T22:40:23.9411776Z scalar_t=float 2025-08-14T22:40:23.9411843Z ] 2025-08-14T22:40:23.9412389Z 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-14T22:40:23.9412469Z with 2025-08-14T22:40:23.9412534Z [ 2025-08-14T22:40:23.9412612Z scalar_t=float 2025-08-14T22:40:23.9412676Z ] 2025-08-14T22:40:23.9413230Z 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-14T22:40:23.9413304Z with 2025-08-14T22:40:23.9413368Z [ 2025-08-14T22:40:23.9413456Z scalar_t=float 2025-08-14T22:40:23.9413522Z ] 2025-08-14T22:40:23.9414069Z 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-14T22:40:23.9414154Z with 2025-08-14T22:40:23.9414220Z [ 2025-08-14T22:40:23.9414298Z scalar_t=float 2025-08-14T22:40:23.9414367Z ] 2025-08-14T22:40:23.9414927Z 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-14T22:40:23.9414994Z with 2025-08-14T22:40:23.9415062Z [ 2025-08-14T22:40:23.9415160Z scalar_t=float 2025-08-14T22:40:23.9415723Z ] 2025-08-14T22:40:23.9416272Z 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-14T22:40:23.9416351Z with 2025-08-14T22:40:23.9416421Z [ 2025-08-14T22:40:23.9416503Z scalar_t=float 2025-08-14T22:40:23.9416568Z ] 2025-08-14T22:40:23.9417160Z 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-14T22:40:23.9417273Z with 2025-08-14T22:40:23.9417341Z [ 2025-08-14T22:40:23.9417431Z scalar_t=float 2025-08-14T22:40:23.9417496Z ] 2025-08-14T22:40:23.9418140Z 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-14T22:40:23.9418213Z with 2025-08-14T22:40:23.9418304Z [ 2025-08-14T22:40:23.9418386Z scalar_t=float 2025-08-14T22:40:23.9418453Z ] 2025-08-14T22:40:23.9419051Z 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-14T22:40:23.9419118Z with 2025-08-14T22:40:23.9419182Z [ 2025-08-14T22:40:23.9419265Z scalar_t=float 2025-08-14T22:40:23.9419331Z ] 2025-08-14T22:40:23.9419881Z 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-14T22:40:23.9419950Z with 2025-08-14T22:40:23.9420026Z [ 2025-08-14T22:40:23.9420103Z scalar_t=float 2025-08-14T22:40:23.9420167Z ] 2025-08-14T22:40:23.9420728Z 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-14T22:40:23.9420797Z with 2025-08-14T22:40:23.9420863Z [ 2025-08-14T22:40:23.9420940Z scalar_t=float 2025-08-14T22:40:23.9421024Z ] 2025-08-14T22:40:23.9421567Z 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-14T22:40:23.9421634Z with 2025-08-14T22:40:23.9421716Z [ 2025-08-14T22:40:23.9421799Z scalar_t=float 2025-08-14T22:40:23.9421864Z ] 2025-08-14T22:40:23.9422411Z 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-14T22:40:23.9422935Z 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-14T22:40:23.9423574Z 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-14T22:40:23.9423650Z with 2025-08-14T22:40:23.9423716Z [ 2025-08-14T22:40:23.9423786Z T=float 2025-08-14T22:40:23.9423854Z ] 2025-08-14T22:40:23.9424699Z 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-14T22:40:23.9425248Z 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-14T22:40:23.9425784Z 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-14T22:40:23.9426741Z 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-14T22:40:23.9427279Z 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-14T22:40:23.9427867Z 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-14T22:40:23.9428676Z 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-14T22:40:23.9429215Z 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-14T22:40:23.9429816Z 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-14T22:40:23.9430355Z 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-14T22:40:23.9430899Z 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-14T22:40:23.9431445Z 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-14T22:40:23.9431984Z 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-14T22:40:23.9432528Z 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-14T22:40:23.9433076Z 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-14T22:40:23.9433618Z 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-14T22:40:23.9434155Z 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-14T22:40:23.9434702Z 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-14T22:40:23.9435242Z 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-14T22:40:23.9435781Z 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-14T22:40:23.9436334Z 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-14T22:40:23.9436872Z 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-14T22:40:23.9437417Z 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-14T22:40:23.9438295Z 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-14T22:40:23.9438837Z 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-14T22:40:23.9439431Z 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-14T22:40:23.9440014Z 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-14T22:40:23.9440556Z 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-14T22:40:23.9441105Z 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-14T22:40:23.9441833Z 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-14T22:40:23.9442425Z 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-14T22:40:23.9442965Z 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-14T22:40:23.9443787Z 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-14T22:40:23.9444363Z 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-14T22:40:23.9444902Z 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-14T22:40:23.9445442Z 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-14T22:40:23.9446000Z 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-14T22:40:23.9446541Z 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-14T22:40:23.9447086Z 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-14T22:40:23.9447630Z 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-14T22:40:23.9448167Z 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-14T22:40:23.9448712Z 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-14T22:40:23.9449267Z 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-14T22:40:23.9450152Z 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-14T22:40:23.9450708Z 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-14T22:40:23.9451285Z 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-14T22:40:23.9451856Z 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-14T22:40:23.9452409Z 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-14T22:40:23.9452989Z 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-14T22:40:23.9453528Z 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-14T22:40:23.9454077Z 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-14T22:40:23.9454619Z 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-14T22:40:23.9455155Z 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-14T22:40:23.9455701Z 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-14T22:40:23.9456233Z 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-14T22:40:23.9456771Z 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-14T22:40:23.9457319Z 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-14T22:40:24.8933906Z 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-14T22:40:24.8934681Z with 2025-08-14T22:40:24.8934862Z [ 2025-08-14T22:40:24.8935053Z scalar_t=float 2025-08-14T22:40:24.8935280Z ] 2025-08-14T22:40:24.8935919Z 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-14T22:40:24.8937309Z 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-14T22:40:24.8938321Z with 2025-08-14T22:40:24.8938509Z [ 2025-08-14T22:40:24.8938684Z scalar_t=float 2025-08-14T22:40:24.8938904Z ] 2025-08-14T22:40:24.8939737Z 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-14T22:40:24.8941401Z with 2025-08-14T22:40:24.8941579Z [ 2025-08-14T22:40:24.8941758Z scalar_t=float 2025-08-14T22:40:24.8941981Z ] 2025-08-14T22:40:24.8942609Z 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-14T22:40:24.8943319Z with 2025-08-14T22:40:24.8943485Z [ 2025-08-14T22:40:24.8943816Z scalar_t=float 2025-08-14T22:40:24.8944020Z ] 2025-08-14T22:40:24.8944666Z 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-14T22:40:24.8945367Z with 2025-08-14T22:40:24.8945544Z [ 2025-08-14T22:40:24.8945728Z scalar_t=float 2025-08-14T22:40:24.8945948Z ] 2025-08-14T22:40:25.5077115Z 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-14T22:40:25.5077898Z with 2025-08-14T22:40:25.5078270Z [ 2025-08-14T22:40:25.5078450Z scalar_t=float 2025-08-14T22:40:25.5078688Z ] 2025-08-14T22:40:25.5079325Z 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-14T22:40:25.5080689Z 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-14T22:40:25.5081613Z with 2025-08-14T22:40:25.5081782Z [ 2025-08-14T22:40:25.5081967Z scalar_t=float 2025-08-14T22:40:25.5082192Z ] 2025-08-14T22:40:25.5083019Z 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-14T22:40:25.5083925Z with 2025-08-14T22:40:25.5084088Z [ 2025-08-14T22:40:25.5084268Z scalar_t=float 2025-08-14T22:40:25.5084472Z ] 2025-08-14T22:40:25.5085131Z 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-14T22:40:25.5085860Z with 2025-08-14T22:40:25.5086031Z [ 2025-08-14T22:40:25.5086210Z scalar_t=float 2025-08-14T22:40:25.5086410Z ] 2025-08-14T22:40:25.5087070Z 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-14T22:40:25.5087796Z with 2025-08-14T22:40:25.5087959Z [ 2025-08-14T22:40:25.5088134Z scalar_t=float 2025-08-14T22:40:25.5088340Z ] 2025-08-14T22:40:25.5088997Z 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-14T22:40:25.5089720Z with 2025-08-14T22:40:25.5089902Z [ 2025-08-14T22:40:25.5090074Z scalar_t=float 2025-08-14T22:40:25.5090287Z ] 2025-08-14T22:40:25.5090934Z 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-14T22:40:25.5091658Z with 2025-08-14T22:40:25.5091833Z [ 2025-08-14T22:40:25.5092004Z scalar_t=float 2025-08-14T22:40:25.5092221Z ] 2025-08-14T22:40:25.5093605Z 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-14T22:40:25.5094347Z with 2025-08-14T22:40:25.5094517Z [ 2025-08-14T22:40:25.5094706Z scalar_t=float 2025-08-14T22:40:25.5094911Z ] 2025-08-14T22:40:25.5095578Z 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-14T22:40:25.5096499Z with 2025-08-14T22:40:25.5096742Z [ 2025-08-14T22:40:25.5096921Z scalar_t=float 2025-08-14T22:40:25.5097125Z ] 2025-08-14T22:40:25.5097784Z 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-14T22:40:25.5098582Z with 2025-08-14T22:40:25.5098766Z [ 2025-08-14T22:40:25.5098942Z scalar_t=float 2025-08-14T22:40:25.5099165Z ] 2025-08-14T22:40:25.5099884Z 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-14T22:40:25.5100598Z with 2025-08-14T22:40:25.5100781Z [ 2025-08-14T22:40:25.5100952Z scalar_t=float 2025-08-14T22:40:25.5101172Z ] 2025-08-14T22:40:25.5101816Z 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-14T22:40:25.5102543Z with 2025-08-14T22:40:25.5102723Z [ 2025-08-14T22:40:25.5102896Z scalar_t=float 2025-08-14T22:40:25.5103113Z ] 2025-08-14T22:40:25.5103753Z 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-14T22:40:25.5104490Z with 2025-08-14T22:40:25.5104663Z [ 2025-08-14T22:40:25.5104847Z scalar_t=float 2025-08-14T22:40:25.5105056Z ] 2025-08-14T22:40:25.5105709Z 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-14T22:40:25.5106439Z with 2025-08-14T22:40:25.5106617Z [ 2025-08-14T22:40:25.5106789Z scalar_t=float 2025-08-14T22:40:25.5106989Z ] 2025-08-14T22:40:25.5107644Z 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-14T22:40:25.5108362Z with 2025-08-14T22:40:25.5108521Z [ 2025-08-14T22:40:25.5108695Z scalar_t=float 2025-08-14T22:40:25.5108892Z ] 2025-08-14T22:40:25.5109539Z 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-14T22:40:25.5110247Z with 2025-08-14T22:40:25.5110419Z [ 2025-08-14T22:40:25.5110592Z scalar_t=float 2025-08-14T22:40:25.5110829Z ] 2025-08-14T22:40:25.5111472Z 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-14T22:40:25.5112186Z with 2025-08-14T22:40:25.5112369Z [ 2025-08-14T22:40:25.5112535Z scalar_t=float 2025-08-14T22:40:25.5112752Z ] 2025-08-14T22:40:25.5113387Z 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-14T22:40:25.5114110Z with 2025-08-14T22:40:25.5114809Z [ 2025-08-14T22:40:25.5114975Z scalar_t=float 2025-08-14T22:40:25.5115187Z ] 2025-08-14T22:40:27.0856116Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64\link.exe" /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:C:\actions-runner\_work\pytorch\pytorch\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.38.33130\lib\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64" 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-14T22:40:27.3424792Z 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-14T22:40:27.3570573Z Generating code 2025-08-14T22:40:29.2816693Z Finished generating code 2025-08-14T22:40:29.4331092Z running install_lib 2025-08-14T22:40:29.4469543Z 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-14T22:40:29.4481097Z 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-14T22:40:29.4493405Z 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-14T22:40:29.4513841Z running install_egg_info 2025-08-14T22:40:29.4792789Z running egg_info 2025-08-14T22:40:29.4897813Z writing torch_test_cpp_extension.egg-info\PKG-INFO 2025-08-14T22:40:29.4907220Z writing dependency_links to torch_test_cpp_extension.egg-info\dependency_links.txt 2025-08-14T22:40:29.4911197Z writing entry points to torch_test_cpp_extension.egg-info\entry_points.txt 2025-08-14T22:40:29.4915487Z writing top-level names to torch_test_cpp_extension.egg-info\top_level.txt 2025-08-14T22:40:29.5035034Z reading manifest file 'torch_test_cpp_extension.egg-info\SOURCES.txt' 2025-08-14T22:40:29.5057628Z writing manifest file 'torch_test_cpp_extension.egg-info\SOURCES.txt' 2025-08-14T22:40:29.5060660Z removing './install\Jenkins\Miniconda3\Lib\site-packages\torch_test_cpp_extension-0.0.0-py3.9.egg-info' (and everything under it) 2025-08-14T22:40:29.5069233Z 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-14T22:40:29.5109949Z running install_scripts 2025-08-14T22:40:34.2098109Z 2025-08-14T22:40:34.2098691Z Running tests... 2025-08-14T22:40:34.2099025Z ---------------------------------------------------------------------- 2025-08-14T22:40:34.4514568Z . 2025-08-14T22:40:34.4514919Z ---------------------------------------------------------------------- 2025-08-14T22:40:34.4515278Z Ran 1 test in 0.250s 2025-08-14T22:40:34.4515415Z 2025-08-14T22:40:34.4515486Z OK 2025-08-14T22:40:34.4515584Z 2025-08-14T22:40:34.4515682Z Generating XML reports... 2025-08-14T22:40:35.3511161Z Running test_cpp_extensions_aot_ninja 1/1 ... [2025-08-14 22:40:35.350223] 2025-08-14T22:40:39.2765434Z running install 2025-08-14T22:40:39.2769163Z C:\Jenkins\Miniconda3\lib\site-packages\setuptools\_distutils\cmd.py:90: SetuptoolsDeprecationWarning: setup.py install is deprecated. 2025-08-14T22:40:39.2769804Z !! 2025-08-14T22:40:39.2769904Z 2025-08-14T22:40:39.2770024Z ******************************************************************************** 2025-08-14T22:40:39.2771150Z Please avoid running ``setup.py`` directly. 2025-08-14T22:40:39.2771512Z Instead, use pypa/build, pypa/installer or other 2025-08-14T22:40:39.2771841Z standards-based tools. 2025-08-14T22:40:39.2772028Z 2025-08-14T22:40:39.2772307Z See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. 2025-08-14T22:40:39.2772786Z ******************************************************************************** 2025-08-14T22:40:39.2773021Z 2025-08-14T22:40:39.2773262Z !! 2025-08-14T22:40:39.2773518Z self.initialize_options() 2025-08-14T22:40:39.2905653Z running build 2025-08-14T22:40:39.2905882Z running build_py 2025-08-14T22:40:39.3027148Z creating build\lib.win-amd64-cpython-39\torch_test_cpp_extension 2025-08-14T22:40:39.3034505Z copying torch_test_cpp_extension\__init__.py -> build\lib.win-amd64-cpython-39\torch_test_cpp_extension 2025-08-14T22:40:39.3043414Z running build_ext 2025-08-14T22:40:39.3116323Z building 'torch_test_cpp_extension.cpp' extension 2025-08-14T22:40:39.3129066Z creating C:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\build\temp.win-amd64-cpython-39\Release 2025-08-14T22:40:56.2456297Z [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.38.33130\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" /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-14T22:40:56.2701852Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64\link.exe" /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:C:\actions-runner\_work\pytorch\pytorch\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.38.33130\lib\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64" 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-14T22:40:56.5256956Z 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-14T22:40:56.5353709Z Generating code 2025-08-14T22:40:58.3588972Z Finished generating code 2025-08-14T22:40:58.5086269Z building 'torch_test_cpp_extension.maia' extension 2025-08-14T22:41:15.3169254Z [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.38.33130\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" /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-14T22:41:15.3204971Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64\link.exe" /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:C:\actions-runner\_work\pytorch\pytorch\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.38.33130\lib\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64" 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-14T22:41:15.5778979Z 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-14T22:41:15.5880457Z Generating code 2025-08-14T22:41:17.1788175Z Finished generating code 2025-08-14T22:41:17.3239463Z building 'torch_test_cpp_extension.rng' extension 2025-08-14T22:41:35.0793619Z [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.38.33130\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" /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-14T22:41:35.0799606Z 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-14T22:41:35.0800782Z 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-14T22:41:35.0802143Z 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-14T22:41:35.0803089Z with 2025-08-14T22:41:35.0803270Z [ 2025-08-14T22:41:35.0803540Z scalar_t=float 2025-08-14T22:41:35.0803753Z ] 2025-08-14T22:41:35.0804441Z 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-14T22:41:35.0805606Z 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-14T22:41:35.0806951Z 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-14T22:41:35.0807854Z with 2025-08-14T22:41:35.0808023Z [ 2025-08-14T22:41:35.0808198Z scalar_t=float 2025-08-14T22:41:35.0808407Z ] 2025-08-14T22:41:35.0809073Z 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-14T22:41:35.0809901Z with 2025-08-14T22:41:35.0810068Z [ 2025-08-14T22:41:35.0810241Z scalar_t=float 2025-08-14T22:41:35.0810449Z ] 2025-08-14T22:41:35.0811148Z 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-14T22:41:35.0812509Z 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-14T22:41:35.0813399Z with 2025-08-14T22:41:35.0813583Z [ 2025-08-14T22:41:35.0813750Z scalar_t=float 2025-08-14T22:41:35.0813962Z ] 2025-08-14T22:41:35.0814863Z 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-14T22:41:35.0815959Z with 2025-08-14T22:41:35.0816137Z [ 2025-08-14T22:41:35.0816302Z scalar_t=float 2025-08-14T22:41:35.0816516Z ] 2025-08-14T22:41:35.0817164Z 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-14T22:41:35.0818186Z with 2025-08-14T22:41:35.0818448Z [ 2025-08-14T22:41:35.0818669Z scalar_t=float 2025-08-14T22:41:35.0818975Z ] 2025-08-14T22:41:35.0819645Z 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-14T22:41:35.0820383Z with 2025-08-14T22:41:35.0820552Z [ 2025-08-14T22:41:35.0820765Z scalar_t=float 2025-08-14T22:41:35.0820980Z ] 2025-08-14T22:41:35.0821726Z 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-14T22:41:35.0822569Z with 2025-08-14T22:41:35.0822748Z [ 2025-08-14T22:41:35.0822922Z scalar_t=float 2025-08-14T22:41:35.0823143Z ] 2025-08-14T22:41:35.0823790Z 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-14T22:41:35.0824511Z with 2025-08-14T22:41:35.0824680Z [ 2025-08-14T22:41:35.0824853Z scalar_t=float 2025-08-14T22:41:35.0825064Z ] 2025-08-14T22:41:35.0825762Z 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-14T22:41:35.0826489Z with 2025-08-14T22:41:35.0826656Z [ 2025-08-14T22:41:35.0826836Z scalar_t=float 2025-08-14T22:41:35.0827044Z ] 2025-08-14T22:41:35.0827742Z 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-14T22:41:35.0828511Z with 2025-08-14T22:41:35.0828679Z [ 2025-08-14T22:41:35.0828856Z scalar_t=float 2025-08-14T22:41:35.0829057Z ] 2025-08-14T22:41:35.0829708Z 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-14T22:41:35.0830428Z with 2025-08-14T22:41:35.0830603Z [ 2025-08-14T22:41:35.0830770Z scalar_t=float 2025-08-14T22:41:35.0830978Z ] 2025-08-14T22:41:35.0831620Z 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-14T22:41:35.0832339Z with 2025-08-14T22:41:35.0832509Z [ 2025-08-14T22:41:35.0832675Z scalar_t=float 2025-08-14T22:41:35.0832891Z ] 2025-08-14T22:41:35.0833577Z 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-14T22:41:35.0834349Z with 2025-08-14T22:41:35.0834514Z [ 2025-08-14T22:41:35.0834691Z scalar_t=float 2025-08-14T22:41:35.0834896Z ] 2025-08-14T22:41:35.0835562Z 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-14T22:41:35.0836289Z with 2025-08-14T22:41:35.0836458Z [ 2025-08-14T22:41:35.0836697Z scalar_t=float 2025-08-14T22:41:35.0836904Z ] 2025-08-14T22:41:35.0837550Z 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-14T22:41:35.0838282Z with 2025-08-14T22:41:35.0838455Z [ 2025-08-14T22:41:35.0838627Z scalar_t=float 2025-08-14T22:41:35.0838832Z ] 2025-08-14T22:41:35.0839531Z 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-14T22:41:35.0840376Z with 2025-08-14T22:41:35.0840556Z [ 2025-08-14T22:41:35.0840723Z scalar_t=float 2025-08-14T22:41:35.0840943Z ] 2025-08-14T22:41:35.0841585Z 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-14T22:41:35.0842314Z with 2025-08-14T22:41:35.0842487Z [ 2025-08-14T22:41:35.0842650Z scalar_t=float 2025-08-14T22:41:35.0842856Z ] 2025-08-14T22:41:35.0843551Z 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-14T22:41:35.0844348Z with 2025-08-14T22:41:35.0844517Z [ 2025-08-14T22:41:35.0844694Z scalar_t=float 2025-08-14T22:41:35.0844893Z ] 2025-08-14T22:41:35.0845594Z 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-14T22:41:35.0846370Z with 2025-08-14T22:41:35.0846535Z [ 2025-08-14T22:41:35.0846716Z scalar_t=float 2025-08-14T22:41:35.0846916Z ] 2025-08-14T22:41:35.0847622Z 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-14T22:41:35.0848344Z with 2025-08-14T22:41:35.0848519Z [ 2025-08-14T22:41:35.0848687Z scalar_t=float 2025-08-14T22:41:35.0848907Z ] 2025-08-14T22:41:35.0849579Z 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-14T22:41:35.0850305Z with 2025-08-14T22:41:35.0850483Z [ 2025-08-14T22:41:35.0850648Z scalar_t=float 2025-08-14T22:41:35.0850964Z ] 2025-08-14T22:41:35.0851702Z 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-14T22:41:35.0852426Z with 2025-08-14T22:41:35.0852600Z [ 2025-08-14T22:41:35.0852792Z scalar_t=float 2025-08-14T22:41:35.0853002Z ] 2025-08-14T22:41:35.0853646Z 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-14T22:41:35.0854375Z with 2025-08-14T22:41:35.0854548Z [ 2025-08-14T22:41:35.0854724Z scalar_t=float 2025-08-14T22:41:35.0854925Z ] 2025-08-14T22:41:35.0855577Z 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-14T22:41:35.0856295Z with 2025-08-14T22:41:35.0856477Z [ 2025-08-14T22:41:35.0856659Z scalar_t=float 2025-08-14T22:41:35.0856864Z ] 2025-08-14T22:41:35.0857626Z 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-14T22:41:35.0858353Z with 2025-08-14T22:41:35.0858536Z [ 2025-08-14T22:41:35.0858706Z scalar_t=float 2025-08-14T22:41:35.0858922Z ] 2025-08-14T22:41:35.0859568Z 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-14T22:41:35.0860295Z with 2025-08-14T22:41:35.0860471Z [ 2025-08-14T22:41:35.0860641Z scalar_t=float 2025-08-14T22:41:35.0860859Z ] 2025-08-14T22:41:35.0861500Z 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-14T22:41:35.0862312Z with 2025-08-14T22:41:35.0862477Z [ 2025-08-14T22:41:35.0862707Z scalar_t=float 2025-08-14T22:41:35.0862919Z ] 2025-08-14T22:41:35.0863617Z 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-14T22:41:35.0864336Z with 2025-08-14T22:41:35.0864500Z [ 2025-08-14T22:41:35.0864737Z scalar_t=float 2025-08-14T22:41:35.0864993Z ] 2025-08-14T22:41:35.0865648Z 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-14T22:41:35.0866367Z with 2025-08-14T22:41:35.0866539Z [ 2025-08-14T22:41:35.0866706Z scalar_t=float 2025-08-14T22:41:35.0866915Z ] 2025-08-14T22:41:35.0867559Z 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-14T22:41:35.0868272Z with 2025-08-14T22:41:35.0868542Z [ 2025-08-14T22:41:35.0868712Z scalar_t=float 2025-08-14T22:41:35.0868972Z ] 2025-08-14T22:41:35.0869667Z 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-14T22:41:35.0870403Z with 2025-08-14T22:41:35.0870581Z [ 2025-08-14T22:41:35.0870751Z scalar_t=float 2025-08-14T22:41:35.0870966Z ] 2025-08-14T22:41:35.0871606Z 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-14T22:41:35.0872334Z with 2025-08-14T22:41:35.0872498Z [ 2025-08-14T22:41:35.0872680Z scalar_t=float 2025-08-14T22:41:35.0872884Z ] 2025-08-14T22:41:35.0873529Z 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-14T22:41:35.0874253Z with 2025-08-14T22:41:35.0874417Z [ 2025-08-14T22:41:35.0874644Z scalar_t=float 2025-08-14T22:41:35.0874879Z ] 2025-08-14T22:41:35.0875583Z 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-14T22:41:35.0876299Z with 2025-08-14T22:41:35.0876471Z [ 2025-08-14T22:41:35.0876638Z scalar_t=float 2025-08-14T22:41:35.0876847Z ] 2025-08-14T22:41:35.0877495Z 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-14T22:41:35.0878212Z with 2025-08-14T22:41:35.0878384Z [ 2025-08-14T22:41:35.0878550Z scalar_t=float 2025-08-14T22:41:35.0878766Z ] 2025-08-14T22:41:35.0879410Z 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-14T22:41:35.0880141Z with 2025-08-14T22:41:35.0880305Z [ 2025-08-14T22:41:35.0880487Z scalar_t=float 2025-08-14T22:41:35.0880696Z ] 2025-08-14T22:41:35.0881345Z 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-14T22:41:35.0882062Z with 2025-08-14T22:41:35.0882228Z [ 2025-08-14T22:41:35.0882401Z scalar_t=float 2025-08-14T22:41:35.0882680Z ] 2025-08-14T22:41:35.0883330Z 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-14T22:41:35.0884043Z with 2025-08-14T22:41:35.0884225Z [ 2025-08-14T22:41:35.0884405Z scalar_t=float 2025-08-14T22:41:35.0884611Z ] 2025-08-14T22:41:35.0885312Z 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-14T22:41:35.0886184Z with 2025-08-14T22:41:35.0886403Z [ 2025-08-14T22:41:35.0886580Z scalar_t=float 2025-08-14T22:41:35.0886792Z ] 2025-08-14T22:41:35.0887431Z 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-14T22:41:35.0888159Z with 2025-08-14T22:41:35.0888337Z [ 2025-08-14T22:41:35.0888506Z scalar_t=float 2025-08-14T22:41:35.0888723Z ] 2025-08-14T22:41:35.0889417Z 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-14T22:41:35.0890145Z with 2025-08-14T22:41:35.0890315Z [ 2025-08-14T22:41:35.0890498Z scalar_t=float 2025-08-14T22:41:35.0890712Z ] 2025-08-14T22:41:35.0891442Z 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-14T22:41:35.0892175Z with 2025-08-14T22:41:35.0892346Z [ 2025-08-14T22:41:35.0892530Z scalar_t=float 2025-08-14T22:41:35.0892734Z ] 2025-08-14T22:41:35.0893391Z 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-14T22:41:35.0894105Z with 2025-08-14T22:41:35.0894279Z [ 2025-08-14T22:41:35.0894448Z scalar_t=float 2025-08-14T22:41:35.0894664Z ] 2025-08-14T22:41:35.0895316Z 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-14T22:41:35.0896027Z with 2025-08-14T22:41:35.0896206Z [ 2025-08-14T22:41:35.0896374Z scalar_t=float 2025-08-14T22:41:35.0896592Z ] 2025-08-14T22:41:35.0897234Z 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-14T22:41:35.0897959Z with 2025-08-14T22:41:35.0898126Z [ 2025-08-14T22:41:35.0898300Z scalar_t=float 2025-08-14T22:41:35.0898520Z ] 2025-08-14T22:41:35.0899159Z 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-14T22:41:35.0899889Z with 2025-08-14T22:41:35.0900084Z [ 2025-08-14T22:41:35.0900324Z scalar_t=float 2025-08-14T22:41:35.0900536Z ] 2025-08-14T22:41:35.0901205Z 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-14T22:41:35.0901982Z with 2025-08-14T22:41:35.0902144Z [ 2025-08-14T22:41:35.0902366Z scalar_t=float 2025-08-14T22:41:35.0902571Z ] 2025-08-14T22:41:35.0903275Z 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-14T22:41:35.0904065Z with 2025-08-14T22:41:35.0904243Z [ 2025-08-14T22:41:35.0904406Z scalar_t=float 2025-08-14T22:41:35.0904625Z ] 2025-08-14T22:41:35.0905271Z 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-14T22:41:35.0905998Z with 2025-08-14T22:41:35.0906173Z [ 2025-08-14T22:41:35.0906342Z scalar_t=float 2025-08-14T22:41:35.0906551Z ] 2025-08-14T22:41:35.0907244Z 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-14T22:41:35.0908021Z with 2025-08-14T22:41:35.0908191Z [ 2025-08-14T22:41:35.0908366Z scalar_t=float 2025-08-14T22:41:35.0908582Z ] 2025-08-14T22:41:35.0909249Z 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-14T22:41:35.0909981Z with 2025-08-14T22:41:35.0910141Z [ 2025-08-14T22:41:35.0910313Z scalar_t=float 2025-08-14T22:41:35.0910512Z ] 2025-08-14T22:41:35.0911208Z 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-14T22:41:35.0911919Z with 2025-08-14T22:41:35.0912089Z [ 2025-08-14T22:41:35.0912269Z scalar_t=float 2025-08-14T22:41:35.0912481Z ] 2025-08-14T22:41:35.0913132Z 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-14T22:41:35.0913850Z with 2025-08-14T22:41:35.0914024Z [ 2025-08-14T22:41:35.0914196Z scalar_t=float 2025-08-14T22:41:35.0914409Z ] 2025-08-14T22:41:35.0915062Z 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-14T22:41:35.0915791Z with 2025-08-14T22:41:35.0915969Z [ 2025-08-14T22:41:35.0916140Z scalar_t=float 2025-08-14T22:41:35.0916350Z ] 2025-08-14T22:41:35.0916988Z 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-14T22:41:35.0917719Z with 2025-08-14T22:41:35.0917882Z [ 2025-08-14T22:41:35.0918058Z scalar_t=float 2025-08-14T22:41:35.0918258Z ] 2025-08-14T22:41:35.0918907Z 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-14T22:41:35.0919629Z with 2025-08-14T22:41:35.0919795Z [ 2025-08-14T22:41:35.0919976Z scalar_t=float 2025-08-14T22:41:35.0920186Z ] 2025-08-14T22:41:35.0920838Z 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-14T22:41:35.0921546Z with 2025-08-14T22:41:35.0921715Z [ 2025-08-14T22:41:35.0921880Z scalar_t=float 2025-08-14T22:41:35.0922088Z ] 2025-08-14T22:41:35.0922748Z 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-14T22:41:35.0923460Z with 2025-08-14T22:41:35.0923636Z [ 2025-08-14T22:41:35.0923802Z scalar_t=float 2025-08-14T22:41:35.0924009Z ] 2025-08-14T22:41:35.0924645Z 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-14T22:41:35.0925432Z with 2025-08-14T22:41:35.0925606Z [ 2025-08-14T22:41:35.0925791Z scalar_t=float 2025-08-14T22:41:35.0926008Z ] 2025-08-14T22:41:35.0926656Z 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-14T22:41:35.0927383Z with 2025-08-14T22:41:35.0927544Z [ 2025-08-14T22:41:35.0927807Z scalar_t=float 2025-08-14T22:41:35.0928012Z ] 2025-08-14T22:41:35.0928665Z 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-14T22:41:35.0929376Z with 2025-08-14T22:41:35.0929552Z [ 2025-08-14T22:41:35.0929735Z scalar_t=float 2025-08-14T22:41:35.0929944Z ] 2025-08-14T22:41:35.0930596Z 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-14T22:41:35.0931442Z with 2025-08-14T22:41:35.0931684Z [ 2025-08-14T22:41:35.0931853Z scalar_t=float 2025-08-14T22:41:35.0932077Z ] 2025-08-14T22:41:35.0932718Z 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-14T22:41:35.0933568Z with 2025-08-14T22:41:35.0933750Z [ 2025-08-14T22:41:35.0933973Z scalar_t=float 2025-08-14T22:41:35.0934196Z ] 2025-08-14T22:41:35.0934838Z 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-14T22:41:35.0935561Z with 2025-08-14T22:41:35.0935725Z [ 2025-08-14T22:41:35.0935908Z scalar_t=float 2025-08-14T22:41:35.0936114Z ] 2025-08-14T22:41:35.0936773Z 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-14T22:41:35.0937494Z with 2025-08-14T22:41:35.0937659Z [ 2025-08-14T22:41:35.0937839Z scalar_t=float 2025-08-14T22:41:35.0938047Z ] 2025-08-14T22:41:35.0938702Z 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-14T22:41:35.0939421Z with 2025-08-14T22:41:35.0939596Z [ 2025-08-14T22:41:35.0939767Z scalar_t=float 2025-08-14T22:41:35.0939988Z ] 2025-08-14T22:41:35.0940639Z 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-14T22:41:35.0941353Z with 2025-08-14T22:41:35.0941531Z [ 2025-08-14T22:41:35.0941705Z scalar_t=float 2025-08-14T22:41:35.0941912Z ] 2025-08-14T22:41:35.0942554Z 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-14T22:41:35.0943269Z with 2025-08-14T22:41:35.0943541Z [ 2025-08-14T22:41:35.0943918Z scalar_t=float 2025-08-14T22:41:35.0944133Z ] 2025-08-14T22:41:35.0944776Z 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-14T22:41:35.0945504Z with 2025-08-14T22:41:35.0945666Z [ 2025-08-14T22:41:35.0945927Z scalar_t=float 2025-08-14T22:41:35.0946128Z ] 2025-08-14T22:41:35.0946788Z 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-14T22:41:35.0947565Z with 2025-08-14T22:41:35.0947729Z [ 2025-08-14T22:41:35.0947908Z scalar_t=float 2025-08-14T22:41:35.0948110Z ] 2025-08-14T22:41:35.0948811Z 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-14T22:41:35.0949575Z with 2025-08-14T22:41:35.0949760Z [ 2025-08-14T22:41:35.0949927Z scalar_t=float 2025-08-14T22:41:35.0950149Z ] 2025-08-14T22:41:35.0950793Z 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-14T22:41:35.0951535Z with 2025-08-14T22:41:35.0951711Z [ 2025-08-14T22:41:35.0951878Z scalar_t=float 2025-08-14T22:41:35.0952098Z ] 2025-08-14T22:41:35.0952788Z 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-14T22:41:35.0953515Z with 2025-08-14T22:41:35.0953685Z [ 2025-08-14T22:41:35.0953870Z scalar_t=float 2025-08-14T22:41:35.0954076Z ] 2025-08-14T22:41:35.0954734Z 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-14T22:41:35.0955463Z with 2025-08-14T22:41:35.0955629Z [ 2025-08-14T22:41:35.0955805Z scalar_t=float 2025-08-14T22:41:35.0956008Z ] 2025-08-14T22:41:35.0956673Z 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-14T22:41:35.0957390Z with 2025-08-14T22:41:35.0957561Z [ 2025-08-14T22:41:35.0957737Z scalar_t=float 2025-08-14T22:41:35.0957940Z ] 2025-08-14T22:41:35.0958591Z 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-14T22:41:35.0959299Z with 2025-08-14T22:41:35.0959473Z [ 2025-08-14T22:41:35.0959654Z scalar_t=float 2025-08-14T22:41:35.0959863Z ] 2025-08-14T22:41:35.0960737Z 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-14T22:41:35.0961461Z with 2025-08-14T22:41:35.0961639Z [ 2025-08-14T22:41:35.0961812Z scalar_t=float 2025-08-14T22:41:35.0962021Z ] 2025-08-14T22:41:35.0962666Z 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-14T22:41:35.0963390Z with 2025-08-14T22:41:35.0963560Z [ 2025-08-14T22:41:35.0963734Z scalar_t=float 2025-08-14T22:41:35.0963935Z ] 2025-08-14T22:41:35.0964581Z 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-14T22:41:35.0965309Z with 2025-08-14T22:41:35.0965475Z [ 2025-08-14T22:41:35.0965644Z scalar_t=float 2025-08-14T22:41:35.0965849Z ] 2025-08-14T22:41:35.0966494Z 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-14T22:41:35.0967295Z with 2025-08-14T22:41:35.0967469Z [ 2025-08-14T22:41:35.0967639Z scalar_t=float 2025-08-14T22:41:35.0967859Z ] 2025-08-14T22:41:35.0968520Z 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-14T22:41:35.0969232Z with 2025-08-14T22:41:35.0969407Z [ 2025-08-14T22:41:35.0969573Z scalar_t=float 2025-08-14T22:41:35.0969795Z ] 2025-08-14T22:41:35.0971147Z 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-14T22:41:35.0971886Z with 2025-08-14T22:41:35.0972055Z [ 2025-08-14T22:41:35.0972238Z scalar_t=float 2025-08-14T22:41:35.0972465Z ] 2025-08-14T22:41:35.0973109Z 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-14T22:41:35.0973842Z with 2025-08-14T22:41:35.0974008Z [ 2025-08-14T22:41:35.0974187Z scalar_t=float 2025-08-14T22:41:35.0974435Z ] 2025-08-14T22:41:35.0975091Z 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-14T22:41:35.0975824Z with 2025-08-14T22:41:35.0976001Z [ 2025-08-14T22:41:35.0976186Z scalar_t=float 2025-08-14T22:41:35.0976397Z ] 2025-08-14T22:41:35.0977048Z 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-14T22:41:35.0977759Z with 2025-08-14T22:41:35.0977929Z [ 2025-08-14T22:41:35.0978098Z scalar_t=float 2025-08-14T22:41:35.0978310Z ] 2025-08-14T22:41:35.0978950Z 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-14T22:41:35.0979674Z with 2025-08-14T22:41:35.0979877Z [ 2025-08-14T22:41:35.0980042Z scalar_t=float 2025-08-14T22:41:35.0980252Z ] 2025-08-14T22:41:35.0980891Z 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-14T22:41:35.0981612Z with 2025-08-14T22:41:35.0981777Z [ 2025-08-14T22:41:35.0981952Z scalar_t=float 2025-08-14T22:41:35.0982149Z ] 2025-08-14T22:41:35.0982800Z 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-14T22:41:35.0983516Z with 2025-08-14T22:41:35.0983678Z [ 2025-08-14T22:41:35.0983845Z scalar_t=float 2025-08-14T22:41:35.0984048Z ] 2025-08-14T22:41:35.0984699Z 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-14T22:41:35.0985411Z with 2025-08-14T22:41:35.0985581Z [ 2025-08-14T22:41:35.0985743Z scalar_t=float 2025-08-14T22:41:35.0985949Z ] 2025-08-14T22:41:35.0986610Z 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-14T22:41:35.0987315Z with 2025-08-14T22:41:35.0987488Z [ 2025-08-14T22:41:35.0987661Z scalar_t=float 2025-08-14T22:41:35.0987875Z ] 2025-08-14T22:41:35.0988574Z 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-14T22:41:35.0989295Z with 2025-08-14T22:41:35.0989551Z [ 2025-08-14T22:41:35.0989722Z scalar_t=float 2025-08-14T22:41:35.0989990Z ] 2025-08-14T22:41:35.0990632Z 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-14T22:41:35.0991366Z with 2025-08-14T22:41:35.0991628Z [ 2025-08-14T22:41:35.0991809Z scalar_t=float 2025-08-14T22:41:35.0992010Z ] 2025-08-14T22:41:35.0992668Z 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-14T22:41:35.0993390Z with 2025-08-14T22:41:35.0993556Z [ 2025-08-14T22:41:35.0993737Z scalar_t=float 2025-08-14T22:41:35.0993942Z ] 2025-08-14T22:41:35.0994592Z 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-14T22:41:35.0995705Z with 2025-08-14T22:41:35.0995896Z [ 2025-08-14T22:41:35.0996067Z scalar_t=float 2025-08-14T22:41:35.0996280Z ] 2025-08-14T22:41:35.0996937Z 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-14T22:41:35.0997657Z with 2025-08-14T22:41:35.0997832Z [ 2025-08-14T22:41:35.0998000Z scalar_t=float 2025-08-14T22:41:35.0998214Z ] 2025-08-14T22:41:35.0998853Z 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-14T22:41:35.0999576Z with 2025-08-14T22:41:35.0999749Z [ 2025-08-14T22:41:35.0999924Z scalar_t=float 2025-08-14T22:41:35.1000135Z ] 2025-08-14T22:41:35.1000773Z 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-14T22:41:35.1001495Z with 2025-08-14T22:41:35.1001662Z [ 2025-08-14T22:41:35.1001838Z scalar_t=float 2025-08-14T22:41:35.1002040Z ] 2025-08-14T22:41:35.1002785Z 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-14T22:41:35.1003514Z with 2025-08-14T22:41:35.1003704Z [ 2025-08-14T22:41:35.1003884Z scalar_t=float 2025-08-14T22:41:35.1004092Z ] 2025-08-14T22:41:35.1004750Z 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-14T22:41:35.1005461Z with 2025-08-14T22:41:35.1005637Z [ 2025-08-14T22:41:35.1005806Z scalar_t=float 2025-08-14T22:41:35.1006035Z ] 2025-08-14T22:41:35.1006676Z 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-14T22:41:35.1007400Z with 2025-08-14T22:41:35.1007582Z [ 2025-08-14T22:41:35.1007748Z scalar_t=float 2025-08-14T22:41:35.1007965Z ] 2025-08-14T22:41:35.1008603Z 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-14T22:41:35.1009328Z with 2025-08-14T22:41:35.1009577Z [ 2025-08-14T22:41:35.1009768Z scalar_t=float 2025-08-14T22:41:35.1009978Z ] 2025-08-14T22:41:35.1010633Z 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-14T22:41:35.1011450Z with 2025-08-14T22:41:35.1011620Z [ 2025-08-14T22:41:35.1011818Z scalar_t=float 2025-08-14T22:41:35.1012022Z ] 2025-08-14T22:41:35.1012740Z 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-14T22:41:35.1013503Z with 2025-08-14T22:41:35.1013685Z [ 2025-08-14T22:41:35.1013865Z scalar_t=float 2025-08-14T22:41:35.1014089Z ] 2025-08-14T22:41:35.1014739Z 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-14T22:41:35.1015453Z with 2025-08-14T22:41:35.1015639Z [ 2025-08-14T22:41:35.1015809Z scalar_t=float 2025-08-14T22:41:35.1016025Z ] 2025-08-14T22:41:35.1016710Z 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-14T22:41:35.1017440Z with 2025-08-14T22:41:35.1033310Z [ 2025-08-14T22:41:35.1033541Z scalar_t=float 2025-08-14T22:41:35.1033799Z ] 2025-08-14T22:41:35.1034501Z 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-14T22:41:35.1035234Z with 2025-08-14T22:41:35.1035419Z [ 2025-08-14T22:41:35.1035597Z scalar_t=float 2025-08-14T22:41:35.1035822Z ] 2025-08-14T22:41:35.1036480Z 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-14T22:41:35.1037219Z with 2025-08-14T22:41:35.1037391Z [ 2025-08-14T22:41:35.1037589Z scalar_t=float 2025-08-14T22:41:35.1037811Z ] 2025-08-14T22:41:35.1038463Z 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-14T22:41:35.1039193Z with 2025-08-14T22:41:35.1039374Z [ 2025-08-14T22:41:35.1039563Z scalar_t=float 2025-08-14T22:41:35.1039774Z ] 2025-08-14T22:41:35.1040442Z 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-14T22:41:35.1041159Z with 2025-08-14T22:41:35.1041348Z [ 2025-08-14T22:41:35.1041533Z scalar_t=float 2025-08-14T22:41:35.1041745Z ] 2025-08-14T22:41:35.1042410Z 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-14T22:41:35.1043136Z with 2025-08-14T22:41:35.1043315Z [ 2025-08-14T22:41:35.1043491Z scalar_t=float 2025-08-14T22:41:35.1043714Z ] 2025-08-14T22:41:35.1044361Z 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-14T22:41:35.1045088Z with 2025-08-14T22:41:35.1045264Z [ 2025-08-14T22:41:35.1045437Z scalar_t=float 2025-08-14T22:41:35.1045659Z ] 2025-08-14T22:41:35.1046305Z 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-14T22:41:35.1047207Z with 2025-08-14T22:41:35.1047384Z [ 2025-08-14T22:41:35.1047566Z scalar_t=float 2025-08-14T22:41:35.1047775Z ] 2025-08-14T22:41:35.1048443Z 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-14T22:41:35.1049166Z with 2025-08-14T22:41:35.1049339Z [ 2025-08-14T22:41:35.1049523Z scalar_t=float 2025-08-14T22:41:35.1049791Z ] 2025-08-14T22:41:35.1050506Z 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-14T22:41:35.1051364Z with 2025-08-14T22:41:35.1051544Z [ 2025-08-14T22:41:35.1051716Z scalar_t=float 2025-08-14T22:41:35.1051935Z ] 2025-08-14T22:41:35.1052593Z 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-14T22:41:35.1053309Z with 2025-08-14T22:41:35.1053483Z [ 2025-08-14T22:41:35.1053710Z scalar_t=float 2025-08-14T22:41:35.1053937Z ] 2025-08-14T22:41:35.1054590Z 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-14T22:41:35.1055318Z with 2025-08-14T22:41:35.1055503Z [ 2025-08-14T22:41:35.1055679Z scalar_t=float 2025-08-14T22:41:35.1055907Z ] 2025-08-14T22:41:35.1056555Z 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-14T22:41:35.1057284Z with 2025-08-14T22:41:35.1057463Z [ 2025-08-14T22:41:35.1057645Z scalar_t=float 2025-08-14T22:41:35.1057854Z ] 2025-08-14T22:41:35.1058516Z 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-14T22:41:35.1059244Z with 2025-08-14T22:41:35.1059413Z [ 2025-08-14T22:41:35.1059608Z scalar_t=float 2025-08-14T22:41:35.1059818Z ] 2025-08-14T22:41:35.1060483Z 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-14T22:41:35.1061212Z with 2025-08-14T22:41:35.1061398Z [ 2025-08-14T22:41:35.1061569Z scalar_t=float 2025-08-14T22:41:35.1061786Z ] 2025-08-14T22:41:35.1062449Z 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-14T22:41:35.1063165Z with 2025-08-14T22:41:35.1063343Z [ 2025-08-14T22:41:35.1063514Z scalar_t=float 2025-08-14T22:41:35.1063728Z ] 2025-08-14T22:41:35.1064377Z 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-14T22:41:35.1065098Z with 2025-08-14T22:41:35.1065269Z [ 2025-08-14T22:41:35.1065443Z scalar_t=float 2025-08-14T22:41:35.1065661Z ] 2025-08-14T22:41:35.1066304Z 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-14T22:41:35.1067023Z with 2025-08-14T22:41:35.1067194Z [ 2025-08-14T22:41:35.1067375Z scalar_t=float 2025-08-14T22:41:35.1067578Z ] 2025-08-14T22:41:35.1068305Z 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-14T22:41:35.1069029Z with 2025-08-14T22:41:35.1069221Z [ 2025-08-14T22:41:35.1069405Z scalar_t=float 2025-08-14T22:41:35.1069612Z ] 2025-08-14T22:41:35.1070270Z 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-14T22:41:35.1071041Z with 2025-08-14T22:41:35.1071275Z [ 2025-08-14T22:41:35.1071445Z scalar_t=float 2025-08-14T22:41:35.1071661Z ] 2025-08-14T22:41:35.1072315Z 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-14T22:41:35.1073062Z with 2025-08-14T22:41:35.1073244Z [ 2025-08-14T22:41:35.1073409Z scalar_t=float 2025-08-14T22:41:35.1073624Z ] 2025-08-14T22:41:35.1074316Z 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-14T22:41:35.1075038Z with 2025-08-14T22:41:35.1075205Z [ 2025-08-14T22:41:35.1075392Z scalar_t=float 2025-08-14T22:41:35.1075598Z ] 2025-08-14T22:41:35.1076265Z 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-14T22:41:35.1077000Z with 2025-08-14T22:41:35.1077175Z [ 2025-08-14T22:41:35.1077355Z scalar_t=float 2025-08-14T22:41:35.1077561Z ] 2025-08-14T22:41:35.1078219Z 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-14T22:41:35.1078938Z with 2025-08-14T22:41:35.1079123Z [ 2025-08-14T22:41:35.1079292Z scalar_t=float 2025-08-14T22:41:35.1079511Z ] 2025-08-14T22:41:35.1080167Z 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-14T22:41:35.1080886Z with 2025-08-14T22:41:35.1081079Z [ 2025-08-14T22:41:35.1081254Z scalar_t=float 2025-08-14T22:41:35.1081480Z ] 2025-08-14T22:41:35.1082130Z 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-14T22:41:35.1082852Z with 2025-08-14T22:41:35.1083014Z [ 2025-08-14T22:41:35.1083191Z scalar_t=float 2025-08-14T22:41:35.1083408Z ] 2025-08-14T22:41:35.1084053Z 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-14T22:41:35.1084776Z with 2025-08-14T22:41:35.1084948Z [ 2025-08-14T22:41:35.1085116Z scalar_t=float 2025-08-14T22:41:35.1085330Z ] 2025-08-14T22:41:35.1085971Z 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-14T22:41:35.1086695Z with 2025-08-14T22:41:35.1086857Z [ 2025-08-14T22:41:35.1087031Z scalar_t=float 2025-08-14T22:41:35.1087232Z ] 2025-08-14T22:41:35.1087885Z 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-14T22:41:35.1088604Z with 2025-08-14T22:41:35.1088843Z [ 2025-08-14T22:41:35.1089021Z scalar_t=float 2025-08-14T22:41:35.1089227Z ] 2025-08-14T22:41:35.1089885Z 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-14T22:41:35.1090614Z with 2025-08-14T22:41:35.1090908Z [ 2025-08-14T22:41:35.1091086Z scalar_t=float 2025-08-14T22:41:35.1091305Z ] 2025-08-14T22:41:35.1092020Z 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-14T22:41:35.1092788Z with 2025-08-14T22:41:35.1092969Z [ 2025-08-14T22:41:35.1093136Z scalar_t=float 2025-08-14T22:41:35.1093352Z ] 2025-08-14T22:41:35.1094000Z 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-14T22:41:35.1094734Z with 2025-08-14T22:41:35.1094907Z [ 2025-08-14T22:41:35.1095091Z scalar_t=float 2025-08-14T22:41:35.1095301Z ] 2025-08-14T22:41:35.1095988Z 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-14T22:41:35.1096710Z with 2025-08-14T22:41:35.1096876Z [ 2025-08-14T22:41:35.1097070Z scalar_t=float 2025-08-14T22:41:35.1097282Z ] 2025-08-14T22:41:35.1097944Z 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-14T22:41:35.1098674Z with 2025-08-14T22:41:35.1098867Z [ 2025-08-14T22:41:35.1099042Z scalar_t=float 2025-08-14T22:41:35.1099248Z ] 2025-08-14T22:41:35.1099901Z 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-14T22:41:35.1100617Z with 2025-08-14T22:41:35.1100788Z [ 2025-08-14T22:41:35.1100956Z scalar_t=float 2025-08-14T22:41:35.1101169Z ] 2025-08-14T22:41:35.1101808Z 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-14T22:41:35.1102541Z with 2025-08-14T22:41:35.1102722Z [ 2025-08-14T22:41:35.1102890Z scalar_t=float 2025-08-14T22:41:35.1103104Z ] 2025-08-14T22:41:35.1103744Z 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-14T22:41:35.1104474Z with 2025-08-14T22:41:35.1104639Z [ 2025-08-14T22:41:35.1104815Z scalar_t=float 2025-08-14T22:41:35.1105022Z ] 2025-08-14T22:41:35.1105674Z 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-14T22:41:35.1106404Z with 2025-08-14T22:41:35.1106569Z [ 2025-08-14T22:41:35.1106746Z scalar_t=float 2025-08-14T22:41:35.1106950Z ] 2025-08-14T22:41:35.1107604Z 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-14T22:41:35.1108324Z with 2025-08-14T22:41:35.1108499Z [ 2025-08-14T22:41:35.1108668Z scalar_t=float 2025-08-14T22:41:35.1108890Z ] 2025-08-14T22:41:35.1109547Z 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-14T22:41:35.1110342Z with 2025-08-14T22:41:35.1110526Z [ 2025-08-14T22:41:35.1110700Z scalar_t=float 2025-08-14T22:41:35.1110930Z ] 2025-08-14T22:41:35.1111585Z 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-14T22:41:35.1112301Z with 2025-08-14T22:41:35.1112473Z [ 2025-08-14T22:41:35.1112686Z scalar_t=float 2025-08-14T22:41:35.1112950Z ] 2025-08-14T22:41:35.1113591Z 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-14T22:41:35.1114311Z with 2025-08-14T22:41:35.1114493Z [ 2025-08-14T22:41:35.1114660Z scalar_t=float 2025-08-14T22:41:35.1114877Z ] 2025-08-14T22:41:35.1115517Z 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-14T22:41:35.1116245Z with 2025-08-14T22:41:35.1116413Z [ 2025-08-14T22:41:35.1116637Z scalar_t=float 2025-08-14T22:41:35.1116842Z ] 2025-08-14T22:41:35.1117495Z 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-14T22:41:35.1118223Z with 2025-08-14T22:41:35.1118394Z [ 2025-08-14T22:41:35.1118573Z scalar_t=float 2025-08-14T22:41:35.1118773Z ] 2025-08-14T22:41:35.1119421Z 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-14T22:41:35.1120134Z with 2025-08-14T22:41:35.1120309Z [ 2025-08-14T22:41:35.1120472Z scalar_t=float 2025-08-14T22:41:35.1120686Z ] 2025-08-14T22:41:35.1121337Z 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-14T22:41:35.1122046Z with 2025-08-14T22:41:35.1122228Z [ 2025-08-14T22:41:35.1122394Z scalar_t=float 2025-08-14T22:41:35.1122609Z ] 2025-08-14T22:41:35.1123258Z 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-14T22:41:35.1123980Z with 2025-08-14T22:41:35.1124148Z [ 2025-08-14T22:41:35.1124324Z scalar_t=float 2025-08-14T22:41:35.1124542Z ] 2025-08-14T22:41:35.1125185Z 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-14T22:41:35.1125921Z with 2025-08-14T22:41:35.1126084Z [ 2025-08-14T22:41:35.1126258Z scalar_t=float 2025-08-14T22:41:35.1126461Z ] 2025-08-14T22:41:35.1127113Z 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-14T22:41:35.1127832Z with 2025-08-14T22:41:35.1128003Z [ 2025-08-14T22:41:35.1128179Z scalar_t=float 2025-08-14T22:41:35.1128382Z ] 2025-08-14T22:41:35.1129026Z 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-14T22:41:35.1129733Z with 2025-08-14T22:41:35.1129908Z [ 2025-08-14T22:41:35.1130072Z scalar_t=float 2025-08-14T22:41:35.1131794Z ] 2025-08-14T22:41:35.1132476Z 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-14T22:41:35.1133232Z with 2025-08-14T22:41:35.1133416Z [ 2025-08-14T22:41:35.1133609Z scalar_t=float 2025-08-14T22:41:35.1133829Z ] 2025-08-14T22:41:35.1135122Z 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-14T22:41:35.1135957Z with 2025-08-14T22:41:35.1136130Z [ 2025-08-14T22:41:35.1136316Z scalar_t=float 2025-08-14T22:41:35.1136524Z ] 2025-08-14T22:41:35.1137208Z 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-14T22:41:35.1137948Z with 2025-08-14T22:41:35.1138118Z [ 2025-08-14T22:41:35.1138301Z scalar_t=float 2025-08-14T22:41:35.1138516Z ] 2025-08-14T22:41:35.1139258Z 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-14T22:41:35.1140005Z with 2025-08-14T22:41:35.1140206Z [ 2025-08-14T22:41:35.1140384Z scalar_t=float 2025-08-14T22:41:35.1140604Z ] 2025-08-14T22:41:35.1141273Z 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-14T22:41:35.1142007Z with 2025-08-14T22:41:35.1142187Z [ 2025-08-14T22:41:35.1142361Z scalar_t=float 2025-08-14T22:41:35.1142581Z ] 2025-08-14T22:41:35.1143238Z 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-14T22:41:35.1143975Z with 2025-08-14T22:41:35.1144149Z [ 2025-08-14T22:41:35.1144324Z scalar_t=float 2025-08-14T22:41:35.1144537Z ] 2025-08-14T22:41:35.1145192Z 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-14T22:41:35.1145933Z with 2025-08-14T22:41:35.1146101Z [ 2025-08-14T22:41:35.1146290Z scalar_t=float 2025-08-14T22:41:35.1146501Z ] 2025-08-14T22:41:35.1147165Z 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-14T22:41:35.1147908Z with 2025-08-14T22:41:35.1148088Z [ 2025-08-14T22:41:35.1148271Z scalar_t=float 2025-08-14T22:41:35.1148490Z ] 2025-08-14T22:41:35.1149165Z 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-14T22:41:35.1149896Z with 2025-08-14T22:41:35.1150081Z [ 2025-08-14T22:41:35.1150253Z scalar_t=float 2025-08-14T22:41:35.1150465Z ] 2025-08-14T22:41:35.1151120Z 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-14T22:41:35.1151858Z with 2025-08-14T22:41:35.1152031Z [ 2025-08-14T22:41:35.1152203Z scalar_t=float 2025-08-14T22:41:35.1152420Z ] 2025-08-14T22:41:35.1153067Z 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-14T22:41:35.1153899Z with 2025-08-14T22:41:35.1154079Z [ 2025-08-14T22:41:35.1154259Z scalar_t=float 2025-08-14T22:41:35.1154472Z ] 2025-08-14T22:41:35.1155132Z 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-14T22:41:35.1155867Z with 2025-08-14T22:41:35.1156039Z [ 2025-08-14T22:41:35.1156218Z scalar_t=float 2025-08-14T22:41:35.1156422Z ] 2025-08-14T22:41:35.1157134Z 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-14T22:41:35.1157900Z with 2025-08-14T22:41:35.1158081Z [ 2025-08-14T22:41:35.1158270Z scalar_t=float 2025-08-14T22:41:35.1158480Z ] 2025-08-14T22:41:35.1159130Z 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-14T22:41:35.1159849Z with 2025-08-14T22:41:35.1160023Z [ 2025-08-14T22:41:35.1160195Z scalar_t=float 2025-08-14T22:41:35.1160405Z ] 2025-08-14T22:41:35.1161094Z 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-14T22:41:35.1161829Z with 2025-08-14T22:41:35.1162016Z [ 2025-08-14T22:41:35.1162195Z scalar_t=float 2025-08-14T22:41:35.1162421Z ] 2025-08-14T22:41:35.1163073Z 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-14T22:41:35.1163794Z with 2025-08-14T22:41:35.1163964Z [ 2025-08-14T22:41:35.1164147Z scalar_t=float 2025-08-14T22:41:35.1164353Z ] 2025-08-14T22:41:35.1165014Z 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-14T22:41:35.1165751Z with 2025-08-14T22:41:35.1165921Z [ 2025-08-14T22:41:35.1166105Z scalar_t=float 2025-08-14T22:41:35.1166311Z ] 2025-08-14T22:41:35.1166961Z 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-14T22:41:35.1167682Z with 2025-08-14T22:41:35.1167860Z [ 2025-08-14T22:41:35.1168029Z scalar_t=float 2025-08-14T22:41:35.1168241Z ] 2025-08-14T22:41:35.1168898Z 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-14T22:41:35.1169629Z with 2025-08-14T22:41:35.1169810Z [ 2025-08-14T22:41:35.1169974Z scalar_t=float 2025-08-14T22:41:35.1170182Z ] 2025-08-14T22:41:35.1170971Z 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-14T22:41:35.1171702Z with 2025-08-14T22:41:35.1171868Z [ 2025-08-14T22:41:35.1172048Z scalar_t=float 2025-08-14T22:41:35.1172269Z ] 2025-08-14T22:41:35.1172923Z 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-14T22:41:35.1173656Z with 2025-08-14T22:41:35.1173837Z [ 2025-08-14T22:41:35.1174013Z scalar_t=float 2025-08-14T22:41:35.1174223Z ] 2025-08-14T22:41:35.1174866Z 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-14T22:41:35.1175672Z with 2025-08-14T22:41:35.1175842Z [ 2025-08-14T22:41:35.1176020Z scalar_t=float 2025-08-14T22:41:35.1176227Z ] 2025-08-14T22:41:35.1176885Z 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-14T22:41:35.1177605Z with 2025-08-14T22:41:35.1177776Z [ 2025-08-14T22:41:35.1178040Z scalar_t=float 2025-08-14T22:41:35.1178266Z ] 2025-08-14T22:41:35.1178914Z 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-14T22:41:35.1179635Z with 2025-08-14T22:41:35.1179814Z [ 2025-08-14T22:41:35.1179995Z scalar_t=float 2025-08-14T22:41:35.1180213Z ] 2025-08-14T22:41:35.1180851Z 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-14T22:41:35.1181574Z with 2025-08-14T22:41:35.1181787Z [ 2025-08-14T22:41:35.1183385Z scalar_t=float 2025-08-14T22:41:35.1184104Z ] 2025-08-14T22:41:35.1184936Z 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-14T22:41:35.1185984Z with 2025-08-14T22:41:35.1186161Z [ 2025-08-14T22:41:35.1186342Z scalar_t=float 2025-08-14T22:41:35.1186657Z ] 2025-08-14T22:41:35.1187521Z 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-14T22:41:35.1188451Z with 2025-08-14T22:41:35.1189416Z [ 2025-08-14T22:41:35.1189669Z scalar_t=float 2025-08-14T22:41:35.1190445Z ] 2025-08-14T22:41:35.1191320Z 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-14T22:41:35.1192047Z with 2025-08-14T22:41:35.1192278Z [ 2025-08-14T22:41:35.1192463Z scalar_t=float 2025-08-14T22:41:35.1192675Z ] 2025-08-14T22:41:35.1193323Z 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-14T22:41:35.1194155Z with 2025-08-14T22:41:35.1194336Z [ 2025-08-14T22:41:35.1194507Z scalar_t=float 2025-08-14T22:41:35.1194723Z ] 2025-08-14T22:41:35.1196439Z 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-14T22:41:35.1197196Z with 2025-08-14T22:41:35.1197372Z [ 2025-08-14T22:41:35.1197547Z scalar_t=float 2025-08-14T22:41:35.1197788Z ] 2025-08-14T22:41:35.1198443Z 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-14T22:41:35.1199165Z with 2025-08-14T22:41:35.1199334Z [ 2025-08-14T22:41:35.1199519Z scalar_t=float 2025-08-14T22:41:35.1199722Z ] 2025-08-14T22:41:35.1200376Z 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-14T22:41:35.1202099Z with 2025-08-14T22:41:35.1202277Z [ 2025-08-14T22:41:35.1202606Z scalar_t=float 2025-08-14T22:41:35.1202818Z ] 2025-08-14T22:41:35.1203996Z 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-14T22:41:35.1204714Z with 2025-08-14T22:41:35.1204898Z [ 2025-08-14T22:41:35.1205065Z scalar_t=float 2025-08-14T22:41:35.1205279Z ] 2025-08-14T22:41:35.1205982Z 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-14T22:41:35.1207843Z with 2025-08-14T22:41:35.1208019Z [ 2025-08-14T22:41:35.1208195Z scalar_t=float 2025-08-14T22:41:35.1208409Z ] 2025-08-14T22:41:35.1209059Z 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-14T22:41:35.1209786Z with 2025-08-14T22:41:35.1209954Z [ 2025-08-14T22:41:35.1210125Z scalar_t=float 2025-08-14T22:41:35.1210331Z ] 2025-08-14T22:41:35.1211102Z 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-14T22:41:35.1211842Z with 2025-08-14T22:41:35.1212013Z [ 2025-08-14T22:41:35.1212196Z scalar_t=float 2025-08-14T22:41:35.1213461Z ] 2025-08-14T22:41:35.1214123Z 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-14T22:41:35.1214842Z with 2025-08-14T22:41:35.1215026Z [ 2025-08-14T22:41:35.1215200Z scalar_t=float 2025-08-14T22:41:35.1215418Z ] 2025-08-14T22:41:35.1216065Z 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-14T22:41:35.1216794Z with 2025-08-14T22:41:35.1216972Z [ 2025-08-14T22:41:35.1217143Z scalar_t=float 2025-08-14T22:41:35.1217355Z ] 2025-08-14T22:41:35.1218706Z 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-14T22:41:35.1219832Z with 2025-08-14T22:41:35.1220004Z [ 2025-08-14T22:41:35.1220192Z scalar_t=float 2025-08-14T22:41:35.1220404Z ] 2025-08-14T22:41:35.1221057Z 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-14T22:41:35.1221784Z with 2025-08-14T22:41:35.1221953Z [ 2025-08-14T22:41:35.1222135Z scalar_t=float 2025-08-14T22:41:35.1222341Z ] 2025-08-14T22:41:35.1222997Z 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-14T22:41:35.1223710Z with 2025-08-14T22:41:35.1224906Z [ 2025-08-14T22:41:35.1225095Z scalar_t=float 2025-08-14T22:41:35.1225314Z ] 2025-08-14T22:41:35.1225968Z 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-14T22:41:35.1226684Z with 2025-08-14T22:41:35.1226859Z [ 2025-08-14T22:41:35.1227030Z scalar_t=float 2025-08-14T22:41:35.1227247Z ] 2025-08-14T22:41:35.1227887Z 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-14T22:41:35.1228721Z with 2025-08-14T22:41:35.1228911Z [ 2025-08-14T22:41:35.1229082Z scalar_t=float 2025-08-14T22:41:35.1229300Z ] 2025-08-14T22:41:35.1230994Z 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-14T22:41:35.1231733Z with 2025-08-14T22:41:35.1231907Z [ 2025-08-14T22:41:35.1232092Z scalar_t=float 2025-08-14T22:41:35.1232298Z ] 2025-08-14T22:41:35.1233031Z 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-14T22:41:35.1233816Z with 2025-08-14T22:41:35.1233990Z [ 2025-08-14T22:41:35.1234180Z scalar_t=float 2025-08-14T22:41:35.1234390Z ] 2025-08-14T22:41:35.1235061Z 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-14T22:41:35.1236815Z with 2025-08-14T22:41:35.1237007Z [ 2025-08-14T22:41:35.1237190Z scalar_t=float 2025-08-14T22:41:35.1237472Z ] 2025-08-14T22:41:35.1238135Z 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-14T22:41:35.1238848Z with 2025-08-14T22:41:35.1239037Z [ 2025-08-14T22:41:35.1239213Z scalar_t=float 2025-08-14T22:41:35.1239432Z ] 2025-08-14T22:41:35.1240077Z 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-14T22:41:35.1240804Z with 2025-08-14T22:41:35.1240971Z [ 2025-08-14T22:41:35.1241152Z scalar_t=float 2025-08-14T22:41:35.1242406Z ] 2025-08-14T22:41:35.1243059Z 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-14T22:41:35.1243792Z with 2025-08-14T22:41:35.1243966Z [ 2025-08-14T22:41:35.1244145Z scalar_t=float 2025-08-14T22:41:35.1244214Z ] 2025-08-14T22:41:35.1244772Z 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-14T22:41:35.1244853Z with 2025-08-14T22:41:35.1244919Z [ 2025-08-14T22:41:35.1244994Z scalar_t=float 2025-08-14T22:41:35.1245067Z ] 2025-08-14T22:41:35.1245614Z 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-14T22:41:35.1245688Z with 2025-08-14T22:41:35.1245759Z [ 2025-08-14T22:41:35.1245843Z scalar_t=float 2025-08-14T22:41:35.1245907Z ] 2025-08-14T22:41:35.1246453Z 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-14T22:41:35.1246533Z with 2025-08-14T22:41:35.1246597Z [ 2025-08-14T22:41:35.1246671Z scalar_t=float 2025-08-14T22:41:35.1246734Z ] 2025-08-14T22:41:35.1248313Z 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-14T22:41:35.1248393Z with 2025-08-14T22:41:35.1248459Z [ 2025-08-14T22:41:35.1248548Z scalar_t=float 2025-08-14T22:41:35.1248615Z ] 2025-08-14T22:41:35.1249158Z 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-14T22:41:35.1249323Z with 2025-08-14T22:41:35.1249390Z [ 2025-08-14T22:41:35.1249467Z scalar_t=float 2025-08-14T22:41:35.1249533Z ] 2025-08-14T22:41:35.1250091Z 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-14T22:41:35.1250160Z with 2025-08-14T22:41:35.1250271Z [ 2025-08-14T22:41:35.1250405Z scalar_t=float 2025-08-14T22:41:35.1250472Z ] 2025-08-14T22:41:35.1251073Z 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-14T22:41:35.1251147Z with 2025-08-14T22:41:35.1251216Z [ 2025-08-14T22:41:35.1251295Z scalar_t=float 2025-08-14T22:41:35.1251367Z ] 2025-08-14T22:41:35.1251918Z 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-14T22:41:35.1252042Z with 2025-08-14T22:41:35.1252106Z [ 2025-08-14T22:41:35.1252200Z scalar_t=float 2025-08-14T22:41:35.1252265Z ] 2025-08-14T22:41:35.1253852Z 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-14T22:41:35.1253933Z with 2025-08-14T22:41:35.1254009Z [ 2025-08-14T22:41:35.1254087Z scalar_t=float 2025-08-14T22:41:35.1254151Z ] 2025-08-14T22:41:35.1254711Z 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-14T22:41:35.1254784Z with 2025-08-14T22:41:35.1254848Z [ 2025-08-14T22:41:35.1254924Z scalar_t=float 2025-08-14T22:41:35.1254999Z ] 2025-08-14T22:41:35.1255546Z 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-14T22:41:35.1255613Z with 2025-08-14T22:41:35.1255689Z [ 2025-08-14T22:41:35.1255763Z scalar_t=float 2025-08-14T22:41:35.1255827Z ] 2025-08-14T22:41:35.1256380Z 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-14T22:41:35.1256449Z with 2025-08-14T22:41:35.1256514Z [ 2025-08-14T22:41:35.1256590Z scalar_t=float 2025-08-14T22:41:35.1256662Z ] 2025-08-14T22:41:35.1257205Z 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-14T22:41:35.1257279Z with 2025-08-14T22:41:35.1257354Z [ 2025-08-14T22:41:35.1257439Z scalar_t=float 2025-08-14T22:41:35.1257505Z ] 2025-08-14T22:41:35.1258056Z 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-14T22:41:35.1258121Z with 2025-08-14T22:41:35.1258194Z [ 2025-08-14T22:41:35.1258269Z scalar_t=float 2025-08-14T22:41:35.1258344Z ] 2025-08-14T22:41:35.1259895Z 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-14T22:41:35.1259973Z with 2025-08-14T22:41:35.1260052Z [ 2025-08-14T22:41:35.1260207Z scalar_t=float 2025-08-14T22:41:35.1260271Z ] 2025-08-14T22:41:35.1260815Z 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-14T22:41:35.1260895Z with 2025-08-14T22:41:35.1260961Z [ 2025-08-14T22:41:35.1261042Z scalar_t=float 2025-08-14T22:41:35.1261118Z ] 2025-08-14T22:41:35.1261711Z 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-14T22:41:35.1261825Z with 2025-08-14T22:41:35.1261900Z [ 2025-08-14T22:41:35.1261977Z scalar_t=float 2025-08-14T22:41:35.1262049Z ] 2025-08-14T22:41:35.1262593Z 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-14T22:41:35.1262673Z with 2025-08-14T22:41:35.1262745Z [ 2025-08-14T22:41:35.1262826Z scalar_t=float 2025-08-14T22:41:35.1262903Z ] 2025-08-14T22:41:35.1263486Z 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-14T22:41:35.1263553Z with 2025-08-14T22:41:35.1263621Z [ 2025-08-14T22:41:35.1263703Z scalar_t=float 2025-08-14T22:41:35.1263767Z ] 2025-08-14T22:41:35.1264936Z 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-14T22:41:35.1265417Z with 2025-08-14T22:41:35.1265486Z [ 2025-08-14T22:41:35.1265568Z scalar_t=float 2025-08-14T22:41:35.1265634Z ] 2025-08-14T22:41:35.1266199Z 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-14T22:41:35.1266267Z with 2025-08-14T22:41:35.1266334Z [ 2025-08-14T22:41:35.1266424Z scalar_t=float 2025-08-14T22:41:35.1266491Z ] 2025-08-14T22:41:35.1267036Z 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-14T22:41:35.1267118Z with 2025-08-14T22:41:35.1267188Z [ 2025-08-14T22:41:35.1267262Z scalar_t=float 2025-08-14T22:41:35.1267326Z ] 2025-08-14T22:41:35.1267877Z 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-14T22:41:35.1267941Z with 2025-08-14T22:41:35.1268009Z [ 2025-08-14T22:41:35.1268097Z scalar_t=float 2025-08-14T22:41:35.1268161Z ] 2025-08-14T22:41:35.1268703Z 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-14T22:41:35.1268784Z with 2025-08-14T22:41:35.1268850Z [ 2025-08-14T22:41:35.1268932Z scalar_t=float 2025-08-14T22:41:35.1268996Z ] 2025-08-14T22:41:35.1269550Z 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-14T22:41:35.1269622Z with 2025-08-14T22:41:35.1269688Z [ 2025-08-14T22:41:35.1269771Z scalar_t=float 2025-08-14T22:41:35.1269843Z ] 2025-08-14T22:41:35.1271372Z 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-14T22:41:35.1271519Z with 2025-08-14T22:41:35.1271594Z [ 2025-08-14T22:41:35.1271672Z scalar_t=float 2025-08-14T22:41:35.1271751Z ] 2025-08-14T22:41:35.1272309Z 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-14T22:41:35.1272375Z with 2025-08-14T22:41:35.1272444Z [ 2025-08-14T22:41:35.1272533Z scalar_t=float 2025-08-14T22:41:35.1272646Z ] 2025-08-14T22:41:35.1273240Z 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-14T22:41:35.1273312Z with 2025-08-14T22:41:35.1273392Z [ 2025-08-14T22:41:35.1273468Z scalar_t=float 2025-08-14T22:41:35.1273543Z ] 2025-08-14T22:41:35.1274097Z 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-14T22:41:35.1274164Z with 2025-08-14T22:41:35.1274232Z [ 2025-08-14T22:41:35.1274357Z scalar_t=float 2025-08-14T22:41:35.1274438Z ] 2025-08-14T22:41:35.1274983Z 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-14T22:41:35.1275050Z with 2025-08-14T22:41:35.1275132Z [ 2025-08-14T22:41:35.1275206Z scalar_t=float 2025-08-14T22:41:35.1275272Z ] 2025-08-14T22:41:35.1276459Z 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-14T22:41:35.1276931Z with 2025-08-14T22:41:35.1277010Z [ 2025-08-14T22:41:35.1277088Z scalar_t=float 2025-08-14T22:41:35.1277170Z ] 2025-08-14T22:41:35.1277720Z 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-14T22:41:35.1277790Z with 2025-08-14T22:41:35.1277872Z [ 2025-08-14T22:41:35.1277949Z scalar_t=float 2025-08-14T22:41:35.1278016Z ] 2025-08-14T22:41:35.1278561Z 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-14T22:41:35.1278640Z with 2025-08-14T22:41:35.1278705Z [ 2025-08-14T22:41:35.1278780Z scalar_t=float 2025-08-14T22:41:35.1278853Z ] 2025-08-14T22:41:35.1279393Z 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-14T22:41:35.1279465Z with 2025-08-14T22:41:35.1279538Z [ 2025-08-14T22:41:35.1279615Z scalar_t=float 2025-08-14T22:41:35.1279680Z ] 2025-08-14T22:41:35.1280223Z 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-14T22:41:35.1280299Z with 2025-08-14T22:41:35.1280368Z [ 2025-08-14T22:41:35.1280443Z scalar_t=float 2025-08-14T22:41:35.1280517Z ] 2025-08-14T22:41:35.1281062Z 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-14T22:41:35.1281129Z with 2025-08-14T22:41:35.1281200Z [ 2025-08-14T22:41:35.1281277Z scalar_t=float 2025-08-14T22:41:35.1281343Z ] 2025-08-14T22:41:35.1282970Z 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-14T22:41:35.1283055Z with 2025-08-14T22:41:35.1283123Z [ 2025-08-14T22:41:35.1283207Z scalar_t=float 2025-08-14T22:41:35.1283291Z ] 2025-08-14T22:41:35.1283842Z 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-14T22:41:35.1283972Z with 2025-08-14T22:41:35.1284085Z [ 2025-08-14T22:41:35.1284177Z scalar_t=float 2025-08-14T22:41:35.1284245Z ] 2025-08-14T22:41:35.1284794Z 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-14T22:41:35.1284872Z with 2025-08-14T22:41:35.1284946Z [ 2025-08-14T22:41:35.1285024Z scalar_t=float 2025-08-14T22:41:35.1285092Z ] 2025-08-14T22:41:35.1285698Z 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-14T22:41:35.1285767Z with 2025-08-14T22:41:35.1285833Z [ 2025-08-14T22:41:35.1285920Z scalar_t=float 2025-08-14T22:41:35.1286012Z ] 2025-08-14T22:41:35.1286557Z 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-14T22:41:35.1286634Z with 2025-08-14T22:41:35.1286698Z [ 2025-08-14T22:41:35.1286776Z scalar_t=float 2025-08-14T22:41:35.1286840Z ] 2025-08-14T22:41:35.1288022Z 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-14T22:41:35.1288491Z with 2025-08-14T22:41:35.1288560Z [ 2025-08-14T22:41:35.1288648Z scalar_t=float 2025-08-14T22:41:35.1288721Z ] 2025-08-14T22:41:35.1289270Z 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-14T22:41:35.1289347Z with 2025-08-14T22:41:35.1289413Z [ 2025-08-14T22:41:35.1289489Z scalar_t=float 2025-08-14T22:41:35.1289554Z ] 2025-08-14T22:41:35.1290115Z 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-14T22:41:35.1290180Z with 2025-08-14T22:41:35.1290244Z [ 2025-08-14T22:41:35.1290323Z scalar_t=float 2025-08-14T22:41:35.1290387Z ] 2025-08-14T22:41:35.1290988Z 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-14T22:41:35.1291054Z with 2025-08-14T22:41:35.1291136Z [ 2025-08-14T22:41:35.1291217Z scalar_t=float 2025-08-14T22:41:35.1291280Z ] 2025-08-14T22:41:35.1291837Z 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-14T22:41:35.1291907Z with 2025-08-14T22:41:35.1291973Z [ 2025-08-14T22:41:35.1292064Z scalar_t=float 2025-08-14T22:41:35.1292130Z ] 2025-08-14T22:41:35.1292674Z 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-14T22:41:35.1292740Z with 2025-08-14T22:41:35.1292884Z [ 2025-08-14T22:41:35.1292964Z scalar_t=float 2025-08-14T22:41:35.1293031Z ] 2025-08-14T22:41:35.1294646Z 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-14T22:41:35.1294729Z with 2025-08-14T22:41:35.1294798Z [ 2025-08-14T22:41:35.1294877Z scalar_t=float 2025-08-14T22:41:35.1294954Z ] 2025-08-14T22:41:35.1295558Z 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-14T22:41:35.1296198Z with 2025-08-14T22:41:35.1296272Z [ 2025-08-14T22:41:35.1296350Z scalar_t=float 2025-08-14T22:41:35.1296415Z ] 2025-08-14T22:41:35.1296979Z 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-14T22:41:35.1297053Z with 2025-08-14T22:41:35.1297119Z [ 2025-08-14T22:41:35.1297199Z scalar_t=float 2025-08-14T22:41:35.1297281Z ] 2025-08-14T22:41:35.1297870Z 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-14T22:41:35.1297938Z with 2025-08-14T22:41:35.1298013Z [ 2025-08-14T22:41:35.1298089Z scalar_t=float 2025-08-14T22:41:35.1298163Z ] 2025-08-14T22:41:35.1298711Z 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-14T22:41:35.1298793Z with 2025-08-14T22:41:35.1298858Z [ 2025-08-14T22:41:35.1298933Z scalar_t=float 2025-08-14T22:41:35.1299770Z ] 2025-08-14T22:41:35.1300736Z 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-14T22:41:35.1300812Z with 2025-08-14T22:41:35.1300887Z [ 2025-08-14T22:41:35.1300974Z scalar_t=float 2025-08-14T22:41:35.1301043Z ] 2025-08-14T22:41:35.1301587Z 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-14T22:41:35.1301674Z with 2025-08-14T22:41:35.1301745Z [ 2025-08-14T22:41:35.1301821Z scalar_t=float 2025-08-14T22:41:35.1301895Z ] 2025-08-14T22:41:35.1302441Z 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-14T22:41:35.1302509Z with 2025-08-14T22:41:35.1302590Z [ 2025-08-14T22:41:35.1302669Z scalar_t=float 2025-08-14T22:41:35.1302733Z ] 2025-08-14T22:41:35.1303280Z 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-14T22:41:35.1303358Z with 2025-08-14T22:41:35.1303423Z [ 2025-08-14T22:41:35.1303499Z scalar_t=float 2025-08-14T22:41:35.1303573Z ] 2025-08-14T22:41:35.1304119Z 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-14T22:41:35.1304188Z with 2025-08-14T22:41:35.1304256Z [ 2025-08-14T22:41:35.1304338Z scalar_t=float 2025-08-14T22:41:35.1304404Z ] 2025-08-14T22:41:35.1305601Z 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-14T22:41:35.1306165Z with 2025-08-14T22:41:35.1306233Z [ 2025-08-14T22:41:35.1306312Z scalar_t=float 2025-08-14T22:41:35.1306377Z ] 2025-08-14T22:41:35.1306939Z 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-14T22:41:35.1307010Z with 2025-08-14T22:41:35.1307085Z [ 2025-08-14T22:41:35.1307174Z scalar_t=float 2025-08-14T22:41:35.1307343Z ] 2025-08-14T22:41:35.1307884Z 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-14T22:41:35.1307963Z with 2025-08-14T22:41:35.1308029Z [ 2025-08-14T22:41:35.1308105Z scalar_t=float 2025-08-14T22:41:35.1308175Z ] 2025-08-14T22:41:35.1308731Z 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-14T22:41:35.1308797Z with 2025-08-14T22:41:35.1308872Z [ 2025-08-14T22:41:35.1309350Z scalar_t=float 2025-08-14T22:41:35.1309423Z ] 2025-08-14T22:41:35.1309969Z 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-14T22:41:35.1310051Z with 2025-08-14T22:41:35.1310117Z [ 2025-08-14T22:41:35.1310193Z scalar_t=float 2025-08-14T22:41:35.1310262Z ] 2025-08-14T22:41:35.1311552Z 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-14T22:41:35.1311627Z with 2025-08-14T22:41:35.1311696Z [ 2025-08-14T22:41:35.1311787Z scalar_t=float 2025-08-14T22:41:35.1312259Z ] 2025-08-14T22:41:35.1312818Z 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-14T22:41:35.1312891Z with 2025-08-14T22:41:35.1312967Z [ 2025-08-14T22:41:35.1313046Z scalar_t=float 2025-08-14T22:41:35.1313113Z ] 2025-08-14T22:41:35.1313665Z 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-14T22:41:35.1313734Z with 2025-08-14T22:41:35.1313801Z [ 2025-08-14T22:41:35.1313893Z scalar_t=float 2025-08-14T22:41:35.1313956Z ] 2025-08-14T22:41:35.1314500Z 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-14T22:41:35.1314570Z with 2025-08-14T22:41:35.1314644Z [ 2025-08-14T22:41:35.1314719Z scalar_t=float 2025-08-14T22:41:35.1314787Z ] 2025-08-14T22:41:35.1315341Z 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-14T22:41:35.1315409Z with 2025-08-14T22:41:35.1315480Z [ 2025-08-14T22:41:35.1315562Z scalar_t=float 2025-08-14T22:41:35.1315638Z ] 2025-08-14T22:41:35.1316184Z 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-14T22:41:35.1316250Z with 2025-08-14T22:41:35.1316324Z [ 2025-08-14T22:41:35.1316400Z scalar_t=float 2025-08-14T22:41:35.1316536Z ] 2025-08-14T22:41:35.1318148Z 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-14T22:41:35.1318227Z with 2025-08-14T22:41:35.1318298Z [ 2025-08-14T22:41:35.1318381Z scalar_t=float 2025-08-14T22:41:35.1318458Z ] 2025-08-14T22:41:35.1319012Z 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-14T22:41:35.1319188Z with 2025-08-14T22:41:35.1319264Z [ 2025-08-14T22:41:35.1319341Z scalar_t=float 2025-08-14T22:41:35.1319406Z ] 2025-08-14T22:41:35.1319955Z 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-14T22:41:35.1320034Z with 2025-08-14T22:41:35.1320099Z [ 2025-08-14T22:41:35.1320177Z scalar_t=float 2025-08-14T22:41:35.1320259Z ] 2025-08-14T22:41:35.1320855Z 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-14T22:41:35.1320924Z with 2025-08-14T22:41:35.1321003Z [ 2025-08-14T22:41:35.1321092Z scalar_t=float 2025-08-14T22:41:35.1321163Z ] 2025-08-14T22:41:35.1321710Z 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-14T22:41:35.1321792Z with 2025-08-14T22:41:35.1321859Z [ 2025-08-14T22:41:35.1321940Z scalar_t=float 2025-08-14T22:41:35.1322013Z ] 2025-08-14T22:41:35.1322553Z 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-14T22:41:35.1322623Z with 2025-08-14T22:41:35.1322687Z [ 2025-08-14T22:41:35.1323424Z scalar_t=float 2025-08-14T22:41:35.1323891Z ] 2025-08-14T22:41:35.1324443Z 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-14T22:41:35.1324528Z with 2025-08-14T22:41:35.1324596Z [ 2025-08-14T22:41:35.1324677Z scalar_t=float 2025-08-14T22:41:35.1324760Z ] 2025-08-14T22:41:35.1325308Z 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-14T22:41:35.1325378Z with 2025-08-14T22:41:35.1325446Z [ 2025-08-14T22:41:35.1325537Z scalar_t=float 2025-08-14T22:41:35.1325605Z ] 2025-08-14T22:41:35.1326150Z 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-14T22:41:35.1326226Z with 2025-08-14T22:41:35.1326291Z [ 2025-08-14T22:41:35.1326368Z scalar_t=float 2025-08-14T22:41:35.1326433Z ] 2025-08-14T22:41:35.1326985Z 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-14T22:41:35.1327055Z with 2025-08-14T22:41:35.1327121Z [ 2025-08-14T22:41:35.1327209Z scalar_t=float 2025-08-14T22:41:35.1327274Z ] 2025-08-14T22:41:35.1327818Z 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-14T22:41:35.1327960Z with 2025-08-14T22:41:35.1328031Z [ 2025-08-14T22:41:35.1328119Z scalar_t=float 2025-08-14T22:41:35.1328188Z ] 2025-08-14T22:41:35.1329781Z 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-14T22:41:35.1329857Z with 2025-08-14T22:41:35.1329926Z [ 2025-08-14T22:41:35.1330020Z scalar_t=float 2025-08-14T22:41:35.1330086Z ] 2025-08-14T22:41:35.1330693Z 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-14T22:41:35.1330874Z with 2025-08-14T22:41:35.1330939Z [ 2025-08-14T22:41:35.1331017Z scalar_t=float 2025-08-14T22:41:35.1331085Z ] 2025-08-14T22:41:35.1331640Z 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-14T22:41:35.1331716Z with 2025-08-14T22:41:35.1331786Z [ 2025-08-14T22:41:35.1331872Z scalar_t=float 2025-08-14T22:41:35.1331937Z ] 2025-08-14T22:41:35.1332522Z 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-14T22:41:35.1332595Z with 2025-08-14T22:41:35.1332666Z [ 2025-08-14T22:41:35.1332745Z scalar_t=float 2025-08-14T22:41:35.1332815Z ] 2025-08-14T22:41:35.1333361Z 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-14T22:41:35.1333429Z with 2025-08-14T22:41:35.1333500Z [ 2025-08-14T22:41:35.1333586Z scalar_t=float 2025-08-14T22:41:35.1333653Z ] 2025-08-14T22:41:35.1334194Z 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-14T22:41:35.1334260Z with 2025-08-14T22:41:35.1335000Z [ 2025-08-14T22:41:35.1335481Z scalar_t=float 2025-08-14T22:41:35.1335549Z ] 2025-08-14T22:41:35.1336116Z 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-14T22:41:35.1336187Z with 2025-08-14T22:41:35.1336253Z [ 2025-08-14T22:41:35.1336329Z scalar_t=float 2025-08-14T22:41:35.1336405Z ] 2025-08-14T22:41:35.1336957Z 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-14T22:41:35.1337025Z with 2025-08-14T22:41:35.1337104Z [ 2025-08-14T22:41:35.1337182Z scalar_t=float 2025-08-14T22:41:35.1337249Z ] 2025-08-14T22:41:35.1337801Z 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-14T22:41:35.1337872Z with 2025-08-14T22:41:35.1337942Z [ 2025-08-14T22:41:35.1338019Z scalar_t=float 2025-08-14T22:41:35.1338090Z ] 2025-08-14T22:41:35.1338633Z 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-14T22:41:35.1338700Z with 2025-08-14T22:41:35.1338777Z [ 2025-08-14T22:41:35.1338852Z scalar_t=float 2025-08-14T22:41:35.1338915Z ] 2025-08-14T22:41:35.1339457Z 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-14T22:41:35.1339593Z with 2025-08-14T22:41:35.1339660Z [ 2025-08-14T22:41:35.1339736Z scalar_t=float 2025-08-14T22:41:35.1339812Z ] 2025-08-14T22:41:35.1341395Z 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-14T22:41:35.1341475Z with 2025-08-14T22:41:35.1341551Z [ 2025-08-14T22:41:35.1341690Z scalar_t=float 2025-08-14T22:41:35.1341795Z ] 2025-08-14T22:41:35.1342341Z 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-14T22:41:35.1342418Z with 2025-08-14T22:41:35.1342489Z [ 2025-08-14T22:41:35.1342564Z scalar_t=float 2025-08-14T22:41:35.1342641Z ] 2025-08-14T22:41:35.1343190Z 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-14T22:41:35.1343257Z with 2025-08-14T22:41:35.1343361Z [ 2025-08-14T22:41:35.1343444Z scalar_t=float 2025-08-14T22:41:35.1343509Z ] 2025-08-14T22:41:35.1344053Z 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-14T22:41:35.1344129Z with 2025-08-14T22:41:35.1344198Z [ 2025-08-14T22:41:35.1344280Z scalar_t=float 2025-08-14T22:41:35.1344365Z ] 2025-08-14T22:41:35.1344909Z 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-14T22:41:35.1344985Z with 2025-08-14T22:41:35.1345049Z [ 2025-08-14T22:41:35.1345133Z scalar_t=float 2025-08-14T22:41:35.1345198Z ] 2025-08-14T22:41:35.1345741Z 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-14T22:41:35.1345820Z with 2025-08-14T22:41:35.1345885Z [ 2025-08-14T22:41:35.1346581Z scalar_t=float 2025-08-14T22:41:35.1347051Z ] 2025-08-14T22:41:35.1347615Z 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-14T22:41:35.1347696Z with 2025-08-14T22:41:35.1347766Z [ 2025-08-14T22:41:35.1347853Z scalar_t=float 2025-08-14T22:41:35.1347924Z ] 2025-08-14T22:41:35.1348469Z 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-14T22:41:35.1348550Z with 2025-08-14T22:41:35.1348614Z [ 2025-08-14T22:41:35.1348689Z scalar_t=float 2025-08-14T22:41:35.1348755Z ] 2025-08-14T22:41:35.1349311Z 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-14T22:41:35.1349377Z with 2025-08-14T22:41:35.1349442Z [ 2025-08-14T22:41:35.1349528Z scalar_t=float 2025-08-14T22:41:35.1349595Z ] 2025-08-14T22:41:35.1350140Z 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-14T22:41:35.1350221Z with 2025-08-14T22:41:35.1350286Z [ 2025-08-14T22:41:35.1350360Z scalar_t=float 2025-08-14T22:41:35.1350491Z ] 2025-08-14T22:41:35.1351051Z 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-14T22:41:35.1351124Z with 2025-08-14T22:41:35.1351193Z [ 2025-08-14T22:41:35.1351281Z scalar_t=float 2025-08-14T22:41:35.1351348Z ] 2025-08-14T22:41:35.1352967Z 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-14T22:41:35.1353090Z with 2025-08-14T22:41:35.1353168Z [ 2025-08-14T22:41:35.1353250Z scalar_t=float 2025-08-14T22:41:35.1353317Z ] 2025-08-14T22:41:35.1353871Z 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-14T22:41:35.1353947Z with 2025-08-14T22:41:35.1354015Z [ 2025-08-14T22:41:35.1354100Z scalar_t=float 2025-08-14T22:41:35.1354174Z ] 2025-08-14T22:41:35.1354767Z 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-14T22:41:35.1354835Z with 2025-08-14T22:41:35.1354910Z [ 2025-08-14T22:41:35.1354985Z scalar_t=float 2025-08-14T22:41:35.1355054Z ] 2025-08-14T22:41:35.1355617Z 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-14T22:41:35.1355684Z with 2025-08-14T22:41:35.1355751Z [ 2025-08-14T22:41:35.1355830Z scalar_t=float 2025-08-14T22:41:35.1355905Z ] 2025-08-14T22:41:35.1356452Z 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-14T22:41:35.1356526Z with 2025-08-14T22:41:35.1356602Z [ 2025-08-14T22:41:35.1356678Z scalar_t=float 2025-08-14T22:41:35.1356746Z ] 2025-08-14T22:41:35.1357302Z 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-14T22:41:35.1357373Z with 2025-08-14T22:41:35.1357448Z [ 2025-08-14T22:41:35.1358171Z scalar_t=float 2025-08-14T22:41:35.1358647Z ] 2025-08-14T22:41:35.1359197Z 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-14T22:41:35.1359271Z with 2025-08-14T22:41:35.1359355Z [ 2025-08-14T22:41:35.1359431Z scalar_t=float 2025-08-14T22:41:35.1359504Z ] 2025-08-14T22:41:35.1360054Z 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-14T22:41:35.1360139Z with 2025-08-14T22:41:35.1360209Z [ 2025-08-14T22:41:35.1360288Z scalar_t=float 2025-08-14T22:41:35.1360365Z ] 2025-08-14T22:41:35.1360911Z 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-14T22:41:35.1360989Z with 2025-08-14T22:41:35.1361070Z [ 2025-08-14T22:41:35.1361147Z scalar_t=float 2025-08-14T22:41:35.1361216Z ] 2025-08-14T22:41:35.1361759Z 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-14T22:41:35.1361902Z with 2025-08-14T22:41:35.1361978Z [ 2025-08-14T22:41:35.1362061Z scalar_t=float 2025-08-14T22:41:35.1362141Z ] 2025-08-14T22:41:35.1362692Z 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-14T22:41:35.1362763Z with 2025-08-14T22:41:35.1362835Z [ 2025-08-14T22:41:35.1362926Z scalar_t=float 2025-08-14T22:41:35.1362993Z ] 2025-08-14T22:41:35.1364620Z 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-14T22:41:35.1364745Z with 2025-08-14T22:41:35.1364814Z [ 2025-08-14T22:41:35.1364895Z scalar_t=float 2025-08-14T22:41:35.1364973Z ] 2025-08-14T22:41:35.1365525Z 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-14T22:41:35.1365594Z with 2025-08-14T22:41:35.1365666Z [ 2025-08-14T22:41:35.1365763Z scalar_t=float 2025-08-14T22:41:35.1365868Z ] 2025-08-14T22:41:35.1366411Z 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-14T22:41:35.1366495Z with 2025-08-14T22:41:35.1366559Z [ 2025-08-14T22:41:35.1366640Z scalar_t=float 2025-08-14T22:41:35.1366705Z ] 2025-08-14T22:41:35.1367261Z 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-14T22:41:35.1367332Z with 2025-08-14T22:41:35.1367400Z [ 2025-08-14T22:41:35.1367495Z scalar_t=float 2025-08-14T22:41:35.1367563Z ] 2025-08-14T22:41:35.1368105Z 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-14T22:41:35.1368186Z with 2025-08-14T22:41:35.1368257Z [ 2025-08-14T22:41:35.1368332Z scalar_t=float 2025-08-14T22:41:35.1368400Z ] 2025-08-14T22:41:35.1368956Z 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-14T22:41:35.1369025Z with 2025-08-14T22:41:35.1369709Z [ 2025-08-14T22:41:35.1370204Z scalar_t=float 2025-08-14T22:41:35.1370274Z ] 2025-08-14T22:41:35.1370878Z 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-14T22:41:35.1370962Z with 2025-08-14T22:41:35.1371030Z [ 2025-08-14T22:41:35.1371133Z scalar_t=float 2025-08-14T22:41:35.1371203Z ] 2025-08-14T22:41:35.1371761Z 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-14T22:41:35.1371827Z with 2025-08-14T22:41:35.1371893Z [ 2025-08-14T22:41:35.1371982Z scalar_t=float 2025-08-14T22:41:35.1372047Z ] 2025-08-14T22:41:35.1372592Z 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-14T22:41:35.1372667Z with 2025-08-14T22:41:35.1372743Z [ 2025-08-14T22:41:35.1372817Z scalar_t=float 2025-08-14T22:41:35.1372881Z ] 2025-08-14T22:41:35.1373430Z 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-14T22:41:35.1374200Z with 2025-08-14T22:41:35.1374265Z [ 2025-08-14T22:41:35.1374346Z scalar_t=float 2025-08-14T22:41:35.1374434Z ] 2025-08-14T22:41:35.1390851Z 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-14T22:41:35.1390923Z with 2025-08-14T22:41:35.1391534Z [ 2025-08-14T22:41:35.1391671Z scalar_t=float 2025-08-14T22:41:35.1391737Z ] 2025-08-14T22:41:35.1392312Z 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-14T22:41:35.1392380Z with 2025-08-14T22:41:35.1392449Z [ 2025-08-14T22:41:35.1392529Z scalar_t=float 2025-08-14T22:41:35.1392605Z ] 2025-08-14T22:41:35.1393153Z 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-14T22:41:35.1393264Z with 2025-08-14T22:41:35.1393336Z [ 2025-08-14T22:41:35.1393413Z scalar_t=float 2025-08-14T22:41:35.1393477Z ] 2025-08-14T22:41:35.1394038Z 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-14T22:41:35.1394115Z with 2025-08-14T22:41:35.1394181Z [ 2025-08-14T22:41:35.1394255Z scalar_t=float 2025-08-14T22:41:35.1394333Z ] 2025-08-14T22:41:35.1394876Z 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-14T22:41:35.1394945Z with 2025-08-14T22:41:35.1395025Z [ 2025-08-14T22:41:35.1395100Z scalar_t=float 2025-08-14T22:41:35.1395165Z ] 2025-08-14T22:41:35.1397249Z 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-14T22:41:35.1397334Z with 2025-08-14T22:41:35.1397398Z [ 2025-08-14T22:41:35.1397475Z scalar_t=float 2025-08-14T22:41:35.1397557Z ] 2025-08-14T22:41:35.1398103Z 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-14T22:41:35.1398171Z with 2025-08-14T22:41:35.1398253Z [ 2025-08-14T22:41:35.1398331Z scalar_t=float 2025-08-14T22:41:35.1398400Z ] 2025-08-14T22:41:35.1398941Z 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-14T22:41:35.1399019Z with 2025-08-14T22:41:35.1399088Z [ 2025-08-14T22:41:35.1399163Z scalar_t=float 2025-08-14T22:41:35.1399237Z ] 2025-08-14T22:41:35.1399778Z 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-14T22:41:35.1399845Z with 2025-08-14T22:41:35.1399912Z [ 2025-08-14T22:41:35.1399997Z scalar_t=float 2025-08-14T22:41:35.1400062Z ] 2025-08-14T22:41:35.1400605Z 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-14T22:41:35.1400687Z with 2025-08-14T22:41:35.1400752Z [ 2025-08-14T22:41:35.1400910Z scalar_t=float 2025-08-14T22:41:35.1400984Z ] 2025-08-14T22:41:35.1401530Z 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-14T22:41:35.1403051Z with 2025-08-14T22:41:35.1403129Z [ 2025-08-14T22:41:35.1403230Z scalar_t=float 2025-08-14T22:41:35.1403297Z ] 2025-08-14T22:41:35.1403909Z 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-14T22:41:35.1404039Z with 2025-08-14T22:41:35.1404105Z [ 2025-08-14T22:41:35.1404183Z scalar_t=float 2025-08-14T22:41:35.1404255Z ] 2025-08-14T22:41:35.1404812Z 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-14T22:41:35.1404885Z with 2025-08-14T22:41:35.1404950Z [ 2025-08-14T22:41:35.1405038Z scalar_t=float 2025-08-14T22:41:35.1405103Z ] 2025-08-14T22:41:35.1405689Z 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-14T22:41:35.1405767Z with 2025-08-14T22:41:35.1405833Z [ 2025-08-14T22:41:35.1405908Z scalar_t=float 2025-08-14T22:41:35.1405973Z ] 2025-08-14T22:41:35.1406531Z 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-14T22:41:35.1406599Z with 2025-08-14T22:41:35.1406669Z [ 2025-08-14T22:41:35.1406758Z scalar_t=float 2025-08-14T22:41:35.1406823Z ] 2025-08-14T22:41:35.1407364Z 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-14T22:41:35.1407441Z with 2025-08-14T22:41:35.1407510Z [ 2025-08-14T22:41:35.1407586Z scalar_t=float 2025-08-14T22:41:35.1407652Z ] 2025-08-14T22:41:35.1409639Z 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-14T22:41:35.1409719Z with 2025-08-14T22:41:35.1409793Z [ 2025-08-14T22:41:35.1409887Z scalar_t=float 2025-08-14T22:41:35.1409952Z ] 2025-08-14T22:41:35.1410499Z 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-14T22:41:35.1410567Z with 2025-08-14T22:41:35.1410640Z [ 2025-08-14T22:41:35.1410717Z scalar_t=float 2025-08-14T22:41:35.1410838Z ] 2025-08-14T22:41:35.1411393Z 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-14T22:41:35.1411462Z with 2025-08-14T22:41:35.1411525Z [ 2025-08-14T22:41:35.1411603Z scalar_t=float 2025-08-14T22:41:35.1411676Z ] 2025-08-14T22:41:35.1412226Z 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-14T22:41:35.1412296Z with 2025-08-14T22:41:35.1412369Z [ 2025-08-14T22:41:35.1412444Z scalar_t=float 2025-08-14T22:41:35.1412516Z ] 2025-08-14T22:41:35.1413064Z 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-14T22:41:35.1413199Z with 2025-08-14T22:41:35.1413263Z [ 2025-08-14T22:41:35.1413338Z scalar_t=float 2025-08-14T22:41:35.1413415Z ] 2025-08-14T22:41:35.1415380Z 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-14T22:41:35.1415455Z with 2025-08-14T22:41:35.1415531Z [ 2025-08-14T22:41:35.1415606Z scalar_t=float 2025-08-14T22:41:35.1415671Z ] 2025-08-14T22:41:35.1416322Z 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-14T22:41:35.1416404Z with 2025-08-14T22:41:35.1416468Z [ 2025-08-14T22:41:35.1416543Z scalar_t=float 2025-08-14T22:41:35.1416624Z ] 2025-08-14T22:41:35.1417175Z 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-14T22:41:35.1417241Z with 2025-08-14T22:41:35.1417315Z [ 2025-08-14T22:41:35.1417392Z scalar_t=float 2025-08-14T22:41:35.1417498Z ] 2025-08-14T22:41:35.1418042Z 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-14T22:41:35.1418118Z with 2025-08-14T22:41:35.1418188Z [ 2025-08-14T22:41:35.1418264Z scalar_t=float 2025-08-14T22:41:35.1418338Z ] 2025-08-14T22:41:35.1418886Z 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-14T22:41:35.1418955Z with 2025-08-14T22:41:35.1419040Z [ 2025-08-14T22:41:35.1419128Z scalar_t=float 2025-08-14T22:41:35.1419196Z ] 2025-08-14T22:41:35.1419739Z 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-14T22:41:35.1419824Z with 2025-08-14T22:41:35.1419889Z [ 2025-08-14T22:41:35.1419962Z scalar_t=float 2025-08-14T22:41:35.1420043Z ] 2025-08-14T22:41:35.1420590Z 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-14T22:41:35.1420659Z with 2025-08-14T22:41:35.1420731Z [ 2025-08-14T22:41:35.1420819Z scalar_t=float 2025-08-14T22:41:35.1420885Z ] 2025-08-14T22:41:35.1421427Z 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-14T22:41:35.1421505Z with 2025-08-14T22:41:35.1421573Z [ 2025-08-14T22:41:35.1421652Z scalar_t=float 2025-08-14T22:41:35.1421718Z ] 2025-08-14T22:41:35.1422281Z 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-14T22:41:35.1422349Z with 2025-08-14T22:41:35.1422415Z [ 2025-08-14T22:41:35.1422498Z scalar_t=float 2025-08-14T22:41:35.1422567Z ] 2025-08-14T22:41:35.1423111Z 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-14T22:41:35.1423187Z with 2025-08-14T22:41:35.1423250Z [ 2025-08-14T22:41:35.1423324Z scalar_t=float 2025-08-14T22:41:35.1423389Z ] 2025-08-14T22:41:35.1423991Z 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-14T22:41:35.1424060Z with 2025-08-14T22:41:35.1424128Z [ 2025-08-14T22:41:35.1424216Z scalar_t=float 2025-08-14T22:41:35.1424285Z ] 2025-08-14T22:41:35.1424829Z 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-14T22:41:35.1424911Z with 2025-08-14T22:41:35.1426633Z [ 2025-08-14T22:41:35.1426729Z scalar_t=float 2025-08-14T22:41:35.1426797Z ] 2025-08-14T22:41:35.1427360Z 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-14T22:41:35.1427428Z with 2025-08-14T22:41:35.1427498Z [ 2025-08-14T22:41:35.1427584Z scalar_t=float 2025-08-14T22:41:35.1427654Z ] 2025-08-14T22:41:35.1428199Z 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-14T22:41:35.1435903Z with 2025-08-14T22:41:35.1436063Z [ 2025-08-14T22:41:35.1436168Z scalar_t=float 2025-08-14T22:41:35.1436248Z ] 2025-08-14T22:41:35.1436845Z 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-14T22:41:35.1436918Z with 2025-08-14T22:41:35.1437000Z [ 2025-08-14T22:41:35.1437078Z scalar_t=float 2025-08-14T22:41:35.1437144Z ] 2025-08-14T22:41:35.1437711Z 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-14T22:41:35.1437783Z with 2025-08-14T22:41:35.1437848Z [ 2025-08-14T22:41:35.1437925Z scalar_t=float 2025-08-14T22:41:35.1438007Z ] 2025-08-14T22:41:35.1438556Z 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-14T22:41:35.1438626Z with 2025-08-14T22:41:35.1438708Z [ 2025-08-14T22:41:35.1438787Z scalar_t=float 2025-08-14T22:41:35.1438857Z ] 2025-08-14T22:41:35.1439404Z 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-14T22:41:35.1439484Z with 2025-08-14T22:41:35.1439551Z [ 2025-08-14T22:41:35.1439627Z scalar_t=float 2025-08-14T22:41:35.1439705Z ] 2025-08-14T22:41:35.1440253Z 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-14T22:41:35.1440321Z with 2025-08-14T22:41:35.1440396Z [ 2025-08-14T22:41:35.1440476Z scalar_t=float 2025-08-14T22:41:35.1440542Z ] 2025-08-14T22:41:35.1441089Z 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-14T22:41:35.1441170Z with 2025-08-14T22:41:35.1441241Z [ 2025-08-14T22:41:35.1443210Z scalar_t=float 2025-08-14T22:41:35.1443307Z ] 2025-08-14T22:41:35.1443866Z 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-14T22:41:35.1443942Z with 2025-08-14T22:41:35.1444102Z [ 2025-08-14T22:41:35.1444198Z scalar_t=float 2025-08-14T22:41:35.1444269Z ] 2025-08-14T22:41:35.1444820Z 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-14T22:41:35.1444901Z with 2025-08-14T22:41:35.1444975Z [ 2025-08-14T22:41:35.1445055Z scalar_t=float 2025-08-14T22:41:35.1445135Z ] 2025-08-14T22:41:35.1445736Z 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-14T22:41:35.1445851Z with 2025-08-14T22:41:35.1445927Z [ 2025-08-14T22:41:35.1446020Z scalar_t=float 2025-08-14T22:41:35.1446085Z ] 2025-08-14T22:41:35.1446638Z 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-14T22:41:35.1446726Z with 2025-08-14T22:41:35.1446793Z [ 2025-08-14T22:41:35.1446869Z scalar_t=float 2025-08-14T22:41:35.1446939Z ] 2025-08-14T22:41:35.1447540Z 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-14T22:41:35.1447611Z with 2025-08-14T22:41:35.1447675Z [ 2025-08-14T22:41:35.1447758Z scalar_t=float 2025-08-14T22:41:35.1447829Z ] 2025-08-14T22:41:35.1448375Z 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-14T22:41:35.1448457Z with 2025-08-14T22:41:35.1448524Z [ 2025-08-14T22:41:35.1448601Z scalar_t=float 2025-08-14T22:41:35.1448669Z ] 2025-08-14T22:41:35.1449226Z 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-14T22:41:35.1449296Z with 2025-08-14T22:41:35.1449360Z [ 2025-08-14T22:41:35.1449458Z scalar_t=float 2025-08-14T22:41:35.1449524Z ] 2025-08-14T22:41:35.1450066Z 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-14T22:41:35.1450148Z with 2025-08-14T22:41:35.1450215Z [ 2025-08-14T22:41:35.1450290Z scalar_t=float 2025-08-14T22:41:35.1450359Z ] 2025-08-14T22:41:35.1450998Z 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-14T22:41:35.1451067Z with 2025-08-14T22:41:35.1451139Z [ 2025-08-14T22:41:35.1451235Z scalar_t=float 2025-08-14T22:41:35.1451301Z ] 2025-08-14T22:41:35.1451866Z 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-14T22:41:35.1451942Z with 2025-08-14T22:41:35.1452029Z [ 2025-08-14T22:41:35.1452107Z scalar_t=float 2025-08-14T22:41:35.1452174Z ] 2025-08-14T22:41:35.1452738Z 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-14T22:41:35.1452807Z with 2025-08-14T22:41:35.1452873Z [ 2025-08-14T22:41:35.1452948Z scalar_t=float 2025-08-14T22:41:35.1453024Z ] 2025-08-14T22:41:35.1453572Z 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-14T22:41:35.1453686Z with 2025-08-14T22:41:35.1453770Z [ 2025-08-14T22:41:35.1453849Z scalar_t=float 2025-08-14T22:41:35.1453915Z ] 2025-08-14T22:41:35.1454475Z 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-14T22:41:35.1454542Z with 2025-08-14T22:41:35.1454607Z [ 2025-08-14T22:41:35.1454683Z scalar_t=float 2025-08-14T22:41:35.1454834Z ] 2025-08-14T22:41:35.1455382Z 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-14T22:41:35.1455454Z with 2025-08-14T22:41:35.1455533Z [ 2025-08-14T22:41:35.1455609Z scalar_t=float 2025-08-14T22:41:35.1455675Z ] 2025-08-14T22:41:35.1456228Z 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-14T22:41:35.1456294Z with 2025-08-14T22:41:35.1456363Z [ 2025-08-14T22:41:35.1456475Z scalar_t=float 2025-08-14T22:41:35.1456551Z ] 2025-08-14T22:41:35.1457096Z 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-14T22:41:35.1457166Z with 2025-08-14T22:41:35.1457243Z [ 2025-08-14T22:41:35.1457322Z scalar_t=float 2025-08-14T22:41:35.1457386Z ] 2025-08-14T22:41:35.1457935Z 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-14T22:41:35.1458018Z with 2025-08-14T22:41:35.1458086Z [ 2025-08-14T22:41:35.1458168Z scalar_t=float 2025-08-14T22:41:35.1458250Z ] 2025-08-14T22:41:35.1458797Z 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-14T22:41:35.1458868Z with 2025-08-14T22:41:35.1458952Z [ 2025-08-14T22:41:35.1459026Z scalar_t=float 2025-08-14T22:41:35.1459094Z ] 2025-08-14T22:41:35.1459639Z 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-14T22:41:35.1459719Z with 2025-08-14T22:41:35.1459790Z [ 2025-08-14T22:41:35.1459869Z scalar_t=float 2025-08-14T22:41:35.1459947Z ] 2025-08-14T22:41:35.1460497Z 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-14T22:41:35.1460570Z with 2025-08-14T22:41:35.1460642Z [ 2025-08-14T22:41:35.1460730Z scalar_t=float 2025-08-14T22:41:35.1460797Z ] 2025-08-14T22:41:35.1461343Z 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-14T22:41:35.1461423Z with 2025-08-14T22:41:35.1461495Z [ 2025-08-14T22:41:35.1461580Z scalar_t=float 2025-08-14T22:41:35.1461663Z ] 2025-08-14T22:41:35.1462205Z 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-14T22:41:35.1462279Z with 2025-08-14T22:41:35.1462344Z [ 2025-08-14T22:41:35.1462439Z scalar_t=float 2025-08-14T22:41:35.1462545Z ] 2025-08-14T22:41:35.1463092Z 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-14T22:41:35.1463177Z with 2025-08-14T22:41:35.1463245Z [ 2025-08-14T22:41:35.1463323Z scalar_t=float 2025-08-14T22:41:35.1463389Z ] 2025-08-14T22:41:35.1463940Z 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-14T22:41:35.1464084Z with 2025-08-14T22:41:35.1464154Z [ 2025-08-14T22:41:35.1464236Z scalar_t=float 2025-08-14T22:41:35.1464311Z ] 2025-08-14T22:41:35.1464857Z 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-14T22:41:35.1464936Z with 2025-08-14T22:41:35.1465009Z [ 2025-08-14T22:41:35.1465086Z scalar_t=float 2025-08-14T22:41:35.1465156Z ] 2025-08-14T22:41:35.1465745Z 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-14T22:41:35.1465815Z with 2025-08-14T22:41:35.1465880Z [ 2025-08-14T22:41:35.1465963Z scalar_t=float 2025-08-14T22:41:35.1466033Z ] 2025-08-14T22:41:35.1466582Z 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-14T22:41:35.1466666Z with 2025-08-14T22:41:35.1466731Z [ 2025-08-14T22:41:35.1466808Z scalar_t=float 2025-08-14T22:41:35.1466873Z ] 2025-08-14T22:41:35.1467431Z 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-14T22:41:35.1467502Z with 2025-08-14T22:41:35.1467567Z [ 2025-08-14T22:41:35.1467653Z scalar_t=float 2025-08-14T22:41:35.1467724Z ] 2025-08-14T22:41:35.1468271Z 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-14T22:41:35.1468339Z with 2025-08-14T22:41:35.1468414Z [ 2025-08-14T22:41:35.1468492Z scalar_t=float 2025-08-14T22:41:35.1468559Z ] 2025-08-14T22:41:35.1469124Z 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-14T22:41:35.1469193Z with 2025-08-14T22:41:35.1469258Z [ 2025-08-14T22:41:35.1469335Z scalar_t=float 2025-08-14T22:41:35.1469419Z ] 2025-08-14T22:41:35.1469964Z 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-14T22:41:35.1470035Z with 2025-08-14T22:41:35.1470109Z [ 2025-08-14T22:41:35.1470187Z scalar_t=float 2025-08-14T22:41:35.1470253Z ] 2025-08-14T22:41:35.1470802Z 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-14T22:41:35.1470875Z with 2025-08-14T22:41:35.1470943Z [ 2025-08-14T22:41:35.1471019Z scalar_t=float 2025-08-14T22:41:35.1471092Z ] 2025-08-14T22:41:35.1471636Z 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-14T22:41:35.1471749Z with 2025-08-14T22:41:35.1471831Z [ 2025-08-14T22:41:35.1471907Z scalar_t=float 2025-08-14T22:41:35.1471972Z ] 2025-08-14T22:41:35.1472526Z 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-14T22:41:35.1472593Z with 2025-08-14T22:41:35.1472658Z [ 2025-08-14T22:41:35.1472739Z scalar_t=float 2025-08-14T22:41:35.1472813Z ] 2025-08-14T22:41:35.1474782Z 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-14T22:41:35.1474898Z with 2025-08-14T22:41:35.1474976Z [ 2025-08-14T22:41:35.1475062Z scalar_t=float 2025-08-14T22:41:35.1475127Z ] 2025-08-14T22:41:35.1475673Z 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-14T22:41:35.1475759Z with 2025-08-14T22:41:35.1475827Z [ 2025-08-14T22:41:35.1475906Z scalar_t=float 2025-08-14T22:41:35.1475988Z ] 2025-08-14T22:41:35.1476571Z 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-14T22:41:35.1476641Z with 2025-08-14T22:41:35.1476718Z [ 2025-08-14T22:41:35.1476799Z scalar_t=float 2025-08-14T22:41:35.1476871Z ] 2025-08-14T22:41:35.1477416Z 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-14T22:41:35.1477493Z with 2025-08-14T22:41:35.1477563Z [ 2025-08-14T22:41:35.1477642Z scalar_t=float 2025-08-14T22:41:35.1477720Z ] 2025-08-14T22:41:35.1478270Z 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-14T22:41:35.1478348Z with 2025-08-14T22:41:35.1478413Z [ 2025-08-14T22:41:35.1478505Z scalar_t=float 2025-08-14T22:41:35.1478574Z ] 2025-08-14T22:41:35.1479115Z 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-14T22:41:35.1479199Z with 2025-08-14T22:41:35.1479270Z [ 2025-08-14T22:41:35.1479348Z scalar_t=float 2025-08-14T22:41:35.1479425Z ] 2025-08-14T22:41:35.1479976Z 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-14T22:41:35.1480046Z with 2025-08-14T22:41:35.1480114Z [ 2025-08-14T22:41:35.1480216Z scalar_t=float 2025-08-14T22:41:35.1480280Z ] 2025-08-14T22:41:35.1480832Z 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-14T22:41:35.1480915Z with 2025-08-14T22:41:35.1480985Z [ 2025-08-14T22:41:35.1481063Z scalar_t=float 2025-08-14T22:41:35.1481131Z ] 2025-08-14T22:41:35.1481688Z 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-14T22:41:35.1481762Z with 2025-08-14T22:41:35.1481827Z [ 2025-08-14T22:41:35.1481913Z scalar_t=float 2025-08-14T22:41:35.1481977Z ] 2025-08-14T22:41:35.1482520Z 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-14T22:41:35.1482647Z with 2025-08-14T22:41:35.1482712Z [ 2025-08-14T22:41:35.1482789Z scalar_t=float 2025-08-14T22:41:35.1482857Z ] 2025-08-14T22:41:35.1483417Z 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-14T22:41:35.1483488Z with 2025-08-14T22:41:35.1483572Z [ 2025-08-14T22:41:35.1483689Z scalar_t=float 2025-08-14T22:41:35.1483792Z ] 2025-08-14T22:41:35.1484341Z 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-14T22:41:35.1484417Z with 2025-08-14T22:41:35.1484481Z [ 2025-08-14T22:41:35.1484556Z scalar_t=float 2025-08-14T22:41:35.1484633Z ] 2025-08-14T22:41:35.1485175Z 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-14T22:41:35.1485243Z with 2025-08-14T22:41:35.1485358Z [ 2025-08-14T22:41:35.1485436Z scalar_t=float 2025-08-14T22:41:35.1485501Z ] 2025-08-14T22:41:35.1486050Z 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-14T22:41:35.1486127Z with 2025-08-14T22:41:35.1486193Z [ 2025-08-14T22:41:35.1486267Z scalar_t=float 2025-08-14T22:41:35.1486342Z ] 2025-08-14T22:41:35.1486887Z 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-14T22:41:35.1486956Z with 2025-08-14T22:41:35.1487022Z [ 2025-08-14T22:41:35.1487106Z scalar_t=float 2025-08-14T22:41:35.1487176Z ] 2025-08-14T22:41:35.1487721Z 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-14T22:41:35.1487807Z with 2025-08-14T22:41:35.1487874Z [ 2025-08-14T22:41:35.1487948Z scalar_t=float 2025-08-14T22:41:35.1488025Z ] 2025-08-14T22:41:35.1488575Z 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-14T22:41:35.1488644Z with 2025-08-14T22:41:35.1488710Z [ 2025-08-14T22:41:35.1488796Z scalar_t=float 2025-08-14T22:41:35.1488859Z ] 2025-08-14T22:41:35.1489401Z 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-14T22:41:35.1489475Z with 2025-08-14T22:41:35.1489539Z [ 2025-08-14T22:41:35.1489614Z scalar_t=float 2025-08-14T22:41:35.1489677Z ] 2025-08-14T22:41:35.1490228Z 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-14T22:41:35.1490294Z with 2025-08-14T22:41:35.1490359Z [ 2025-08-14T22:41:35.1490444Z scalar_t=float 2025-08-14T22:41:35.1490510Z ] 2025-08-14T22:41:35.1491127Z 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-14T22:41:35.1491206Z with 2025-08-14T22:41:35.1491269Z [ 2025-08-14T22:41:35.1491344Z scalar_t=float 2025-08-14T22:41:35.1491471Z ] 2025-08-14T22:41:35.1492032Z 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-14T22:41:35.1492098Z with 2025-08-14T22:41:35.1492165Z [ 2025-08-14T22:41:35.1492251Z scalar_t=float 2025-08-14T22:41:35.1492317Z ] 2025-08-14T22:41:35.1492901Z 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-14T22:41:35.1493538Z with 2025-08-14T22:41:35.1493609Z [ 2025-08-14T22:41:35.1493687Z scalar_t=float 2025-08-14T22:41:35.1493752Z ] 2025-08-14T22:41:35.1494320Z 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-14T22:41:35.1494391Z with 2025-08-14T22:41:35.1494458Z [ 2025-08-14T22:41:35.1494545Z scalar_t=float 2025-08-14T22:41:35.1494610Z ] 2025-08-14T22:41:35.1495196Z 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-14T22:41:35.1495267Z with 2025-08-14T22:41:35.1495345Z [ 2025-08-14T22:41:35.1495420Z scalar_t=float 2025-08-14T22:41:35.1495487Z ] 2025-08-14T22:41:35.1496048Z 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-14T22:41:35.1496121Z with 2025-08-14T22:41:35.1496188Z [ 2025-08-14T22:41:35.1496263Z scalar_t=float 2025-08-14T22:41:35.1496342Z ] 2025-08-14T22:41:35.1496891Z 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-14T22:41:35.1496963Z with 2025-08-14T22:41:35.1497039Z [ 2025-08-14T22:41:35.1497116Z scalar_t=float 2025-08-14T22:41:35.1497180Z ] 2025-08-14T22:41:35.1497733Z 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-14T22:41:35.1497800Z with 2025-08-14T22:41:35.1497869Z [ 2025-08-14T22:41:35.1497946Z scalar_t=float 2025-08-14T22:41:35.1498024Z ] 2025-08-14T22:41:35.1498568Z 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-14T22:41:35.1498634Z with 2025-08-14T22:41:35.1498709Z [ 2025-08-14T22:41:35.1498791Z scalar_t=float 2025-08-14T22:41:35.1498861Z ] 2025-08-14T22:41:35.1499410Z 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-14T22:41:35.1499478Z with 2025-08-14T22:41:35.1499547Z [ 2025-08-14T22:41:35.1499623Z scalar_t=float 2025-08-14T22:41:35.1499701Z ] 2025-08-14T22:41:35.1500249Z 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-14T22:41:35.1500318Z with 2025-08-14T22:41:35.1500393Z [ 2025-08-14T22:41:35.1500468Z scalar_t=float 2025-08-14T22:41:35.1500533Z ] 2025-08-14T22:41:35.1501078Z 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-14T22:41:35.1501209Z with 2025-08-14T22:41:35.1501278Z [ 2025-08-14T22:41:35.1501353Z scalar_t=float 2025-08-14T22:41:35.1501434Z ] 2025-08-14T22:41:35.1501980Z 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-14T22:41:35.1502050Z with 2025-08-14T22:41:35.1502132Z [ 2025-08-14T22:41:35.1502214Z scalar_t=float 2025-08-14T22:41:35.1502280Z ] 2025-08-14T22:41:35.1502859Z 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-14T22:41:35.1502974Z with 2025-08-14T22:41:35.1503041Z [ 2025-08-14T22:41:35.1503120Z scalar_t=float 2025-08-14T22:41:35.1503199Z ] 2025-08-14T22:41:35.1503743Z 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-14T22:41:35.1503813Z with 2025-08-14T22:41:35.1503882Z [ 2025-08-14T22:41:35.1503972Z scalar_t=float 2025-08-14T22:41:35.1504039Z ] 2025-08-14T22:41:35.1504912Z 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-14T22:41:35.1504999Z with 2025-08-14T22:41:35.1505067Z [ 2025-08-14T22:41:35.1505151Z scalar_t=float 2025-08-14T22:41:35.1505217Z ] 2025-08-14T22:41:35.1505786Z 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-14T22:41:35.1505856Z with 2025-08-14T22:41:35.1505923Z [ 2025-08-14T22:41:35.1506014Z scalar_t=float 2025-08-14T22:41:35.1506083Z ] 2025-08-14T22:41:35.1506629Z 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-14T22:41:35.1506707Z with 2025-08-14T22:41:35.1506773Z [ 2025-08-14T22:41:35.1506850Z scalar_t=float 2025-08-14T22:41:35.1506914Z ] 2025-08-14T22:41:35.1507464Z 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-14T22:41:35.1507538Z with 2025-08-14T22:41:35.1507632Z [ 2025-08-14T22:41:35.1507707Z scalar_t=float 2025-08-14T22:41:35.1507772Z ] 2025-08-14T22:41:35.1508312Z 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-14T22:41:35.1508387Z with 2025-08-14T22:41:35.1508454Z [ 2025-08-14T22:41:35.1508528Z scalar_t=float 2025-08-14T22:41:35.1508601Z ] 2025-08-14T22:41:35.1509146Z 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-14T22:41:35.1509212Z with 2025-08-14T22:41:35.1509283Z [ 2025-08-14T22:41:35.1509357Z scalar_t=float 2025-08-14T22:41:35.1509421Z ] 2025-08-14T22:41:35.1509972Z 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-14T22:41:35.1510046Z with 2025-08-14T22:41:35.1510111Z [ 2025-08-14T22:41:35.1510187Z scalar_t=float 2025-08-14T22:41:35.1510261Z ] 2025-08-14T22:41:35.1510808Z 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-14T22:41:35.1510940Z with 2025-08-14T22:41:35.1511007Z [ 2025-08-14T22:41:35.1511097Z scalar_t=float 2025-08-14T22:41:35.1511161Z ] 2025-08-14T22:41:35.1511703Z 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-14T22:41:35.1511791Z with 2025-08-14T22:41:35.1511855Z [ 2025-08-14T22:41:35.1512005Z scalar_t=float 2025-08-14T22:41:35.1512078Z ] 2025-08-14T22:41:35.1512620Z 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-14T22:41:35.1512687Z with 2025-08-14T22:41:35.1512759Z [ 2025-08-14T22:41:35.1512847Z scalar_t=float 2025-08-14T22:41:35.1512912Z ] 2025-08-14T22:41:35.1513454Z 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-14T22:41:35.1513528Z with 2025-08-14T22:41:35.1513634Z [ 2025-08-14T22:41:35.1513711Z scalar_t=float 2025-08-14T22:41:35.1513774Z ] 2025-08-14T22:41:35.1514326Z 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-14T22:41:35.1514395Z with 2025-08-14T22:41:35.1514459Z [ 2025-08-14T22:41:35.1514540Z scalar_t=float 2025-08-14T22:41:35.1514607Z ] 2025-08-14T22:41:35.1515149Z 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-14T22:41:35.1515231Z with 2025-08-14T22:41:35.1515303Z [ 2025-08-14T22:41:35.1515380Z scalar_t=float 2025-08-14T22:41:35.1515444Z ] 2025-08-14T22:41:35.1516011Z 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-14T22:41:35.1516079Z with 2025-08-14T22:41:35.1516144Z [ 2025-08-14T22:41:35.1516233Z scalar_t=float 2025-08-14T22:41:35.1516302Z ] 2025-08-14T22:41:35.1516851Z 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-14T22:41:35.1516928Z with 2025-08-14T22:41:35.1516992Z [ 2025-08-14T22:41:35.1517069Z scalar_t=float 2025-08-14T22:41:35.1517132Z ] 2025-08-14T22:41:35.1517678Z 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-14T22:41:35.1517745Z with 2025-08-14T22:41:35.1517810Z [ 2025-08-14T22:41:35.1517891Z scalar_t=float 2025-08-14T22:41:35.1517968Z ] 2025-08-14T22:41:35.1518514Z 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-14T22:41:35.1518580Z with 2025-08-14T22:41:35.1518659Z [ 2025-08-14T22:41:35.1518745Z scalar_t=float 2025-08-14T22:41:35.1518810Z ] 2025-08-14T22:41:35.1519359Z 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-14T22:41:35.1519428Z with 2025-08-14T22:41:35.1519492Z [ 2025-08-14T22:41:35.1519627Z scalar_t=float 2025-08-14T22:41:35.1519703Z ] 2025-08-14T22:41:35.1520252Z 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-14T22:41:35.1520327Z with 2025-08-14T22:41:35.1520402Z [ 2025-08-14T22:41:35.1520484Z scalar_t=float 2025-08-14T22:41:35.1520551Z ] 2025-08-14T22:41:35.1521144Z 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-14T22:41:35.1521250Z with 2025-08-14T22:41:35.1521321Z [ 2025-08-14T22:41:35.1521396Z scalar_t=float 2025-08-14T22:41:35.1521469Z ] 2025-08-14T22:41:35.1522015Z 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-14T22:41:35.1522085Z with 2025-08-14T22:41:35.1522159Z [ 2025-08-14T22:41:35.1522235Z scalar_t=float 2025-08-14T22:41:35.1522300Z ] 2025-08-14T22:41:35.1522889Z 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-14T22:41:35.1522965Z with 2025-08-14T22:41:35.1523032Z [ 2025-08-14T22:41:35.1523108Z scalar_t=float 2025-08-14T22:41:35.1523184Z ] 2025-08-14T22:41:35.1523728Z 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-14T22:41:35.1523797Z with 2025-08-14T22:41:35.1523869Z [ 2025-08-14T22:41:35.1523943Z scalar_t=float 2025-08-14T22:41:35.1524009Z ] 2025-08-14T22:41:35.1524557Z 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-14T22:41:35.1524641Z with 2025-08-14T22:41:35.1524706Z [ 2025-08-14T22:41:35.1524782Z scalar_t=float 2025-08-14T22:41:35.1524856Z ] 2025-08-14T22:41:35.1525400Z 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-14T22:41:35.1525468Z with 2025-08-14T22:41:35.1525542Z [ 2025-08-14T22:41:35.1525619Z scalar_t=float 2025-08-14T22:41:35.1525684Z ] 2025-08-14T22:41:35.1526229Z 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-14T22:41:35.1526308Z with 2025-08-14T22:41:35.1526373Z [ 2025-08-14T22:41:35.1526449Z scalar_t=float 2025-08-14T22:41:35.1526525Z ] 2025-08-14T22:41:35.1527065Z 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-14T22:41:35.1527132Z with 2025-08-14T22:41:35.1527195Z [ 2025-08-14T22:41:35.1527281Z scalar_t=float 2025-08-14T22:41:35.1527344Z ] 2025-08-14T22:41:35.1527888Z 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-14T22:41:35.1527963Z with 2025-08-14T22:41:35.1528030Z [ 2025-08-14T22:41:35.1528104Z scalar_t=float 2025-08-14T22:41:35.1528167Z ] 2025-08-14T22:41:35.1528728Z 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-14T22:41:35.1528847Z with 2025-08-14T22:41:35.1530308Z [ 2025-08-14T22:41:35.1530857Z scalar_t=float 2025-08-14T22:41:35.1530926Z ] 2025-08-14T22:41:35.1531482Z 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-14T22:41:35.1531563Z with 2025-08-14T22:41:35.1531629Z [ 2025-08-14T22:41:35.1531706Z scalar_t=float 2025-08-14T22:41:35.1531773Z ] 2025-08-14T22:41:35.1532442Z 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-14T22:41:35.1532511Z with 2025-08-14T22:41:35.1532574Z [ 2025-08-14T22:41:35.1532663Z scalar_t=float 2025-08-14T22:41:35.1532728Z ] 2025-08-14T22:41:35.1533271Z 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-14T22:41:35.1533352Z with 2025-08-14T22:41:35.1533424Z [ 2025-08-14T22:41:35.1533502Z scalar_t=float 2025-08-14T22:41:35.1533607Z ] 2025-08-14T22:41:35.1534164Z 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-14T22:41:35.1534230Z with 2025-08-14T22:41:35.1534300Z [ 2025-08-14T22:41:35.1534386Z scalar_t=float 2025-08-14T22:41:35.1534451Z ] 2025-08-14T22:41:35.1535000Z 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-14T22:41:35.1535065Z with 2025-08-14T22:41:35.1535141Z [ 2025-08-14T22:41:35.1535224Z scalar_t=float 2025-08-14T22:41:35.1535292Z ] 2025-08-14T22:41:35.1536916Z 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-14T22:41:35.1536994Z with 2025-08-14T22:41:35.1537064Z [ 2025-08-14T22:41:35.1537157Z scalar_t=float 2025-08-14T22:41:35.1537229Z ] 2025-08-14T22:41:35.1537783Z 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-14T22:41:35.1537855Z with 2025-08-14T22:41:35.1537936Z [ 2025-08-14T22:41:35.1538017Z scalar_t=float 2025-08-14T22:41:35.1538084Z ] 2025-08-14T22:41:35.1538635Z 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-14T22:41:35.1538705Z with 2025-08-14T22:41:35.1538770Z [ 2025-08-14T22:41:35.1538846Z scalar_t=float 2025-08-14T22:41:35.1538920Z ] 2025-08-14T22:41:35.1539463Z 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-14T22:41:35.1539533Z with 2025-08-14T22:41:35.1539607Z [ 2025-08-14T22:41:35.1539683Z scalar_t=float 2025-08-14T22:41:35.1539756Z ] 2025-08-14T22:41:35.1540311Z 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-14T22:41:35.1540377Z with 2025-08-14T22:41:35.1540442Z [ 2025-08-14T22:41:35.1540521Z scalar_t=float 2025-08-14T22:41:35.1540597Z ] 2025-08-14T22:41:35.1541212Z 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-14T22:41:35.1541279Z with 2025-08-14T22:41:35.1541993Z [ 2025-08-14T22:41:35.1542474Z scalar_t=float 2025-08-14T22:41:35.1542550Z ] 2025-08-14T22:41:35.1543100Z 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-14T22:41:35.1543182Z with 2025-08-14T22:41:35.1543363Z [ 2025-08-14T22:41:35.1543442Z scalar_t=float 2025-08-14T22:41:35.1543519Z ] 2025-08-14T22:41:35.1544066Z 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-14T22:41:35.1544136Z with 2025-08-14T22:41:35.1544214Z [ 2025-08-14T22:41:35.1544296Z scalar_t=float 2025-08-14T22:41:35.1544367Z ] 2025-08-14T22:41:35.1544913Z 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-14T22:41:35.1545040Z with 2025-08-14T22:41:35.1545111Z [ 2025-08-14T22:41:35.1545189Z scalar_t=float 2025-08-14T22:41:35.1545267Z ] 2025-08-14T22:41:35.1545819Z 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-14T22:41:35.1545889Z with 2025-08-14T22:41:35.1545970Z [ 2025-08-14T22:41:35.1546047Z scalar_t=float 2025-08-14T22:41:35.1546117Z ] 2025-08-14T22:41:35.1546668Z 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-14T22:41:35.1546750Z with 2025-08-14T22:41:35.1546821Z [ 2025-08-14T22:41:35.1546898Z scalar_t=float 2025-08-14T22:41:35.1546971Z ] 2025-08-14T22:41:35.1548554Z 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-14T22:41:35.1548629Z with 2025-08-14T22:41:35.1548695Z [ 2025-08-14T22:41:35.1548785Z scalar_t=float 2025-08-14T22:41:35.1548852Z ] 2025-08-14T22:41:35.1549401Z 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-14T22:41:35.1549480Z with 2025-08-14T22:41:35.1549548Z [ 2025-08-14T22:41:35.1549626Z scalar_t=float 2025-08-14T22:41:35.1549691Z ] 2025-08-14T22:41:35.1550248Z 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-14T22:41:35.1550315Z with 2025-08-14T22:41:35.1550380Z [ 2025-08-14T22:41:35.1550471Z scalar_t=float 2025-08-14T22:41:35.1550536Z ] 2025-08-14T22:41:35.1551081Z 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-14T22:41:35.1551154Z with 2025-08-14T22:41:35.1551222Z [ 2025-08-14T22:41:35.1551296Z scalar_t=float 2025-08-14T22:41:35.1551360Z ] 2025-08-14T22:41:35.1551908Z 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-14T22:41:35.1551974Z with 2025-08-14T22:41:35.1552109Z [ 2025-08-14T22:41:35.1552197Z scalar_t=float 2025-08-14T22:41:35.1552264Z ] 2025-08-14T22:41:35.1552811Z 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-14T22:41:35.1552890Z with 2025-08-14T22:41:35.1553613Z [ 2025-08-14T22:41:35.1554094Z scalar_t=float 2025-08-14T22:41:35.1554163Z ] 2025-08-14T22:41:35.1554773Z 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-14T22:41:35.1554885Z with 2025-08-14T22:41:35.1554951Z [ 2025-08-14T22:41:35.1555049Z scalar_t=float 2025-08-14T22:41:35.1555114Z ] 2025-08-14T22:41:35.1555664Z 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-14T22:41:35.1555737Z with 2025-08-14T22:41:35.1555814Z [ 2025-08-14T22:41:35.1555894Z scalar_t=float 2025-08-14T22:41:35.1555962Z ] 2025-08-14T22:41:35.1556555Z 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-14T22:41:35.1556620Z with 2025-08-14T22:41:35.1556689Z [ 2025-08-14T22:41:35.1556775Z scalar_t=float 2025-08-14T22:41:35.1556842Z ] 2025-08-14T22:41:35.1557394Z 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-14T22:41:35.1557462Z with 2025-08-14T22:41:35.1557536Z [ 2025-08-14T22:41:35.1557610Z scalar_t=float 2025-08-14T22:41:35.1557677Z ] 2025-08-14T22:41:35.1558238Z 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-14T22:41:35.1558310Z with 2025-08-14T22:41:35.1558376Z [ 2025-08-14T22:41:35.1558454Z scalar_t=float 2025-08-14T22:41:35.1558529Z ] 2025-08-14T22:41:35.1559725Z 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-14T22:41:35.1560198Z with 2025-08-14T22:41:35.1560281Z [ 2025-08-14T22:41:35.1560359Z scalar_t=float 2025-08-14T22:41:35.1560428Z ] 2025-08-14T22:41:35.1560985Z 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-14T22:41:35.1561054Z with 2025-08-14T22:41:35.1561127Z [ 2025-08-14T22:41:35.1561211Z scalar_t=float 2025-08-14T22:41:35.1561288Z ] 2025-08-14T22:41:35.1561839Z 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-14T22:41:35.1561913Z with 2025-08-14T22:41:35.1561990Z [ 2025-08-14T22:41:35.1562066Z scalar_t=float 2025-08-14T22:41:35.1562132Z ] 2025-08-14T22:41:35.1562673Z 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-14T22:41:35.1562751Z with 2025-08-14T22:41:35.1562814Z [ 2025-08-14T22:41:35.1562889Z scalar_t=float 2025-08-14T22:41:35.1562967Z ] 2025-08-14T22:41:35.1563511Z 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-14T22:41:35.1564254Z with 2025-08-14T22:41:35.1564329Z [ 2025-08-14T22:41:35.1564409Z scalar_t=float 2025-08-14T22:41:35.1564475Z ] 2025-08-14T22:41:35.1566155Z 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-14T22:41:35.1566243Z with 2025-08-14T22:41:35.1566311Z [ 2025-08-14T22:41:35.1566390Z scalar_t=float 2025-08-14T22:41:35.1566912Z ] 2025-08-14T22:41:35.1567519Z 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-14T22:41:35.1567588Z with 2025-08-14T22:41:35.1567654Z [ 2025-08-14T22:41:35.1567744Z scalar_t=float 2025-08-14T22:41:35.1567811Z ] 2025-08-14T22:41:35.1568361Z 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-14T22:41:35.1568436Z with 2025-08-14T22:41:35.1568501Z [ 2025-08-14T22:41:35.1568617Z scalar_t=float 2025-08-14T22:41:35.1568694Z ] 2025-08-14T22:41:35.1569240Z 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-14T22:41:35.1569313Z with 2025-08-14T22:41:35.1569387Z [ 2025-08-14T22:41:35.1569472Z scalar_t=float 2025-08-14T22:41:35.1569542Z ] 2025-08-14T22:41:35.1570082Z 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-14T22:41:35.1570158Z with 2025-08-14T22:41:35.1570228Z [ 2025-08-14T22:41:35.1570312Z scalar_t=float 2025-08-14T22:41:35.1570375Z ] 2025-08-14T22:41:35.1572052Z 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-14T22:41:35.1572124Z with 2025-08-14T22:41:35.1572195Z [ 2025-08-14T22:41:35.1572282Z scalar_t=float 2025-08-14T22:41:35.1572346Z ] 2025-08-14T22:41:35.1572894Z 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-14T22:41:35.1572971Z with 2025-08-14T22:41:35.1573035Z [ 2025-08-14T22:41:35.1573113Z scalar_t=float 2025-08-14T22:41:35.1573176Z ] 2025-08-14T22:41:35.1573735Z 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-14T22:41:35.1573808Z with 2025-08-14T22:41:35.1573872Z [ 2025-08-14T22:41:35.1573963Z scalar_t=float 2025-08-14T22:41:35.1574031Z ] 2025-08-14T22:41:35.1574577Z 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-14T22:41:35.1574650Z with 2025-08-14T22:41:35.1574715Z [ 2025-08-14T22:41:35.1574790Z scalar_t=float 2025-08-14T22:41:35.1574865Z ] 2025-08-14T22:41:35.1575415Z 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-14T22:41:35.1575484Z with 2025-08-14T22:41:35.1575551Z [ 2025-08-14T22:41:35.1575635Z scalar_t=float 2025-08-14T22:41:35.1575703Z ] 2025-08-14T22:41:35.1576319Z 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-14T22:41:35.1576389Z with 2025-08-14T22:41:35.1576475Z [ 2025-08-14T22:41:35.1576557Z scalar_t=float 2025-08-14T22:41:35.1577251Z ] 2025-08-14T22:41:35.1578207Z 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-14T22:41:35.1578336Z with 2025-08-14T22:41:35.1578443Z [ 2025-08-14T22:41:35.1578535Z scalar_t=float 2025-08-14T22:41:35.1578601Z ] 2025-08-14T22:41:35.1579149Z 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-14T22:41:35.1579216Z with 2025-08-14T22:41:35.1579293Z [ 2025-08-14T22:41:35.1579369Z scalar_t=float 2025-08-14T22:41:35.1579438Z ] 2025-08-14T22:41:35.1580032Z 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-14T22:41:35.1580099Z with 2025-08-14T22:41:35.1580163Z [ 2025-08-14T22:41:35.1580241Z scalar_t=float 2025-08-14T22:41:35.1580324Z ] 2025-08-14T22:41:35.1580870Z 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-14T22:41:35.1580937Z with 2025-08-14T22:41:35.1581012Z [ 2025-08-14T22:41:35.1581090Z scalar_t=float 2025-08-14T22:41:35.1581161Z ] 2025-08-14T22:41:35.1581714Z 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-14T22:41:35.1581784Z with 2025-08-14T22:41:35.1581849Z [ 2025-08-14T22:41:35.1581924Z scalar_t=float 2025-08-14T22:41:35.1581998Z ] 2025-08-14T22:41:35.1583560Z 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-14T22:41:35.1583636Z with 2025-08-14T22:41:35.1583716Z [ 2025-08-14T22:41:35.1583796Z scalar_t=float 2025-08-14T22:41:35.1583875Z ] 2025-08-14T22:41:35.1584424Z 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-14T22:41:35.1584509Z with 2025-08-14T22:41:35.1584582Z [ 2025-08-14T22:41:35.1584662Z scalar_t=float 2025-08-14T22:41:35.1584739Z ] 2025-08-14T22:41:35.1585289Z 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-14T22:41:35.1585355Z with 2025-08-14T22:41:35.1585430Z [ 2025-08-14T22:41:35.1585511Z scalar_t=float 2025-08-14T22:41:35.1585575Z ] 2025-08-14T22:41:35.1586122Z 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-14T22:41:35.1586202Z with 2025-08-14T22:41:35.1586269Z [ 2025-08-14T22:41:35.1586344Z scalar_t=float 2025-08-14T22:41:35.1586418Z ] 2025-08-14T22:41:35.1586957Z 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-14T22:41:35.1587024Z with 2025-08-14T22:41:35.1587151Z [ 2025-08-14T22:41:35.1587242Z scalar_t=float 2025-08-14T22:41:35.1587308Z ] 2025-08-14T22:41:35.1587857Z 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-14T22:41:35.1587956Z with 2025-08-14T22:41:35.1588023Z [ 2025-08-14T22:41:35.1588102Z scalar_t=float 2025-08-14T22:41:35.1588804Z ] 2025-08-14T22:41:35.1589809Z 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-14T22:41:35.1589921Z with 2025-08-14T22:41:35.1589996Z [ 2025-08-14T22:41:35.1590081Z scalar_t=float 2025-08-14T22:41:35.1590148Z ] 2025-08-14T22:41:35.1590697Z 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-14T22:41:35.1590779Z with 2025-08-14T22:41:35.1590844Z [ 2025-08-14T22:41:35.1590927Z scalar_t=float 2025-08-14T22:41:35.1591000Z ] 2025-08-14T22:41:35.1591591Z 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-14T22:41:35.1591659Z with 2025-08-14T22:41:35.1591722Z [ 2025-08-14T22:41:35.1591814Z scalar_t=float 2025-08-14T22:41:35.1591888Z ] 2025-08-14T22:41:35.1592433Z 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-14T22:41:35.1592514Z with 2025-08-14T22:41:35.1592579Z [ 2025-08-14T22:41:35.1592653Z scalar_t=float 2025-08-14T22:41:35.1592720Z ] 2025-08-14T22:41:35.1593275Z 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-14T22:41:35.1593342Z with 2025-08-14T22:41:35.1593408Z [ 2025-08-14T22:41:35.1593494Z scalar_t=float 2025-08-14T22:41:35.1593563Z ] 2025-08-14T22:41:35.1595139Z 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-14T22:41:35.1595226Z with 2025-08-14T22:41:35.1595290Z [ 2025-08-14T22:41:35.1595370Z scalar_t=float 2025-08-14T22:41:35.1595446Z ] 2025-08-14T22:41:35.1595997Z 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-14T22:41:35.1596068Z with 2025-08-14T22:41:35.1596136Z [ 2025-08-14T22:41:35.1596221Z scalar_t=float 2025-08-14T22:41:35.1596284Z ] 2025-08-14T22:41:35.1596827Z 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-14T22:41:35.1596892Z with 2025-08-14T22:41:35.1596964Z [ 2025-08-14T22:41:35.1597038Z scalar_t=float 2025-08-14T22:41:35.1597102Z ] 2025-08-14T22:41:35.1597653Z 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-14T22:41:35.1597720Z with 2025-08-14T22:41:35.1597784Z [ 2025-08-14T22:41:35.1597868Z scalar_t=float 2025-08-14T22:41:35.1597935Z ] 2025-08-14T22:41:35.1598474Z 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-14T22:41:35.1598604Z with 2025-08-14T22:41:35.1598682Z [ 2025-08-14T22:41:35.1598760Z scalar_t=float 2025-08-14T22:41:35.1598825Z ] 2025-08-14T22:41:35.1599390Z 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-14T22:41:35.1599458Z with 2025-08-14T22:41:35.1599523Z [ 2025-08-14T22:41:35.1599646Z scalar_t=float 2025-08-14T22:41:35.1600810Z ] 2025-08-14T22:41:35.1601367Z 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-14T22:41:35.1601440Z with 2025-08-14T22:41:35.1601519Z [ 2025-08-14T22:41:35.1601595Z scalar_t=float 2025-08-14T22:41:35.1601667Z ] 2025-08-14T22:41:35.1602221Z 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-14T22:41:35.1602295Z with 2025-08-14T22:41:35.1602364Z [ 2025-08-14T22:41:35.1602492Z scalar_t=float 2025-08-14T22:41:35.1602575Z ] 2025-08-14T22:41:35.1603119Z 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-14T22:41:35.1603194Z with 2025-08-14T22:41:35.1603276Z [ 2025-08-14T22:41:35.1603354Z scalar_t=float 2025-08-14T22:41:35.1603422Z ] 2025-08-14T22:41:35.1603967Z 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-14T22:41:35.1604052Z with 2025-08-14T22:41:35.1604118Z [ 2025-08-14T22:41:35.1604194Z scalar_t=float 2025-08-14T22:41:35.1604273Z ] 2025-08-14T22:41:35.1604816Z 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-14T22:41:35.1604888Z with 2025-08-14T22:41:35.1604959Z [ 2025-08-14T22:41:35.1605034Z scalar_t=float 2025-08-14T22:41:35.1605104Z ] 2025-08-14T22:41:35.1606669Z 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-14T22:41:35.1606754Z with 2025-08-14T22:41:35.1606822Z [ 2025-08-14T22:41:35.1606901Z scalar_t=float 2025-08-14T22:41:35.1606976Z ] 2025-08-14T22:41:35.1607521Z 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-14T22:41:35.1607593Z with 2025-08-14T22:41:35.1607659Z [ 2025-08-14T22:41:35.1607754Z scalar_t=float 2025-08-14T22:41:35.1607817Z ] 2025-08-14T22:41:35.1608362Z 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-14T22:41:35.1608435Z with 2025-08-14T22:41:35.1608499Z [ 2025-08-14T22:41:35.1608576Z scalar_t=float 2025-08-14T22:41:35.1608661Z ] 2025-08-14T22:41:35.1609203Z 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-14T22:41:35.1609269Z with 2025-08-14T22:41:35.1609334Z [ 2025-08-14T22:41:35.1609416Z scalar_t=float 2025-08-14T22:41:35.1609561Z ] 2025-08-14T22:41:35.1610105Z 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-14T22:41:35.1610183Z with 2025-08-14T22:41:35.1610249Z [ 2025-08-14T22:41:35.1610330Z scalar_t=float 2025-08-14T22:41:35.1610400Z ] 2025-08-14T22:41:35.1611071Z 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-14T22:41:35.1611184Z with 2025-08-14T22:41:35.1611248Z [ 2025-08-14T22:41:35.1612004Z scalar_t=float 2025-08-14T22:41:35.1612471Z ] 2025-08-14T22:41:35.1613024Z 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-14T22:41:35.1613108Z with 2025-08-14T22:41:35.1613176Z [ 2025-08-14T22:41:35.1613252Z scalar_t=float 2025-08-14T22:41:35.1613316Z ] 2025-08-14T22:41:35.1613921Z 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-14T22:41:35.1613999Z with 2025-08-14T22:41:35.1614065Z [ 2025-08-14T22:41:35.1614149Z scalar_t=float 2025-08-14T22:41:35.1614220Z ] 2025-08-14T22:41:35.1614767Z 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-14T22:41:35.1614846Z with 2025-08-14T22:41:35.1614915Z [ 2025-08-14T22:41:35.1614990Z scalar_t=float 2025-08-14T22:41:35.1615056Z ] 2025-08-14T22:41:35.1615611Z 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-14T22:41:35.1615683Z with 2025-08-14T22:41:35.1615747Z [ 2025-08-14T22:41:35.1615833Z scalar_t=float 2025-08-14T22:41:35.1615896Z ] 2025-08-14T22:41:35.1616440Z 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-14T22:41:35.1616507Z with 2025-08-14T22:41:35.1616578Z [ 2025-08-14T22:41:35.1616654Z scalar_t=float 2025-08-14T22:41:35.1616724Z ] 2025-08-14T22:41:35.1618312Z 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-14T22:41:35.1618388Z with 2025-08-14T22:41:35.1618459Z [ 2025-08-14T22:41:35.1618541Z scalar_t=float 2025-08-14T22:41:35.1618624Z ] 2025-08-14T22:41:35.1619175Z 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-14T22:41:35.1619247Z with 2025-08-14T22:41:35.1619324Z [ 2025-08-14T22:41:35.1619400Z scalar_t=float 2025-08-14T22:41:35.1619466Z ] 2025-08-14T22:41:35.1620018Z 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-14T22:41:35.1620086Z with 2025-08-14T22:41:35.1620154Z [ 2025-08-14T22:41:35.1620233Z scalar_t=float 2025-08-14T22:41:35.1620305Z ] 2025-08-14T22:41:35.1620848Z 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-14T22:41:35.1620986Z with 2025-08-14T22:41:35.1621062Z [ 2025-08-14T22:41:35.1621141Z scalar_t=float 2025-08-14T22:41:35.1621210Z ] 2025-08-14T22:41:35.1621773Z 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-14T22:41:35.1621844Z with 2025-08-14T22:41:35.1621910Z [ 2025-08-14T22:41:35.1621988Z scalar_t=float 2025-08-14T22:41:35.1622074Z ] 2025-08-14T22:41:35.1622662Z 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-14T22:41:35.1622774Z with 2025-08-14T22:41:35.1622851Z [ 2025-08-14T22:41:35.1623573Z scalar_t=float 2025-08-14T22:41:35.1624044Z ] 2025-08-14T22:41:35.1624597Z 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-14T22:41:35.1624678Z with 2025-08-14T22:41:35.1624750Z [ 2025-08-14T22:41:35.1624829Z scalar_t=float 2025-08-14T22:41:35.1624910Z ] 2025-08-14T22:41:35.1625509Z 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-14T22:41:35.1625580Z with 2025-08-14T22:41:35.1625658Z [ 2025-08-14T22:41:35.1625737Z scalar_t=float 2025-08-14T22:41:35.1625808Z ] 2025-08-14T22:41:35.1626364Z 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-14T22:41:35.1626447Z with 2025-08-14T22:41:35.1626514Z [ 2025-08-14T22:41:35.1626589Z scalar_t=float 2025-08-14T22:41:35.1626669Z ] 2025-08-14T22:41:35.1627212Z 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-14T22:41:35.1627279Z with 2025-08-14T22:41:35.1627353Z [ 2025-08-14T22:41:35.1627435Z scalar_t=float 2025-08-14T22:41:35.1627503Z ] 2025-08-14T22:41:35.1628050Z 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-14T22:41:35.1628134Z with 2025-08-14T22:41:35.1628199Z [ 2025-08-14T22:41:35.1628274Z scalar_t=float 2025-08-14T22:41:35.1628354Z ] 2025-08-14T22:41:35.1629941Z 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-14T22:41:35.1630019Z with 2025-08-14T22:41:35.1630090Z [ 2025-08-14T22:41:35.1630187Z scalar_t=float 2025-08-14T22:41:35.1630253Z ] 2025-08-14T22:41:35.1630804Z 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-14T22:41:35.1630882Z with 2025-08-14T22:41:35.1630947Z [ 2025-08-14T22:41:35.1631023Z scalar_t=float 2025-08-14T22:41:35.1631089Z ] 2025-08-14T22:41:35.1631648Z 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-14T22:41:35.1631715Z with 2025-08-14T22:41:35.1631779Z [ 2025-08-14T22:41:35.1631861Z scalar_t=float 2025-08-14T22:41:35.1631925Z ] 2025-08-14T22:41:35.1632465Z 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-14T22:41:35.1632617Z with 2025-08-14T22:41:35.1632682Z [ 2025-08-14T22:41:35.1632758Z scalar_t=float 2025-08-14T22:41:35.1632822Z ] 2025-08-14T22:41:35.1633374Z 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-14T22:41:35.1633443Z with 2025-08-14T22:41:35.1633507Z [ 2025-08-14T22:41:35.1633636Z scalar_t=float 2025-08-14T22:41:35.1633740Z ] 2025-08-14T22:41:35.1634293Z 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-14T22:41:35.1634373Z with 2025-08-14T22:41:35.1634438Z [ 2025-08-14T22:41:35.1635148Z scalar_t=float 2025-08-14T22:41:35.1635614Z ] 2025-08-14T22:41:35.1636175Z 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-14T22:41:35.1636242Z with 2025-08-14T22:41:35.1636360Z [ 2025-08-14T22:41:35.1636445Z scalar_t=float 2025-08-14T22:41:35.1636510Z ] 2025-08-14T22:41:35.1637058Z 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-14T22:41:35.1637125Z with 2025-08-14T22:41:35.1637202Z [ 2025-08-14T22:41:35.1637276Z scalar_t=float 2025-08-14T22:41:35.1637340Z ] 2025-08-14T22:41:35.1637887Z 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-14T22:41:35.1637957Z with 2025-08-14T22:41:35.1638030Z [ 2025-08-14T22:41:35.1638106Z scalar_t=float 2025-08-14T22:41:35.1638178Z ] 2025-08-14T22:41:35.1638727Z 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-14T22:41:35.1638800Z with 2025-08-14T22:41:35.1638873Z [ 2025-08-14T22:41:35.1638948Z scalar_t=float 2025-08-14T22:41:35.1639014Z ] 2025-08-14T22:41:35.1639569Z 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-14T22:41:35.1639638Z with 2025-08-14T22:41:35.1639702Z [ 2025-08-14T22:41:35.1639779Z scalar_t=float 2025-08-14T22:41:35.1639862Z ] 2025-08-14T22:41:35.1641435Z 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-14T22:41:35.1641518Z with 2025-08-14T22:41:35.1641596Z [ 2025-08-14T22:41:35.1641677Z scalar_t=float 2025-08-14T22:41:35.1641747Z ] 2025-08-14T22:41:35.1642297Z 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-14T22:41:35.1642376Z with 2025-08-14T22:41:35.1642441Z [ 2025-08-14T22:41:35.1642522Z scalar_t=float 2025-08-14T22:41:35.1642599Z ] 2025-08-14T22:41:35.1643140Z 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-14T22:41:35.1643207Z with 2025-08-14T22:41:35.1643281Z [ 2025-08-14T22:41:35.1643360Z scalar_t=float 2025-08-14T22:41:35.1643491Z ] 2025-08-14T22:41:35.1644039Z 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-14T22:41:35.1644111Z with 2025-08-14T22:41:35.1644183Z [ 2025-08-14T22:41:35.1644262Z scalar_t=float 2025-08-14T22:41:35.1644338Z ] 2025-08-14T22:41:35.1644927Z 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-14T22:41:35.1645035Z with 2025-08-14T22:41:35.1645112Z [ 2025-08-14T22:41:35.1645196Z scalar_t=float 2025-08-14T22:41:35.1645265Z ] 2025-08-14T22:41:35.1645812Z 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-14T22:41:35.1645899Z with 2025-08-14T22:41:35.1645969Z [ 2025-08-14T22:41:35.1646045Z scalar_t=float 2025-08-14T22:41:35.1646759Z ] 2025-08-14T22:41:35.1647751Z 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-14T22:41:35.1647825Z with 2025-08-14T22:41:35.1647892Z [ 2025-08-14T22:41:35.1647978Z scalar_t=float 2025-08-14T22:41:35.1648042Z ] 2025-08-14T22:41:35.1648584Z 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-14T22:41:35.1648662Z with 2025-08-14T22:41:35.1648728Z [ 2025-08-14T22:41:35.1648804Z scalar_t=float 2025-08-14T22:41:35.1648874Z ] 2025-08-14T22:41:35.1649426Z 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-14T22:41:35.1649498Z with 2025-08-14T22:41:35.1649563Z [ 2025-08-14T22:41:35.1649645Z scalar_t=float 2025-08-14T22:41:35.1649716Z ] 2025-08-14T22:41:35.1650255Z 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-14T22:41:35.1650337Z with 2025-08-14T22:41:35.1650402Z [ 2025-08-14T22:41:35.1650480Z scalar_t=float 2025-08-14T22:41:35.1650544Z ] 2025-08-14T22:41:35.1651150Z 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-14T22:41:35.1651216Z with 2025-08-14T22:41:35.1651285Z [ 2025-08-14T22:41:35.1651381Z scalar_t=float 2025-08-14T22:41:35.1651446Z ] 2025-08-14T22:41:35.1653016Z 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-14T22:41:35.1653099Z with 2025-08-14T22:41:35.1653168Z [ 2025-08-14T22:41:35.1653245Z scalar_t=float 2025-08-14T22:41:35.1653313Z ] 2025-08-14T22:41:35.1653869Z 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-14T22:41:35.1653943Z with 2025-08-14T22:41:35.1654008Z [ 2025-08-14T22:41:35.1654090Z scalar_t=float 2025-08-14T22:41:35.1654154Z ] 2025-08-14T22:41:35.1654694Z 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-14T22:41:35.1654831Z with 2025-08-14T22:41:35.1654902Z [ 2025-08-14T22:41:35.1654977Z scalar_t=float 2025-08-14T22:41:35.1655043Z ] 2025-08-14T22:41:35.1655601Z 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-14T22:41:35.1655667Z with 2025-08-14T22:41:35.1655735Z [ 2025-08-14T22:41:35.1655823Z scalar_t=float 2025-08-14T22:41:35.1655887Z ] 2025-08-14T22:41:35.1656476Z 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-14T22:41:35.1656581Z with 2025-08-14T22:41:35.1656657Z [ 2025-08-14T22:41:35.1656741Z scalar_t=float 2025-08-14T22:41:35.1656809Z ] 2025-08-14T22:41:35.1657359Z 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-14T22:41:35.1657428Z with 2025-08-14T22:41:35.1657496Z [ 2025-08-14T22:41:35.1657573Z scalar_t=float 2025-08-14T22:41:35.1658358Z ] 2025-08-14T22:41:35.1659316Z 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-14T22:41:35.1659393Z with 2025-08-14T22:41:35.1659472Z [ 2025-08-14T22:41:35.1659554Z scalar_t=float 2025-08-14T22:41:35.1659621Z ] 2025-08-14T22:41:35.1660176Z 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-14T22:41:35.1660250Z with 2025-08-14T22:41:35.1660323Z [ 2025-08-14T22:41:35.1660406Z scalar_t=float 2025-08-14T22:41:35.1660482Z ] 2025-08-14T22:41:35.1661028Z 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-14T22:41:35.1661096Z with 2025-08-14T22:41:35.1661174Z [ 2025-08-14T22:41:35.1661251Z scalar_t=float 2025-08-14T22:41:35.1661314Z ] 2025-08-14T22:41:35.1661859Z 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-14T22:41:35.1661941Z with 2025-08-14T22:41:35.1662006Z [ 2025-08-14T22:41:35.1662082Z scalar_t=float 2025-08-14T22:41:35.1662155Z ] 2025-08-14T22:41:35.1662697Z 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-14T22:41:35.1662766Z with 2025-08-14T22:41:35.1662840Z [ 2025-08-14T22:41:35.1662915Z scalar_t=float 2025-08-14T22:41:35.1662980Z ] 2025-08-14T22:41:35.1664145Z 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-14T22:41:35.1664625Z with 2025-08-14T22:41:35.1664693Z [ 2025-08-14T22:41:35.1664775Z scalar_t=float 2025-08-14T22:41:35.1664858Z ] 2025-08-14T22:41:35.1665409Z 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-14T22:41:35.1665480Z with 2025-08-14T22:41:35.1665559Z [ 2025-08-14T22:41:35.1665635Z scalar_t=float 2025-08-14T22:41:35.1665705Z ] 2025-08-14T22:41:35.1666252Z 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-14T22:41:35.1666402Z with 2025-08-14T22:41:35.1666474Z [ 2025-08-14T22:41:35.1666551Z scalar_t=float 2025-08-14T22:41:35.1666629Z ] 2025-08-14T22:41:35.1667175Z 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-14T22:41:35.1667244Z with 2025-08-14T22:41:35.1667352Z [ 2025-08-14T22:41:35.1667960Z scalar_t=float 2025-08-14T22:41:35.1668033Z ] 2025-08-14T22:41:35.1668583Z 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-14T22:41:35.1668665Z with 2025-08-14T22:41:35.1668733Z [ 2025-08-14T22:41:35.1668814Z scalar_t=float 2025-08-14T22:41:35.1668882Z ] 2025-08-14T22:41:35.1670529Z 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-14T22:41:35.1670666Z with 2025-08-14T22:41:35.1670737Z [ 2025-08-14T22:41:35.1670837Z scalar_t=float 2025-08-14T22:41:35.1670902Z ] 2025-08-14T22:41:35.1671452Z 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-14T22:41:35.1671535Z with 2025-08-14T22:41:35.1671601Z [ 2025-08-14T22:41:35.1671680Z scalar_t=float 2025-08-14T22:41:35.1671744Z ] 2025-08-14T22:41:35.1672323Z 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-14T22:41:35.1672395Z with 2025-08-14T22:41:35.1672459Z [ 2025-08-14T22:41:35.1672543Z scalar_t=float 2025-08-14T22:41:35.1672609Z ] 2025-08-14T22:41:35.1673152Z 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-14T22:41:35.1673227Z with 2025-08-14T22:41:35.1673290Z [ 2025-08-14T22:41:35.1673365Z scalar_t=float 2025-08-14T22:41:35.1673430Z ] 2025-08-14T22:41:35.1673988Z 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-14T22:41:35.1674060Z with 2025-08-14T22:41:35.1674124Z [ 2025-08-14T22:41:35.1674207Z scalar_t=float 2025-08-14T22:41:35.1674272Z ] 2025-08-14T22:41:35.1674813Z 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-14T22:41:35.1674882Z with 2025-08-14T22:41:35.1674954Z [ 2025-08-14T22:41:35.1675031Z scalar_t=float 2025-08-14T22:41:35.1675709Z ] 2025-08-14T22:41:35.1676675Z 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-14T22:41:35.1676745Z with 2025-08-14T22:41:35.1676812Z [ 2025-08-14T22:41:35.1676902Z scalar_t=float 2025-08-14T22:41:35.1676972Z ] 2025-08-14T22:41:35.1677516Z 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-14T22:41:35.1677584Z with 2025-08-14T22:41:35.1677658Z [ 2025-08-14T22:41:35.1677808Z scalar_t=float 2025-08-14T22:41:35.1677874Z ] 2025-08-14T22:41:35.1678424Z 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-14T22:41:35.1678493Z with 2025-08-14T22:41:35.1678561Z [ 2025-08-14T22:41:35.1678636Z scalar_t=float 2025-08-14T22:41:35.1678713Z ] 2025-08-14T22:41:35.1679307Z 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-14T22:41:35.1679412Z with 2025-08-14T22:41:35.1679492Z [ 2025-08-14T22:41:35.1679571Z scalar_t=float 2025-08-14T22:41:35.1679638Z ] 2025-08-14T22:41:35.1680196Z 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-14T22:41:35.1680264Z with 2025-08-14T22:41:35.1680331Z [ 2025-08-14T22:41:35.1680407Z scalar_t=float 2025-08-14T22:41:35.1680483Z ] 2025-08-14T22:41:35.1682436Z 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-14T22:41:35.1682521Z with 2025-08-14T22:41:35.1682600Z [ 2025-08-14T22:41:35.1682679Z scalar_t=float 2025-08-14T22:41:35.1682745Z ] 2025-08-14T22:41:35.1683312Z 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-14T22:41:35.1683389Z with 2025-08-14T22:41:35.1683453Z [ 2025-08-14T22:41:35.1683530Z scalar_t=float 2025-08-14T22:41:35.1683599Z ] 2025-08-14T22:41:35.1684145Z 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-14T22:41:35.1684209Z with 2025-08-14T22:41:35.1684280Z [ 2025-08-14T22:41:35.1684355Z scalar_t=float 2025-08-14T22:41:35.1684424Z ] 2025-08-14T22:41:35.1684968Z 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-14T22:41:35.1685047Z with 2025-08-14T22:41:35.1685116Z [ 2025-08-14T22:41:35.1685192Z scalar_t=float 2025-08-14T22:41:35.1685270Z ] 2025-08-14T22:41:35.1685812Z 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-14T22:41:35.1685879Z with 2025-08-14T22:41:35.1685944Z [ 2025-08-14T22:41:35.1686028Z scalar_t=float 2025-08-14T22:41:35.1686093Z ] 2025-08-14T22:41:35.1686640Z 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-14T22:41:35.1687810Z with 2025-08-14T22:41:35.1687880Z [ 2025-08-14T22:41:35.1687957Z scalar_t=float 2025-08-14T22:41:35.1688029Z ] 2025-08-14T22:41:35.1688579Z 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-14T22:41:35.1688652Z with 2025-08-14T22:41:35.1688725Z [ 2025-08-14T22:41:35.1688809Z scalar_t=float 2025-08-14T22:41:35.1688878Z ] 2025-08-14T22:41:35.1689421Z 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-14T22:41:35.1689577Z with 2025-08-14T22:41:35.1689650Z [ 2025-08-14T22:41:35.1689728Z scalar_t=float 2025-08-14T22:41:35.1689797Z ] 2025-08-14T22:41:35.1690357Z 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-14T22:41:35.1690433Z with 2025-08-14T22:41:35.1690498Z [ 2025-08-14T22:41:35.1690587Z scalar_t=float 2025-08-14T22:41:35.1690704Z ] 2025-08-14T22:41:35.1691405Z 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-14T22:41:35.1691489Z with 2025-08-14T22:41:35.1691553Z [ 2025-08-14T22:41:35.1691629Z scalar_t=float 2025-08-14T22:41:35.1691693Z ] 2025-08-14T22:41:35.1692247Z 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-14T22:41:35.1692320Z with 2025-08-14T22:41:35.1692385Z [ 2025-08-14T22:41:35.1693176Z scalar_t=float 2025-08-14T22:41:35.1693648Z ] 2025-08-14T22:41:35.1694203Z 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-14T22:41:35.1694280Z with 2025-08-14T22:41:35.1694351Z [ 2025-08-14T22:41:35.1694431Z scalar_t=float 2025-08-14T22:41:35.1694506Z ] 2025-08-14T22:41:35.1695058Z 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-14T22:41:35.1695124Z with 2025-08-14T22:41:35.1695194Z [ 2025-08-14T22:41:35.1695275Z scalar_t=float 2025-08-14T22:41:35.1695338Z ] 2025-08-14T22:41:35.1695877Z 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-14T22:41:35.1695944Z with 2025-08-14T22:41:35.1696018Z [ 2025-08-14T22:41:35.1696093Z scalar_t=float 2025-08-14T22:41:35.1696156Z ] 2025-08-14T22:41:35.1696708Z 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-14T22:41:35.1696775Z with 2025-08-14T22:41:35.1696840Z [ 2025-08-14T22:41:35.1696930Z scalar_t=float 2025-08-14T22:41:35.1696995Z ] 2025-08-14T22:41:35.1697538Z 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-14T22:41:35.1697607Z with 2025-08-14T22:41:35.1697681Z [ 2025-08-14T22:41:35.1697757Z scalar_t=float 2025-08-14T22:41:35.1697822Z ] 2025-08-14T22:41:35.1699411Z 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-14T22:41:35.1699492Z with 2025-08-14T22:41:35.1699559Z [ 2025-08-14T22:41:35.1699634Z scalar_t=float 2025-08-14T22:41:35.1699714Z ] 2025-08-14T22:41:35.1700262Z 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-14T22:41:35.1700329Z with 2025-08-14T22:41:35.1700402Z [ 2025-08-14T22:41:35.1700484Z scalar_t=float 2025-08-14T22:41:35.1700549Z ] 2025-08-14T22:41:35.1701187Z 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-14T22:41:35.1701261Z with 2025-08-14T22:41:35.1701336Z [ 2025-08-14T22:41:35.1701416Z scalar_t=float 2025-08-14T22:41:35.1701492Z ] 2025-08-14T22:41:35.1702039Z 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-14T22:41:35.1702152Z with 2025-08-14T22:41:35.1702263Z [ 2025-08-14T22:41:35.1702343Z scalar_t=float 2025-08-14T22:41:35.1702412Z ] 2025-08-14T22:41:35.1702957Z 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-14T22:41:35.1703039Z with 2025-08-14T22:41:35.1703110Z [ 2025-08-14T22:41:35.1703187Z scalar_t=float 2025-08-14T22:41:35.1703269Z ] 2025-08-14T22:41:35.1703851Z 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-14T22:41:35.1703920Z with 2025-08-14T22:41:35.1703996Z [ 2025-08-14T22:41:35.1704071Z scalar_t=float 2025-08-14T22:41:35.1704804Z ] 2025-08-14T22:41:35.1705757Z 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-14T22:41:35.1705843Z with 2025-08-14T22:41:35.1705910Z [ 2025-08-14T22:41:35.1705988Z scalar_t=float 2025-08-14T22:41:35.1706064Z ] 2025-08-14T22:41:35.1706610Z 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-14T22:41:35.1706681Z with 2025-08-14T22:41:35.1706756Z [ 2025-08-14T22:41:35.1706851Z scalar_t=float 2025-08-14T22:41:35.1706916Z ] 2025-08-14T22:41:35.1707461Z 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-14T22:41:35.1708002Z 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-14T22:41:35.1708637Z 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-14T22:41:35.1708712Z with 2025-08-14T22:41:35.1708786Z [ 2025-08-14T22:41:35.1708856Z T=float 2025-08-14T22:41:35.1708926Z ] 2025-08-14T22:41:35.1709781Z 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-14T22:41:35.1711374Z 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-14T22:41:35.1711930Z 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-14T22:41:35.1712493Z 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-14T22:41:35.1713033Z 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-14T22:41:35.1713638Z 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-14T22:41:35.1714193Z 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-14T22:41:35.1714773Z 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-14T22:41:35.1715352Z 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-14T22:41:35.1716941Z 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-14T22:41:35.1717496Z 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-14T22:41:35.1718085Z 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-14T22:41:35.1718637Z 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-14T22:41:35.1719174Z 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-14T22:41:35.1719717Z 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-14T22:41:35.1720255Z 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-14T22:41:35.1720790Z 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-14T22:41:35.1721337Z 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-14T22:41:35.1722905Z 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-14T22:41:35.1723452Z 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-14T22:41:35.1724004Z 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-14T22:41:35.1724546Z 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-14T22:41:35.1725090Z 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-14T22:41:35.1725639Z 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-14T22:41:35.1726180Z 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-14T22:41:35.1726775Z 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-14T22:41:35.1727963Z 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-14T22:41:35.1728963Z 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-14T22:41:35.1729552Z 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-14T22:41:35.1730092Z 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-14T22:41:35.1730631Z 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-14T22:41:35.1731261Z 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-14T22:41:35.1732092Z 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-14T22:41:35.1732635Z 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-14T22:41:35.1734213Z 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-14T22:41:35.1734765Z 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-14T22:41:35.1735308Z 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-14T22:41:35.1735860Z 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-14T22:41:35.1736398Z 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-14T22:41:35.1736933Z 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-14T22:41:35.1737480Z 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-14T22:41:35.1738019Z 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-14T22:41:35.1738565Z 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-14T22:41:35.1740106Z 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-14T22:41:35.1740650Z 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-14T22:41:35.1741264Z 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-14T22:41:35.1741801Z 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-14T22:41:35.1742384Z 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-14T22:41:35.1742959Z 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-14T22:41:35.1743503Z 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-14T22:41:35.1744040Z 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-14T22:41:35.1744623Z 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-14T22:41:35.1746184Z 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-14T22:41:35.1746727Z 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-14T22:41:35.1747279Z 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-14T22:41:35.1747814Z 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-14T22:41:35.1748365Z 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-14T22:41:35.1748888Z 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-14T22:41:35.1748963Z with 2025-08-14T22:41:35.1749027Z [ 2025-08-14T22:41:35.1749112Z scalar_t=float 2025-08-14T22:41:35.1749179Z ] 2025-08-14T22:41:35.1749693Z 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-14T22:41:35.1751061Z 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-14T22:41:35.1751534Z with 2025-08-14T22:41:35.1751600Z [ 2025-08-14T22:41:35.1751691Z scalar_t=float 2025-08-14T22:41:35.1751756Z ] 2025-08-14T22:41:35.1752493Z 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-14T22:41:35.1752578Z with 2025-08-14T22:41:35.1752650Z [ 2025-08-14T22:41:35.1752724Z scalar_t=float 2025-08-14T22:41:35.1752790Z ] 2025-08-14T22:41:35.1753325Z 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-14T22:41:35.1754055Z with 2025-08-14T22:41:35.1754118Z [ 2025-08-14T22:41:35.1754207Z scalar_t=float 2025-08-14T22:41:35.1754273Z ] 2025-08-14T22:41:35.1754800Z 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-14T22:41:35.1754870Z with 2025-08-14T22:41:35.1754946Z [ 2025-08-14T22:41:35.1755029Z scalar_t=float 2025-08-14T22:41:35.1755462Z ] 2025-08-14T22:41:35.1756067Z 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-14T22:41:35.1756137Z with 2025-08-14T22:41:35.1756925Z [ 2025-08-14T22:41:35.1757408Z scalar_t=float 2025-08-14T22:41:35.1757494Z ] 2025-08-14T22:41:35.1758020Z 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-14T22:41:35.1758809Z 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-14T22:41:35.1758887Z with 2025-08-14T22:41:35.1758952Z [ 2025-08-14T22:41:35.1759030Z scalar_t=float 2025-08-14T22:41:35.1759106Z ] 2025-08-14T22:41:35.1759838Z 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-14T22:41:35.1759907Z with 2025-08-14T22:41:35.1759987Z [ 2025-08-14T22:41:35.1760076Z scalar_t=float 2025-08-14T22:41:35.1760144Z ] 2025-08-14T22:41:35.1760700Z 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-14T22:41:35.1760777Z with 2025-08-14T22:41:35.1760846Z [ 2025-08-14T22:41:35.1760922Z scalar_t=float 2025-08-14T22:41:35.1760993Z ] 2025-08-14T22:41:35.1761542Z 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-14T22:41:35.1761612Z with 2025-08-14T22:41:35.1761684Z [ 2025-08-14T22:41:35.1761761Z scalar_t=float 2025-08-14T22:41:35.1761826Z ] 2025-08-14T22:41:35.1763394Z 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-14T22:41:35.1763484Z with 2025-08-14T22:41:35.1763550Z [ 2025-08-14T22:41:35.1763630Z scalar_t=float 2025-08-14T22:41:35.1763707Z ] 2025-08-14T22:41:35.1764256Z 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-14T22:41:35.1764326Z with 2025-08-14T22:41:35.1764399Z [ 2025-08-14T22:41:35.1764488Z scalar_t=float 2025-08-14T22:41:35.1764555Z ] 2025-08-14T22:41:35.1765103Z 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-14T22:41:35.1765192Z with 2025-08-14T22:41:35.1765260Z [ 2025-08-14T22:41:35.1765336Z scalar_t=float 2025-08-14T22:41:35.1765405Z ] 2025-08-14T22:41:35.1765956Z 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-14T22:41:35.1766090Z with 2025-08-14T22:41:35.1766157Z [ 2025-08-14T22:41:35.1766249Z scalar_t=float 2025-08-14T22:41:35.1766321Z ] 2025-08-14T22:41:35.1767006Z 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-14T22:41:35.1767092Z with 2025-08-14T22:41:35.1767158Z [ 2025-08-14T22:41:35.1767281Z scalar_t=float 2025-08-14T22:41:35.1767389Z ] 2025-08-14T22:41:35.1768922Z 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-14T22:41:35.1768996Z with 2025-08-14T22:41:35.1769062Z [ 2025-08-14T22:41:35.1769147Z scalar_t=float 2025-08-14T22:41:35.1769224Z ] 2025-08-14T22:41:35.1769767Z 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-14T22:41:35.1769850Z with 2025-08-14T22:41:35.1769971Z [ 2025-08-14T22:41:35.1770055Z scalar_t=float 2025-08-14T22:41:35.1770121Z ] 2025-08-14T22:41:35.1770684Z 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-14T22:41:35.1770811Z with 2025-08-14T22:41:35.1770877Z [ 2025-08-14T22:41:35.1770962Z scalar_t=float 2025-08-14T22:41:35.1771029Z ] 2025-08-14T22:41:35.1771580Z 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-14T22:41:35.1771651Z with 2025-08-14T22:41:35.1771727Z [ 2025-08-14T22:41:35.1771805Z scalar_t=float 2025-08-14T22:41:35.1771874Z ] 2025-08-14T22:41:35.1772427Z 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-14T22:41:35.1772493Z with 2025-08-14T22:41:35.1772571Z [ 2025-08-14T22:41:35.1772652Z scalar_t=float 2025-08-14T22:41:35.1772722Z ] 2025-08-14T22:41:35.1773264Z 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-14T22:41:35.1773333Z with 2025-08-14T22:41:35.1773410Z [ 2025-08-14T22:41:35.1773489Z scalar_t=float 2025-08-14T22:41:35.1774165Z ] 2025-08-14T22:41:35.1775135Z 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-14T22:41:35.1775209Z with 2025-08-14T22:41:35.1775277Z [ 2025-08-14T22:41:35.1775354Z scalar_t=float 2025-08-14T22:41:35.1775429Z ] 2025-08-14T22:41:35.1775978Z 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-14T22:41:35.1776048Z with 2025-08-14T22:41:35.1776131Z [ 2025-08-14T22:41:35.1776211Z scalar_t=float 2025-08-14T22:41:35.1776279Z ] 2025-08-14T22:41:35.1781012Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64\link.exe" /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:C:\actions-runner\_work\pytorch\pytorch\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.38.33130\lib\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64" 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-14T22:41:35.3485224Z 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-14T22:41:35.3636788Z Generating code 2025-08-14T22:41:37.3566816Z Finished generating code 2025-08-14T22:41:37.5072563Z running install_lib 2025-08-14T22:41:37.5211346Z 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-14T22:41:37.5222508Z 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-14T22:41:37.5232571Z 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-14T22:41:37.5251058Z running install_egg_info 2025-08-14T22:41:37.5523307Z running egg_info 2025-08-14T22:41:37.5629714Z writing torch_test_cpp_extension.egg-info\PKG-INFO 2025-08-14T22:41:37.5639710Z writing dependency_links to torch_test_cpp_extension.egg-info\dependency_links.txt 2025-08-14T22:41:37.5643832Z writing entry points to torch_test_cpp_extension.egg-info\entry_points.txt 2025-08-14T22:41:37.5648353Z writing top-level names to torch_test_cpp_extension.egg-info\top_level.txt 2025-08-14T22:41:37.5765968Z reading manifest file 'torch_test_cpp_extension.egg-info\SOURCES.txt' 2025-08-14T22:41:37.5788496Z writing manifest file 'torch_test_cpp_extension.egg-info\SOURCES.txt' 2025-08-14T22:41:37.5791963Z removing './install\Jenkins\Miniconda3\Lib\site-packages\torch_test_cpp_extension-0.0.0-py3.9.egg-info' (and everything under it) 2025-08-14T22:41:37.5803043Z 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-14T22:41:37.5843334Z running install_scripts 2025-08-14T22:41:38.4054480Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:41:38.4060939Z 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-14 22:41:38.405587] 2025-08-14T22:41:43.8023879Z 2025-08-14T22:41:43.8026365Z 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_161ea0f195637db4_.log 2025-08-14T22:41:43.8033490Z 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-14T22:41:43.8040171Z 2025-08-14T22:41:43.8040443Z Running inductor/test_aot_inductor 1/1 ... [2025-08-14 22:41:43.802562] 2025-08-14T22:41:43.8042366Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:41:43.8043379Z 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-14 22:41:43.802562] 2025-08-14T22:41:54.9112808Z 2025-08-14T22:41:54.9113780Z 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_7f00d34713ecf5ae_.log 2025-08-14T22:41:54.9114432Z 2025-08-14T22:41:54.9118571Z Running dynamo/test_logging 1/1 ... [2025-08-14 22:41:54.910022] 2025-08-14T22:41:54.9118959Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:41:54.9125198Z 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-14 22:41:54.910022] 2025-08-14T22:42:05.8392304Z 2025-08-14T22:42:05.8393241Z dynamo/test_logging 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_logging_1.1_be2441564a9a29b1_.log 2025-08-14T22:42:05.8393864Z 2025-08-14T22:42:05.8403736Z Running inductor/test_codecache 1/1 ... [2025-08-14 22:42:05.840073] 2025-08-14T22:42:05.8404197Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:42:05.8422951Z 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-14 22:42:05.841807] 2025-08-14T22:42:16.6749773Z 2025-08-14T22:42:16.6750811Z inductor/test_codecache 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_codecache_1.1_c9ebd198837c389f_.log 2025-08-14T22:42:16.6751462Z 2025-08-14T22:42:16.6756030Z Running inductor/test_torchinductor 1/1 ... [2025-08-14 22:42:16.674880] 2025-08-14T22:42:16.6756477Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:42:16.6762584Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_torchinductor.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-14 22:42:16.674880] 2025-08-14T22:42:27.7400485Z 2025-08-14T22:42:27.7401578Z inductor/test_torchinductor 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_torchinductor_1.1_e84e97df4ea1387c_.log 2025-08-14T22:42:27.7402439Z 2025-08-14T22:42:27.7407588Z Running inductor/test_torchinductor_opinfo 1/1 ... [2025-08-14 22:42:27.740449] 2025-08-14T22:42:27.7408041Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:42:27.7415486Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_torchinductor_opinfo.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-14 22:42:27.741034] 2025-08-14T22:42:39.9173345Z 2025-08-14T22:42:39.9174547Z inductor/test_torchinductor_opinfo 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_torchinductor_opinfo_1.1_d0a3d05fdea6caba_.log 2025-08-14T22:42:39.9175289Z 2025-08-14T22:42:39.9182482Z Running inductor/test_cudagraph_trees 1/1 ... [2025-08-14 22:42:39.917997] 2025-08-14T22:42:39.9182971Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:42:39.9190263Z 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-14 22:42:39.918587] 2025-08-14T22:42:50.7075664Z 2025-08-14T22:42:50.7076800Z 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_0407f0f9f0f9baab_.log 2025-08-14T22:42:50.7077503Z 2025-08-14T22:42:50.7083196Z Running dynamo/test_repros 1/1 ... [2025-08-14 22:42:50.707859] 2025-08-14T22:42:50.7083637Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:42:50.7093109Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_repros.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-14 22:42:50.709102] 2025-08-14T22:42:56.2609670Z 2025-08-14T22:42:56.2610646Z dynamo/test_repros 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_repros_1.1_c26582189253f92b_.log 2025-08-14T22:42:56.2611271Z 2025-08-14T22:42:56.2615199Z Running inductor/test_perf 1/1 ... [2025-08-14 22:42:56.257755] 2025-08-14T22:42:56.2615588Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:42:56.2623673Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_perf.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-14 22:42:56.261877] 2025-08-14T22:43:06.9781800Z 2025-08-14T22:43:06.9782715Z inductor/test_perf 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_perf_1.1_6fc9713a54fd03cd_.log 2025-08-14T22:43:06.9783353Z 2025-08-14T22:43:06.9787784Z Running dynamo/test_modules 1/1 ... [2025-08-14 22:43:06.974229] 2025-08-14T22:43:06.9788229Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:43:06.9794019Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_modules.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-14 22:43:06.974229] 2025-08-14T22:43:17.7919059Z 2025-08-14T22:43:17.7919968Z dynamo/test_modules 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_modules_1.1_808a5b139f1b61fb_.log 2025-08-14T22:43:17.7920668Z 2025-08-14T22:43:17.7924932Z Running inductor/test_smoke 1/1 ... [2025-08-14 22:43:17.792000] 2025-08-14T22:43:17.7925329Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:43:17.7931502Z 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-14 22:43:17.792000] 2025-08-14T22:43:28.4966379Z 2025-08-14T22:43:28.4967225Z inductor/test_smoke 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_smoke_1.1_180369ecf66a85d6_.log 2025-08-14T22:43:28.4967847Z 2025-08-14T22:43:28.4972726Z Running inductor/test_compiled_autograd 1/1 ... [2025-08-14 22:43:28.493461] 2025-08-14T22:43:28.4973273Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:43:28.4978907Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_compiled_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-14 22:43:28.493461] 2025-08-14T22:43:41.2629838Z 2025-08-14T22:43:41.2631027Z inductor/test_compiled_autograd 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_compiled_autograd_1.1_eaac437a5cddbbe8_.log 2025-08-14T22:43:41.2631755Z 2025-08-14T22:43:41.2635859Z Running inductor/test_inductor_freezing 1/1 ... [2025-08-14 22:43:41.263044] 2025-08-14T22:43:41.2636371Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:43:41.2643056Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_inductor_freezing.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-14 22:43:41.264148] 2025-08-14T22:43:52.0991594Z 2025-08-14T22:43:52.0992680Z inductor/test_inductor_freezing 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_inductor_freezing_1.1_fd72bc029c7183cc_.log 2025-08-14T22:43:52.0993422Z 2025-08-14T22:43:52.0998057Z Running inductor/test_snode_runtime 1/1 ... [2025-08-14 22:43:52.099526] 2025-08-14T22:43:52.0998497Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:43:52.1006052Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_snode_runtime.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-14 22:43:52.100141] 2025-08-14T22:44:02.6020420Z 2025-08-14T22:44:02.6021372Z inductor/test_snode_runtime 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_snode_runtime_1.1_493a81bc5f5e66a7_.log 2025-08-14T22:44:02.6022051Z 2025-08-14T22:44:02.6026176Z Running dynamo/test_backends 1/1 ... [2025-08-14 22:44:02.600723] 2025-08-14T22:44:02.6026590Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:44:02.6042495Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_backends.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-14 22:44:02.600723] 2025-08-14T22:44:12.9931851Z 2025-08-14T22:44:12.9932747Z dynamo/test_backends 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_backends_1.1_d56c68683d5a2020_.log 2025-08-14T22:44:12.9948202Z 2025-08-14T22:44:12.9948459Z Running inductor/test_layout_optim 1/1 ... [2025-08-14 22:44:12.994170] 2025-08-14T22:44:12.9948920Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:44:12.9956745Z 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-14 22:44:12.995342] 2025-08-14T22:44:23.3969780Z 2025-08-14T22:44:23.3970964Z 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_81f9433b4691d0fa_.log 2025-08-14T22:44:23.3971701Z 2025-08-14T22:44:23.3977216Z Running inductor/test_mmdecomp 1/1 ... [2025-08-14 22:44:23.397242] 2025-08-14T22:44:23.3977641Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:44:23.3987604Z 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-14 22:44:23.398493] 2025-08-14T22:44:33.8455517Z 2025-08-14T22:44:33.8456597Z inductor/test_mmdecomp 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_mmdecomp_1.1_62fc0a90086a7d2b_.log 2025-08-14T22:44:33.8457246Z 2025-08-14T22:44:33.8461073Z Running dynamo/test_aot_autograd 1/1 ... [2025-08-14 22:44:33.844090] 2025-08-14T22:44:33.8461519Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:44:33.8467734Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_aot_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-14 22:44:33.844090] 2025-08-14T22:44:38.6749404Z 2025-08-14T22:44:38.6750546Z dynamo/test_aot_autograd 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_aot_autograd_1.1_b1ebdec6381a0405_.log 2025-08-14T22:44:38.6751200Z 2025-08-14T22:44:38.6755006Z Running inductor/test_control_flow 1/1 ... [2025-08-14 22:44:38.673612] 2025-08-14T22:44:38.6755433Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:44:38.6761465Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_control_flow.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-14 22:44:38.673612] 2025-08-14T22:44:49.0261951Z 2025-08-14T22:44:49.0263115Z inductor/test_control_flow 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_control_flow_1.1_5d6690e27c7b0a86_.log 2025-08-14T22:44:49.0263807Z 2025-08-14T22:44:49.0267711Z Running inductor/test_torchinductor_strided_blocks 1/1 ... [2025-08-14 22:44:49.026676] 2025-08-14T22:44:49.0268199Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:44:49.0274369Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_torchinductor_strided_blocks.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-14 22:44:49.027251] 2025-08-14T22:44:59.7219787Z 2025-08-14T22:44:59.7221097Z inductor/test_torchinductor_strided_blocks 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_torchinductor_strided_blocks_1.1_5a4847881122a925_.log 2025-08-14T22:44:59.7221907Z 2025-08-14T22:44:59.7225491Z Running inductor/test_triton_cpu_backend 1/1 ... [2025-08-14 22:44:59.716764] 2025-08-14T22:44:59.7225943Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:44:59.7232051Z 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-14 22:44:59.716764] 2025-08-14T22:45:10.4198116Z 2025-08-14T22:45:10.4199318Z 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_043eeb4541f05f64_.log 2025-08-14T22:45:10.4200039Z 2025-08-14T22:45:10.4203769Z Running inductor/test_flex_decoding 1/1 ... [2025-08-14 22:45:10.418940] 2025-08-14T22:45:10.4204207Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:45:10.4221147Z 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-14 22:45:10.418940] 2025-08-14T22:45:15.3480612Z 2025-08-14T22:45:15.3483359Z 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_07dcc92b8116980a_.log 2025-08-14T22:45:15.3484287Z 2025-08-14T22:45:15.3488870Z Running inductor/test_provenance_tracing 1/1 ... [2025-08-14 22:45:15.348119] 2025-08-14T22:45:15.3489314Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:45:15.3497320Z 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-14 22:45:15.349248] 2025-08-14T22:45:25.8269859Z 2025-08-14T22:45:25.8271031Z 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_f2bde0bc3267af75_.log 2025-08-14T22:45:25.8271755Z 2025-08-14T22:45:25.8275820Z Running inductor/test_subgraph_choice 1/1 ... [2025-08-14 22:45:25.827266] 2025-08-14T22:45:25.8276290Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:45:25.8282344Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_subgraph_choice.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-14 22:45:25.827266] 2025-08-14T22:45:36.3944781Z 2025-08-14T22:45:36.3945768Z inductor/test_subgraph_choice 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_subgraph_choice_1.1_e7b6fc4aca6c84a4_.log 2025-08-14T22:45:36.3946551Z 2025-08-14T22:45:36.3951201Z Running inductor/test_multi_kernel 1/1 ... [2025-08-14 22:45:36.395033] 2025-08-14T22:45:36.3951659Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:45:36.3959130Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_multi_kernel.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-14 22:45:36.395731] 2025-08-14T22:45:47.1383358Z 2025-08-14T22:45:47.1384297Z inductor/test_multi_kernel 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_multi_kernel_1.1_f947c6de4a707477_.log 2025-08-14T22:45:47.1384962Z 2025-08-14T22:45:47.1388995Z Running export/test_retraceability 1/1 ... [2025-08-14 22:45:47.133475] 2025-08-14T22:45:47.1389408Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:45:47.1396996Z 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-14 22:45:47.139092] 2025-08-14T22:45:57.8952641Z 2025-08-14T22:45:57.8953833Z export/test_retraceability 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_retraceability_1.1_a7e98b416a49d806_.log 2025-08-14T22:45:57.8954543Z 2025-08-14T22:45:57.8959725Z Running inductor/test_inductor_annotations 1/1 ... [2025-08-14 22:45:57.895515] 2025-08-14T22:45:57.8960184Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:45:57.8970381Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_inductor_annotations.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-14 22:45:57.896848] 2025-08-14T22:46:08.4165947Z 2025-08-14T22:46:08.4166944Z inductor/test_inductor_annotations 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_inductor_annotations_1.1_196e934c07d95334_.log 2025-08-14T22:46:08.4167671Z 2025-08-14T22:46:08.4171748Z Running inductor/test_remote_cache 1/1 ... [2025-08-14 22:46:08.412708] 2025-08-14T22:46:08.4172432Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:46:08.4178261Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_remote_cache.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-14 22:46:08.412708] 2025-08-14T22:46:12.9938212Z 2025-08-14T22:46:12.9939120Z inductor/test_remote_cache 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_remote_cache_1.1_7c59fe1132b31cd2_.log 2025-08-14T22:46:12.9939792Z 2025-08-14T22:46:12.9945762Z Running inductor/test_fp8 1/1 ... [2025-08-14 22:46:12.994103] 2025-08-14T22:46:12.9946158Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:46:12.9955609Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_fp8.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-14 22:46:12.995346] 2025-08-14T22:46:23.4980667Z 2025-08-14T22:46:23.4981645Z inductor/test_fp8 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_fp8_1.1_639803956658ec7e_.log 2025-08-14T22:46:23.4982304Z 2025-08-14T22:46:23.4988071Z Running inductor/test_online_softmax 1/1 ... [2025-08-14 22:46:23.498167] 2025-08-14T22:46:23.4988569Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:46:23.4994269Z 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-14 22:46:23.498743] 2025-08-14T22:46:33.9204645Z 2025-08-14T22:46:33.9205607Z 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_6a9853611e0851c0_.log 2025-08-14T22:46:33.9206290Z 2025-08-14T22:46:33.9211797Z Running export/test_export_training_ir_to_run_decomp 1/1 ... [2025-08-14 22:46:33.920762] 2025-08-14T22:46:33.9212291Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:46:33.9219490Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_export_training_ir_to_run_decomp.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-14 22:46:33.921344] 2025-08-14T22:46:44.3819391Z 2025-08-14T22:46:44.3820533Z export/test_export_training_ir_to_run_decomp 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_export_training_ir_to_run_decomp_1.1_4f30e33b035081ce_.log 2025-08-14T22:46:44.3821337Z 2025-08-14T22:46:44.3825242Z Running inductor/test_b2b_gemm 1/1 ... [2025-08-14 22:46:44.382020] 2025-08-14T22:46:44.3825707Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:46:44.3831998Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_b2b_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-14 22:46:44.382593] 2025-08-14T22:46:55.1853172Z 2025-08-14T22:46:55.1854276Z inductor/test_b2b_gemm 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_b2b_gemm_1.1_b4d0a419e2070f46_.log 2025-08-14T22:46:55.1854911Z 2025-08-14T22:46:55.1859122Z Running inductor/test_memory_planning 1/1 ... [2025-08-14 22:46:55.179287] 2025-08-14T22:46:55.1859585Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:46:55.1865771Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_memory_planning.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-14 22:46:55.179287] 2025-08-14T22:47:05.8397870Z 2025-08-14T22:47:05.8399006Z inductor/test_memory_planning 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_memory_planning_1.1_65e912a0c4e31f65_.log 2025-08-14T22:47:05.8399718Z 2025-08-14T22:47:05.8403678Z Running dynamo/test_buffers_override 1/1 ... [2025-08-14 22:47:05.839771] 2025-08-14T22:47:05.8404230Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:47:05.8410713Z 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-14 22:47:05.840415] 2025-08-14T22:47:10.6795416Z 2025-08-14T22:47:10.6796396Z 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_25194b8733060acb_.log 2025-08-14T22:47:10.6797080Z 2025-08-14T22:47:10.6797306Z Running dynamo/test_fx_passes_pre_grad 1/1 ... [2025-08-14 22:47:10.675406] 2025-08-14T22:47:10.6797722Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:47:10.6802752Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_fx_passes_pre_grad.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-14 22:47:10.679477] 2025-08-14T22:47:15.3468532Z 2025-08-14T22:47:15.3469505Z dynamo/test_fx_passes_pre_grad 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_fx_passes_pre_grad_1.1_549650a97578666e_.log 2025-08-14T22:47:15.3470254Z 2025-08-14T22:47:15.3474961Z Running inductor/test_cpu_cpp_wrapper 1/1 ... [2025-08-14 22:47:15.347398] 2025-08-14T22:47:15.3475427Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:47:15.3482568Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cpu_cpp_wrapper.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-14 22:47:15.347860] 2025-08-14T22:47:26.9395511Z 2025-08-14T22:47:26.9396710Z inductor/test_cpu_cpp_wrapper 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cpu_cpp_wrapper_1.1_5b615ebce5877e9f_.log 2025-08-14T22:47:26.9397407Z 2025-08-14T22:47:26.9401291Z Running dynamo/test_inline_and_install 1/1 ... [2025-08-14 22:47:26.936418] 2025-08-14T22:47:26.9401723Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:47:26.9408215Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_inline_and_install.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-14 22:47:26.936418] 2025-08-14T22:47:32.4246507Z 2025-08-14T22:47:32.4247468Z dynamo/test_inline_and_install 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_inline_and_install_1.1_d8940c88966ca583_.log 2025-08-14T22:47:32.4248166Z 2025-08-14T22:47:32.4252246Z Running dynamo/test_skip_non_tensor 1/1 ... [2025-08-14 22:47:32.424115] 2025-08-14T22:47:32.4252856Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:47:32.4258763Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_skip_non_tensor.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-14 22:47:32.424115] 2025-08-14T22:47:37.4036970Z 2025-08-14T22:47:37.4038319Z dynamo/test_skip_non_tensor 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_skip_non_tensor_1.1_0e6cf9729b9507cd_.log 2025-08-14T22:47:37.4039072Z 2025-08-14T22:47:37.4042873Z Running dynamo/test_recompiles 1/1 ... [2025-08-14 22:47:37.404146] 2025-08-14T22:47:37.4043283Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:47:37.4049708Z 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-14 22:47:37.404809] 2025-08-14T22:47:42.3361884Z 2025-08-14T22:47:42.3363394Z dynamo/test_recompiles 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_recompiles_1.1_51d3f957626ec9be_.log 2025-08-14T22:47:42.3364099Z 2025-08-14T22:47:42.3367872Z Running export/test_export_with_inline_and_install 1/1 ... [2025-08-14 22:47:42.336503] 2025-08-14T22:47:42.3368363Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:47:42.3374400Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_export_with_inline_and_install.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-14 22:47:42.336503] 2025-08-14T22:47:53.1271084Z 2025-08-14T22:47:53.1272216Z export/test_export_with_inline_and_install 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_export_with_inline_and_install_1.1_77d2d43072fecd5c_.log 2025-08-14T22:47:53.1273007Z 2025-08-14T22:47:53.1276989Z Running inductor/test_op_dtype_prop 1/1 ... [2025-08-14 22:47:53.127527] 2025-08-14T22:47:53.1277415Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:47:53.1293922Z 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-14 22:47:53.129250] 2025-08-14T22:48:04.9134718Z 2025-08-14T22:48:04.9135670Z 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_bef7f20f836e24a9_.log 2025-08-14T22:48:04.9136335Z 2025-08-14T22:48:04.9141845Z Running dynamo/test_sdpa 1/1 ... [2025-08-14 22:48:04.913710] 2025-08-14T22:48:04.9142210Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:48:04.9151620Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_sdpa.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-14 22:48:04.914910] 2025-08-14T22:48:09.7931362Z 2025-08-14T22:48:09.7932439Z dynamo/test_sdpa 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_sdpa_1.1_1facec5ecb35f62f_.log 2025-08-14T22:48:09.7933045Z 2025-08-14T22:48:09.7938480Z Running dynamo/test_global 1/1 ... [2025-08-14 22:48:09.793705] 2025-08-14T22:48:09.7938864Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:48:09.7946380Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_global.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-14 22:48:09.794302] 2025-08-14T22:48:14.6385798Z 2025-08-14T22:48:14.6386913Z dynamo/test_global 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_global_1.1_8bc83da19f4e6f41_.log 2025-08-14T22:48:14.6387538Z 2025-08-14T22:48:14.6391360Z Running inductor/test_fuzzer 1/1 ... [2025-08-14 22:48:14.638461] 2025-08-14T22:48:14.6391765Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:48:14.6398020Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_fuzzer.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-14 22:48:14.638461] 2025-08-14T22:48:25.2142227Z 2025-08-14T22:48:25.2148659Z inductor/test_fuzzer 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_fuzzer_1.1_11018f3c1b96b12e_.log 2025-08-14T22:48:25.2149313Z 2025-08-14T22:48:25.2149535Z Running inductor/test_triton_heuristics 1/1 ... [2025-08-14 22:48:25.213844] 2025-08-14T22:48:25.2149956Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:48:25.2154585Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_triton_heuristics.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-14 22:48:25.213844] 2025-08-14T22:48:35.6974447Z 2025-08-14T22:48:35.6975384Z inductor/test_triton_heuristics 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_triton_heuristics_1.1_eedd81a1d2d5b584_.log 2025-08-14T22:48:35.6976093Z 2025-08-14T22:48:35.6980140Z Running inductor/test_compile_subprocess 1/1 ... [2025-08-14 22:48:35.691346] 2025-08-14T22:48:35.6980578Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:48:35.6986718Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_compile_subprocess.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-14 22:48:35.691346] 2025-08-14T22:48:46.2264487Z 2025-08-14T22:48:46.2265496Z inductor/test_compile_subprocess 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_compile_subprocess_1.1_104d6fc28ac818b2_.log 2025-08-14T22:48:46.2266754Z 2025-08-14T22:48:46.2270320Z Running inductor/test_helion_kernels 1/1 ... [2025-08-14 22:48:46.219966] 2025-08-14T22:48:46.2270766Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:48:46.2276748Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_helion_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-14 22:48:46.219966] 2025-08-14T22:48:56.5807604Z 2025-08-14T22:48:56.5808676Z inductor/test_helion_kernels 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_helion_kernels_1.1_8f87751f4a663b9e_.log 2025-08-14T22:48:56.5809388Z 2025-08-14T22:48:56.5813451Z Running inductor/test_loop_ordering 1/1 ... [2025-08-14 22:48:56.580571] 2025-08-14T22:48:56.5813878Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:48:56.5819807Z 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-14 22:48:56.580571] 2025-08-14T22:49:07.1488958Z 2025-08-14T22:49:07.1489939Z 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_0c0a8ba7a62dc98a_.log 2025-08-14T22:49:07.1495550Z 2025-08-14T22:49:07.1495788Z Running inductor/test_fxir_backend 1/1 ... [2025-08-14 22:49:07.149281] 2025-08-14T22:49:07.1496202Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:49:07.1502306Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_fxir_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-14 22:49:07.149281] 2025-08-14T22:49:17.5100246Z 2025-08-14T22:49:17.5101183Z inductor/test_fxir_backend 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_fxir_backend_1.1_65a597870d821067_.log 2025-08-14T22:49:17.5101858Z 2025-08-14T22:49:17.5105875Z Running dynamo/test_install_free_tensors 1/1 ... [2025-08-14 22:49:17.509335] 2025-08-14T22:49:17.5106324Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:49:17.5112488Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_install_free_tensors.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-14 22:49:17.509335] 2025-08-14T22:49:22.5047372Z 2025-08-14T22:49:22.5048347Z dynamo/test_install_free_tensors 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_install_free_tensors_1.1_f8530b197419283e_.log 2025-08-14T22:49:22.5049048Z 2025-08-14T22:49:22.5054902Z Running export/test_cpp_serdes 1/1 ... [2025-08-14 22:49:22.505262] 2025-08-14T22:49:22.5055316Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:49:22.5062968Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_cpp_serdes.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-14 22:49:22.505855] 2025-08-14T22:49:33.1461249Z 2025-08-14T22:49:33.1462110Z export/test_cpp_serdes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_cpp_serdes_1.1_065595c404fafe6f_.log 2025-08-14T22:49:33.1462783Z 2025-08-14T22:49:33.1466992Z Running inductor/test_needs_exact_strides 1/1 ... [2025-08-14 22:49:33.137648] 2025-08-14T22:49:33.1467429Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:49:33.1473478Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_needs_exact_strides.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-14 22:49:33.137648] 2025-08-14T22:49:43.7183144Z 2025-08-14T22:49:43.7184226Z inductor/test_needs_exact_strides 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_needs_exact_strides_1.1_dce47ee73aee4380_.log 2025-08-14T22:49:43.7184993Z 2025-08-14T22:49:43.7195451Z Running inductor/test_compile 1/1 ... [2025-08-14 22:49:43.719414] 2025-08-14T22:49:43.7195890Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:49:43.7201779Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/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-14 22:49:43.720043] 2025-08-14T22:49:54.1378922Z 2025-08-14T22:49:54.1379809Z inductor/test_compile 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_compile_1.1_19419ce950bde6fa_.log 2025-08-14T22:49:54.1380452Z 2025-08-14T22:49:54.1384752Z Running dynamo/test_unittest 1/1 ... [2025-08-14 22:49:54.138313] 2025-08-14T22:49:54.1385150Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:49:54.1391805Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_unittest.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-14 22:49:54.138887] 2025-08-14T22:49:59.0340154Z 2025-08-14T22:49:59.0340950Z dynamo/test_unittest 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_unittest_1.1_077d936ccb61c9b7_.log 2025-08-14T22:49:59.0341566Z 2025-08-14T22:49:59.0352448Z Running inductor/test_torchinductor_codegen_config_overrides 1/1 ... [2025-08-14 22:49:59.032732] 2025-08-14T22:49:59.0353050Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:49:59.0359030Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_torchinductor_codegen_config_overrides.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-14 22:49:59.032732] 2025-08-14T22:50:09.5029413Z 2025-08-14T22:50:09.5030682Z inductor/test_torchinductor_codegen_config_overrides 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_torchinductor_codegen_config_overrides_1.1_4f17166651763dd0_.log 2025-08-14T22:50:09.5031552Z 2025-08-14T22:50:09.5035939Z Running dynamo/test_modes 1/1 ... [2025-08-14 22:50:09.503472] 2025-08-14T22:50:09.5036314Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:50:09.5042567Z 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-14 22:50:09.503472] 2025-08-14T22:50:19.9436385Z 2025-08-14T22:50:19.9437473Z dynamo/test_modes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_modes_1.1_039e107b20595dcb_.log 2025-08-14T22:50:19.9438142Z 2025-08-14T22:50:19.9453366Z Running export/test_upgrader 1/1 ... [2025-08-14 22:50:19.944957] 2025-08-14T22:50:19.9453794Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:50:19.9460096Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_upgrader.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-14 22:50:19.945550] 2025-08-14T22:50:24.4895252Z 2025-08-14T22:50:24.4896136Z export/test_upgrader 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_upgrader_1.1_258669fcd2b4f1ba_.log 2025-08-14T22:50:24.4896762Z 2025-08-14T22:50:24.4901262Z Running dynamo/test_backward_higher_order_ops 1/1 ... [2025-08-14 22:50:24.489763] 2025-08-14T22:50:24.4901721Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:50:24.4908564Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_backward_higher_order_ops.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-14 22:50:24.490679] 2025-08-14T22:50:29.3618737Z 2025-08-14T22:50:29.3619723Z dynamo/test_backward_higher_order_ops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_backward_higher_order_ops_1.1_bca9e13d351a9921_.log 2025-08-14T22:50:29.3620484Z 2025-08-14T22:50:29.3632455Z Running inductor/test_auto_functionalize 1/1 ... [2025-08-14 22:50:29.353805] 2025-08-14T22:50:29.3632925Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:50:29.3639063Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_auto_functionalize.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-14 22:50:29.353805] 2025-08-14T22:50:34.2994950Z 2025-08-14T22:50:34.2995839Z inductor/test_auto_functionalize 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_auto_functionalize_1.1_7287ed18204af5fa_.log 2025-08-14T22:50:34.2996580Z 2025-08-14T22:50:34.3000633Z Running dynamo/test_model_output 1/1 ... [2025-08-14 22:50:34.295669] 2025-08-14T22:50:34.3001037Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:50:34.3007354Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_model_output.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-14 22:50:34.295669] 2025-08-14T22:50:39.6638156Z 2025-08-14T22:50:39.6639052Z dynamo/test_model_output 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_model_output_1.1_65f029dd050c89b6_.log 2025-08-14T22:50:39.6639737Z 2025-08-14T22:50:39.6644242Z Running dynamo/test_profiler 1/1 ... [2025-08-14 22:50:39.653206] 2025-08-14T22:50:39.6644770Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:50:39.6662000Z 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-14 22:50:39.653206] 2025-08-14T22:50:44.5748781Z 2025-08-14T22:50:44.5749994Z dynamo/test_profiler 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_profiler_1.1_354ed56d26b8639d_.log 2025-08-14T22:50:44.5754299Z 2025-08-14T22:50:44.5754525Z Running dynamo/test_debug_utils 1/1 ... [2025-08-14 22:50:44.574940] 2025-08-14T22:50:44.5754970Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:50:44.5761048Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_debug_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-14 22:50:44.574940] 2025-08-14T22:50:49.8622949Z 2025-08-14T22:50:49.8624100Z dynamo/test_debug_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_debug_utils_1.1_ce719a1f6e9bb76f_.log 2025-08-14T22:50:49.8624914Z 2025-08-14T22:50:49.8657705Z Running dynamo/test_package 1/1 ... [2025-08-14 22:50:49.862851] 2025-08-14T22:50:49.8658203Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:50:49.8659244Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_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-14 22:50:49.863516] 2025-08-14T22:51:00.3771945Z 2025-08-14T22:51:00.3772990Z dynamo/test_package 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_package_1.1_e707668c316291b3_.log 2025-08-14T22:51:00.3773616Z 2025-08-14T22:51:00.3777691Z Running dynamo/test_bytecode_utils 1/1 ... [2025-08-14 22:51:00.375185] 2025-08-14T22:51:00.3778174Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:51:00.3784396Z 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-14 22:51:00.378255] 2025-08-14T22:51:05.2833028Z 2025-08-14T22:51:05.2834226Z 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_e035af14835a9782_.log 2025-08-14T22:51:05.2834993Z 2025-08-14T22:51:05.2839446Z Running inductor/test_mps_basic 1/1 ... [2025-08-14 22:51:05.283829] 2025-08-14T22:51:05.2840060Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:51:05.2846453Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_mps_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-14 22:51:05.284487] 2025-08-14T22:51:15.9765563Z 2025-08-14T22:51:15.9766942Z inductor/test_mps_basic 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_mps_basic_1.1_61f6fdb61b9c3e2c_.log 2025-08-14T22:51:15.9767721Z 2025-08-14T22:51:15.9771672Z Running inductor/test_efficient_conv_bn_eval 1/1 ... [2025-08-14 22:51:15.971643] 2025-08-14T22:51:15.9772258Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:51:15.9778302Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_efficient_conv_bn_eval.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-14 22:51:15.977228] 2025-08-14T22:51:26.5608959Z 2025-08-14T22:51:26.5610260Z inductor/test_efficient_conv_bn_eval 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_efficient_conv_bn_eval_1.1_0f5058e98f28bc7a_.log 2025-08-14T22:51:26.5611075Z 2025-08-14T22:51:26.5615094Z Running dynamo/test_guard_manager 1/1 ... [2025-08-14 22:51:26.551855] 2025-08-14T22:51:26.5615592Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:51:26.5622779Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_guard_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-14 22:51:26.561975] 2025-08-14T22:51:31.2125739Z 2025-08-14T22:51:31.2126728Z dynamo/test_guard_manager 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_guard_manager_1.1_68d5d8738c4764e8_.log 2025-08-14T22:51:31.2127527Z 2025-08-14T22:51:31.2131600Z Running dynamo/test_recompile_ux 1/1 ... [2025-08-14 22:51:31.212697] 2025-08-14T22:51:31.2132049Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:51:31.2138292Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_recompile_ux.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-14 22:51:31.213282] 2025-08-14T22:51:36.1233723Z 2025-08-14T22:51:36.1234768Z dynamo/test_recompile_ux 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_recompile_ux_1.1_82e57078ab3799f5_.log 2025-08-14T22:51:36.1235470Z 2025-08-14T22:51:36.1240089Z Running test_functionalization_of_rng_ops 1/1 ... [2025-08-14 22:51:36.123598] 2025-08-14T22:51:36.1240623Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:51:36.1246335Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_functionalization_of_rng_ops.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-14 22:51:36.124173] 2025-08-14T22:51:41.4045591Z 2025-08-14T22:51:41.4046709Z test_functionalization_of_rng_ops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_functionalization_of_rng_ops_1.1_d4c3aaea11632275_.log 2025-08-14T22:51:41.4047448Z 2025-08-14T22:51:41.4051501Z Running dynamo/test_reorder_logs 1/1 ... [2025-08-14 22:51:41.391854] 2025-08-14T22:51:41.4051953Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:51:41.4058170Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_reorder_logs.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-14 22:51:41.391854] 2025-08-14T22:51:46.2142467Z 2025-08-14T22:51:46.2143440Z dynamo/test_reorder_logs 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_reorder_logs_1.1_d77851559da9feb7_.log 2025-08-14T22:51:46.2144126Z 2025-08-14T22:51:46.2148189Z Running dynamo/test_python_autograd 1/1 ... [2025-08-14 22:51:46.208917] 2025-08-14T22:51:46.2148659Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:51:46.2155640Z 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-14 22:51:46.208917] 2025-08-14T22:51:51.0210984Z 2025-08-14T22:51:51.0211944Z 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_089e992891dd01d5_.log 2025-08-14T22:51:51.0212672Z 2025-08-14T22:51:51.0216601Z Running xpu/test_gemm 1/1 ... [2025-08-14 22:51:51.014661] 2025-08-14T22:51:51.0217009Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:51:51.0223029Z 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-14 22:51:51.014661] 2025-08-14T22:51:56.5028897Z 2025-08-14T22:51:56.5030033Z xpu/test_gemm 1/1 was successful, full logs can be found in artifacts with path test/test-reports/xpu.test_gemm_1.1_ac6af743dd201dd2_.log 2025-08-14T22:51:56.5030716Z Running 0 items in this shard: 2025-08-14T22:51:56.5030930Z 2025-08-14T22:51:56.5034872Z Running test_decomp 9/17 ... [2025-08-14 22:51:56.502918] 2025-08-14T22:51:56.5035334Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:51:56.5041531Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'serial', '--shard-id=9', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:51:56.503507] 2025-08-14T22:52:05.4780265Z 2025-08-14T22:52:05.4781071Z test_decomp 9/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_9.17_a7c76ec331a37136_.log 2025-08-14T22:52:05.4781785Z Running 0 items in this shard: 2025-08-14T22:52:05.4781985Z 2025-08-14T22:52:05.4786428Z Running test_decomp 16/17 ... [2025-08-14 22:52:05.478286] 2025-08-14T22:52:05.4786811Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:52:05.4793024Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'serial', '--shard-id=16', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:52:05.478862] 2025-08-14T22:52:14.3497744Z 2025-08-14T22:52:14.3498647Z test_decomp 16/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_16.17_0655d86dd12cedca_.log 2025-08-14T22:52:14.3499347Z Running 0 items in this shard: 2025-08-14T22:52:14.3499534Z 2025-08-14T22:52:14.3503849Z Running test_decomp 17/17 ... [2025-08-14 22:52:14.350312] 2025-08-14T22:52:14.3518190Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:52:14.3519245Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'serial', '--shard-id=17', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:52:14.351660] 2025-08-14T22:52:23.3894084Z 2025-08-14T22:52:23.3895172Z test_decomp 17/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_17.17_69173494fcc37950_.log 2025-08-14T22:52:23.3896047Z Running 0 items in this shard: 2025-08-14T22:52:23.3896286Z 2025-08-14T22:52:23.3901401Z Running torch_np/test_basic 1/1 ... [2025-08-14 22:52:23.389652] 2025-08-14T22:52:23.3901844Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:52:23.3910340Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_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-14 22:52:23.390830] 2025-08-14T22:52:28.8019197Z 2025-08-14T22:52:28.8020138Z torch_np/test_basic 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_basic_1.1_1384878312daf4be_.log 2025-08-14T22:52:28.8020885Z Running 0 items in this shard: 2025-08-14T22:52:28.8021077Z 2025-08-14T22:52:28.8024905Z Running lazy/test_bindings 1/1 ... [2025-08-14 22:52:28.792175] 2025-08-14T22:52:28.8025354Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:52:28.8031556Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'lazy/test_bindings.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-14 22:52:28.792175] 2025-08-14T22:52:33.7296000Z 2025-08-14T22:52:33.7297075Z lazy/test_bindings 1/1 was successful, full logs can be found in artifacts with path test/test-reports/lazy.test_bindings_1.1_b1cce032da6418d9_.log 2025-08-14T22:52:33.7297825Z Running 0 items in this shard: 2025-08-14T22:52:33.7298045Z 2025-08-14T22:52:33.7302128Z Running test_legacy_vmap 1/1 ... [2025-08-14 22:52:33.729630] 2025-08-14T22:52:33.7302551Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:52:33.7309118Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_legacy_vmap.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-14 22:52:33.730729] 2025-08-14T22:52:39.1179375Z 2025-08-14T22:52:39.1180417Z test_legacy_vmap 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_legacy_vmap_1.1_880b3c2efb193231_.log 2025-08-14T22:52:39.1181139Z Running 0 items in this shard: 2025-08-14T22:52:39.1181330Z 2025-08-14T22:52:39.1185316Z Running test_modules 1/1 ... [2025-08-14 22:52:39.111043] 2025-08-14T22:52:39.1185724Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:52:39.1192068Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_modules.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-14 22:52:39.111043] 2025-08-14T22:52:46.4285533Z 2025-08-14T22:52:46.4286424Z test_modules 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_modules_1.1_b0554ac8bea654a1_.log 2025-08-14T22:52:46.4287196Z Running 0 items in this shard: 2025-08-14T22:52:46.4287387Z 2025-08-14T22:52:46.4294018Z Running cpp_extensions/python_agnostic_extension/test/test_python_agnostic 1/1 ... [2025-08-14 22:52:46.429225] 2025-08-14T22:52:46.4294633Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:52:46.4302388Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'cpp_extensions/python_agnostic_extension/test/test_python_agnostic.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-14 22:52:46.429821] 2025-08-14T22:52:51.6411789Z 2025-08-14T22:52:51.6413325Z cpp_extensions/python_agnostic_extension/test/test_python_agnostic 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp_extensions.python_agnostic_extension.test.test_python_agnostic_1.1_e0ae783fbe3a49ba_.log 2025-08-14T22:52:51.6414678Z Running 0 items in this shard: 2025-08-14T22:52:51.6414867Z 2025-08-14T22:52:51.6417876Z Running test_hub 1/1 ... [2025-08-14 22:52:51.641573] 2025-08-14T22:52:51.6418278Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:52:51.6424704Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_hub.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-14 22:52:51.642153] 2025-08-14T22:52:56.4622016Z 2025-08-14T22:52:56.4622871Z test_hub 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_hub_1.1_d625371d599fe4c5_.log 2025-08-14T22:52:56.4623531Z Running 0 items in this shard: 2025-08-14T22:52:56.4623716Z 2025-08-14T22:52:56.4627821Z Running test_set_default_mobile_cpu_allocator 1/1 ... [2025-08-14 22:52:56.461348] 2025-08-14T22:52:56.4628325Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:52:56.4634388Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_set_default_mobile_cpu_allocator.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-14 22:52:56.461348] 2025-08-14T22:53:01.3517217Z 2025-08-14T22:53:01.3518635Z test_set_default_mobile_cpu_allocator 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_set_default_mobile_cpu_allocator_1.1_e6d35e245b7d6aae_.log 2025-08-14T22:53:01.3519530Z Running 0 items in this shard: 2025-08-14T22:53:01.3519718Z 2025-08-14T22:53:01.3524852Z Running test_stateless 1/1 ... [2025-08-14 22:53:01.351835] 2025-08-14T22:53:01.3525270Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:53:01.3531530Z 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-14 22:53:01.351835] 2025-08-14T22:53:06.4355129Z 2025-08-14T22:53:06.4356330Z test_stateless 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_stateless_1.1_6c7c2c0f3e6e4e9a_.log 2025-08-14T22:53:06.4357056Z Running 0 items in this shard: 2025-08-14T22:53:06.4357249Z 2025-08-14T22:53:06.4361186Z Running test_numpy_interop 1/1 ... [2025-08-14 22:53:06.435823] 2025-08-14T22:53:06.4361598Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:53:06.4367754Z 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-14 22:53:06.435823] 2025-08-14T22:53:11.8283288Z 2025-08-14T22:53:11.8284140Z test_numpy_interop 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_numpy_interop_1.1_032b82ae157cc71e_.log 2025-08-14T22:53:11.8284885Z Running 0 items in this shard: 2025-08-14T22:53:11.8285068Z 2025-08-14T22:53:11.8289307Z Running test_ops 1/9 ... [2025-08-14 22:53:11.827584] 2025-08-14T22:53:11.8289682Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:53:11.8295751Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops.py', '-m', 'serial', '--shard-id=1', '--num-shards=9', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:53:11.827584] 2025-08-14T22:53:32.6027781Z 2025-08-14T22:53:32.6028670Z test_ops 1/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_1.9_183b1e150e1a14f1_.log 2025-08-14T22:53:32.6029334Z Running 0 items in this shard: 2025-08-14T22:53:32.6029523Z 2025-08-14T22:53:32.6033692Z Running test_ops 2/9 ... [2025-08-14 22:53:32.592267] 2025-08-14T22:53:32.6034265Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:53:32.6040200Z 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-14 22:53:32.592267] 2025-08-14T22:53:53.2444431Z 2025-08-14T22:53:53.2445248Z test_ops 2/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_2.9_432662d464c5d930_.log 2025-08-14T22:53:53.2446051Z Running 0 items in this shard: 2025-08-14T22:53:53.2446357Z 2025-08-14T22:53:53.2451025Z Running test_ops 3/9 ... [2025-08-14 22:53:53.244732] 2025-08-14T22:53:53.2451452Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:53:53.2457393Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops.py', '-m', 'serial', '--shard-id=3', '--num-shards=9', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:53:53.245307] 2025-08-14T22:54:13.8587253Z 2025-08-14T22:54:13.8588048Z test_ops 3/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_3.9_ea637f5688541bd5_.log 2025-08-14T22:54:13.8588885Z Running 0 items in this shard: 2025-08-14T22:54:13.8589085Z 2025-08-14T22:54:13.8593305Z Running test_ops 9/9 ... [2025-08-14 22:54:13.859251] 2025-08-14T22:54:13.8593674Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:54:13.8608299Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops.py', '-m', 'serial', '--shard-id=9', '--num-shards=9', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:54:13.860399] 2025-08-14T22:54:34.3936263Z 2025-08-14T22:54:34.3937187Z test_ops 9/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_9.9_1d255bcfe2f41432_.log 2025-08-14T22:54:34.3937861Z Running 0 items in this shard: 2025-08-14T22:54:34.3938046Z 2025-08-14T22:54:34.3942590Z Running distributions/test_constraints 1/1 ... [2025-08-14 22:54:34.393996] 2025-08-14T22:54:34.3943079Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:54:34.3949096Z 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-14 22:54:34.394575] 2025-08-14T22:54:39.6454429Z 2025-08-14T22:54:39.6455456Z distributions/test_constraints 1/1 was successful, full logs can be found in artifacts with path test/test-reports/distributions.test_constraints_1.1_1c7b862dc926f7a6_.log 2025-08-14T22:54:39.6456297Z Running 0 items in this shard: 2025-08-14T22:54:39.6456509Z 2025-08-14T22:54:39.6460612Z Running profiler/test_record_function 1/1 ... [2025-08-14 22:54:39.645902] 2025-08-14T22:54:39.6461110Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:54:39.6467372Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'profiler/test_record_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-14 22:54:39.645902] 2025-08-14T22:54:44.4102010Z 2025-08-14T22:54:44.4102946Z profiler/test_record_function 1/1 was successful, full logs can be found in artifacts with path test/test-reports/profiler.test_record_function_1.1_cd05bbded002d69f_.log 2025-08-14T22:54:44.4103775Z Running 0 items in this shard: 2025-08-14T22:54:44.4103984Z 2025-08-14T22:54:44.4107895Z Running nn/test_lazy_modules 1/1 ... [2025-08-14 22:54:44.408761] 2025-08-14T22:54:44.4108332Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:54:44.4114430Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'nn/test_lazy_modules.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-14 22:54:44.411295] 2025-08-14T22:54:49.4746652Z 2025-08-14T22:54:49.4747884Z nn/test_lazy_modules 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_lazy_modules_1.1_94bc3f25d64e143c_.log 2025-08-14T22:54:49.4748620Z Running 0 items in this shard: 2025-08-14T22:54:49.4748839Z 2025-08-14T22:54:49.4753917Z Running test_jit_fuser_te 1/1 ... [2025-08-14 22:54:49.475130] 2025-08-14T22:54:49.4754434Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:54:49.4761971Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_jit_fuser_te.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-14 22:54:49.475721] 2025-08-14T22:54:58.2608706Z 2025-08-14T22:54:58.2609593Z test_jit_fuser_te 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_jit_fuser_te_1.1_0ec73a6d300544ac_.log 2025-08-14T22:54:58.2610275Z Running 0 items in this shard: 2025-08-14T22:54:58.2610488Z 2025-08-14T22:54:58.2614722Z Running test_segment_reductions 1/1 ... [2025-08-14 22:54:58.258181] 2025-08-14T22:54:58.2615181Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:54:58.2621109Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_segment_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-14 22:54:58.258181] 2025-08-14T22:55:03.2834086Z 2025-08-14T22:55:03.2835120Z test_segment_reductions 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_segment_reductions_1.1_d9e0301a9c12e607_.log 2025-08-14T22:55:03.2835927Z Running 0 items in this shard: 2025-08-14T22:55:03.2836175Z 2025-08-14T22:55:03.2841715Z Running test_import_stats 1/1 ... [2025-08-14 22:55:03.283685] 2025-08-14T22:55:03.2842132Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:55:03.2851731Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_import_stats.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-14 22:55:03.284925] 2025-08-14T22:55:07.8415863Z 2025-08-14T22:55:07.8416754Z test_import_stats 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_import_stats_1.1_8cfee634caff9eb3_.log 2025-08-14T22:55:07.8417502Z Running 0 items in this shard: 2025-08-14T22:55:07.8417738Z 2025-08-14T22:55:07.8423151Z Running test_masked 1/1 ... [2025-08-14 22:55:07.841805] 2025-08-14T22:55:07.8423565Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:55:07.8432239Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_masked.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-14 22:55:07.842985] 2025-08-14T22:55:13.8784872Z 2025-08-14T22:55:13.8785688Z test_masked 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_masked_1.1_e9bf2343447ceb39_.log 2025-08-14T22:55:13.8786379Z Running 0 items in this shard: 2025-08-14T22:55:13.8786569Z 2025-08-14T22:55:13.8790947Z Running test_cuda_sanitizer 1/1 ... [2025-08-14 22:55:13.878811] 2025-08-14T22:55:13.8791386Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:55:13.8797833Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_cuda_sanitizer.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-14 22:55:13.879384] 2025-08-14T22:55:18.5717343Z 2025-08-14T22:55:18.5718303Z test_cuda_sanitizer 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cuda_sanitizer_1.1_8b9e4f0dc25cb6e1_.log 2025-08-14T22:55:18.5719045Z Running 0 items in this shard: 2025-08-14T22:55:18.5719250Z 2025-08-14T22:55:18.5723367Z Running test_monitor 1/1 ... [2025-08-14 22:55:18.571806] 2025-08-14T22:55:18.5723821Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:55:18.5730566Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_monitor.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-14 22:55:18.572394] 2025-08-14T22:55:23.0278395Z 2025-08-14T22:55:23.0279544Z test_monitor 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_monitor_1.1_4abd65ef9e6c8b32_.log 2025-08-14T22:55:23.0280267Z Running 0 items in this shard: 2025-08-14T22:55:23.0280453Z 2025-08-14T22:55:23.0284552Z Running profiler/test_cpp_thread 1/1 ... [2025-08-14 22:55:23.024401] 2025-08-14T22:55:23.0285027Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:55:23.0290930Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'profiler/test_cpp_thread.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-14 22:55:23.024401] 2025-08-14T22:55:43.5985387Z 2025-08-14T22:55:43.5986493Z profiler/test_cpp_thread 1/1 was successful, full logs can be found in artifacts with path test/test-reports/profiler.test_cpp_thread_1.1_aec87d7ccd4c241d_.log 2025-08-14T22:55:43.5987301Z Running 0 items in this shard: 2025-08-14T22:55:43.5987486Z 2025-08-14T22:55:43.5991355Z Running test_subclass 1/1 ... [2025-08-14 22:55:43.597582] 2025-08-14T22:55:43.5991754Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:55:43.5997782Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_subclass.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-14 22:55:43.597582] 2025-08-14T22:55:48.1094526Z 2025-08-14T22:55:48.1095354Z test_subclass 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_subclass_1.1_ac46d06ed2407000_.log 2025-08-14T22:55:48.1096025Z Running 0 items in this shard: 2025-08-14T22:55:48.1096262Z 2025-08-14T22:55:48.1101980Z Running profiler/test_profiler 1/1 ... [2025-08-14 22:55:48.109676] 2025-08-14T22:55:48.1102437Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:55:48.1110859Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'profiler/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-14 22:55:48.110855] 2025-08-14T22:55:53.2357327Z 2025-08-14T22:55:53.2358519Z profiler/test_profiler 1/1 was successful, full logs can be found in artifacts with path test/test-reports/profiler.test_profiler_1.1_e0051fe78c8c6ffa_.log 2025-08-14T22:55:53.2363298Z Running 10 items in this shard: test/profiler/test_profiler.py::TestProfiler::test_source_multithreaded_basic_work_in_main_thread_False, test/profiler/test_profiler.py::TestProfiler::test_source_multithreaded_basic_work_in_main_thread_True, test/profiler/test_profiler.py::TestProfiler::test_source_multithreaded_close_in_scope_work_in_main_thread_False, test/profiler/test_profiler.py::TestProfiler::test_source_multithreaded_close_in_scope_work_in_main_thread_True, test/profiler/test_profiler.py::TestProfiler::test_source_multithreaded_complex_work_in_main_thread_False, test/profiler/test_profiler.py::TestProfiler::test_source_multithreaded_complex_work_in_main_thread_True, test/profiler/test_profiler.py::TestProfiler::test_source_multithreaded_multiple_preexisting_work_in_main_thread_False, test/profiler/test_profiler.py::TestProfiler::test_source_multithreaded_multiple_preexisting_work_in_main_thread_True, test/profiler/test_profiler.py::TestProfiler::test_source_multithreaded_open_in_scope_work_in_main_thread_False, test/profiler/test_profiler.py::TestProfiler::test_source_multithreaded_open_in_scope_work_in_main_thread_True 2025-08-14T22:55:53.2367944Z 2025-08-14T22:55:53.2368187Z Running functorch/test_vmap_registrations 1/1 ... [2025-08-14 22:55:53.223318] 2025-08-14T22:55:53.2368789Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:55:53.2369898Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_vmap_registrations.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-14 22:55:53.223318] 2025-08-14T22:55:58.0686711Z 2025-08-14T22:55:58.0687841Z functorch/test_vmap_registrations 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_vmap_registrations_1.1_8c84bfc9db9e3448_.log 2025-08-14T22:55:58.0688711Z Running 0 items in this shard: 2025-08-14T22:55:58.0689064Z 2025-08-14T22:55:58.0694170Z Running nn/test_parametrization 1/1 ... [2025-08-14 22:55:58.069273] 2025-08-14T22:55:58.0694619Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:55:58.0713805Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'nn/test_parametrization.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-14 22:55:58.071046] 2025-08-14T22:56:03.1634305Z 2025-08-14T22:56:03.1635315Z nn/test_parametrization 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_parametrization_1.1_3d349f4f0101a932_.log 2025-08-14T22:56:03.1636131Z Running 0 items in this shard: 2025-08-14T22:56:03.1636313Z 2025-08-14T22:56:03.1640198Z Running nn/test_pruning 1/1 ... [2025-08-14 22:56:03.156885] 2025-08-14T22:56:03.1640613Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:56:03.1646654Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'nn/test_pruning.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-14 22:56:03.156885] 2025-08-14T22:56:07.9081863Z 2025-08-14T22:56:07.9082992Z nn/test_pruning 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_pruning_1.1_ac4fbdcf7b5fca62_.log 2025-08-14T22:56:07.9083718Z Running 0 items in this shard: 2025-08-14T22:56:07.9083904Z 2025-08-14T22:56:07.9090638Z Running functorch/test_dims 1/1 ... [2025-08-14 22:56:07.908887] 2025-08-14T22:56:07.9091109Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:56:07.9098596Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_dims.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-14 22:56:07.909515] 2025-08-14T22:56:12.3961200Z 2025-08-14T22:56:12.3962087Z functorch/test_dims 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_dims_1.1_0ddc22650d95489c_.log 2025-08-14T22:56:12.3962833Z Running 0 items in this shard: 2025-08-14T22:56:12.3963047Z 2025-08-14T22:56:12.3967073Z Running test_itt 1/1 ... [2025-08-14 22:56:12.393939] 2025-08-14T22:56:12.3967436Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:56:12.3973529Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_itt.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-14 22:56:12.393939] 2025-08-14T22:56:16.9301997Z 2025-08-14T22:56:16.9303041Z test_itt 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_itt_1.1_d696cc697443b782_.log 2025-08-14T22:56:16.9303737Z Running 0 items in this shard: 2025-08-14T22:56:16.9303924Z 2025-08-14T22:56:16.9308392Z Running torch_np/numpy_tests/core/test_multiarray 1/1 ... [2025-08-14 22:56:16.930224] 2025-08-14T22:56:16.9308935Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:56:16.9315369Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/test_multiarray.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-14 22:56:16.931351] 2025-08-14T22:56:21.6945127Z 2025-08-14T22:56:21.6946324Z torch_np/numpy_tests/core/test_multiarray 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_multiarray_1.1_a3a2617a6ec34fb8_.log 2025-08-14T22:56:21.6947289Z Running 0 items in this shard: 2025-08-14T22:56:21.6947475Z 2025-08-14T22:56:21.6951086Z Running functorch/test_ops 2/8 ... [2025-08-14 22:56:21.689702] 2025-08-14T22:56:21.6951664Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:56:21.6967400Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ops.py', '-m', 'serial', '--shard-id=2', '--num-shards=8', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:56:21.696338] 2025-08-14T22:56:30.7361740Z 2025-08-14T22:56:30.7362681Z functorch/test_ops 2/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_2.8_0dd6d93c49476c6f_.log 2025-08-14T22:56:30.7363426Z Running 0 items in this shard: 2025-08-14T22:56:30.7363612Z 2025-08-14T22:56:30.7367758Z Running functorch/test_ops 8/8 ... [2025-08-14 22:56:30.730510] 2025-08-14T22:56:30.7368166Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:56:30.7374542Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ops.py', '-m', 'serial', '--shard-id=8', '--num-shards=8', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:56:30.730510] 2025-08-14T22:56:39.7081685Z 2025-08-14T22:56:39.7082711Z functorch/test_ops 8/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_8.8_116eb2765a9fd206_.log 2025-08-14T22:56:39.7083464Z Running 0 items in this shard: 2025-08-14T22:56:39.7083648Z 2025-08-14T22:56:39.7088032Z Running functorch/test_aotdispatch 1/7 ... [2025-08-14 22:56:39.705840] 2025-08-14T22:56:39.7088531Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:56:39.7094161Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_aotdispatch.py', '-m', 'serial', '--shard-id=1', '--num-shards=7', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:56:39.705840] 2025-08-14T22:56:47.2926651Z 2025-08-14T22:56:47.2927772Z functorch/test_aotdispatch 1/7 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_aotdispatch_1.7_463f1787b0a13b5e_.log 2025-08-14T22:56:47.2928601Z Running 0 items in this shard: 2025-08-14T22:56:47.2928786Z 2025-08-14T22:56:47.2932690Z Running functorch/test_aotdispatch 3/7 ... [2025-08-14 22:56:47.292492] 2025-08-14T22:56:47.2933155Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:56:47.2939065Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_aotdispatch.py', '-m', 'serial', '--shard-id=3', '--num-shards=7', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:56:47.292492] 2025-08-14T22:56:54.6314238Z 2025-08-14T22:56:54.6315147Z functorch/test_aotdispatch 3/7 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_aotdispatch_3.7_3b94ba02d974dc7a_.log 2025-08-14T22:56:54.6315952Z Running 0 items in this shard: 2025-08-14T22:56:54.6316125Z 2025-08-14T22:56:54.6329153Z Running optim/test_swa_utils 1/1 ... [2025-08-14 22:56:54.632522] 2025-08-14T22:56:54.6329568Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:56:54.6335944Z 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-14 22:56:54.633093] 2025-08-14T22:56:58.9493726Z 2025-08-14T22:56:58.9494565Z 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_3cb4ac66f88af9aa_.log 2025-08-14T22:56:58.9495224Z 2025-08-14T22:56:58.9500795Z Running functorch/test_vmap 2/2 ... [2025-08-14 22:56:58.949744] 2025-08-14T22:56:58.9501184Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:56:58.9516358Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_vmap.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-14 22:56:58.950920] 2025-08-14T22:57:05.8473505Z 2025-08-14T22:57:05.8474381Z functorch/test_vmap 2/2 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_vmap_2.2_2530a5fdca5d5059_.log 2025-08-14T22:57:05.8475096Z Running 0 items in this shard: 2025-08-14T22:57:05.8475280Z 2025-08-14T22:57:05.8480659Z Running nn/test_load_state_dict 1/1 ... [2025-08-14 22:57:05.847772] 2025-08-14T22:57:05.8481066Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:57:05.8488401Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'nn/test_load_state_dict.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-14 22:57:05.848356] 2025-08-14T22:57:10.6805389Z 2025-08-14T22:57:10.6806355Z nn/test_load_state_dict 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_load_state_dict_1.1_8da16bf2618916e0_.log 2025-08-14T22:57:10.6807088Z Running 0 items in this shard: 2025-08-14T22:57:10.6807286Z 2025-08-14T22:57:10.6812717Z Running test_shape_ops 1/1 ... [2025-08-14 22:57:10.680826] 2025-08-14T22:57:10.6813074Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:57:10.6821892Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_shape_ops.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-14 22:57:10.681998] 2025-08-14T22:57:15.5831239Z 2025-08-14T22:57:15.5832311Z test_shape_ops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_shape_ops_1.1_c48bdaa554a52e5a_.log 2025-08-14T22:57:15.5833005Z Running 0 items in this shard: 2025-08-14T22:57:15.5833181Z 2025-08-14T22:57:15.5837070Z Running torch_np/numpy_tests/core/test_dtype 1/1 ... [2025-08-14 22:57:15.580181] 2025-08-14T22:57:15.5837531Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:57:15.5843613Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/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-14 22:57:15.580181] 2025-08-14T22:57:20.0388581Z 2025-08-14T22:57:20.0389539Z torch_np/numpy_tests/core/test_dtype 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_dtype_1.1_71377848c06ac719_.log 2025-08-14T22:57:20.0390550Z Running 0 items in this shard: 2025-08-14T22:57:20.0390721Z 2025-08-14T22:57:20.0396608Z Running torch_np/numpy_tests/core/test_shape_base 1/1 ... [2025-08-14 22:57:20.039125] 2025-08-14T22:57:20.0397191Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:57:20.0405139Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/test_shape_base.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-14 22:57:20.040299] 2025-08-14T22:57:20.0406880Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-14T22:57:20.0407332Z Uploading artifacts took 0.00 seconds 2025-08-14T22:57:24.5054895Z 2025-08-14T22:57:24.5056154Z torch_np/numpy_tests/core/test_shape_base 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_shape_base_1.1_f3c45999af19b2fd_.log 2025-08-14T22:57:24.5068516Z Running 0 items in this shard: 2025-08-14T22:57:24.5068734Z 2025-08-14T22:57:24.5069039Z Running test_type_info 1/1 ... [2025-08-14 22:57:24.498673] 2025-08-14T22:57:24.5069421Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:57:24.5070401Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_type_info.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-14 22:57:24.498673] 2025-08-14T22:57:29.0357306Z 2025-08-14T22:57:29.0358169Z test_type_info 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_type_info_1.1_01055b02fdf1c6b9_.log 2025-08-14T22:57:29.0358825Z Running 0 items in this shard: 2025-08-14T22:57:29.0359015Z 2025-08-14T22:57:29.0363475Z Running test_jit_llga_fuser 1/1 ... [2025-08-14 22:57:29.026350] 2025-08-14T22:57:29.0363943Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:57:29.0369767Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_jit_llga_fuser.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-14 22:57:29.036434] 2025-08-14T22:57:33.9174166Z 2025-08-14T22:57:33.9174978Z test_jit_llga_fuser 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_jit_llga_fuser_1.1_9c47831016c8f024_.log 2025-08-14T22:57:33.9175672Z Running 0 items in this shard: 2025-08-14T22:57:33.9175861Z 2025-08-14T22:57:33.9180122Z Running test_indexing 1/1 ... [2025-08-14 22:57:33.917792] 2025-08-14T22:57:33.9180492Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:57:33.9186558Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', '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-14 22:57:33.918370] 2025-08-14T22:57:38.9391993Z 2025-08-14T22:57:38.9392905Z test_indexing 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_indexing_1.1_d3146609bbd7d552_.log 2025-08-14T22:57:38.9393585Z Running 0 items in this shard: 2025-08-14T22:57:38.9393758Z 2025-08-14T22:57:38.9398089Z Running torch_np/test_function_base 1/1 ... [2025-08-14 22:57:38.937577] 2025-08-14T22:57:38.9398554Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:57:38.9404623Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_function_base.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-14 22:57:38.937577] 2025-08-14T22:57:43.4178138Z 2025-08-14T22:57:43.4179190Z torch_np/test_function_base 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_function_base_1.1_5e71ff961182a6c7_.log 2025-08-14T22:57:43.4179955Z Running 0 items in this shard: 2025-08-14T22:57:43.4180128Z 2025-08-14T22:57:43.4184217Z Running torch_np/numpy_tests/lib/test_twodim_base 1/1 ... [2025-08-14 22:57:43.414383] 2025-08-14T22:57:43.4184687Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:57:43.4190877Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/lib/test_twodim_base.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-14 22:57:43.414383] 2025-08-14T22:57:47.8939928Z 2025-08-14T22:57:47.8940935Z torch_np/numpy_tests/lib/test_twodim_base 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.lib.test_twodim_base_1.1_4dd10032a5b9382a_.log 2025-08-14T22:57:47.8941836Z Running 0 items in this shard: 2025-08-14T22:57:47.8942018Z 2025-08-14T22:57:47.8946352Z Running torch_np/test_scalars_0D_arrays 1/1 ... [2025-08-14 22:57:47.893244] 2025-08-14T22:57:47.8947658Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:57:47.8952609Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_scalars_0D_arrays.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-14 22:57:47.893244] 2025-08-14T22:57:52.3407022Z 2025-08-14T22:57:52.3408129Z torch_np/test_scalars_0D_arrays 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_scalars_0D_arrays_1.1_ef54721d9d514ffe_.log 2025-08-14T22:57:52.3423135Z Running 0 items in this shard: 2025-08-14T22:57:52.3423315Z 2025-08-14T22:57:52.3423534Z Running nn/test_module_hooks 1/1 ... [2025-08-14 22:57:52.334223] 2025-08-14T22:57:52.3423909Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:57:52.3424907Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'nn/test_module_hooks.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-14 22:57:52.334223] 2025-08-14T22:57:57.0980832Z 2025-08-14T22:57:57.0981806Z nn/test_module_hooks 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_module_hooks_1.1_1b01c79561bd1a6c_.log 2025-08-14T22:57:57.0982523Z Running 0 items in this shard: 2025-08-14T22:57:57.0982692Z 2025-08-14T22:57:57.0987225Z Running test_numa_binding 1/1 ... [2025-08-14 22:57:57.096911] 2025-08-14T22:57:57.0987635Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:57:57.0993224Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_numa_binding.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-14 22:57:57.096911] 2025-08-14T22:58:01.6292098Z 2025-08-14T22:58:01.6293219Z test_numa_binding 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_numa_binding_1.1_3fa27975c205c239_.log 2025-08-14T22:58:01.6293885Z Running 0 items in this shard: 2025-08-14T22:58:01.6294067Z 2025-08-14T22:58:01.6298044Z Running torch_np/numpy_tests/core/test_getlimits 1/1 ... [2025-08-14 22:58:01.624918] 2025-08-14T22:58:01.6298510Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:58:01.6304898Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/test_getlimits.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-14 22:58:01.630007] 2025-08-14T22:58:06.1059712Z 2025-08-14T22:58:06.1060799Z torch_np/numpy_tests/core/test_getlimits 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_getlimits_1.1_9edb70ae202dda71_.log 2025-08-14T22:58:06.1061694Z Running 0 items in this shard: 2025-08-14T22:58:06.1061861Z 2025-08-14T22:58:06.1065692Z Running torch_np/test_ndarray_methods 1/1 ... [2025-08-14 22:58:06.103912] 2025-08-14T22:58:06.1066104Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:58:06.1072535Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_ndarray_methods.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-14 22:58:06.103912] 2025-08-14T22:58:10.6260783Z 2025-08-14T22:58:10.6261819Z torch_np/test_ndarray_methods 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_ndarray_methods_1.1_cfe7452ca32fa7a1_.log 2025-08-14T22:58:10.6262616Z Running 0 items in this shard: 2025-08-14T22:58:10.6262832Z 2025-08-14T22:58:10.6267036Z Running lazy/test_debug_util 1/1 ... [2025-08-14 22:58:10.626508] 2025-08-14T22:58:10.6267562Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:58:10.6273492Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'lazy/test_debug_util.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-14 22:58:10.627110] 2025-08-14T22:58:15.2946983Z 2025-08-14T22:58:15.2947808Z lazy/test_debug_util 1/1 was successful, full logs can be found in artifacts with path test/test-reports/lazy.test_debug_util_1.1_969d37243d482a87_.log 2025-08-14T22:58:15.2948503Z Running 0 items in this shard: 2025-08-14T22:58:15.2948697Z 2025-08-14T22:58:15.2953064Z Running torch_np/numpy_tests/lib/test_shape_base_ 1/1 ... [2025-08-14 22:58:15.293190] 2025-08-14T22:58:15.2953549Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:58:15.2959597Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/lib/test_shape_base_.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-14 22:58:15.293190] 2025-08-14T22:58:19.8559722Z 2025-08-14T22:58:19.8560730Z torch_np/numpy_tests/lib/test_shape_base_ 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.lib.test_shape_base__1.1_dc4133e0f6e500fc_.log 2025-08-14T22:58:19.8561581Z Running 0 items in this shard: 2025-08-14T22:58:19.8561762Z 2025-08-14T22:58:19.8565573Z Running torch_np/numpy_tests/linalg/test_linalg 1/1 ... [2025-08-14 22:58:19.855615] 2025-08-14T22:58:19.8566045Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:58:19.8572070Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/linalg/test_linalg.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-14 22:58:19.855615] 2025-08-14T22:58:24.5285203Z 2025-08-14T22:58:24.5286303Z torch_np/numpy_tests/linalg/test_linalg 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.linalg.test_linalg_1.1_8214cf04c18092a9_.log 2025-08-14T22:58:24.5287188Z Running 0 items in this shard: 2025-08-14T22:58:24.5287364Z 2025-08-14T22:58:24.5292454Z Running test_sparse_csr 1/1 ... [2025-08-14 22:58:24.528824] 2025-08-14T22:58:24.5292810Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:58:24.5301077Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_sparse_csr.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-14 22:58:24.529406] 2025-08-14T22:58:32.3823460Z 2025-08-14T22:58:32.3824414Z test_sparse_csr 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_sparse_csr_1.1_a6dace2a1358842f_.log 2025-08-14T22:58:32.3825084Z Running 0 items in this shard: 2025-08-14T22:58:32.3825256Z 2025-08-14T22:58:32.3829373Z Running test_view_ops 1/1 ... [2025-08-14 22:58:32.371796] 2025-08-14T22:58:32.3829721Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:58:32.3835758Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_view_ops.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-14 22:58:32.371796] 2025-08-14T22:58:37.4750307Z 2025-08-14T22:58:37.4751253Z test_view_ops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_view_ops_1.1_3d7a6a937945d62b_.log 2025-08-14T22:58:37.4751966Z Running 0 items in this shard: 2025-08-14T22:58:37.4752147Z 2025-08-14T22:58:37.4758478Z Running profiler/test_memory_profiler 1/1 ... [2025-08-14 22:58:37.475726] 2025-08-14T22:58:37.4759043Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:58:37.4766359Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'profiler/test_memory_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-14 22:58:37.476321] 2025-08-14T22:58:42.3982866Z 2025-08-14T22:58:42.3984035Z profiler/test_memory_profiler 1/1 was successful, full logs can be found in artifacts with path test/test-reports/profiler.test_memory_profiler_1.1_3ebd0bcebac53623_.log 2025-08-14T22:58:42.3984831Z Running 0 items in this shard: 2025-08-14T22:58:42.3985011Z 2025-08-14T22:58:42.3988709Z Running torch_np/numpy_tests/fft/test_pocketfft 1/1 ... [2025-08-14 22:58:42.390509] 2025-08-14T22:58:42.3989168Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:58:42.3995160Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/fft/test_pocketfft.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-14 22:58:42.390509] 2025-08-14T22:58:46.8838607Z 2025-08-14T22:58:46.8839704Z torch_np/numpy_tests/fft/test_pocketfft 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.fft.test_pocketfft_1.1_4fb20f213e4f47cc_.log 2025-08-14T22:58:46.8840587Z Running 0 items in this shard: 2025-08-14T22:58:46.8840755Z 2025-08-14T22:58:46.8844385Z Running test_function_schema 1/1 ... [2025-08-14 22:58:46.875225] 2025-08-14T22:58:46.8844774Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:58:46.8850909Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_function_schema.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-14 22:58:46.875225] 2025-08-14T22:58:51.2718154Z 2025-08-14T22:58:51.2719000Z test_function_schema 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_function_schema_1.1_ebde8d7600a7bfd3_.log 2025-08-14T22:58:51.2719714Z Running 0 items in this shard: 2025-08-14T22:58:51.2719885Z 2025-08-14T22:58:51.2725583Z Running torch_np/numpy_tests/lib/test_index_tricks 1/1 ... [2025-08-14 22:58:51.272185] 2025-08-14T22:58:51.2726055Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:58:51.2733747Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/lib/test_index_tricks.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-14 22:58:51.272767] 2025-08-14T22:58:55.7583028Z 2025-08-14T22:58:55.7584198Z torch_np/numpy_tests/lib/test_index_tricks 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.lib.test_index_tricks_1.1_fa69cb569dd5377f_.log 2025-08-14T22:58:55.7585074Z Running 0 items in this shard: 2025-08-14T22:58:55.7585247Z 2025-08-14T22:58:55.7588892Z Running test_scatter_gather_ops 1/1 ... [2025-08-14 22:58:55.758134] 2025-08-14T22:58:55.7589444Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:58:55.7595352Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_scatter_gather_ops.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-14 22:58:55.758134] 2025-08-14T22:59:00.5523326Z 2025-08-14T22:59:00.5524419Z test_scatter_gather_ops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_scatter_gather_ops_1.1_aecba1c23a55ad90_.log 2025-08-14T22:59:00.5525178Z Running 0 items in this shard: 2025-08-14T22:59:00.5525349Z 2025-08-14T22:59:00.5529324Z Running test_serialization 1/1 ... [2025-08-14 22:59:00.548895] 2025-08-14T22:59:00.5529708Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:59:00.5535913Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_serialization.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-14 22:59:00.548895] 2025-08-14T22:59:28.9963281Z 2025-08-14T22:59:28.9964107Z test_serialization 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_serialization_1.1_96c453ea735b9378_.log 2025-08-14T22:59:28.9965329Z Running 2 items in this shard: test/test_serialization.py::TestSerialization::test_serialization_2gb_file, test/test_serialization.py::TestSerialization::test_serialization_4gb_file 2025-08-14T22:59:28.9966128Z 2025-08-14T22:59:28.9969592Z Running torch_np/numpy_tests/core/test_dlpack 1/1 ... [2025-08-14 22:59:28.996621] 2025-08-14T22:59:28.9970046Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:59:28.9976204Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/test_dlpack.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-14 22:59:28.997211] 2025-08-14T22:59:33.6397730Z 2025-08-14T22:59:33.6398801Z torch_np/numpy_tests/core/test_dlpack 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_dlpack_1.1_aa15f90bf8744800_.log 2025-08-14T22:59:33.6399632Z Running 0 items in this shard: 2025-08-14T22:59:33.6403389Z 2025-08-14T22:59:33.6403619Z Running test_xnnpack_integration 1/1 ... [2025-08-14 22:59:33.639791] 2025-08-14T22:59:33.6404067Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:59:33.6410452Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_xnnpack_integration.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-14 22:59:33.640888] 2025-08-14T22:59:38.1734198Z 2025-08-14T22:59:38.1735318Z test_xnnpack_integration 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_xnnpack_integration_1.1_779941f321c5263b_.log 2025-08-14T22:59:38.1736079Z Running 0 items in this shard: 2025-08-14T22:59:38.1736248Z 2025-08-14T22:59:38.1741156Z Running torch_np/numpy_tests/fft/test_helper 1/1 ... [2025-08-14 22:59:38.173918] 2025-08-14T22:59:38.1741629Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:59:38.1746814Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/fft/test_helper.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-14 22:59:38.173997] 2025-08-14T22:59:42.6628734Z 2025-08-14T22:59:42.6629851Z torch_np/numpy_tests/fft/test_helper 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.fft.test_helper_1.1_c89bd9a728cc21a7_.log 2025-08-14T22:59:42.6630695Z Running 0 items in this shard: 2025-08-14T22:59:42.6631093Z 2025-08-14T22:59:42.6634736Z Running test_mkldnn 1/1 ... [2025-08-14 22:59:42.662909] 2025-08-14T22:59:42.6635074Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:59:42.6641269Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_mkldnn.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-14 22:59:42.662909] 2025-08-14T22:59:47.6050536Z 2025-08-14T22:59:47.6051553Z test_mkldnn 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_mkldnn_1.1_7aa106c5f665a598_.log 2025-08-14T22:59:47.6052369Z Running 0 items in this shard: 2025-08-14T22:59:47.6052546Z 2025-08-14T22:59:47.6057681Z Running test_unary_ufuncs 1/1 ... [2025-08-14 22:59:47.605472] 2025-08-14T22:59:47.6058054Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:59:47.6065319Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_unary_ufuncs.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-14 22:59:47.606057] 2025-08-14T22:59:59.1099185Z 2025-08-14T22:59:59.1099995Z test_unary_ufuncs 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_unary_ufuncs_1.1_40b7700413375cd5_.log 2025-08-14T22:59:59.1100740Z Running 0 items in this shard: 2025-08-14T22:59:59.1100951Z 2025-08-14T22:59:59.1105235Z Running torch_np/numpy_tests/core/test_scalar_methods 1/1 ... [2025-08-14 22:59:59.110115] 2025-08-14T22:59:59.1105714Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:59:59.1111975Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/test_scalar_methods.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-14 22:59:59.110115] 2025-08-14T23:00:03.6226019Z 2025-08-14T23:00:03.6227311Z torch_np/numpy_tests/core/test_scalar_methods 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_scalar_methods_1.1_ced286088deaef58_.log 2025-08-14T23:00:03.6228200Z Running 0 items in this shard: 2025-08-14T23:00:03.6228421Z 2025-08-14T23:00:03.6233127Z Running nn/test_init 1/1 ... [2025-08-14 23:00:03.622868] 2025-08-14T23:00:03.6233483Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:00:03.6242063Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'nn/test_init.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-14 23:00:03.624042] 2025-08-14T23:00:08.5424874Z 2025-08-14T23:00:08.5425722Z nn/test_init 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_init_1.1_8b13d1bd64dc6204_.log 2025-08-14T23:00:08.5426397Z Running 0 items in this shard: 2025-08-14T23:00:08.5426582Z 2025-08-14T23:00:08.5433636Z Running torch_np/numpy_tests/core/test_numerictypes 1/1 ... [2025-08-14 23:00:08.543156] 2025-08-14T23:00:08.5434140Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:00:08.5441121Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/test_numerictypes.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-14 23:00:08.543774] 2025-08-14T23:00:13.0898966Z 2025-08-14T23:00:13.0900180Z torch_np/numpy_tests/core/test_numerictypes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_numerictypes_1.1_93010107d976fc44_.log 2025-08-14T23:00:13.0901079Z Running 0 items in this shard: 2025-08-14T23:00:13.0901403Z 2025-08-14T23:00:13.0905038Z Running torch_np/numpy_tests/lib/test_arraypad 1/1 ... [2025-08-14 23:00:13.086605] 2025-08-14T23:00:13.0905529Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:00:13.0911199Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/lib/test_arraypad.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-14 23:00:13.086605] 2025-08-14T23:00:17.4811763Z 2025-08-14T23:00:17.4812721Z torch_np/numpy_tests/lib/test_arraypad 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.lib.test_arraypad_1.1_572d98253ee963be_.log 2025-08-14T23:00:17.4813564Z Running 0 items in this shard: 2025-08-14T23:00:17.4813736Z 2025-08-14T23:00:17.4817836Z Running test_cuda_multigpu 1/1 ... [2025-08-14 23:00:17.479547] 2025-08-14T23:00:17.4818215Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:00:17.4824294Z 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-14 23:00:17.479547] 2025-08-14T23:00:22.3057509Z 2025-08-14T23:00:22.3058423Z test_cuda_multigpu 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cuda_multigpu_1.1_42be74f54517773b_.log 2025-08-14T23:00:22.3059148Z Running 0 items in this shard: 2025-08-14T23:00:22.3059320Z 2025-08-14T23:00:22.3063657Z Running test_type_promotion 1/1 ... [2025-08-14 23:00:22.305776] 2025-08-14T23:00:22.3064144Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:00:22.3071671Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_type_promotion.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-14 23:00:22.306925] 2025-08-14T23:00:27.2376256Z 2025-08-14T23:00:27.2377097Z test_type_promotion 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_type_promotion_1.1_fea4f02819576669_.log 2025-08-14T23:00:27.2377792Z Running 0 items in this shard: 2025-08-14T23:00:27.2377975Z 2025-08-14T23:00:27.2382718Z Running torch_np/numpy_tests/lib/test_arraysetops 1/1 ... [2025-08-14 23:00:27.238031] 2025-08-14T23:00:27.2383192Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:00:27.2389451Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/lib/test_arraysetops.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-14 23:00:27.238636] 2025-08-14T23:00:31.8178929Z 2025-08-14T23:00:31.8180117Z torch_np/numpy_tests/lib/test_arraysetops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.lib.test_arraysetops_1.1_8ef8589b4c285b26_.log 2025-08-14T23:00:31.8181031Z Running 0 items in this shard: 2025-08-14T23:00:31.8181205Z 2025-08-14T23:00:31.8187301Z Running test_jit_autocast 1/1 ... [2025-08-14 23:00:31.818484] 2025-08-14T23:00:31.8187669Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:00:31.8206431Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_jit_autocast.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-14 23:00:31.820340] 2025-08-14T23:00:38.3543881Z 2025-08-14T23:00:38.3544743Z test_jit_autocast 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_jit_autocast_1.1_aae5918209197ea0_.log 2025-08-14T23:00:38.3545475Z Running 0 items in this shard: 2025-08-14T23:00:38.3546400Z 2025-08-14T23:00:38.3551204Z Running test_dlpack 1/1 ... [2025-08-14 23:00:38.354572] 2025-08-14T23:00:38.3551612Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:00:38.3558691Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_dlpack.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-14 23:00:38.355152] 2025-08-14T23:00:43.2784875Z 2025-08-14T23:00:43.2785902Z test_dlpack 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_dlpack_1.1_3b8d4a1dfc3e43a5_.log 2025-08-14T23:00:43.2786793Z Running 0 items in this shard: 2025-08-14T23:00:43.2786973Z 2025-08-14T23:00:43.2791031Z Running profiler/test_profiler_tree 1/1 ... [2025-08-14 23:00:43.278979] 2025-08-14T23:00:43.2791461Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:00:43.2798059Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'profiler/test_profiler_tree.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-14 23:00:43.279601] 2025-08-14T23:00:47.7579569Z 2025-08-14T23:00:47.7580484Z profiler/test_profiler_tree 1/1 was successful, full logs can be found in artifacts with path test/test-reports/profiler.test_profiler_tree_1.1_b6e6cce3ec993b52_.log 2025-08-14T23:00:47.7581292Z Running 0 items in this shard: 2025-08-14T23:00:47.7581471Z 2025-08-14T23:00:47.7587063Z Running torch_np/numpy_tests/core/test_scalar_ctors 1/1 ... [2025-08-14 23:00:47.758232] 2025-08-14T23:00:47.7587552Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:00:47.7596373Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/test_scalar_ctors.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-14 23:00:47.759409] 2025-08-14T23:00:52.2750738Z 2025-08-14T23:00:52.2751798Z torch_np/numpy_tests/core/test_scalar_ctors 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_scalar_ctors_1.1_8f0d71430ec4fea5_.log 2025-08-14T23:00:52.2752694Z Running 0 items in this shard: 2025-08-14T23:00:52.2752884Z 2025-08-14T23:00:52.2756649Z Running profiler/test_torch_tidy 1/1 ... [2025-08-14 23:00:52.262733] 2025-08-14T23:00:52.2757077Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:00:52.2763076Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'profiler/test_torch_tidy.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-14 23:00:52.262733] 2025-08-14T23:00:56.7089062Z 2025-08-14T23:00:56.7090105Z profiler/test_torch_tidy 1/1 was successful, full logs can be found in artifacts with path test/test-reports/profiler.test_torch_tidy_1.1_5e69e69503327741_.log 2025-08-14T23:00:56.7090874Z Running 0 items in this shard: 2025-08-14T23:00:56.7091051Z 2025-08-14T23:00:56.7094814Z Running torch_np/test_reductions 1/1 ... [2025-08-14 23:00:56.706456] 2025-08-14T23:00:56.7095209Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:00:56.7101260Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_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-14 23:00:56.706456] 2025-08-14T23:01:01.3434598Z 2025-08-14T23:01:01.3435520Z torch_np/test_reductions 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_reductions_1.1_b4f6257371dc8c89_.log 2025-08-14T23:01:01.3436282Z Running 0 items in this shard: 2025-08-14T23:01:01.3436456Z 2025-08-14T23:01:01.3440818Z Running lazy/test_reuse_ir 1/1 ... [2025-08-14 23:01:01.343492] 2025-08-14T23:01:01.3441200Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:01:01.3447325Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'lazy/test_reuse_ir.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-14 23:01:01.344589] 2025-08-14T23:01:05.8225818Z 2025-08-14T23:01:05.8226707Z lazy/test_reuse_ir 1/1 was successful, full logs can be found in artifacts with path test/test-reports/lazy.test_reuse_ir_1.1_9efe9bae08e37a31_.log 2025-08-14T23:01:05.8227548Z Running 0 items in this shard: 2025-08-14T23:01:05.8227739Z 2025-08-14T23:01:05.8231977Z Running test_functional_autograd_benchmark 1/1 ... [2025-08-14 23:01:05.822994] 2025-08-14T23:01:05.8232450Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:01:05.8238756Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_functional_autograd_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-14 23:01:05.823592] 2025-08-14T23:01:10.3250494Z 2025-08-14T23:01:10.3251611Z test_functional_autograd_benchmark 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_functional_autograd_benchmark_1.1_5871803a83dc26d7_.log 2025-08-14T23:01:10.3252499Z Running 0 items in this shard: 2025-08-14T23:01:10.3252682Z 2025-08-14T23:01:10.3256520Z Running test_prims 1/1 ... [2025-08-14 23:01:10.325096] 2025-08-14T23:01:10.3256944Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:01:10.3263431Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_prims.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-14 23:01:10.325701] 2025-08-14T23:01:16.2449763Z 2025-08-14T23:01:16.2450636Z test_prims 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_prims_1.1_68d90be6faa83fc5_.log 2025-08-14T23:01:16.2451318Z Running 0 items in this shard: 2025-08-14T23:01:16.2451502Z 2025-08-14T23:01:16.2455848Z Running profiler/test_python_tracer 1/1 ... [2025-08-14 23:01:16.245480] 2025-08-14T23:01:16.2456299Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:01:16.2462434Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'profiler/test_python_tracer.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-14 23:01:16.246098] 2025-08-14T23:01:20.6595557Z 2025-08-14T23:01:20.6596773Z profiler/test_python_tracer 1/1 was successful, full logs can be found in artifacts with path test/test-reports/profiler.test_python_tracer_1.1_1bc09f153c8c7598_.log 2025-08-14T23:01:20.6597607Z Running 0 items in this shard: 2025-08-14T23:01:20.6597789Z 2025-08-14T23:01:25.9439898Z Running inductor/test_aot_inductor 1/1 ... [2025-08-14 23:01:25.943499] 2025-08-14T23:01:25.9440475Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:01:25.9446919Z 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-14 23:01:25.944084] 2025-08-14T23:01:25.9523873Z Running dynamo/test_logging 1/1 ... [2025-08-14 23:01:25.951801] 2025-08-14T23:01:25.9524410Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:01:25.9527026Z Running inductor/test_codecache 1/1 ... [2025-08-14 23:01:25.952396] 2025-08-14T23:01:25.9527469Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:01:25.9531573Z 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-14 23:01:25.952937] 2025-08-14T23:01:25.9535805Z 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-14 23:01:25.952990] 2025-08-14T23:01:36.2739928Z 2025-08-14T23:01:36.2741202Z inductor/test_codecache 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_codecache_1.1_912ba689cdf2fb02_.log 2025-08-14T23:01:36.2741883Z 2025-08-14T23:01:38.3582180Z 2025-08-14T23:01:38.3583117Z 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_fcfed97ce9673e4f_.log 2025-08-14T23:01:38.3583823Z 2025-08-14T23:01:40.4240840Z 2025-08-14T23:01:40.4241847Z dynamo/test_logging 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_logging_1.1_b77c32ffc47e508c_.log 2025-08-14T23:01:41.5319116Z 2025-08-14T23:01:41.5319777Z Running inductor/test_torchinductor 1/1 ... [2025-08-14 23:01:41.531386] 2025-08-14T23:01:41.5320365Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:01:41.5328912Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_torchinductor.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-14 23:01:41.532574] 2025-08-14T23:01:43.6176911Z Running inductor/test_torchinductor_opinfo 1/1 ... [2025-08-14 23:01:43.617095] 2025-08-14T23:01:43.6177462Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:01:43.6186363Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_torchinductor_opinfo.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-14 23:01:43.618281] 2025-08-14T23:01:45.7291058Z Running inductor/test_cudagraph_trees 1/1 ... [2025-08-14 23:01:45.728457] 2025-08-14T23:01:45.7297474Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:01:45.7298627Z 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-14 23:01:45.729608] 2025-08-14T23:01:52.1230067Z 2025-08-14T23:01:52.1231302Z inductor/test_torchinductor 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_torchinductor_1.1_0959c1d435ba22f6_.log 2025-08-14T23:01:52.1232012Z 2025-08-14T23:01:55.1024830Z 2025-08-14T23:01:55.1026112Z inductor/test_torchinductor_opinfo 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_torchinductor_opinfo_1.1_3776dfcc6f2be761_.log 2025-08-14T23:01:55.1026864Z 2025-08-14T23:01:56.8553989Z 2025-08-14T23:01:56.8555193Z 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_74e23d5f127308a5_.log 2025-08-14T23:01:56.8556113Z 2025-08-14T23:01:57.4835515Z Running dynamo/test_repros 1/1 ... [2025-08-14 23:01:57.477704] 2025-08-14T23:01:57.4835998Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:01:57.4842525Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_repros.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-14 23:01:57.477704] 2025-08-14T23:02:00.3480728Z Running inductor/test_perf 1/1 ... [2025-08-14 23:02:00.345833] 2025-08-14T23:02:00.3481207Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:02:00.3487380Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_perf.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-14 23:02:00.345833] 2025-08-14T23:02:02.2351871Z Running dynamo/test_modules 1/1 ... [2025-08-14 23:02:02.234770] 2025-08-14T23:02:02.2352323Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:02:02.2359074Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_modules.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-14 23:02:02.235371] 2025-08-14T23:02:02.7100573Z 2025-08-14T23:02:02.7102125Z dynamo/test_repros 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_repros_1.1_e1cda31d39f9deed_.log 2025-08-14T23:02:02.7103394Z 2025-08-14T23:02:08.0331213Z Running inductor/test_smoke 1/1 ... [2025-08-14 23:02:08.030711] 2025-08-14T23:02:08.0331693Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:02:08.0339455Z 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-14 23:02:08.030711] 2025-08-14T23:02:11.0179500Z 2025-08-14T23:02:11.0180612Z inductor/test_perf 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_perf_1.1_0f2a7306f75b63ed_.log 2025-08-14T23:02:11.0181227Z 2025-08-14T23:02:13.1073226Z 2025-08-14T23:02:13.1074177Z dynamo/test_modules 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_modules_1.1_d7c7e807affeb290_.log 2025-08-14T23:02:13.1074798Z 2025-08-14T23:02:16.3698338Z Running inductor/test_compiled_autograd 1/1 ... [2025-08-14 23:02:16.369417] 2025-08-14T23:02:16.3698865Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:02:16.3705034Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_compiled_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-14 23:02:16.370033] 2025-08-14T23:02:18.1978352Z 2025-08-14T23:02:18.1979503Z inductor/test_smoke 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_smoke_1.1_f42e77ea70d61a2e_.log 2025-08-14T23:02:18.1980190Z 2025-08-14T23:02:18.4757526Z Running inductor/test_inductor_freezing 1/1 ... [2025-08-14 23:02:18.461110] 2025-08-14T23:02:18.4758037Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:02:18.4764135Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_inductor_freezing.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-14 23:02:18.461110] 2025-08-14T23:02:23.4666317Z Running inductor/test_snode_runtime 1/1 ... [2025-08-14 23:02:23.466452] 2025-08-14T23:02:23.4672636Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:02:23.4673821Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_snode_runtime.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-14 23:02:23.467033] 2025-08-14T23:02:28.3240615Z 2025-08-14T23:02:28.3241736Z inductor/test_compiled_autograd 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_compiled_autograd_1.1_1774c585280fe899_.log 2025-08-14T23:02:28.3242524Z 2025-08-14T23:02:29.8857062Z 2025-08-14T23:02:29.8857991Z inductor/test_inductor_freezing 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_inductor_freezing_1.1_945530735b3eabe2_.log 2025-08-14T23:02:29.8858718Z 2025-08-14T23:02:33.6026514Z Running dynamo/test_backends 1/1 ... [2025-08-14 23:02:33.601460] 2025-08-14T23:02:33.6026953Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:02:33.6033341Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_backends.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-14 23:02:33.603069] 2025-08-14T23:02:33.7226214Z 2025-08-14T23:02:33.7227374Z inductor/test_snode_runtime 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_snode_runtime_1.1_ec6e50679ba0fc16_.log 2025-08-14T23:02:33.7228060Z 2025-08-14T23:02:35.2270694Z Running inductor/test_layout_optim 1/1 ... [2025-08-14 23:02:35.221191] 2025-08-14T23:02:35.2271142Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:02:35.2277359Z 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-14 23:02:35.221191] 2025-08-14T23:02:39.1646214Z Running inductor/test_mmdecomp 1/1 ... [2025-08-14 23:02:39.164383] 2025-08-14T23:02:39.1646660Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:02:39.1652905Z 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-14 23:02:39.164957] 2025-08-14T23:02:43.8057533Z 2025-08-14T23:02:43.8058705Z dynamo/test_backends 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_backends_1.1_6dc10d4a194d5f09_.log 2025-08-14T23:02:43.8059495Z 2025-08-14T23:02:46.0424272Z 2025-08-14T23:02:46.0425849Z 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_7db4f6ab2fbebcfa_.log 2025-08-14T23:02:46.0426548Z 2025-08-14T23:02:49.0720154Z Running dynamo/test_aot_autograd 1/1 ... [2025-08-14 23:02:49.060308] 2025-08-14T23:02:49.0720595Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:02:49.0726639Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_aot_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-14 23:02:49.060308] 2025-08-14T23:02:49.8285226Z 2025-08-14T23:02:49.8286116Z inductor/test_mmdecomp 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_mmdecomp_1.1_2ad8bbd2758fe707_.log 2025-08-14T23:02:49.8286766Z 2025-08-14T23:02:51.2688463Z Running inductor/test_control_flow 1/1 ... [2025-08-14 23:02:51.268517] 2025-08-14T23:02:51.2688923Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:02:51.2707715Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_control_flow.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-14 23:02:51.268517] 2025-08-14T23:02:53.8247211Z 2025-08-14T23:02:53.8248241Z dynamo/test_aot_autograd 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_aot_autograd_1.1_683e5a18f09681fa_.log 2025-08-14T23:02:53.8249028Z 2025-08-14T23:02:55.0198808Z Running inductor/test_torchinductor_strided_blocks 1/1 ... [2025-08-14 23:02:55.019196] 2025-08-14T23:02:55.0199320Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:02:55.0206026Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_torchinductor_strided_blocks.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-14 23:02:55.020379] 2025-08-14T23:02:59.1916065Z Running inductor/test_triton_cpu_backend 1/1 ... [2025-08-14 23:02:59.189846] 2025-08-14T23:02:59.1916552Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:02:59.1922682Z 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-14 23:02:59.189846] 2025-08-14T23:03:01.8142245Z 2025-08-14T23:03:01.8143286Z inductor/test_control_flow 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_control_flow_1.1_8e4605b210c065c8_.log 2025-08-14T23:03:01.8143951Z 2025-08-14T23:03:05.3012928Z 2025-08-14T23:03:05.3013932Z inductor/test_torchinductor_strided_blocks 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_torchinductor_strided_blocks_1.1_90d125d0ee060c47_.log 2025-08-14T23:03:05.3014735Z 2025-08-14T23:03:07.0555807Z Running inductor/test_flex_decoding 1/1 ... [2025-08-14 23:03:07.054942] 2025-08-14T23:03:07.0556272Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:03:07.0562287Z 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-14 23:03:07.056077] 2025-08-14T23:03:09.4253055Z 2025-08-14T23:03:09.4254082Z 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_c1e14fff2c2391a9_.log 2025-08-14T23:03:09.4254825Z 2025-08-14T23:03:10.7092638Z Running inductor/test_provenance_tracing 1/1 ... [2025-08-14 23:03:10.708942] 2025-08-14T23:03:10.7093137Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:03:10.7099557Z 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-14 23:03:10.709514] 2025-08-14T23:03:11.7588826Z 2025-08-14T23:03:11.7589760Z 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_50694ed8f35efebf_.log 2025-08-14T23:03:11.7590441Z 2025-08-14T23:03:14.8379383Z Running inductor/test_subgraph_choice 1/1 ... [2025-08-14 23:03:14.822877] 2025-08-14T23:03:14.8379845Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:03:14.8385980Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_subgraph_choice.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-14 23:03:14.822877] 2025-08-14T23:03:17.0595780Z Running inductor/test_multi_kernel 1/1 ... [2025-08-14 23:03:17.059269] 2025-08-14T23:03:17.0596268Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:03:17.0603142Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_multi_kernel.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-14 23:03:17.059845] 2025-08-14T23:03:21.1694142Z 2025-08-14T23:03:21.1695130Z 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_dbe3b22887a0940c_.log 2025-08-14T23:03:21.1695871Z 2025-08-14T23:03:25.0493563Z 2025-08-14T23:03:25.0494640Z inductor/test_subgraph_choice 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_subgraph_choice_1.1_8f7a5b26774246b9_.log 2025-08-14T23:03:25.0495355Z 2025-08-14T23:03:26.5449086Z Running export/test_retraceability 1/1 ... [2025-08-14 23:03:26.543024] 2025-08-14T23:03:26.5449568Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:03:26.5455577Z 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-14 23:03:26.543024] 2025-08-14T23:03:27.2227636Z 2025-08-14T23:03:27.2228766Z inductor/test_multi_kernel 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_multi_kernel_1.1_52d42af4417d7374_.log 2025-08-14T23:03:27.2229459Z 2025-08-14T23:03:30.2662254Z Running inductor/test_inductor_annotations 1/1 ... [2025-08-14 23:03:30.265519] 2025-08-14T23:03:30.2662744Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:03:30.2668852Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_inductor_annotations.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-14 23:03:30.265519] 2025-08-14T23:03:32.4693330Z Running inductor/test_remote_cache 1/1 ... [2025-08-14 23:03:32.469155] 2025-08-14T23:03:32.4693858Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:03:32.4700991Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_remote_cache.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-14 23:03:32.469897] 2025-08-14T23:03:36.9086902Z 2025-08-14T23:03:36.9088045Z export/test_retraceability 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_retraceability_1.1_d3fa8a1ef29c786a_.log 2025-08-14T23:03:37.0199371Z 2025-08-14T23:03:37.0199409Z 2025-08-14T23:03:37.0200314Z inductor/test_remote_cache 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_remote_cache_1.1_80581e6708dfd0d1_.log 2025-08-14T23:03:37.0200970Z 2025-08-14T23:03:40.7475870Z 2025-08-14T23:03:40.7477121Z inductor/test_inductor_annotations 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_inductor_annotations_1.1_e53e2a9da001fed5_.log 2025-08-14T23:03:40.7477868Z 2025-08-14T23:03:42.2740729Z Running inductor/test_fp8 1/1 ... [2025-08-14 23:03:42.273603] 2025-08-14T23:03:42.2749570Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:03:42.2750599Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_fp8.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-14 23:03:42.274641] 2025-08-14T23:03:42.3352643Z Running inductor/test_online_softmax 1/1 ... [2025-08-14 23:03:42.323990] 2025-08-14T23:03:42.3353115Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:03:42.3359469Z 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-14 23:03:42.323990] 2025-08-14T23:03:46.0799896Z Running export/test_export_training_ir_to_run_decomp 1/1 ... [2025-08-14 23:03:46.074613] 2025-08-14T23:03:46.0800421Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:03:46.0806794Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_export_training_ir_to_run_decomp.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-14 23:03:46.074613] 2025-08-14T23:03:52.4371230Z 2025-08-14T23:03:52.4372061Z inductor/test_fp8 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_fp8_1.1_6537f2cef58ed5db_.log 2025-08-14T23:03:52.4372663Z 2025-08-14T23:03:54.6552574Z 2025-08-14T23:03:54.6553629Z 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_348052bfcbd35532_.log 2025-08-14T23:03:54.6555372Z 2025-08-14T23:03:56.7522206Z 2025-08-14T23:03:56.7523334Z export/test_export_training_ir_to_run_decomp 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_export_training_ir_to_run_decomp_1.1_239e1e3078a7242b_.log 2025-08-14T23:03:56.7524142Z 2025-08-14T23:03:57.7598117Z Running inductor/test_b2b_gemm 1/1 ... [2025-08-14 23:03:57.752198] 2025-08-14T23:03:57.7598551Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:03:57.7604968Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_b2b_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-14 23:03:57.752198] 2025-08-14T23:03:59.8503561Z Running inductor/test_memory_planning 1/1 ... [2025-08-14 23:03:59.850170] 2025-08-14T23:03:59.8509677Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:03:59.8510871Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_memory_planning.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-14 23:03:59.850444] 2025-08-14T23:04:02.2317427Z Running dynamo/test_buffers_override 1/1 ... [2025-08-14 23:04:02.228450] 2025-08-14T23:04:02.2317899Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:04:02.2324163Z 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-14 23:04:02.228450] 2025-08-14T23:04:06.5814461Z 2025-08-14T23:04:06.5815780Z 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_e00a75cba53590e2_.log 2025-08-14T23:04:06.5816492Z 2025-08-14T23:04:08.1991840Z 2025-08-14T23:04:08.1993212Z inductor/test_b2b_gemm 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_b2b_gemm_1.1_e3af4059b5abd595_.log 2025-08-14T23:04:08.1994536Z 2025-08-14T23:04:10.3176361Z 2025-08-14T23:04:10.3177315Z inductor/test_memory_planning 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_memory_planning_1.1_93e57843b22ca94d_.log 2025-08-14T23:04:10.3178005Z 2025-08-14T23:04:11.8220630Z Running dynamo/test_fx_passes_pre_grad 1/1 ... [2025-08-14 23:04:11.821718] 2025-08-14T23:04:11.8221116Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:04:11.8227197Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_fx_passes_pre_grad.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-14 23:04:11.821718] 2025-08-14T23:04:13.4820639Z Running inductor/test_cpu_cpp_wrapper 1/1 ... [2025-08-14 23:04:13.479645] 2025-08-14T23:04:13.4821116Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:04:13.4827292Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cpu_cpp_wrapper.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-14 23:04:13.479645] 2025-08-14T23:04:15.5054118Z Running dynamo/test_inline_and_install 1/1 ... [2025-08-14 23:04:15.505073] 2025-08-14T23:04:15.5054603Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:04:15.5060575Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_inline_and_install.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-14 23:04:15.505073] 2025-08-14T23:04:16.3497396Z 2025-08-14T23:04:16.3498283Z dynamo/test_fx_passes_pre_grad 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_fx_passes_pre_grad_1.1_79e02b254bc09a27_.log 2025-08-14T23:04:16.3498976Z 2025-08-14T23:04:20.5927128Z 2025-08-14T23:04:20.5928175Z dynamo/test_inline_and_install 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_inline_and_install_1.1_8188451f9bc522b0_.log 2025-08-14T23:04:20.5928895Z 2025-08-14T23:04:21.9647681Z Running dynamo/test_skip_non_tensor 1/1 ... [2025-08-14 23:04:21.964442] 2025-08-14T23:04:21.9648126Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:04:21.9655906Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_skip_non_tensor.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-14 23:04:21.965037] 2025-08-14T23:04:24.5077177Z 2025-08-14T23:04:24.5078114Z inductor/test_cpu_cpp_wrapper 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cpu_cpp_wrapper_1.1_abe3ab515131d676_.log 2025-08-14T23:04:24.5078842Z 2025-08-14T23:04:25.8836650Z Running dynamo/test_recompiles 1/1 ... [2025-08-14 23:04:25.878879] 2025-08-14T23:04:25.8837100Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:04:25.8843908Z 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-14 23:04:25.878879] 2025-08-14T23:04:26.8396881Z 2025-08-14T23:04:26.8398013Z dynamo/test_skip_non_tensor 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_skip_non_tensor_1.1_4ce5e10b3353e7c8_.log 2025-08-14T23:04:26.8398692Z 2025-08-14T23:04:29.8850750Z Running export/test_export_with_inline_and_install 1/1 ... [2025-08-14 23:04:29.884623] 2025-08-14T23:04:29.8851264Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:04:29.8857511Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_export_with_inline_and_install.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-14 23:04:29.885202] 2025-08-14T23:04:30.6608604Z 2025-08-14T23:04:30.6609772Z dynamo/test_recompiles 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_recompiles_1.1_ee348ee8aa946804_.log 2025-08-14T23:04:30.6610430Z 2025-08-14T23:04:32.1134601Z Running inductor/test_op_dtype_prop 1/1 ... [2025-08-14 23:04:32.113264] 2025-08-14T23:04:32.1135653Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:04:32.1141230Z 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-14 23:04:32.113903] 2025-08-14T23:04:36.1063298Z Running dynamo/test_sdpa 1/1 ... [2025-08-14 23:04:36.090956] 2025-08-14T23:04:36.1063721Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:04:36.1071732Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_sdpa.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-14 23:04:36.106702] 2025-08-14T23:04:40.2107382Z 2025-08-14T23:04:40.2108714Z export/test_export_with_inline_and_install 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_export_with_inline_and_install_1.1_b57d65bb803621a0_.log 2025-08-14T23:04:40.2109559Z 2025-08-14T23:04:40.7887073Z 2025-08-14T23:04:40.7888151Z dynamo/test_sdpa 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_sdpa_1.1_8daf8c61f2228832_.log 2025-08-14T23:04:40.7888843Z 2025-08-14T23:04:43.5249127Z 2025-08-14T23:04:43.5250030Z 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_d96309aa93f8582f_.log 2025-08-14T23:04:43.5250716Z 2025-08-14T23:04:45.4014227Z Running dynamo/test_global 1/1 ... [2025-08-14 23:04:45.400403] 2025-08-14T23:04:45.4014680Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:04:45.4020556Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_global.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-14 23:04:45.400403] 2025-08-14T23:04:45.9385100Z Running inductor/test_fuzzer 1/1 ... [2025-08-14 23:04:45.938345] 2025-08-14T23:04:45.9385588Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:04:45.9392730Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_fuzzer.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-14 23:04:45.939125] 2025-08-14T23:04:48.8432619Z Running inductor/test_triton_heuristics 1/1 ... [2025-08-14 23:04:48.843008] 2025-08-14T23:04:48.8433101Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:04:48.8440150Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_triton_heuristics.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-14 23:04:48.843607] 2025-08-14T23:04:50.0769575Z 2025-08-14T23:04:55.6416827Z dynamo/test_global 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_global_1.1_10674de8b0b7f9af_.log 2025-08-14T23:04:55.6417434Z 2025-08-14T23:04:55.6417847Z Running inductor/test_compile_subprocess 1/1 ... [2025-08-14 23:04:55.641434] 2025-08-14T23:04:55.6418301Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:04:55.6423469Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_compile_subprocess.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-14 23:04:55.642101] 2025-08-14T23:04:56.3076394Z 2025-08-14T23:04:56.3077971Z inductor/test_fuzzer 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_fuzzer_1.1_652f8f336212d1e6_.log 2025-08-14T23:04:56.3079110Z 2025-08-14T23:04:59.0912680Z 2025-08-14T23:04:59.0913739Z inductor/test_triton_heuristics 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_triton_heuristics_1.1_e20c6f4727dab7f5_.log 2025-08-14T23:04:59.0914448Z 2025-08-14T23:05:01.5975267Z Running inductor/test_helion_kernels 1/1 ... [2025-08-14 23:05:01.596966] 2025-08-14T23:05:01.5975718Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:05:01.5982925Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_helion_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-14 23:05:01.596966] 2025-08-14T23:05:04.5967904Z Running inductor/test_loop_ordering 1/1 ... [2025-08-14 23:05:04.596350] 2025-08-14T23:05:04.5968401Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:05:04.5974732Z 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-14 23:05:04.596940] 2025-08-14T23:05:05.8141132Z 2025-08-14T23:05:05.8142208Z inductor/test_compile_subprocess 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_compile_subprocess_1.1_90dc4d7207129619_.log 2025-08-14T23:05:05.8142931Z 2025-08-14T23:05:11.0344124Z Running inductor/test_fxir_backend 1/1 ... [2025-08-14 23:05:11.034189] 2025-08-14T23:05:11.0344606Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:05:11.0351133Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_fxir_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-14 23:05:11.034768] 2025-08-14T23:05:11.9190538Z 2025-08-14T23:05:11.9191641Z inductor/test_helion_kernels 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_helion_kernels_1.1_f3e7ade28c34b806_.log 2025-08-14T23:05:11.9192327Z 2025-08-14T23:05:15.1535870Z 2025-08-14T23:05:15.1536805Z 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_bc1db678114bb6a0_.log 2025-08-14T23:05:15.1537492Z 2025-08-14T23:05:17.4331326Z Running dynamo/test_install_free_tensors 1/1 ... [2025-08-14 23:05:17.430205] 2025-08-14T23:05:17.4331812Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:05:17.4339159Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_install_free_tensors.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-14 23:05:17.430205] 2025-08-14T23:05:20.5656917Z Running export/test_cpp_serdes 1/1 ... [2025-08-14 23:05:20.561580] 2025-08-14T23:05:20.5657378Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:05:20.5663424Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_cpp_serdes.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-14 23:05:20.561580] 2025-08-14T23:05:21.0646756Z 2025-08-14T23:05:21.0648028Z inductor/test_fxir_backend 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_fxir_backend_1.1_22a982944325f560_.log 2025-08-14T23:05:21.0648756Z 2025-08-14T23:05:22.1039302Z 2025-08-14T23:05:22.1040527Z dynamo/test_install_free_tensors 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_install_free_tensors_1.1_2a6d20e5dff88716_.log 2025-08-14T23:05:22.1041419Z 2025-08-14T23:05:26.2594490Z Running inductor/test_needs_exact_strides 1/1 ... [2025-08-14 23:05:26.256578] 2025-08-14T23:05:26.2594990Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:05:26.2600915Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_needs_exact_strides.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-14 23:05:26.256578] 2025-08-14T23:05:27.3502496Z Running inductor/test_compile 1/1 ... [2025-08-14 23:05:27.349897] 2025-08-14T23:05:27.3502955Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:05:27.3509114Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/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-14 23:05:27.350506] 2025-08-14T23:05:31.1353715Z 2025-08-14T23:05:31.1354656Z export/test_cpp_serdes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_cpp_serdes_1.1_c3f179e30ac8bdce_.log 2025-08-14T23:05:31.1355295Z 2025-08-14T23:05:36.3188164Z Running dynamo/test_unittest 1/1 ... [2025-08-14 23:05:36.318370] 2025-08-14T23:05:36.3188616Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:05:36.3194985Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_unittest.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-14 23:05:36.318979] 2025-08-14T23:05:36.6134377Z 2025-08-14T23:05:36.6135610Z inductor/test_needs_exact_strides 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_needs_exact_strides_1.1_81ca6a1391a17550_.log 2025-08-14T23:05:36.6136361Z 2025-08-14T23:05:38.7249952Z 2025-08-14T23:05:38.7251191Z inductor/test_compile 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_compile_1.1_e526cc70b22d246b_.log 2025-08-14T23:05:38.7251932Z 2025-08-14T23:05:41.0025034Z 2025-08-14T23:05:41.0025924Z dynamo/test_unittest 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_unittest_1.1_92a4021efc5670f3_.log 2025-08-14T23:05:41.0026551Z 2025-08-14T23:05:41.8613303Z Running inductor/test_torchinductor_codegen_config_overrides 1/1 ... [2025-08-14 23:05:41.854475] 2025-08-14T23:05:41.8613876Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:05:41.8621429Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_torchinductor_codegen_config_overrides.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-14 23:05:41.854475] 2025-08-14T23:05:44.1045434Z Running dynamo/test_modes 1/1 ... [2025-08-14 23:05:44.104345] 2025-08-14T23:05:44.1045923Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:05:44.1052399Z 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-14 23:05:44.104855] 2025-08-14T23:05:46.2278280Z Running export/test_upgrader 1/1 ... [2025-08-14 23:05:46.226611] 2025-08-14T23:05:46.2278755Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:05:46.2284977Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_upgrader.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-14 23:05:46.226611] 2025-08-14T23:05:50.7338997Z 2025-08-14T23:05:50.7340042Z export/test_upgrader 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_upgrader_1.1_499b5bafe96de703_.log 2025-08-14T23:05:50.7340682Z 2025-08-14T23:05:52.1930990Z 2025-08-14T23:05:52.1933094Z inductor/test_torchinductor_codegen_config_overrides 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_torchinductor_codegen_config_overrides_1.1_fff8dec001424113_.log 2025-08-14T23:05:52.1933994Z 2025-08-14T23:05:54.5157420Z 2025-08-14T23:05:54.5158913Z dynamo/test_modes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_modes_1.1_09b81501c279f3e2_.log 2025-08-14T23:05:54.5159528Z 2025-08-14T23:05:56.0510808Z Running dynamo/test_backward_higher_order_ops 1/1 ... [2025-08-14 23:05:56.049977] 2025-08-14T23:05:56.0517103Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:05:56.0518214Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_backward_higher_order_ops.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-14 23:05:56.049977] 2025-08-14T23:05:57.3932852Z Running inductor/test_auto_functionalize 1/1 ... [2025-08-14 23:05:57.392792] 2025-08-14T23:05:57.3933350Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:05:57.3940401Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_auto_functionalize.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-14 23:05:57.393843] 2025-08-14T23:05:59.6491938Z Running dynamo/test_model_output 1/1 ... [2025-08-14 23:05:59.641034] 2025-08-14T23:05:59.6492428Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:05:59.6498588Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_model_output.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-14 23:05:59.641034] 2025-08-14T23:06:01.0267884Z 2025-08-14T23:06:01.0268972Z dynamo/test_backward_higher_order_ops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_backward_higher_order_ops_1.1_ebdb98f2ef482db8_.log 2025-08-14T23:06:01.0269715Z 2025-08-14T23:06:02.2189163Z 2025-08-14T23:06:02.2190298Z inductor/test_auto_functionalize 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_auto_functionalize_1.1_026c55d6725ba50f_.log 2025-08-14T23:06:02.2191019Z 2025-08-14T23:06:04.8362141Z 2025-08-14T23:06:04.8363177Z dynamo/test_model_output 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_model_output_1.1_de8a3c8cdda6d17d_.log 2025-08-14T23:06:04.8363855Z 2025-08-14T23:06:06.3900085Z Running dynamo/test_profiler 1/1 ... [2025-08-14 23:06:06.389668] 2025-08-14T23:06:06.3900526Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:06:06.3907894Z 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-14 23:06:06.390262] 2025-08-14T23:06:07.4989053Z Running dynamo/test_debug_utils 1/1 ... [2025-08-14 23:06:07.498453] 2025-08-14T23:06:07.4989515Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:06:07.4996751Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_debug_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-14 23:06:07.499499] 2025-08-14T23:06:10.0692715Z Running dynamo/test_package 1/1 ... [2025-08-14 23:06:10.068942] 2025-08-14T23:06:10.0693150Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:06:10.0699556Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_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-14 23:06:10.069572] 2025-08-14T23:06:11.0974757Z 2025-08-14T23:06:11.0976047Z dynamo/test_profiler 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_profiler_1.1_c83ae4f068be1781_.log 2025-08-14T23:06:11.0976679Z 2025-08-14T23:06:12.6520601Z 2025-08-14T23:06:12.6522192Z dynamo/test_debug_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_debug_utils_1.1_b8b9d8143737e508_.log 2025-08-14T23:06:12.6522841Z 2025-08-14T23:06:16.3190112Z Running dynamo/test_bytecode_utils 1/1 ... [2025-08-14 23:06:16.313709] 2025-08-14T23:06:16.3190585Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:06:16.3191612Z 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-14 23:06:16.313709] 2025-08-14T23:06:17.9753300Z Running inductor/test_mps_basic 1/1 ... [2025-08-14 23:06:17.975155] 2025-08-14T23:06:17.9753824Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:06:17.9760544Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_mps_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-14 23:06:17.975899] 2025-08-14T23:06:20.4865248Z 2025-08-14T23:06:20.4866239Z dynamo/test_package 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_package_1.1_5dd210ce227fde98_.log 2025-08-14T23:06:20.4866856Z 2025-08-14T23:06:21.1531784Z 2025-08-14T23:06:21.1532843Z 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_68be9b01ca759a9e_.log 2025-08-14T23:06:21.1533552Z 2025-08-14T23:06:25.9910305Z Running inductor/test_efficient_conv_bn_eval 1/1 ... [2025-08-14 23:06:25.982865] 2025-08-14T23:06:25.9910833Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:06:25.9916893Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_efficient_conv_bn_eval.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-14 23:06:25.982865] 2025-08-14T23:06:26.3273253Z Running dynamo/test_guard_manager 1/1 ... [2025-08-14 23:06:26.326180] 2025-08-14T23:06:26.3273700Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:06:26.3279963Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_guard_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-14 23:06:26.326180] 2025-08-14T23:06:28.4832065Z 2025-08-14T23:06:28.4833229Z inductor/test_mps_basic 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_mps_basic_1.1_c9fe9c88afc0d202_.log 2025-08-14T23:06:28.4833887Z 2025-08-14T23:06:30.7475888Z 2025-08-14T23:06:30.7476998Z dynamo/test_guard_manager 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_guard_manager_1.1_cd90b6ff46b6e97e_.log 2025-08-14T23:06:30.7477733Z 2025-08-14T23:06:33.6383555Z Running dynamo/test_recompile_ux 1/1 ... [2025-08-14 23:06:33.637903] 2025-08-14T23:06:33.6384017Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:06:33.6391100Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_recompile_ux.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-14 23:06:33.638481] 2025-08-14T23:06:35.9906628Z Running test_functionalization_of_rng_ops 1/1 ... [2025-08-14 23:06:35.988501] 2025-08-14T23:06:35.9907117Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:06:35.9913498Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_functionalization_of_rng_ops.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-14 23:06:35.988501] 2025-08-14T23:06:36.3579894Z 2025-08-14T23:06:36.3581053Z inductor/test_efficient_conv_bn_eval 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_efficient_conv_bn_eval_1.1_2185566697cfa8b6_.log 2025-08-14T23:06:36.3581785Z 2025-08-14T23:06:38.3819655Z 2025-08-14T23:06:38.3820610Z dynamo/test_recompile_ux 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_recompile_ux_1.1_760085ca48f41c16_.log 2025-08-14T23:06:38.3821292Z 2025-08-14T23:06:41.1889612Z 2025-08-14T23:06:41.1890599Z test_functionalization_of_rng_ops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_functionalization_of_rng_ops_1.1_f58c70acbdda39ac_.log 2025-08-14T23:06:41.1891314Z 2025-08-14T23:06:41.5112836Z Running dynamo/test_reorder_logs 1/1 ... [2025-08-14 23:06:41.510825] 2025-08-14T23:06:41.5113283Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:06:41.5119850Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_reorder_logs.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-14 23:06:41.511400] 2025-08-14T23:06:43.5948198Z Running dynamo/test_python_autograd 1/1 ... [2025-08-14 23:06:43.592059] 2025-08-14T23:06:43.5948697Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:06:43.5954905Z 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-14 23:06:43.592059] 2025-08-14T23:06:46.1569536Z 2025-08-14T23:06:46.1570800Z dynamo/test_reorder_logs 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_reorder_logs_1.1_8387947fd968837b_.log 2025-08-14T23:06:46.1571452Z 2025-08-14T23:06:46.3952251Z Running xpu/test_gemm 1/1 ... [2025-08-14 23:06:46.395032] 2025-08-14T23:06:46.3952715Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:06:46.3959204Z 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-14 23:06:46.395734] 2025-08-14T23:06:48.3119509Z 2025-08-14T23:06:48.3121804Z 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_309f0ab0efe4889d_.log 2025-08-14T23:06:48.3122498Z 2025-08-14T23:06:51.6159517Z Running test_decomp 9/17 ... [2025-08-14 23:06:51.615506] 2025-08-14T23:06:51.6159968Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:06:51.6166437Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'not serial', '--shard-id=9', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:06:51.616076] 2025-08-14T23:06:51.6258805Z 2025-08-14T23:06:51.6261307Z xpu/test_gemm 1/1 was successful, full logs can be found in artifacts with path test/test-reports/xpu.test_gemm_1.1_6315fcdbc389de7f_.log 2025-08-14T23:06:51.6262010Z Running 0 items in this shard: 2025-08-14T23:06:51.6262201Z 2025-08-14T23:06:53.5819209Z Running test_decomp 16/17 ... [2025-08-14 23:06:53.581304] 2025-08-14T23:06:53.5825694Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:06:53.5826830Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'not serial', '--shard-id=16', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:06:53.582453] 2025-08-14T23:06:56.9293020Z Running test_decomp 17/17 ... [2025-08-14 23:06:56.929138] 2025-08-14T23:06:56.9293446Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:06:56.9299638Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'not serial', '--shard-id=17', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:06:56.929138] 2025-08-14T23:14:58.3309394Z 2025-08-14T23:14:58.3310605Z test_decomp 17/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_17.17_f11c0a0153e823d3_.log 2025-08-14T23:14:58.3583713Z Running 535 items in this shard: test/test_decomp.py::TestDecompCPU::test_comprehensive_H_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive___getitem___cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive___radd___cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive___radd___cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmatmul___cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive___rsub___cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive__segment_reduce_offsets_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive__segment_reduce_offsets_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_acos_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addbmm_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_addcmul_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addcmul_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_decomposed_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_all_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_amax_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_angle_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_angle_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_argmin_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_argmin_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_partial_views_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_partial_views_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_scatter_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_scatter_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_asin_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan2_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan2_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_1d_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_3d_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bfloat16_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bincount_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_or_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_block_diag_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_bool_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_bucketize_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cat_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_ceil_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ceil_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_chalf_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_char_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_max_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_min_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_min_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_clone_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_column_stack_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_combinations_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_combinations_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_constant_pad_nd_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_contiguous_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_copysign_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_corrcoef_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cos_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_cos_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cos_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cov_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_cross_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummax_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummax_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummax_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumprod_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumsum_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumulative_trapezoid_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumulative_trapezoid_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_deg2rad_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagflat_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_scatter_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_digamma_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_trunc_rounding_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_trunc_rounding_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_double_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_dsplit_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_dstack_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_permuted_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_strided_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_eq_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_as_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_as_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_expm1_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_expm1_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fft_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftshift_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfftn_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fill_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_flatten_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_flatten_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fliplr_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_flipud_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_floor_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_floor_divide_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_frexp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_gather_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_gradient_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_grid_sampler_2d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_gt_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_half_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_half_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_heaviside_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_hsplit_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_i0_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_igamma_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_put_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amin_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amin_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_inner_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isclose_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_isinf_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isposinf_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_isreal_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_2inputs_2outputs_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_4inputs_with_extra_args_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_unary_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_kron_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_kron_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_kthvalue_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ldexp_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_lgamma_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_lgamma_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cholesky_ex_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_eig_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_eigh_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lu_factor_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_norm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_norm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_multi_dot_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_multi_dot_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_pinv_singular_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_slogdet_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vander_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_log10_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_log1p_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log2_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logaddexp2_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logcumsumexp_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_and_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_not_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_not_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_or_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_xor_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logit_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_tensor_overload_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_long_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_lu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_lu_unpack_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_lu_unpack_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mH_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_mT_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amax_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_argmax_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumprod_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumprod_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumsum_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_mean_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_scatter_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_std_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_matmul_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_matmul_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_pool2d_with_indices_backward_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_variadic_tensors_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_binary_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_with_dim_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_with_dim_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_minimum_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mm_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_multinomial_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_multinomial_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_3_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_5_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nanquantile_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nansum_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_nansum_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_dropout_backward_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_layer_norm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ne_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_strided_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_ones_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_avg_pool3d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_avg_pool3d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_binary_cross_entropy_with_logits_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv1d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv3d_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose1d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_cosine_embedding_loss_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_dropout_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_elu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_embedding_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_feature_alpha_dropout_with_train_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_feature_alpha_dropout_without_train_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_fractional_max_pool3d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardswish_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_instance_norm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_linear_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_kl_div_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_linear_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool2d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool3d_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool1d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool3d_grad_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_multi_head_attention_forward_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_negative_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_unshuffle_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_poisson_nll_loss_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_smooth_l1_loss_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_soft_margin_loss_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_soft_margin_loss_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softmin_with_dtype_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softsign_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softsign_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_threshold_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_unfold_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_upsample_bilinear_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_upsample_nearest_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_inf_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_normal_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_outer_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_outer_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_pinverse_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_0_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_4_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_rand_like_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_randint_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_randint_like_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_randint_like_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_randint_like_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ravel_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_ravel_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_interleave_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_as_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_as_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize__cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsqrt_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scalar_tensor_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scalar_tensor_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_add_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_sum_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_scatter_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_short_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sigmoid_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_general_cosine_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sin_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sin_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sin_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinc_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinc_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinc_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_scatter_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_j0_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_j1_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_y1_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_y1_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_t_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_erfcx_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_hermite_polynomial_he_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_hermite_polynomial_he_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i0e_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i0e_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_laguerre_polynomial_l_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_legendre_polynomial_p_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i1_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtr_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtri_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_scaled_modified_bessel_k0_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_scaled_modified_bessel_k1_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_scaled_modified_bessel_k1_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_scaled_modified_bessel_k1_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_xlog1py_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_xlog1py_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_list_args_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_list_args_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_multiple_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_stack_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_unbiased_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_unbiased_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_stft_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sub_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sub_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tan_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tanh_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tile_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_torch__scaled_mm_cpu_float8_e5m2fnuz, test/test_decomp.py::TestDecompCPU::test_comprehensive_torch_ops_aten__safe_softmax_default_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_triangular_solve_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_true_divide_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_uniform_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_consecutive_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unravel_index_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_chunk_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_split_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_split_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_split_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_unbiased_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_unbiased_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_unbiased_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_vdot_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_vdot_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_vstack_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_like_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick__batch_norm_with_update_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick__chunk_cat_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_put_accumulate_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_abs_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_acosh_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_add_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_add_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_addcmul_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_addmm_decomposed_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_all_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_aminmax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_any_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_asinh_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_atan_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_atanh_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_baddbmm_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_or_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_cat_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_clamp_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_clamp_min_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_complex_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_conj_physical_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward__softmax_backward_data_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_addr_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_logaddexp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_nansum_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_split_with_sizes_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_zero__cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_cos_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_count_nonzero_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_count_nonzero_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_count_nonzero_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_cumprod_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_deg2rad_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_diag_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_scatter_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_scatter_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_digamma_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_dot_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_empty_like_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_empty_like_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_eq_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_exp_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_exp_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_expand_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_expm1_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_eye_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_eye_cpu_float8_e4m3fnuz, test/test_decomp.py::TestDecompCPU::test_quick_eye_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft2_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft2_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfftn_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfftn_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfftn_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_floor_divide_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_fmax_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_gcd_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_heaviside_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_i0_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_index_add_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_index_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_index_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_index_fill_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_index_fill_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_index_select_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_index_select_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_isin_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_isin_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_isnan_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_isnan_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_isnan_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_isnan_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_isposinf_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_le_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_linalg_cross_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_linalg_diagonal_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_linalg_vector_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_linspace_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_log10_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_log1p_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_log2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_log_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_logical_and_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_logical_not_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_lt_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_masked_fill_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_maximum_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_list_of_tensors_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_variadic_tensors_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_minimum_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_mul_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_mul_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_mv_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_mv_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_1_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_native_dropout_backward_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_native_dropout_backward_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_ne_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_ne_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_neg_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_strided_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_strided_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_new_full_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_new_full_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_new_full_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_elu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardswish_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_huber_loss_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_logsigmoid_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_pad_constant_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu6_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_norm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_ones_like_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_ones_like_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_permute_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_pow_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_reciprocal_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_remainder_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_remainder_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_remainder_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_repeat_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_repeat_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_round_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_round_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_select_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_select_scatter_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_sigmoid_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_sign_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_sinh_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_slice_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_slice_scatter_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_special_entr_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_special_erfcx_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_special_i0e_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_special_i1e_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtri_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_split_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_split_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_multiple_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_stack_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_stack_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_t_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_t_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_t_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_t_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_tan_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_tan_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_tanh_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_tanh_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_transpose_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_transpose_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_transpose_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_tril_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_tril_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_trunc_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_unbind_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_unfold_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_var_mean_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_vdot_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_view_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_view_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_view_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_xlogy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_xlogy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_zero__cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_zero__cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_zeros_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_zeros_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_zeros_cpu_int8, test/test_decomp.py::DecompOneOffTestsCPU::test_elu_backward_cpu 2025-08-14T23:14:58.3873631Z 2025-08-14T23:15:04.2456532Z Running torch_np/test_basic 1/1 ... [2025-08-14 23:15:04.232585] 2025-08-14T23:15:04.2456978Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:15:04.2463506Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_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-14 23:15:04.232585] 2025-08-14T23:15:11.6826541Z 2025-08-14T23:15:11.6827723Z torch_np/test_basic 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_basic_1.1_458f5d112454e898_.log 2025-08-14T23:15:11.6952511Z Running 453 items in this shard: test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func0, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func1, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func10, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func11, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func12, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func13, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func14, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func15, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func16, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func17, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func18, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func19, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func2, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func20, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func21, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func22, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func23, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func24, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func25, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func26, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func27, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func28, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func29, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func3, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func30, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func31, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func32, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func33, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func34, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func35, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func36, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func37, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func38, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func39, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func4, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func40, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func41, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func42, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func43, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func44, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func45, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func46, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func47, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func48, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func49, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func5, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func50, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func51, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func52, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func53, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func54, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func55, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func56, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func57, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func58, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func59, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func6, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func60, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func61, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func62, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func63, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func64, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func65, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func66, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func67, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func68, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func69, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func7, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func70, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func71, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func72, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func73, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func74, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func8, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func9, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func0, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func1, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func10, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func11, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func12, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func13, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func14, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func15, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func16, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func17, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func18, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func19, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func2, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func20, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func21, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func22, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func23, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func24, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func25, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func26, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func27, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func28, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func29, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func3, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func30, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func31, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func32, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func33, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func34, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func35, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func36, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func37, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func38, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func39, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func4, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func40, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func41, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func42, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func43, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func44, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func45, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func46, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func47, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func48, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func49, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func5, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func50, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func51, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func52, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func53, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func54, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func55, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func56, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func57, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func58, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func59, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func6, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func60, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func61, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func62, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func63, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func64, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func65, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func66, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func67, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func68, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func69, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func7, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func70, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func71, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func72, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func73, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func74, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func8, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func9, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func0, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func1, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func10, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func11, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func12, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func13, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func14, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func15, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func16, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func17, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func18, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func19, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func2, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func20, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func21, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func22, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func23, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func24, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func25, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func26, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func27, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func28, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func29, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func3, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func30, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func31, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func32, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func33, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func34, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func35, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func36, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func37, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func38, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func39, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func4, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func40, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func41, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func42, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func43, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func44, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func45, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func46, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func47, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func48, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func49, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func5, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func50, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func51, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func52, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func53, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func54, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func55, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func56, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func57, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func58, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func59, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func6, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func60, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func61, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func62, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func63, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func64, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func65, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func66, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func67, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func68, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func69, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func7, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func70, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func71, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func72, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func73, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func74, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func8, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func9, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func0_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func0_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func0_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func0_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func10_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func10_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func10_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func10_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func1_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func1_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func1_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func1_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func2_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func2_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func2_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func2_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func3_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func3_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func3_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func3_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func4_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func4_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func4_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func4_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func5_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func5_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func5_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func5_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func6_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func6_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func6_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func6_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func7_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func7_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func7_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func7_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func8_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func8_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func8_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func8_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func9_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func9_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func9_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func9_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func0_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func0_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func0_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func0_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func10_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func10_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func10_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func10_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func1_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func1_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func1_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func1_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func2_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func2_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func2_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func2_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func3_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func3_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func3_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func3_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func4_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func4_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func4_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func4_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func5_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func5_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func5_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func5_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func6_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func6_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func6_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func6_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func7_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func7_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func7_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func7_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func8_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func8_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func8_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func8_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func9_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func9_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func9_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func9_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func0_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func0_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func0_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func0_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func10_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func10_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func10_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func10_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func1_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func1_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func1_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func1_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func2_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func2_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func2_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func2_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func3_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func3_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func3_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func3_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func4_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func4_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func4_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func4_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func5_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func5_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func5_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func5_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func6_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func6_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func6_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func6_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func7_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func7_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func7_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func7_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func8_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func8_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func8_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func8_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func9_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func9_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func9_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func9_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxesTuple::test_andtuple_array_func0_axes0, test/torch_np/test_basic.py::TestOneArrAndAxesTuple::test_andtuple_array_func0_axes1, test/torch_np/test_basic.py::TestOneArrAndAxesTuple::test_andtuple_array_func0_axes2, test/torch_np/test_basic.py::TestOneArrAndAxesTuple::test_andtuple_list_func0_axes0, test/torch_np/test_basic.py::TestOneArrAndAxesTuple::test_andtuple_list_func0_axes1, test/torch_np/test_basic.py::TestOneArrAndAxesTuple::test_andtuple_list_func0_axes2, test/torch_np/test_basic.py::TestOneArrAndAxesTuple::test_andtuple_tensor_func0_axes0, test/torch_np/test_basic.py::TestOneArrAndAxesTuple::test_andtuple_tensor_func0_axes1, test/torch_np/test_basic.py::TestOneArrAndAxesTuple::test_andtuple_tensor_func0_axes2, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_array_func0, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_array_func1, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_array_func2, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_array_func3, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_array_func4, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_list_func0, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_list_func1, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_list_func2, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_list_func3, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_list_func4, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_tensor_func0, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_tensor_func1, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_tensor_func2, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_tensor_func3, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_tensor_func4, test/torch_np/test_basic.py::TestOneArrToScalar::test_toscalar_array_func0_np_func0, test/torch_np/test_basic.py::TestOneArrToScalar::test_toscalar_array_func1_np_func1, test/torch_np/test_basic.py::TestOneArrToScalar::test_toscalar_array_func2_np_func2, test/torch_np/test_basic.py::TestOneArrToScalar::test_toscalar_list_func0_np_func0, test/torch_np/test_basic.py::TestOneArrToScalar::test_toscalar_list_func1_np_func1, test/torch_np/test_basic.py::TestOneArrToScalar::test_toscalar_list_func2_np_func2, test/torch_np/test_basic.py::TestOneArrToScalar::test_toscalar_tensor_func0_np_func0, test/torch_np/test_basic.py::TestOneArrToScalar::test_toscalar_tensor_func1_np_func1, test/torch_np/test_basic.py::TestOneArrToScalar::test_toscalar_tensor_func2_np_func2, test/torch_np/test_basic.py::TestShapeLikeToArray::test_shape_func0, test/torch_np/test_basic.py::TestShapeLikeToArray::test_shape_func1, test/torch_np/test_basic.py::TestShapeLikeToArray::test_shape_func2, test/torch_np/test_basic.py::TestShapeLikeToArray::test_shape_func3, test/torch_np/test_basic.py::TestSequenceOfArrays::test_several_func0, test/torch_np/test_basic.py::TestSequenceOfArrays::test_several_func1, test/torch_np/test_basic.py::TestSequenceOfArrays::test_several_func2, test/torch_np/test_basic.py::TestSequenceOfArrays::test_several_func3, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_array_func0, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_array_func1, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_array_func2, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_array_func3, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_list_func0, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_list_func1, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_list_func2, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_list_func3, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_tensor_func0, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_tensor_func1, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_tensor_func2, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_tensor_func3, test/torch_np/test_basic.py::TestSequenceOfArraysToSingle::test_several_func0, test/torch_np/test_basic.py::TestSequenceOfArraysToSingle::test_several_func1, test/torch_np/test_basic.py::TestSequenceOfArraysToSingle::test_several_func2, test/torch_np/test_basic.py::TestSequenceOfArraysToSingle::test_several_func3, test/torch_np/test_basic.py::TestSequenceOfArraysToSingle::test_several_func4, test/torch_np/test_basic.py::TestSequenceOfArraysToSingle::test_several_func5, test/torch_np/test_basic.py::TestSequenceOfArraysToSingle::test_several_func6, test/torch_np/test_basic.py::TestArrayToSequence::test_asarray_array_func0, test/torch_np/test_basic.py::TestArrayToSequence::test_asarray_array_func1, test/torch_np/test_basic.py::TestArrayToSequence::test_asarray_list_func0, test/torch_np/test_basic.py::TestArrayToSequence::test_asarray_list_func1, test/torch_np/test_basic.py::TestArrayToSequence::test_asarray_tensor_func0, test/torch_np/test_basic.py::TestArrayToSequence::test_asarray_tensor_func1, test/torch_np/test_basic.py::TestPythonArgsToArray::test_argstoarray_simple_func0_args0, test/torch_np/test_basic.py::TestPythonArgsToArray::test_argstoarray_simple_func1_args1, test/torch_np/test_basic.py::TestPythonArgsToArray::test_argstoarray_simple_func2_args2, test/torch_np/test_basic.py::TestPythonArgsToArray::test_argstoarray_simple_func3_args3, test/torch_np/test_basic.py::TestPythonArgsToArray::test_argstoarray_simple_func4_args4, test/torch_np/test_basic.py::TestPythonArgsToArray::test_argstoarray_simple_func5_args5, test/torch_np/test_basic.py::TestPythonArgsToArray::test_argstoarray_simple_func6_args6, test/torch_np/test_basic.py::TestPythonArgsToArray::test_argstoarray_simple_func7_args7, test/torch_np/test_basic.py::TestPythonArgsToArray::test_argstoarray_simple_func8_args8, test/torch_np/test_basic.py::TestPythonArgsToArray::test_argstoarray_simple_func9_args9, test/torch_np/test_basic.py::TestNormalizations::test_too_few_args_positional, test/torch_np/test_basic.py::TestNormalizations::test_unknown_args, test/torch_np/test_basic.py::TestNormalizations::test_unknown_args_with_defaults, test/torch_np/test_basic.py::TestCopyTo::test_copyto_basic, test/torch_np/test_basic.py::TestCopyTo::test_copyto_typecast, test/torch_np/test_basic.py::TestCopyTo::test_copytobcast, test/torch_np/test_basic.py::TestDivmod::test_divmod_no_out, test/torch_np/test_basic.py::TestDivmod::test_divmod_out, test/torch_np/test_basic.py::TestDivmod::test_divmod_out_both_pos_and_kw, test/torch_np/test_basic.py::TestDivmod::test_divmod_out_list, test/torch_np/test_basic.py::TestDivmod::test_divmod_pos_only, test/torch_np/test_basic.py::TestSmokeNotImpl::test_nimpl_basic, test/torch_np/test_basic.py::TestDefaultDtype::test_defaultdtype_defaults, test/torch_np/test_basic.py::TestDefaultDtype::test_set_default_float_dt_float32, test/torch_np/test_basic.py::TestDefaultDtype::test_set_default_float_dt_pytorch, test/torch_np/test_basic.py::TestDefaultDtype::test_set_default_float_float32, test/torch_np/test_basic.py::TestExport::test_exported_objects, test/torch_np/test_basic.py::TestCtorNested::test_arrays_in_lists, test/torch_np/test_basic.py::TestMisc::test_f16_on_cuda, test/torch_np/test_basic.py::TestMisc::test_ndarrays_to_tensors 2025-08-14T23:15:11.7069657Z 2025-08-14T23:15:17.4029793Z Running lazy/test_bindings 1/1 ... [2025-08-14 23:15:17.402420] 2025-08-14T23:15:17.4030317Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:15:17.4036557Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'lazy/test_bindings.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-14 23:15:17.402994] 2025-08-14T23:15:22.8449721Z 2025-08-14T23:15:22.8450666Z lazy/test_bindings 1/1 was successful, full logs can be found in artifacts with path test/test-reports/lazy.test_bindings_1.1_27ed60c8002f6cc8_.log 2025-08-14T23:15:22.8451568Z Running 1 items in this shard: test/lazy/test_bindings.py::test_metrics 2025-08-14T23:15:22.8451896Z 2025-08-14T23:15:28.6293567Z Running test_legacy_vmap 1/1 ... [2025-08-14 23:15:28.629079] 2025-08-14T23:15:28.6299736Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:15:28.6300920Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_legacy_vmap.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-14 23:15:28.629700] 2025-08-14T23:15:36.9143264Z 2025-08-14T23:15:36.9144480Z test_legacy_vmap 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_legacy_vmap_1.1_575582fc63c9362b_.log 2025-08-14T23:15:36.9180554Z Running 124 items in this shard: test/test_legacy_vmap.py::TestVmapAPILegacy::test_accepts_nested_inputs, test/test_legacy_vmap.py::TestVmapAPILegacy::test_backward_unsupported_interaction, test/test_legacy_vmap.py::TestVmapAPILegacy::test_batched_gradient_basic, test/test_legacy_vmap.py::TestVmapAPILegacy::test_constant_function, test/test_legacy_vmap.py::TestVmapAPILegacy::test_different_map_dim_size_raises, test/test_legacy_vmap.py::TestVmapAPILegacy::test_fallback_atan2, test/test_legacy_vmap.py::TestVmapAPILegacy::test_fallback_does_not_warn_by_default, test/test_legacy_vmap.py::TestVmapAPILegacy::test_fallback_masked_fill, test/test_legacy_vmap.py::TestVmapAPILegacy::test_fallback_multiple_returns, test/test_legacy_vmap.py::TestVmapAPILegacy::test_fallback_warns_when_warnings_are_enabled, test/test_legacy_vmap.py::TestVmapAPILegacy::test_fallback_with_undefined_grad, test/test_legacy_vmap.py::TestVmapAPILegacy::test_fallback_zero_dim, test/test_legacy_vmap.py::TestVmapAPILegacy::test_func_with_no_inputs, test/test_legacy_vmap.py::TestVmapAPILegacy::test_functools_partial, test/test_legacy_vmap.py::TestVmapAPILegacy::test_grad_unsupported_interaction, test/test_legacy_vmap.py::TestVmapAPILegacy::test_in_dim_not_in_tensor_err_msg, test/test_legacy_vmap.py::TestVmapAPILegacy::test_in_dims_wrong_type_err_msg, test/test_legacy_vmap.py::TestVmapAPILegacy::test_inplace_fallback_nary_different_levels, test/test_legacy_vmap.py::TestVmapAPILegacy::test_inplace_fallback_nary_same_levels, test/test_legacy_vmap.py::TestVmapAPILegacy::test_inplace_fallback_unary, test/test_legacy_vmap.py::TestVmapAPILegacy::test_integer_in_dim_but_not_tensor_input_err_msg, test/test_legacy_vmap.py::TestVmapAPILegacy::test_multiple_inputs, test/test_legacy_vmap.py::TestVmapAPILegacy::test_multiple_out_dims, test/test_legacy_vmap.py::TestVmapAPILegacy::test_multiple_outputs, test/test_legacy_vmap.py::TestVmapAPILegacy::test_multiple_outputs_error_cases, test/test_legacy_vmap.py::TestVmapAPILegacy::test_nested_non_default_in_dims, test/test_legacy_vmap.py::TestVmapAPILegacy::test_nested_out_dims, test/test_legacy_vmap.py::TestVmapAPILegacy::test_nested_with_different_map_dim, test/test_legacy_vmap.py::TestVmapAPILegacy::test_nested_with_same_map_dim, test/test_legacy_vmap.py::TestVmapAPILegacy::test_nn_module, test/test_legacy_vmap.py::TestVmapAPILegacy::test_non_default_in_dims_out_dims, test/test_legacy_vmap.py::TestVmapAPILegacy::test_non_tensor_output_raises, test/test_legacy_vmap.py::TestVmapAPILegacy::test_non_zero_in_dims, test/test_legacy_vmap.py::TestVmapAPILegacy::test_none_in_dims, test/test_legacy_vmap.py::TestVmapAPILegacy::test_nonzero_out_dims, test/test_legacy_vmap.py::TestVmapAPILegacy::test_noop_in_inner_vmap, test/test_legacy_vmap.py::TestVmapAPILegacy::test_not_enough_in_dims_err_msg, test/test_legacy_vmap.py::TestVmapAPILegacy::test_out_dim_out_of_bounds_err_msg, test/test_legacy_vmap.py::TestVmapAPILegacy::test_out_dims_and_num_outputs_mismatch_err_msg, test/test_legacy_vmap.py::TestVmapAPILegacy::test_out_dims_edge_case, test/test_legacy_vmap.py::TestVmapAPILegacy::test_out_dims_must_be_int_or_tuple_of_int_err_msg, test/test_legacy_vmap.py::TestVmapAPILegacy::test_single_input, test/test_legacy_vmap.py::TestVmapAPILegacy::test_unsupported_op_err_msg, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_T_numpy, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_as_strided, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_binary_pointwise_ops, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_bmm, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_cat, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_chunk, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_clamp, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_clone, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_comparison_ops, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_conj, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_contiguous, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_diagonal, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_dot, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_expand_as, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_fill_and_zero_inplace, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_imag, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_is_complex, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_is_contiguous, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_is_floating_point, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_mm, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_movedim, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_mv, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_narrow, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_new_empty, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_new_empty_strided, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_new_zeros, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_no_random_op_support, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_real, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_reshape, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_reshape_as, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_result_type, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_select, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_slice, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_split, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_squeeze, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_stack, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_stride, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_sum_dim, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_t, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_tensor_split, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_to, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_trace, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_transpose, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_unary_pointwise_ops, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_unbind, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_unfold, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_view, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_view_as, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_view_as_complex, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_view_as_real, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_vmap_fallback_check, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_vmap_fallback_check_ok, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_add_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_binary_cross_entropy_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_diagonal_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_div_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_expand_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_index_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_inplace_manyview_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_inplace_on_view_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_lgamma_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_log1p_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_log_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_logsumexp_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_max_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_median_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_min_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_mul_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_permute_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_reshape_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_select_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_sigmoid_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_slice_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_stack_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_sub_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_threshold_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_trace_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_unrelated_output_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_unrelated_output_multiple_grad_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_vmap_fallback_check, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_vmap_fallback_check_ok 2025-08-14T23:15:36.9214374Z 2025-08-14T23:15:42.4159217Z Running test_modules 1/1 ... [2025-08-14 23:15:42.413414] 2025-08-14T23:15:42.4159682Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:15:42.4160672Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_modules.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-14 23:15:42.414638] 2025-08-14T23:16:06.0334935Z 2025-08-14T23:16:06.0335900Z test_decomp 9/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_9.17_857ae5fe779db5cc_.log 2025-08-14T23:16:06.0494114Z Running 549 items in this shard: test/test_decomp.py::TestDecompCPU::test_bernoulli_default_cpu, test/test_decomp.py::TestDecompCPU::test_comprehensive_T_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive___getitem___cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rdiv___cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmatmul___cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmod___cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmul___cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmul___cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive___rsub___cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive___rxor___cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive__batch_norm_with_update_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive__chunk_cat_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive__segment_reduce_lengths_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_acos_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_addbmm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_addbmm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_addcdiv_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_decomposed_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmv_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addr_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_aminmax_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_angle_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_any_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_any_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_argmax_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_argmax_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_partial_views_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_partial_views_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_scatter_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_asin_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_asin_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_asinh_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_atanh_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_1d_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_3d_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_baddbmm_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bfloat16_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_left_shift_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_left_shift_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_xor_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_block_diag_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_bool_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_to_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bucketize_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_byte_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cartesian_prod_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_cartesian_prod_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cdouble_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_char_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_chunk_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_constant_pad_nd_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_contiguous_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_count_nonzero_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_count_nonzero_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_cov_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cross_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummin_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_deg2rad_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_deg2rad_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_embed_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_no_rounding_mode_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_no_rounding_mode_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_dot_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_double_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_dsplit_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_dstack_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_dstack_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_like_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_permuted_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_permuted_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_strided_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_strided_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_eq_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_equal_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfc_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfc_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp2_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_as_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_as_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_as_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_expm1_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fft_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftn_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftshift_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftshift_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft2_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfft2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfft2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfftn_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfft2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfft_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfftn_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fill_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_fill_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_flip_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fliplr_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_flipud_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_flipud_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_power_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_floor_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmax_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_like_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_like_cpu_uint32, test/test_decomp.py::TestDecompCPU::test_comprehensive_geometric_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_geometric_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_gradient_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_gt_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_heaviside_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_heaviside_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_hsplit_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_hstack_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_add_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_fill_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amax_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_prod_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_inner_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_int_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isin_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isin_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_isnan_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_item_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_4inputs_with_extra_args_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_return_by_ref_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_return_by_ref_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_unary_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_unary_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_kron_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_kthvalue_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_lerp_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_lgamma_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_lgamma_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cross_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_diagonal_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_eig_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_eigh_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_householder_product_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_ldl_factor_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lstsq_grad_oriented_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lu_solve_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_multi_dot_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_norm_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_norm_subgradients_at_zero_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_svd_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vander_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log1p_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_log1p_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_normal_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_softmax_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_softmax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_softmax_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logaddexp_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logdet_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_not_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_not_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_or_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_or_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_logit_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logit_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_long_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_lu_solve_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_argmax_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_fill_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_mean_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_prod_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_select_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_softmax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_matrix_exp_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_no_dim_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mean_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_list_of_tensors_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_no_dim_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_minimum_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mm_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mode_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mode_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_msort_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mul_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_3_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_ne_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ne_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_neg_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_neg_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_strided_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_ones_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_zeros_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_max_pool2d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_avg_pool1d_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_bilinear_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_bilinear_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_channel_shuffle_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv3d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose2d_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_cosine_embedding_loss_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_fractional_max_pool2d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_fractional_max_pool2d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_glu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_bicubic_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_bilinear_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_linear_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_nearest-exact_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_nearest_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_l1_loss_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool1d_grad_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool3d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_mse_loss_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_multi_head_attention_forward_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pairwise_distance_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_unshuffle_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_selu_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_silu_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softsign_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_tanhshrink_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_loss_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_loss_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_with_distance_loss_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_upsample_nearest_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_static_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_static_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_static_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_like_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_3_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_positive_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_pow_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_prod_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_prod_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rad2deg_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_rad2deg_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ravel_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_real_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_remainder_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_as_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize_as__cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize_as__cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize_as__cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_neg_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_neg_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_neg_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_roll_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsqrt_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsub_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsub_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amax_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_sum_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sgn_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sgn_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_short_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sign_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sign_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_bartlett_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_blackman_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_nuttall_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sin_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinc_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinc_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinh_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_scatter_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_softmax_with_dtype_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_y1_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_entr_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_entr_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_hermite_polynomial_h_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_k0_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_k1_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_polygamma_special_polygamma_n_0_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_polygamma_special_polygamma_n_0_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_polygamma_special_polygamma_n_0_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_u_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_v_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_spherical_bessel_j0_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sqrt_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_multiple_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_stack_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_mean_unbiased_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_mean_unbiased_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_stft_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_sub_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_to_size_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_along_dim_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensor_split_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensor_split_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensordot_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensordot_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_trace_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_trace_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapezoid_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapz_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_triu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_trunc_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_trunc_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_uniform_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_consecutive_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_cpu_uint32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unravel_index_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_chunk_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_chunk_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_split_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_real_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_vsplit_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_where_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_xlogy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_like_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick__batch_norm_with_update_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_put_accumulate_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_abs_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_acos_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_acosh_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_all_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_amax_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_amin_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_aminmax_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_aminmax_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_asin_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_asin_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_atan2_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_baddbmm_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_left_shift_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_not_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_block_diag_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_block_diag_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_bucketize_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_bucketize_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_cat_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_clamp_min_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_clone_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_clone_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_conj_physical_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_constant_pad_nd_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_constant_pad_nd_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_constant_pad_nd_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_index_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_norm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_renorm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_cos_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_diag_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_diag_embed_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_diag_embed_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_digamma_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_digamma_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_dist_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_div_no_rounding_mode_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_dot_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_erfc_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_exp2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_expand_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_expand_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_expand_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_expm1_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfftn_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfftn_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfftn_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fmin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_ge_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_ge_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_gt_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_hypot_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_hypot_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_igammac_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_index_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_index_select_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_index_select_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_isin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_isposinf_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_item_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_lcm_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_lerp_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_lerp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_lgamma_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_lgamma_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_linalg_cross_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_linalg_diagonal_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_linspace_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_linspace_tensor_overload_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_log10_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_log1p_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_log2_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_log_normal_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_log_softmax_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_log_softmax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_logical_or_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_logical_xor_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_logical_xor_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_logical_xor_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_logit_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_lt_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_masked_fill_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_maximum_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_mean_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_variadic_tensors_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_variadic_tensors_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_minimum_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_mv_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_5_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_nansum_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_narrow_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_native_layer_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_ne_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_strided_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_new_full_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_new_full_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_new_ones_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_new_zeros_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_nextafter_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_elu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_embedding_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_glu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_huber_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_max_unpool2d_grad_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_mse_loss_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_mse_loss_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_pad_constant_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_pad_constant_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_silu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_softshrink_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_unfold_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_permute_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_pow_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_pow_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_prod_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_prod_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_prod_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_randn_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_reciprocal_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_roll_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_roll_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_roll_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_round_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_round_decimals_3_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_rsqrt_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_sign_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_signbit_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_signbit_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_sin_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_sinc_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_slice_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_slice_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_softmax_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_special_entr_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_special_erfcx_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_special_i1_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_special_i1_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_special_log_ndtr_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_split_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_split_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_split_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_sqrt_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_multiple_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_stack_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_std_mean_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_std_mean_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_sum_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_sum_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_transpose_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_tril_indices_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_triu_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_triu_indices_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_unbind_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_unfold_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_unfold_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_uniform_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_uniform_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_uniform_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_var_mean_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_var_mean_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_view_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_where_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_zero__cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_zero__cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_zeros_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_zeros_like_cpu_complex32, test/test_decomp.py::HasDecompTest::test_has_decomposition 2025-08-14T23:16:06.0644994Z 2025-08-14T23:16:11.9406251Z Running cpp_extensions/python_agnostic_extension/test/test_python_agnostic 1/1 ... [2025-08-14 23:16:11.930216] 2025-08-14T23:16:11.9407424Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:16:11.9416271Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'cpp_extensions/python_agnostic_extension/test/test_python_agnostic.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-14 23:16:11.930216] 2025-08-14T23:16:17.8758386Z 2025-08-14T23:16:17.8761916Z cpp_extensions/python_agnostic_extension/test/test_python_agnostic 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp_extensions.python_agnostic_extension.test.test_python_agnostic_1.1_8e277a8bbe99f714_.log 2025-08-14T23:16:17.8763929Z Running 0 items in this shard: 2025-08-14T23:16:17.8764242Z 2025-08-14T23:16:24.1491705Z Running test_hub 1/1 ... [2025-08-14 23:16:24.148997] 2025-08-14T23:16:24.1492206Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:16:24.1521289Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_hub.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-14 23:16:24.149732] 2025-08-14T23:16:53.7294988Z 2025-08-14T23:16:53.7295919Z test_hub 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_hub_1.1_585ba54e862df848_.log 2025-08-14T23:16:53.7300293Z Running 20 items in this shard: test/test_hub.py::TestHub::test_download_url_to_file, test/test_hub.py::TestHub::test_get_set_dir, test/test_hub.py::TestHub::test_hub_parse_repo_info, test/test_hub.py::TestHub::test_list_entrypoints, test/test_hub.py::TestHub::test_load_commit_from_forked_repo, test/test_hub.py::TestHub::test_load_from_branch, test/test_hub.py::TestHub::test_load_from_github, test/test_hub.py::TestHub::test_load_from_local_dir, test/test_hub.py::TestHub::test_load_legacy_zip_checkpoint, test/test_hub.py::TestHub::test_load_state_dict_from_url, test/test_hub.py::TestHub::test_load_zip_1_6_checkpoint, test/test_hub.py::TestHub::test_trust_repo_builtin_trusted_owners, test/test_hub.py::TestHub::test_trust_repo_check_no, test/test_hub.py::TestHub::test_trust_repo_check_yes, test/test_hub.py::TestHub::test_trust_repo_false_emptystring, test/test_hub.py::TestHub::test_trust_repo_false_no, test/test_hub.py::TestHub::test_trust_repo_legacy, test/test_hub.py::TestHub::test_trust_repo_none, test/test_hub.py::TestHub::test_trust_repo_true, test/test_hub.py::TestHub::test_trusted_repo_false_yes 2025-08-14T23:16:53.7304258Z 2025-08-14T23:16:59.2684782Z Running test_set_default_mobile_cpu_allocator 1/1 ... [2025-08-14 23:16:59.268184] 2025-08-14T23:16:59.2685317Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:16:59.2703722Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_set_default_mobile_cpu_allocator.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-14 23:16:59.269954] 2025-08-14T23:17:04.8256091Z 2025-08-14T23:17:04.8257205Z test_set_default_mobile_cpu_allocator 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_set_default_mobile_cpu_allocator_1.1_9a2df296ce571be6_.log 2025-08-14T23:17:04.8259536Z Running 2 items in this shard: test/test_set_default_mobile_cpu_allocator.py::TestSetDefaultMobileCPUAllocator::test_exception, test/test_set_default_mobile_cpu_allocator.py::TestSetDefaultMobileCPUAllocator::test_no_exception 2025-08-14T23:17:04.8260504Z 2025-08-14T23:17:10.3733598Z Running test_stateless 1/1 ... [2025-08-14 23:17:10.371103] 2025-08-14T23:17:10.3739671Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:17:10.3742391Z 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-14 23:17:10.371103] 2025-08-14T23:17:27.4681316Z 2025-08-14T23:17:27.4682457Z test_stateless 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_stateless_1.1_46065070c661251e_.log 2025-08-14T23:17:27.4719271Z 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-14T23:17:27.4740316Z 2025-08-14T23:17:33.3891456Z Running test_numpy_interop 1/1 ... [2025-08-14 23:17:33.388950] 2025-08-14T23:17:33.3891877Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:17:33.3898389Z 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-14 23:17:33.389587] 2025-08-14T23:17:39.3637890Z 2025-08-14T23:17:39.3639030Z test_numpy_interop 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_numpy_interop_1.1_1f86bcfe5430026b_.log 2025-08-14T23:17:39.3653443Z 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-14T23:17:39.3666711Z 2025-08-14T23:17:44.9860643Z Running test_ops 1/9 ... [2025-08-14 23:17:44.985333] 2025-08-14T23:17:44.9861047Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:17:44.9871284Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops.py', '-m', 'not serial', '--shard-id=1', '--num-shards=9', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:17:44.985333] 2025-08-14T23:17:50.2094523Z 2025-08-14T23:17:50.2095835Z test_decomp 16/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_16.17_7c474df24c897b76_.log 2025-08-14T23:17:50.2441281Z Running 544 items in this shard: test/test_decomp.py::TestDecompCPU::test_comprehensive_H_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_T_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_T_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_T_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive___rand___cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmatmul___cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive___rsub___cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive__chunk_cat_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_put_accumulate_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_abs_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_acosh_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_add_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_addcdiv_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmv_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_alias_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_alias_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_all_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_all_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_any_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_argmax_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_argsort_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_asin_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_atanh_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_3d_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_bfloat16_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_left_shift_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_left_shift_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_not_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_bool_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bool_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_tensors_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_to_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bucketize_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cat_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ceil_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cfloat_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_char_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cholesky_solve_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_min_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_column_stack_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_column_stack_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_combinations_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_complex_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_physical_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_constant_pad_nd_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_constant_pad_nd_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_contiguous_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_copysign_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cosh_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cosh_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_count_nonzero_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cov_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumsum_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumsum_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumulative_trapezoid_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagflat_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_scatter_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_scatter_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_floor_rounding_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_floor_rounding_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_trunc_rounding_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_double_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_double_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_dsplit_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_dsplit_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_dstack_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_einsum_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_einsum_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_like_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_strided_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_eq_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_eq_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_equal_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfc_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_expm1_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_expm1_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_exponential_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_float8_e5m2fnuz, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fft_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fft_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftn_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftn_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfft2_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfftn_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft2_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft2_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfftn_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfft2_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfft_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fill_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_power_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_floor_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_frac_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ge_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_heaviside_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_histogram_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_igammac_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_add_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_fill_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_fill_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_put_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_mean_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_prod_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_select_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_int_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_int_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_isfinite_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isfinite_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isfinite_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_isinf_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isinf_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isnan_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isnan_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isneginf_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isneginf_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isreal_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_item_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_item_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_item_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_4inputs_with_extra_args_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_return_by_ref_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_kron_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_kron_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_kthvalue_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_lgamma_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cond_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_diagonal_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_householder_product_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_inv_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_ldl_factor_ex_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lstsq_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lu_solve_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_rank_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_rank_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_norm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_pinv_hermitian_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_pinv_singular_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_qr_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_solve_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_solve_triangular_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_svdvals_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vecdot_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vector_norm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log1p_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log2_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_log2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_softmax_with_dtype_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_softmax_with_dtype_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_logcumsumexp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_or_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_or_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_xor_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logit_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logit_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_tensor_overload_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_long_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mH_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mT_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mT_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amin_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumsum_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumsum_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_logaddexp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_logsumexp_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_logsumexp_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_logsumexp_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_prod_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_scatter_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_select_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_sum_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_sum_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_sum_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_sum_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_sum_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_var_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_matrix_exp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_binary_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_no_dim_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_no_dim_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_maximum_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_list_of_tensors_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_variadic_tensors_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_binary_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_no_dim_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_with_dim_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mode_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_msort_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mul_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mv_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_5_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_5_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nan_to_num_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nansum_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_ne_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_neg_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_ones_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_ones_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_zeros_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_bilinear_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_bilinear_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_channel_shuffle_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv2d_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv3d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose2d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose2d_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose3d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose3d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_cross_entropy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_dropout3d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_embedding_bag_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_feature_alpha_dropout_without_train_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_feature_alpha_dropout_without_train_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_group_norm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hinge_embedding_loss_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_nearest-exact_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_trilinear_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_kl_div_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_linear_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_linear_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_margin_ranking_loss_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool3d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_mse_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_multi_head_attention_forward_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_multilabel_margin_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_multilabel_soft_margin_loss_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_normalize_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_reflect_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_negative_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pairwise_distance_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_shuffle_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_shuffle_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_poisson_nll_loss_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_scaled_dot_product_attention_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softsign_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_tanhshrink_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_with_distance_loss_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_unfold_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_unfold_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_static_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_inf_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_normal_in_place_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_normal_in_place_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_like_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_ormqr_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_0_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_1_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_positive_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_pow_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_put_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_rad2deg_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rand_like_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_randint_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_remainder_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_as_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_as_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize_as__cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rot90_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_decimals_0_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_decimals_0_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_decimals_3_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsub_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scalar_tensor_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_add_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_prod_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sgn_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sgn_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_short_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sigmoid_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_general_hamming_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_signbit_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_scatter_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sort_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_sort_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sparse_mm_reduce_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_airy_ai_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_u_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_v_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_legendre_polynomial_p_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i0_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtr_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_u_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_w_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_spherical_bessel_j0_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_xlog1py_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_zeta_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sqrt_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_square_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_multiple_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_multiple_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_stack_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_along_dim_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensor_split_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensordot_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_sparse_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_trace_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapezoid_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_true_divide_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_true_divide_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unflatten_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_unflatten_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unflatten_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_uniform_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_split_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_vdot_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_complex_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_complex_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_vstack_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_where_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_like_cpu_float16, test/test_decomp.py::TestDecompCPU::test_masked_fill_cpu, test/test_decomp.py::TestDecompCPU::test_quick__chunk_cat_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick__chunk_cat_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick__chunk_cat_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick__chunk_cat_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_put_accumulate_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_acosh_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_add_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_addcdiv_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_addcmul_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_addmm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_addmv_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_addr_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_aminmax_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_aminmax_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_scatter_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_asin_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_atan2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_atan_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_atanh_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_baddbmm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_baddbmm_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_bernoulli_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_left_shift_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_block_diag_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_ceil_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_clamp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_clamp_min_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_clone_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_conj_physical_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_conj_physical_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_copysign_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_deg2rad_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_fill_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_nan_to_num_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_nn_functional_max_unpool3d_grad_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_roll_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_squeeze_multiple_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_sum_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_trace_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_transpose_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_xlogy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_cosh_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_cumprod_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_cumsum_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_diag_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_diag_embed_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_diag_embed_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_digamma_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_empty_like_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_empty_like_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_eq_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_eq_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_erfc_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_erfinv_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_exp2_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_expand_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_expand_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_exponential_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_eye_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_eye_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fft_fftn_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_fftn_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fft_fftn_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_fftn_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfftn_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifftn_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfft_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft2_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfftn_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfftn_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfft2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfftn_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_flip_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_floor_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_floor_divide_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_floor_divide_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fmax_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_fmin_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_fmod_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fmod_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_frexp_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_heaviside_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_i0_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_igammac_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_index_fill_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_index_select_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_isnan_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_isneginf_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_item_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_lgamma_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_log_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_logaddexp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_logical_xor_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_lt_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_maximum_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_list_of_tensors_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_3_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_native_dropout_backward_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_native_layer_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_neg_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_strided_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_new_full_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_new_zeros_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_gelu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_glu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardswish_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardtanh_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardtanh_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_max_unpool2d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_prelu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_softplus_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_unfold_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_norm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_norm_nuc_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_normal_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_normal_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_ones_like_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_permute_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_permute_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_permute_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_pow_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_prod_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_round_decimals_0_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_rsqrt_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_rsqrt_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_select_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_select_scatter_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_sign_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_sin_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_sinc_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_sinh_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_slice_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_softmax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_softmax_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_special_entr_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtr_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtr_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtri_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtri_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_special_xlog1py_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_special_zeta_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_special_zeta_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_split_list_args_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_multiple_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_stack_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_std_mean_unbiased_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_sub_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_sum_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_t_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_t_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_take_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_tan_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_transpose_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_transpose_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_triu_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_unbind_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_unbind_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_unbind_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_unfold_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_unfold_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_var_mean_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_vdot_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_vdot_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_view_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_view_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_where_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_zeros_like_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_zeros_like_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_zeros_like_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_zeros_like_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_rnn_decomp_module_nn_RNN_eval_mode_cpu_float64, test/test_decomp.py::DecompOneOffTestsCPU::test_sdpa_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_decomp.py::DecompOneOffTestsCPU::test_weight_norm_interface_cpu 2025-08-14T23:17:50.2636732Z 2025-08-14T23:17:57.1826647Z Running test_ops 2/9 ... [2025-08-14 23:17:57.172204] 2025-08-14T23:17:57.1827310Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:17:57.1834358Z 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-14 23:17:57.172204] 2025-08-14T23:26:13.7131521Z 2025-08-14T23:26:13.7132797Z test_modules 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_modules_1.1_afee5f464cfbd0c7_.log 2025-08-14T23:26:13.9200301Z Running 3605 items in this shard: test/test_modules.py::TestModuleCPU::test_check_inplace_nn_CELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_check_inplace_nn_CELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_check_inplace_nn_ELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_check_inplace_nn_ELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_check_inplace_nn_Hardswish_cpu_float32, test/test_modules.py::TestModuleCPU::test_check_inplace_nn_Hardswish_cpu_float64, test/test_modules.py::TestModuleCPU::test_check_inplace_nn_Hardtanh_cpu_float32, test/test_modules.py::TestModuleCPU::test_check_inplace_nn_Hardtanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_check_inplace_nn_LeakyReLU_cpu_float32, 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_Mish_cpu_float64, test/test_modules.py::TestModuleCPU::test_check_inplace_nn_ReLU6_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_float32, test/test_modules.py::TestModuleCPU::test_check_inplace_nn_SELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_check_inplace_nn_SiLU_cpu_float32, 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_check_inplace_nn_Threshold_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_AdaptiveAvgPool1d_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_AdaptiveAvgPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_AdaptiveAvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_AdaptiveMaxPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_AdaptiveMaxPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_AdaptiveMaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_AdaptiveMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_AdaptiveMaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_AdaptiveMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_AvgPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_AvgPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_AvgPool2d_cpu_float32, 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_AvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_BCELoss_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_float32, 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_eval_mode_cpu_float64, 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_float32, 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_float32, 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_Bilinear_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Bilinear_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_float32, 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_float32, 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_CircularPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ConstantPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ConstantPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ConstantPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ConstantPad2d_cpu_float64, 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_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Conv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Conv2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Conv2d_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_Conv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ConvTranspose1d_cpu_complex128, 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_complex64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ConvTranspose1d_cpu_float32, 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_complex128, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ConvTranspose2d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ConvTranspose2d_cpu_complex64, 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_complex128, 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_complex64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ConvTranspose3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_CosineEmbeddingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_CosineEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_CrossEntropyLoss_cpu_float16, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_CrossEntropyLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_CrossEntropyLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Embedding_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Embedding_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_FractionalMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_FractionalMaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_FractionalMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_GELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_GELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_GLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_GLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_GRUCell_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_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_GRU_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_GRU_train_mode_cpu_float32, 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_GaussianNLLLoss_cpu_float64, 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_float16, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_GroupNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_GroupNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Hardshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Hardshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Hardswish_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_Hardtanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_HingeEmbeddingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_HingeEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_HuberLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_HuberLoss_cpu_float64, 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_eval_mode_cpu_float64, 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_eval_mode_cpu_float64, 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_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_InstanceNorm3d_eval_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_InstanceNorm3d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_KLDivLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_KLDivLoss_cpu_float64, 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_LPPool2d_cpu_float64, 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_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LSTMCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LSTM_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LSTM_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LSTM_train_mode_cpu_float32, 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_LayerNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LazyConv1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LazyConv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LazyConv2d_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_LazyConvTranspose2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LazyConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LazyConvTranspose3d_cpu_float32, 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_Linear_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Linear_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LocalResponseNorm_cpu_float32, 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_float32, 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_LogSoftmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_MSELoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_MSELoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_MarginRankingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_MarginRankingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_MaxPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_MaxPool1d_cpu_float64, 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_MaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Mish_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Mish_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_MultiLabelMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_MultiLabelMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_MultiLabelSoftMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_MultiLabelSoftMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_MultiMarginLoss_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_NLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_NLLLoss_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_RMSNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_RNNCell_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_RNN_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_RNN_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_RNN_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ReLU6_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_ReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ReflectionPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ReflectionPad1d_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_ReflectionPad2d_cpu_float64, 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_ReplicationPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ReplicationPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ReplicationPad3d_cpu_float64, 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_float32, 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_Sigmoid_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_SmoothL1Loss_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_SmoothL1Loss_cpu_float64, 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_float32, 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_Softmin_cpu_float64, 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_Softshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Softshrink_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_TransformerDecoderLayer_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_TransformerDecoderLayer_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_eval_mode_cpu_float64, 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_float32, 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_float32, 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_ZeroPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ZeroPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ZeroPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ZeroPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ZeroPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_AdaptiveAvgPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_AdaptiveAvgPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_AdaptiveAvgPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_AdaptiveAvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_AdaptiveAvgPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_AdaptiveAvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_AdaptiveMaxPool1d_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_AdaptiveMaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_AdaptiveMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_AdaptiveMaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_AdaptiveMaxPool3d_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_AvgPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_AvgPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_AvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_AvgPool3d_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_BCELoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_BCEWithLogitsLoss_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_eval_mode_cpu_float64, 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_BatchNorm1d_train_mode_cpu_float64, 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_float32, 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_float32, 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_CircularPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_CircularPad2d_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_CircularPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ConstantPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ConstantPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ConstantPad2d_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_float32, 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_Conv1d_cpu_float64, 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_Conv3d_cpu_float64, 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_complex64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ConvTranspose1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ConvTranspose1d_cpu_float64, 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_complex32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ConvTranspose2d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ConvTranspose2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ConvTranspose3d_cpu_complex128, 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_ConvTranspose3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_CosineEmbeddingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_CosineEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_CrossEntropyLoss_cpu_float16, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_CrossEntropyLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_CrossEntropyLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ELU_cpu_float64, 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_float32, 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_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_GELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_GLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_GLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_GRUCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_GRUCell_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_GRU_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_GRU_train_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_GaussianNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_GroupNorm_cpu_bfloat16, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_GroupNorm_cpu_float16, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_GroupNorm_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_float32, 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_float32, 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_Hardtanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_HingeEmbeddingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_HingeEmbeddingLoss_cpu_float64, 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_float32, 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_float32, 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_float32, 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_LPPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LSTMCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LSTMCell_cpu_float64, 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_LSTM_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LSTM_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LSTM_train_mode_cpu_float64, 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_float32, 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_LazyConv3d_cpu_float64, 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_LazyConvTranspose2d_cpu_float64, 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_LeakyReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LeakyReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Linear_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Linear_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LocalResponseNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LocalResponseNorm_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_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LogSoftmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_MSELoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_MSELoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_MarginRankingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_MarginRankingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_MaxPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_MaxPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_MaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_MaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_MaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_MaxPool3d_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_MultiMarginLoss_cpu_float64, 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_MultiheadAttention_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_MultiheadAttention_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_MultiheadAttention_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_NLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_NLLLoss_cpu_float64, 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_float32, 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_RMSNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_RNNCell_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_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_RNN_train_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_float32, 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_ReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ReflectionPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ReflectionPad1d_cpu_float64, 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_float32, 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_float32, 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_ReplicationPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ReplicationPad3d_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_SiLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_SiLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Sigmoid_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Sigmoid_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_SmoothL1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_SoftMarginLoss_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_Softmax2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Softmax2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Softmax_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Softmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Softmin_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Softmin_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_Softplus_cpu_float64, 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_Softsign_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Softsign_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_Tanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Tanhshrink_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_Threshold_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Threshold_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_TransformerDecoderLayer_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_TransformerEncoderLayer_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_TransformerEncoderLayer_eval_mode_cpu_float64, 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_TransformerEncoderLayer_train_mode_cpu_float64, 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_TransformerEncoder_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_TransformerEncoder_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_TransformerEncoder_train_mode_cpu_float64, 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_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ZeroPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ZeroPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ZeroPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ZeroPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ZeroPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_errors_nn_CircularPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_errors_nn_CircularPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_errors_nn_CircularPad2d_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_GRU_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_errors_nn_GRU_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_errors_nn_GRU_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_errors_nn_LSTMCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_errors_nn_LSTMCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_errors_nn_LSTM_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_errors_nn_LSTM_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_errors_nn_LSTM_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_errors_nn_LSTM_train_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_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_errors_nn_RNN_eval_mode_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_AdaptiveAvgPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_AdaptiveAvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_AdaptiveAvgPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_AdaptiveAvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_AdaptiveMaxPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_AdaptiveMaxPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_AdaptiveMaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_AdaptiveMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_AdaptiveMaxPool3d_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_float32, 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_AvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_AvgPool3d_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_BCEWithLogitsLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_BCEWithLogitsLoss_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_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_BatchNorm1d_train_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_float32, 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_BatchNorm2d_train_mode_cpu_float64, 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_float32, 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_float32, 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_ConstantPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ConstantPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ConstantPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ConstantPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ConstantPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Conv1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Conv1d_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_Conv3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Conv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ConvTranspose1d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ConvTranspose1d_cpu_complex32, 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_ConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ConvTranspose2d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ConvTranspose2d_cpu_complex32, 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_ConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ConvTranspose3d_cpu_complex128, 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_float32, 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_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_CrossEntropyLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ELU_cpu_float32, 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_Embedding_cpu_float64, 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_GLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_GLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_GRUCell_cpu_float32, 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_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_GRU_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_GRU_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_GRU_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_GaussianNLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_GaussianNLLLoss_cpu_float64, 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_GroupNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Hardshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Hardshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Hardswish_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_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Hardtanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_HingeEmbeddingLoss_cpu_float32, 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_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_InstanceNorm1d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_InstanceNorm1d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_InstanceNorm1d_train_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_InstanceNorm2d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_InstanceNorm3d_eval_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_float32, 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_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_KLDivLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_L1Loss_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_L1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LPPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LPPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LPPool2d_cpu_float32, 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_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LSTM_train_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_LayerNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LayerNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LazyConv1d_cpu_float32, 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_LazyConv2d_cpu_float64, 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_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LazyConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LazyConvTranspose2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LazyConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LazyConvTranspose3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LazyConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LeakyReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LeakyReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Linear_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_LocalResponseNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LogSigmoid_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_float32, 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_MarginRankingLoss_cpu_float64, 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_MaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_MaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_MaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Mish_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_float32, 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_float32, 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_PReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_PReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_PoissonNLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_PoissonNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_RMSNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_RMSNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_RNNCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_RNNCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_RNN_eval_mode_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_RNN_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_RNN_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ReLU6_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ReLU6_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ReflectionPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ReflectionPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ReflectionPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ReflectionPad2d_cpu_float64, 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_ReplicationPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ReplicationPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ReplicationPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ReplicationPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ReplicationPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ReplicationPad3d_cpu_float64, 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_SiLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Sigmoid_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Sigmoid_cpu_float64, 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_SoftMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Softmax2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Softmax2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Softmax_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Softmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Softmin_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_Softshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Softsign_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_Tanh_cpu_float64, 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_Threshold_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_TransformerDecoderLayer_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_TransformerDecoderLayer_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_TransformerEncoderLayer_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_TransformerEncoderLayer_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_TransformerEncoderLayer_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_TransformerEncoderLayer_train_mode_cpu_float64, 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_Transformer_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Transformer_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_ZeroPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ZeroPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ZeroPad3d_cpu_float64, 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_AdaptiveAvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_AdaptiveAvgPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_AdaptiveAvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_AdaptiveMaxPool1d_cpu_float32, 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_AdaptiveMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_AdaptiveMaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_AdaptiveMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_AvgPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_AvgPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_AvgPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_AvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_AvgPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_AvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_BCELoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_BCELoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_BCEWithLogitsLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_BCEWithLogitsLoss_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_float32, 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_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_BatchNorm2d_train_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_eval_mode_cpu_float64, 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_Bilinear_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Bilinear_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_CELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_CELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_CTCLoss_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_CircularPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_CircularPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_CircularPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_CircularPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_CircularPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_ConstantPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_ConstantPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_ConstantPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_ConstantPad2d_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_Conv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_Conv2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Conv2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_Conv3d_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_complex32, test/test_modules.py::TestModuleCPU::test_forward_nn_ConvTranspose1d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_forward_nn_ConvTranspose1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_ConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_ConvTranspose2d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_forward_nn_ConvTranspose2d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_forward_nn_ConvTranspose2d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_forward_nn_ConvTranspose2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_ConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_ConvTranspose3d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_forward_nn_ConvTranspose3d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_forward_nn_ConvTranspose3d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_forward_nn_ConvTranspose3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_ConvTranspose3d_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_CrossEntropyLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_ELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_ELU_cpu_float64, 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_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_FractionalMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_FractionalMaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_FractionalMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_GELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_GELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_GLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_GLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_GRUCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_GRUCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_GRU_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_GRU_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_GRU_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_GRU_train_mode_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_bfloat16, test/test_modules.py::TestModuleCPU::test_forward_nn_GroupNorm_cpu_float16, test/test_modules.py::TestModuleCPU::test_forward_nn_GroupNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_GroupNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_Hardshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Hardshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_Hardswish_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Hardswish_cpu_float64, 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_float32, 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_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_InstanceNorm2d_train_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_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_InstanceNorm3d_train_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_KLDivLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_L1Loss_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_L1Loss_cpu_float64, 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_LPPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_LPPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_LPPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_LSTMCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_LSTMCell_cpu_float64, 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_LSTM_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_LSTM_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_LayerNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_LayerNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_LazyConv1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_LazyConv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_LazyConv2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_LazyConv2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_LazyConv3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_LazyConv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_LazyConvTranspose1d_cpu_float32, 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_LazyConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_LeakyReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_LeakyReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_Linear_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Linear_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_LocalResponseNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_LocalResponseNorm_cpu_float64, 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_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_LogSoftmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_MSELoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_MSELoss_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_MaxPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_MaxPool2d_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_Mish_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Mish_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_MultiLabelMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_MultiLabelMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_MultiLabelSoftMarginLoss_cpu_float32, 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_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_MultiheadAttention_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_MultiheadAttention_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_NLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_NLLLoss_cpu_float64, 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_PoissonNLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_PoissonNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_RMSNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_RMSNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_RNNCell_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_float32, 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_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_RNN_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_ReLU6_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_ReLU6_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_float32, 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_ReplicationPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_ReplicationPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_ReplicationPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_ReplicationPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_ReplicationPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_ReplicationPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_SELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_SELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_SiLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_SiLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_Sigmoid_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Sigmoid_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_SmoothL1Loss_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_SmoothL1Loss_cpu_float64, 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_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Softmax2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_Softmax_cpu_float32, 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_Softmin_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_Softplus_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Softplus_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_Softshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Softshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_Softsign_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Softsign_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_Tanh_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Tanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_Tanhshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Tanhshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_Threshold_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Threshold_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_TransformerDecoderLayer_cpu_float32, 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_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_TransformerEncoderLayer_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_TransformerEncoder_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_TransformerEncoder_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_TransformerEncoder_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_TransformerEncoder_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_Transformer_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Transformer_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_ZeroPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_ZeroPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_ZeroPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_ZeroPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_ZeroPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_ZeroPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_AdaptiveAvgPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_AdaptiveAvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_AdaptiveAvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_AdaptiveMaxPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_AdaptiveMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_AdaptiveMaxPool3d_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_AvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_BCELoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_BCEWithLogitsLoss_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_BatchNorm2d_train_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_CELU_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_ConstantPad2d_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_Conv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_ConvTranspose1d_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_CrossEntropyLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_ELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_Embedding_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_FractionalMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_FractionalMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_GELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_GLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_GRUCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_GRU_eval_mode_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_GroupNorm_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_Hardtanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_HingeEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_HuberLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_InstanceNorm1d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_InstanceNorm1d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_InstanceNorm2d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_InstanceNorm2d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_InstanceNorm3d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_InstanceNorm3d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_KLDivLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_L1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_LPPool1d_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_LSTM_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_LayerNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_LazyConv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_LazyConv2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_LazyConv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_LazyConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_LazyConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_LazyConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_LeakyReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_Linear_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_LocalResponseNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_LogSigmoid_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_LogSoftmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_MSELoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_MarginRankingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_MaxPool1d_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_MultiLabelMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_MultiLabelSoftMarginLoss_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_NLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_PReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_PoissonNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_RMSNorm_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_ReflectionPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_ReflectionPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_ReflectionPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_ReplicationPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_ReplicationPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_ReplicationPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_SELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_SiLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_Sigmoid_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_Softmin_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_Softplus_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_Softshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_Softsign_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_Tanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_Tanhshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_Threshold_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_TransformerDecoderLayer_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_TransformerEncoderLayer_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_TransformerEncoderLayer_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_TransformerEncoder_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_TransformerEncoder_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_Transformer_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_ZeroPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_ZeroPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_ZeroPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_AdaptiveAvgPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_AdaptiveAvgPool2d_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_AdaptiveMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_AvgPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_AvgPool2d_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_BatchNorm2d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_BatchNorm2d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_BatchNorm3d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_BatchNorm3d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_Bilinear_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_CELU_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_CircularPad3d_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_Conv2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_Conv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_ConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_ConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_ConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_CosineEmbeddingLoss_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_Embedding_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_FractionalMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_FractionalMaxPool3d_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_GRUCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_GRU_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_GRU_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_GaussianNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_GroupNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_Hardshrink_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_HuberLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_InstanceNorm1d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_InstanceNorm1d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_InstanceNorm2d_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_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_InstanceNorm3d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_KLDivLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_L1Loss_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_LSTMCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_LSTM_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_LSTM_train_mode_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_LazyConv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_LazyConvTranspose1d_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_LogSoftmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_MSELoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_MarginRankingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_MaxPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_MaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_MaxPool3d_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_MultiLabelSoftMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_MultiMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_MultiheadAttention_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_MultiheadAttention_train_mode_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_PoissonNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_RMSNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_RNNCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_RNN_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_RNN_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_ReLU6_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_ReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_ReflectionPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_ReflectionPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_ReflectionPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_ReplicationPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_ReplicationPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_ReplicationPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_SELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_SiLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_Sigmoid_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_SmoothL1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_SoftMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_Softmax2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_Softmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_Softmin_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_Softplus_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_Tanhshrink_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_TransformerEncoderLayer_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_TransformerEncoderLayer_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_TransformerEncoder_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_TransformerEncoder_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_Transformer_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_ZeroPad1d_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_float32, 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_AdaptiveAvgPool2d_cpu_float64, 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_AdaptiveMaxPool1d_cpu_float64, 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_AdaptiveMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_AdaptiveMaxPool3d_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_float32, 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_float32, 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_BCELoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_BCEWithLogitsLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_BCEWithLogitsLoss_cpu_float64, 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_BatchNorm1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_BatchNorm2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_BatchNorm2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_BatchNorm3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_BatchNorm3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Bilinear_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Bilinear_cpu_float64, 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_CircularPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_CircularPad1d_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_CircularPad2d_cpu_float64, 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_CircularPad3d_cpu_float64, 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_ConstantPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ConstantPad2d_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_ConstantPad3d_cpu_float64, 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_Conv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Conv2d_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_complex32, 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_ConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_CosineEmbeddingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_CosineEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_CrossEntropyLoss_cpu_float16, 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_float32, 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_FractionalMaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_FractionalMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_FractionalMaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_FractionalMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_GELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_GELU_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_bfloat16, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_GroupNorm_cpu_float16, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_GroupNorm_cpu_float32, 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_Hardshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Hardshrink_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_float32, 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_HingeEmbeddingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_HingeEmbeddingLoss_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_HuberLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_InstanceNorm1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_InstanceNorm1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_InstanceNorm2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_InstanceNorm2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_InstanceNorm3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_InstanceNorm3d_cpu_float64, 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_L1Loss_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_L1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LPPool1d_cpu_float32, 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_float32, 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_LSTMCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LSTM_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LSTM_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LayerNorm_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_LazyConv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LazyConv2d_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_LazyConv3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LazyConv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LazyConvTranspose1d_cpu_float32, 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_float32, 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_LazyConvTranspose3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LazyConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LeakyReLU_cpu_float32, 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_Linear_cpu_float64, 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_LocalResponseNorm_cpu_float64, 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_LogSigmoid_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LogSoftmax_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LogSoftmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_MSELoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_MSELoss_cpu_float64, 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_MarginRankingLoss_cpu_float64, 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_float32, 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_Mish_cpu_float64, 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_float32, 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_MultiMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_MultiheadAttention_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_MultiheadAttention_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_NLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_NLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_PReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_PReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_PoissonNLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_PoissonNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_RMSNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_RMSNorm_cpu_float64, 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_ReLU6_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ReLU6_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ReflectionPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ReflectionPad1d_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_ReflectionPad2d_cpu_float64, 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_float32, 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_float32, 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_SELU_cpu_float64, 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_SiLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Sigmoid_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Sigmoid_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_SmoothL1Loss_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_SmoothL1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_SoftMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_SoftMarginLoss_cpu_float64, 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_Softmax2d_cpu_float64, 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_Softmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Softmin_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_Softplus_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Softshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Softshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Softsign_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Softsign_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Tanh_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Tanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Tanhshrink_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_Threshold_cpu_float64, 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_TransformerDecoderLayer_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_TransformerEncoderLayer_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_TransformerEncoderLayer_cpu_float64, 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_TransformerEncoder_cpu_float64, 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_ZeroPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ZeroPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ZeroPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ZeroPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ZeroPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_AdaptiveAvgPool1d_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_AdaptiveAvgPool2d_cpu_float64, 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_AdaptiveMaxPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_AdaptiveMaxPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_AdaptiveMaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_AdaptiveMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_AdaptiveMaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_AdaptiveMaxPool3d_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_float32, 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_BCEWithLogitsLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_BatchNorm1d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_BatchNorm1d_eval_mode_cpu_float64, 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_BatchNorm2d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_BatchNorm2d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_BatchNorm2d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_BatchNorm2d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_BatchNorm3d_eval_mode_cpu_float32, 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_Bilinear_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Bilinear_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_CELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_CELU_cpu_float64, 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_ConstantPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ConstantPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ConstantPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ConstantPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ConstantPad3d_cpu_float32, 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_Conv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Conv2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Conv2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Conv3d_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_complex32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ConvTranspose1d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ConvTranspose1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ConvTranspose1d_cpu_float64, 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_ConvTranspose2d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ConvTranspose2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ConvTranspose2d_cpu_float64, 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_complex64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ConvTranspose3d_cpu_float32, 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_CosineEmbeddingLoss_cpu_float64, 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_float32, 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_FractionalMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_GELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_GELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_GLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_GLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_GRUCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_GRUCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_GRU_eval_mode_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_GRU_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_GaussianNLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_GaussianNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_GroupNorm_cpu_bfloat16, test/test_modules.py::TestModuleCPU::test_memory_format_nn_GroupNorm_cpu_float16, test/test_modules.py::TestModuleCPU::test_memory_format_nn_GroupNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_GroupNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Hardshrink_cpu_float32, 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_Hardswish_cpu_float64, 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_float32, 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_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_InstanceNorm1d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_InstanceNorm2d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_InstanceNorm2d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_InstanceNorm2d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_InstanceNorm2d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_InstanceNorm3d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_InstanceNorm3d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_InstanceNorm3d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_InstanceNorm3d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_KLDivLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_KLDivLoss_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_LPPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LPPool2d_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_LSTMCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LSTMCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LSTM_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LSTM_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LSTM_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LSTM_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LayerNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LayerNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LazyConv1d_cpu_float32, 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_LazyConv2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LazyConv3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LazyConv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LazyConvTranspose1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LazyConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LazyConvTranspose2d_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_LazyConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LeakyReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LeakyReLU_cpu_float64, 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_LocalResponseNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LogSigmoid_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LogSigmoid_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LogSoftmax_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LogSoftmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_MSELoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_MSELoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_MarginRankingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_MarginRankingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_MaxPool1d_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_MaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Mish_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Mish_cpu_float64, 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_float32, 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_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_MultiheadAttention_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_MultiheadAttention_train_mode_cpu_float64, 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_PReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_PoissonNLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_PoissonNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_RMSNorm_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_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_RNN_train_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_ReLU6_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ReLU6_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ReflectionPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ReflectionPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ReflectionPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ReflectionPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ReflectionPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ReflectionPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ReplicationPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ReplicationPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ReplicationPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ReplicationPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ReplicationPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ReplicationPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_SELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_SELU_cpu_float64, 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_SmoothL1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_SoftMarginLoss_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_Softmax2d_cpu_float64, 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_Softmin_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Softmin_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Softplus_cpu_float32, 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_Softshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Softsign_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Softsign_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Tanh_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Tanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Tanhshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Tanhshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Threshold_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Threshold_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_TransformerDecoderLayer_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_TransformerDecoderLayer_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_TransformerEncoderLayer_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_TransformerEncoder_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_TransformerEncoder_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_TransformerEncoder_train_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_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Transformer_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ZeroPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ZeroPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ZeroPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ZeroPad2d_cpu_float64, 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_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_AdaptiveAvgPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_AdaptiveAvgPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_AdaptiveAvgPool2d_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_AdaptiveMaxPool2d_cpu_float64, 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_AvgPool1d_cpu_float64, 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_BCELoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_BCELoss_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_float32, 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_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_BatchNorm2d_train_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_float32, 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_float32, 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_float32, 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_float32, 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_float32, 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_float32, 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_float32, 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_Conv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Conv2d_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_Conv3d_cpu_float64, 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_complex32, 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_float32, 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_complex32, 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_CrossEntropyLoss_cpu_float16, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_CrossEntropyLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_CrossEntropyLoss_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_ELU_cpu_float64, 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_FractionalMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_FractionalMaxPool3d_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_GELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_GLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_GLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_GRUCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_GRUCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_GRU_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_GRU_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_GRU_train_mode_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_GaussianNLLLoss_cpu_float64, 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_float16, 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_Hardtanh_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Hardtanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_HingeEmbeddingLoss_cpu_float32, 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_float32, 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_InstanceNorm1d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_InstanceNorm1d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_InstanceNorm2d_eval_mode_cpu_float32, 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_float32, 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_float32, 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_float32, 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_LPPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LPPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LPPool2d_cpu_float32, 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_LSTMCell_cpu_float64, 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_float32, 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_LayerNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LayerNorm_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_float32, 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_LazyConv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LazyConvTranspose1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LazyConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LazyConvTranspose2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LazyConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LazyConvTranspose3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LazyConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LeakyReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LeakyReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Linear_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Linear_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LocalResponseNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LocalResponseNorm_cpu_float64, 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_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LogSoftmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_MSELoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_MSELoss_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_float32, 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_MaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_MaxPool3d_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_MultiLabelSoftMarginLoss_cpu_float64, 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_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_MultiheadAttention_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_MultiheadAttention_train_mode_cpu_float32, 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_NLLLoss_cpu_float64, 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_PoissonNLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_PoissonNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_RMSNorm_cpu_float32, 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_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_RNN_eval_mode_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_ReflectionPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ReflectionPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ReflectionPad2d_cpu_float64, 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_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ReplicationPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ReplicationPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ReplicationPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ReplicationPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ReplicationPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_SELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_SELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_SiLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_SiLU_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_SoftMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_SoftMarginLoss_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_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Softmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Softmin_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Softmin_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Softplus_cpu_float32, 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_Softsign_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Softsign_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_Tanh_cpu_float64, 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_Threshold_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_TransformerDecoderLayer_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_TransformerDecoderLayer_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_TransformerEncoderLayer_eval_mode_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_TransformerEncoder_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_TransformerEncoder_train_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_Transformer_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ZeroPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ZeroPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ZeroPad2d_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_float32, 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_AdaptiveAvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_AdaptiveAvgPool3d_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_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_AdaptiveMaxPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_AdaptiveMaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_AdaptiveMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_AdaptiveMaxPool3d_cpu_float32, 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_AvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_AvgPool3d_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_BCELoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_BCELoss_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_BCEWithLogitsLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_BatchNorm1d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_BatchNorm1d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_BatchNorm1d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_BatchNorm1d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_BatchNorm2d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_BatchNorm2d_eval_mode_cpu_float64, 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_BatchNorm2d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_BatchNorm3d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_BatchNorm3d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_BatchNorm3d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_BatchNorm3d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Bilinear_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Bilinear_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_CELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_CELU_cpu_float64, 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_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_CircularPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_CircularPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_CircularPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_CircularPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_CircularPad3d_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_ConstantPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ConstantPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ConstantPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ConstantPad3d_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_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Conv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Conv2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Conv2d_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_complex128, 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_complex128, 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_complex64, 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_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_CosineEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_CrossEntropyLoss_cpu_float16, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_CrossEntropyLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_CrossEntropyLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ELU_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_Embedding_cpu_float64, 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_FractionalMaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_FractionalMaxPool3d_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_GLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_GLU_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_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_GRU_eval_mode_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_float32, 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_bfloat16, 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_float32, 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_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Hardshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Hardswish_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Hardswish_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_Hardtanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_HingeEmbeddingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_HingeEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_HuberLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_HuberLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_InstanceNorm1d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_InstanceNorm1d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_InstanceNorm1d_train_mode_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_InstanceNorm2d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_InstanceNorm2d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_InstanceNorm2d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_InstanceNorm2d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_InstanceNorm3d_eval_mode_cpu_float32, 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_InstanceNorm3d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_InstanceNorm3d_train_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_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_L1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LPPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LPPool1d_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_LPPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LPPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LPPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LSTMCell_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_eval_mode_cpu_float64, 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_LSTM_train_mode_cpu_float64, 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_LazyConv1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LazyConv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LazyConv2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LazyConv2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LazyConv3d_cpu_float32, 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_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LazyConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LazyConvTranspose2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LazyConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LazyConvTranspose3d_cpu_float32, 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_LeakyReLU_cpu_float64, 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_LogSigmoid_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LogSoftmax_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LogSoftmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_MSELoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_MSELoss_cpu_float64, 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_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_MaxPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_MaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_MaxPool2d_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_Mish_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Mish_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_MultiLabelMarginLoss_cpu_float32, 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_float32, 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_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_MultiMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_MultiheadAttention_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_MultiheadAttention_eval_mode_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_MultiheadAttention_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_NLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_NLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_PReLU_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_PoissonNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_RMSNorm_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_RNNCell_cpu_float64, 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_ReLU6_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ReLU6_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_ReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ReflectionPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ReflectionPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ReflectionPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ReflectionPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ReflectionPad3d_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_float32, 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_ReplicationPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ReplicationPad3d_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_SmoothL1Loss_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_SmoothL1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_SoftMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_SoftMarginLoss_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_Softmax2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Softmax_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Softmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Softmin_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Softmin_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Softplus_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Softplus_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Softshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Softshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Softsign_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Softsign_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Tanh_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Tanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Tanhshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Tanhshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Threshold_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Threshold_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_TransformerDecoderLayer_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_TransformerEncoderLayer_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_TransformerEncoderLayer_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_TransformerEncoderLayer_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_TransformerEncoder_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_TransformerEncoder_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_TransformerEncoder_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Transformer_cpu_float32, 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_ZeroPad1d_cpu_float64, 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_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_AdaptiveAvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_AdaptiveAvgPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_AdaptiveAvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_AdaptiveMaxPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_AdaptiveMaxPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_AdaptiveMaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_AdaptiveMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_AdaptiveMaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_AdaptiveMaxPool3d_cpu_float64, 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_AvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_AvgPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_AvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_BCELoss_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_BCEWithLogitsLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_BatchNorm1d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_BatchNorm1d_eval_mode_cpu_float64, 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_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_BatchNorm2d_train_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_BatchNorm3d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_BatchNorm3d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Bilinear_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_Bilinear_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_CELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_CELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_CTCLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_CTCLoss_cpu_float64, 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_CircularPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_ConstantPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_ConstantPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_ConstantPad2d_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_Conv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Conv2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_Conv2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Conv3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_Conv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_ConvTranspose1d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_repr_nn_ConvTranspose1d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_repr_nn_ConvTranspose1d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_repr_nn_ConvTranspose1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_ConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_ConvTranspose2d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_repr_nn_ConvTranspose2d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_repr_nn_ConvTranspose2d_cpu_complex64, 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_complex128, test/test_modules.py::TestModuleCPU::test_repr_nn_ConvTranspose3d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_repr_nn_ConvTranspose3d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_repr_nn_ConvTranspose3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_ConvTranspose3d_cpu_float64, 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_float32, 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_Embedding_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_FractionalMaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_FractionalMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_FractionalMaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_FractionalMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_GELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_GELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_GLU_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_GRUCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_GRU_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_GRU_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_GRU_train_mode_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_GaussianNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_GroupNorm_cpu_bfloat16, test/test_modules.py::TestModuleCPU::test_repr_nn_GroupNorm_cpu_float16, test/test_modules.py::TestModuleCPU::test_repr_nn_GroupNorm_cpu_float32, 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_float32, 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_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_HingeEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_HuberLoss_cpu_float32, 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_InstanceNorm1d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_InstanceNorm1d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_InstanceNorm1d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_InstanceNorm2d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_InstanceNorm2d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_InstanceNorm2d_train_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_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_InstanceNorm3d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_InstanceNorm3d_train_mode_cpu_float64, 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_L1Loss_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_L1Loss_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_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_LPPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_LPPool3d_cpu_float32, 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_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_LSTM_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_LSTM_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_LSTM_train_mode_cpu_float64, 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_LazyConv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_LazyConv2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_LazyConv2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_LazyConv3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_LazyConv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_LazyConvTranspose1d_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_LazyConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_LazyConvTranspose3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_LazyConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_LeakyReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_LeakyReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Linear_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_Linear_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_LocalResponseNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_LocalResponseNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_LogSigmoid_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_LogSigmoid_cpu_float64, 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_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_MSELoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_MarginRankingLoss_cpu_float32, 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_MaxPool1d_cpu_float64, 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_Mish_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_MultiLabelMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_MultiLabelMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_MultiLabelSoftMarginLoss_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_MultiheadAttention_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_NLLLoss_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_PReLU_cpu_float64, 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_RMSNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_RMSNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_RNNCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_RNNCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_RNN_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_RNN_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_RNN_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_RNN_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_ReLU6_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_ReLU6_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_ReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_ReLU_cpu_float64, 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_ReflectionPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_ReflectionPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_ReflectionPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_ReplicationPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_ReplicationPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_ReplicationPad2d_cpu_float32, 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_ReplicationPad3d_cpu_float64, 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_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_Sigmoid_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_SmoothL1Loss_cpu_float32, 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_Softmax2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_Softmax2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Softmax_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_Softmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Softmin_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_Softmin_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Softplus_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_Softplus_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Softshrink_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_Softsign_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Tanh_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_Tanhshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Threshold_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_Threshold_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_TransformerDecoderLayer_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_TransformerDecoderLayer_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_TransformerEncoderLayer_eval_mode_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_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_TransformerEncoder_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_TransformerEncoder_train_mode_cpu_float32, 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_Transformer_cpu_float64, 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_ZeroPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_ZeroPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_ZeroPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_ZeroPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_AdaptiveAvgPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_AdaptiveAvgPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_AdaptiveAvgPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_AdaptiveAvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_AdaptiveAvgPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_AdaptiveAvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_AdaptiveMaxPool1d_cpu_float32, 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_float32, 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_AvgPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_AvgPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_AvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_AvgPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_AvgPool3d_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_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_BCEWithLogitsLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_BatchNorm1d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_BatchNorm1d_eval_mode_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_BatchNorm2d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_BatchNorm3d_eval_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_BatchNorm3d_train_mode_cpu_float64, 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_float32, 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_CircularPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_CircularPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_CircularPad3d_cpu_float64, 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_ConstantPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_ConstantPad3d_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_Conv3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_Conv3d_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_complex32, 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_ConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_ConvTranspose2d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_save_load_nn_ConvTranspose2d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ConvTranspose2d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_save_load_nn_ConvTranspose2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_ConvTranspose3d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_save_load_nn_ConvTranspose3d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ConvTranspose3d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_save_load_nn_ConvTranspose3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ConvTranspose3d_cpu_float64, 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_float32, 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_FractionalMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_FractionalMaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_FractionalMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_GELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_GELU_cpu_float64, 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_GRUCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_GRUCell_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_eval_mode_cpu_float64, 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_bfloat16, test/test_modules.py::TestModuleCPU::test_save_load_nn_GroupNorm_cpu_float16, test/test_modules.py::TestModuleCPU::test_save_load_nn_GroupNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_GroupNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_Hardshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_Hardshrink_cpu_float64, 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_HingeEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_HuberLoss_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_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_InstanceNorm1d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_InstanceNorm1d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_InstanceNorm1d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_InstanceNorm2d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_InstanceNorm2d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_InstanceNorm2d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_InstanceNorm2d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_InstanceNorm3d_eval_mode_cpu_float32, 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_InstanceNorm3d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_KLDivLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_KLDivLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_L1Loss_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_float32, 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_LPPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_LPPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_LPPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_LSTMCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_LSTMCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_LSTM_eval_mode_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_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_LSTM_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_LayerNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_LayerNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_LazyConv1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_LazyConv1d_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_LazyConv3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_LazyConv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_LazyConvTranspose1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_LazyConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_LazyConvTranspose2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_LazyConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_LazyConvTranspose3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_LazyConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_LeakyReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_LeakyReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_Linear_cpu_float32, 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_LocalResponseNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_LogSigmoid_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_LogSigmoid_cpu_float64, 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_MSELoss_cpu_float64, 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_MaxPool2d_cpu_float64, 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_Mish_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_Mish_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_MultiLabelMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_MultiLabelMarginLoss_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_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_MultiMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_MultiheadAttention_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_MultiheadAttention_eval_mode_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_MultiheadAttention_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_NLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_NLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_PReLU_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_float32, 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_RNNCell_cpu_float64, 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_float32, 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_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ReflectionPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_ReflectionPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ReflectionPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_ReflectionPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ReflectionPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_ReplicationPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ReplicationPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_ReplicationPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ReplicationPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_ReplicationPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ReplicationPad3d_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_float32, 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_SmoothL1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_SoftMarginLoss_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_Softmax2d_cpu_float64, 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_float32, 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_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_Softsign_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_Tanh_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_Tanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_Tanhshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_Tanhshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_Threshold_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_Threshold_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_TransformerDecoderLayer_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_eval_mode_cpu_float64, 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_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_TransformerEncoder_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_TransformerEncoder_train_mode_cpu_float64, 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_ZeroPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ZeroPad1d_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_save_load_nn_ZeroPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ZeroPad3d_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_False_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_AdaptiveMaxPool1d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_AdaptiveMaxPool1d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_AdaptiveMaxPool2d_swap_False_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_AvgPool1d_swap_True_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_AvgPool2d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_AvgPool3d_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_BCELoss_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_BCEWithLogitsLoss_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_BatchNorm2d_eval_mode_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_BatchNorm2d_train_mode_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_BatchNorm2d_train_mode_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_BatchNorm3d_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_False_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_False_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_CircularPad1d_swap_True_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_False_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_ConstantPad2d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ConstantPad3d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ConstantPad3d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Conv1d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Conv1d_swap_True_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_False_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_False_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_ELU_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ELU_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_Embedding_swap_True_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_FractionalMaxPool3d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_GELU_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_GLU_swap_True_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_GRU_eval_mode_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_GRU_train_mode_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_GRU_train_mode_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_GaussianNLLLoss_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_GaussianNLLLoss_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_GroupNorm_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_GroupNorm_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Hardshrink_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Hardshrink_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Hardswish_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_False_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_HingeEmbeddingLoss_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_HingeEmbeddingLoss_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_False_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_InstanceNorm1d_train_mode_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_InstanceNorm1d_train_mode_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_InstanceNorm2d_eval_mode_swap_False_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_False_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_InstanceNorm3d_train_mode_swap_True_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_KLDivLoss_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_L1Loss_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_LPPool1d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_LPPool1d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_LPPool2d_swap_False_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_LSTMCell_swap_True_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_eval_mode_swap_True_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_LSTM_train_mode_swap_True_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_LayerNorm_swap_True_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_False_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_LogSoftmax_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_LogSoftmax_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_MSELoss_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_MarginRankingLoss_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_MarginRankingLoss_swap_True_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_MaxPool1d_swap_True_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_False_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_MultiLabelMarginLoss_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_MultiLabelMarginLoss_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_MultiLabelSoftMarginLoss_swap_True_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_eval_mode_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_MultiheadAttention_eval_mode_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_MultiheadAttention_train_mode_swap_False_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_False_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_PoissonNLLLoss_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_PoissonNLLLoss_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_RMSNorm_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_RMSNorm_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_RNNCell_swap_True_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_eval_mode_swap_True_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_ReLU6_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ReLU_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ReLU_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ReflectionPad1d_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_ReflectionPad2d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ReflectionPad2d_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_ReplicationPad1d_swap_True_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_ReplicationPad2d_swap_True_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_ReplicationPad3d_swap_True_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_SELU_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_SiLU_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_SiLU_swap_True_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_Sigmoid_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_SmoothL1Loss_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_Softmax_swap_True_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_Softmin_swap_True_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_Softshrink_swap_True_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_Softsign_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Tanh_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_Tanhshrink_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Threshold_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_TransformerDecoderLayer_swap_True_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_eval_mode_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_TransformerEncoderLayer_train_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_False_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_empty_nn_ZeroPad3d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ZeroPad3d_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_AdaptiveAvgPool1d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AdaptiveAvgPool2d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AdaptiveAvgPool2d_swap_False_set_grad_True_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_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AdaptiveAvgPool3d_swap_False_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_AdaptiveAvgPool3d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AdaptiveMaxPool1d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AdaptiveMaxPool1d_swap_False_set_grad_True_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_AdaptiveMaxPool2d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AdaptiveMaxPool2d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AdaptiveMaxPool3d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AdaptiveMaxPool3d_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_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AvgPool1d_swap_False_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_AvgPool1d_swap_True_set_grad_True_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_AvgPool2d_swap_True_set_grad_True_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_False_set_grad_True_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_AvgPool3d_swap_True_set_grad_True_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_BCELoss_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BCELoss_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BCEWithLogitsLoss_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BCEWithLogitsLoss_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BCEWithLogitsLoss_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BCEWithLogitsLoss_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BatchNorm1d_eval_mode_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BatchNorm1d_eval_mode_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BatchNorm1d_eval_mode_swap_True_set_grad_False_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_False_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_BatchNorm1d_train_mode_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BatchNorm1d_train_mode_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BatchNorm2d_eval_mode_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BatchNorm2d_eval_mode_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BatchNorm2d_eval_mode_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BatchNorm2d_eval_mode_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BatchNorm2d_train_mode_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BatchNorm2d_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_False_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_False_set_grad_True_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_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Bilinear_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Bilinear_swap_True_set_grad_False_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_False_set_grad_True_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_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_CTCLoss_swap_True_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_False_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_CircularPad2d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_CircularPad2d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_CircularPad3d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_CircularPad3d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_CircularPad3d_swap_True_set_grad_False_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_False_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_ConstantPad1d_swap_True_set_grad_True_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_False_set_grad_True_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_False_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_Conv1d_swap_True_set_grad_True_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_False_set_grad_True_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_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Conv3d_swap_True_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_False_set_grad_True_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_ConvTranspose2d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ConvTranspose2d_swap_True_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_False_set_grad_True_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_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_CosineEmbeddingLoss_swap_False_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_CosineEmbeddingLoss_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_CrossEntropyLoss_swap_False_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_False_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_False_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_ELU_swap_True_set_grad_True_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_False_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_FractionalMaxPool2d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_FractionalMaxPool2d_swap_True_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_GELU_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_GELU_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_GELU_swap_True_set_grad_True_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_GLU_swap_True_set_grad_True_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_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_GRUCell_swap_True_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_eval_mode_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_GRU_eval_mode_swap_True_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_False_set_grad_True_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_GRU_train_mode_swap_True_set_grad_True_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_False_set_grad_True_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_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_GroupNorm_swap_False_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_Hardshrink_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Hardswish_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Hardswish_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Hardswish_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_False_set_grad_True_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_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_HingeEmbeddingLoss_swap_False_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_HingeEmbeddingLoss_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_HuberLoss_swap_False_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_HuberLoss_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_HuberLoss_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm1d_eval_mode_swap_False_set_grad_False_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_InstanceNorm1d_eval_mode_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm1d_eval_mode_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm1d_train_mode_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm1d_train_mode_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm1d_train_mode_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm1d_train_mode_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm2d_eval_mode_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm2d_eval_mode_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm2d_eval_mode_swap_True_set_grad_False_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_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm2d_train_mode_swap_False_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_eval_mode_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm3d_eval_mode_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm3d_eval_mode_swap_True_set_grad_True_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_InstanceNorm3d_train_mode_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm3d_train_mode_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm3d_train_mode_swap_True_set_grad_True_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_KLDivLoss_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_KLDivLoss_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_KLDivLoss_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_L1Loss_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_L1Loss_swap_False_set_grad_True_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_L1Loss_swap_True_set_grad_True_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_LPPool2d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LPPool2d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LPPool2d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LPPool2d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LPPool3d_swap_False_set_grad_False_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_False_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_False_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_LSTMCell_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LSTMCell_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LSTM_eval_mode_swap_False_set_grad_False_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_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LSTM_train_mode_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LSTM_train_mode_swap_True_set_grad_False_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_False_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_False_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_False_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_LeakyReLU_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Linear_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Linear_swap_False_set_grad_True_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_Linear_swap_True_set_grad_True_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_False_set_grad_True_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_False_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_False_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_False_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_MaxPool1d_swap_True_set_grad_True_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_MaxPool2d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MaxPool2d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MaxPool2d_swap_True_set_grad_True_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_MaxPool3d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MaxPool3d_swap_True_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_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Mish_swap_True_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_MultiLabelMarginLoss_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MultiLabelMarginLoss_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MultiLabelSoftMarginLoss_swap_False_set_grad_False_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_MultiLabelSoftMarginLoss_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MultiLabelSoftMarginLoss_swap_True_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_False_set_grad_True_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_MultiMarginLoss_swap_True_set_grad_True_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_eval_mode_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MultiheadAttention_eval_mode_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MultiheadAttention_eval_mode_swap_True_set_grad_True_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_MultiheadAttention_train_mode_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_NLLLoss_swap_False_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_False_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_False_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_False_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_False_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_RMSNorm_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_RMSNorm_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_RNNCell_swap_False_set_grad_False_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_eval_mode_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_RNN_eval_mode_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_RNN_eval_mode_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_RNN_train_mode_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_RNN_train_mode_swap_False_set_grad_True_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_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReLU6_swap_False_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_ReLU6_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReLU_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReLU_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReLU_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_False_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_ReflectionPad1d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReflectionPad1d_swap_True_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_False_set_grad_True_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_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReflectionPad3d_swap_True_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_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReplicationPad1d_swap_False_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_ReplicationPad1d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReplicationPad2d_swap_False_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_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReplicationPad3d_swap_False_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_ReplicationPad3d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_SELU_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_SELU_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_SELU_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_False_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_SiLU_swap_True_set_grad_True_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_Sigmoid_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Sigmoid_swap_True_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_False_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_SoftMarginLoss_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_SoftMarginLoss_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_SoftMarginLoss_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_SoftMarginLoss_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Softmax2d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Softmax2d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Softmax2d_swap_True_set_grad_False_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_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Softmax_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Softmax_swap_True_set_grad_False_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_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Softmin_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Softmin_swap_True_set_grad_False_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_Softplus_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Softplus_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Softplus_swap_True_set_grad_True_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_False_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_False_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_False_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_Tanh_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Tanh_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Tanh_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Tanh_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Tanhshrink_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Tanhshrink_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Tanhshrink_swap_True_set_grad_False_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_Threshold_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Threshold_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_TransformerDecoderLayer_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_TransformerDecoderLayer_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_TransformerDecoderLayer_swap_True_set_grad_False_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_False_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_eval_mode_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_TransformerEncoderLayer_train_mode_swap_False_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_False_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_eval_mode_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_TransformerEncoder_train_mode_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_TransformerEncoder_train_mode_swap_False_set_grad_True_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_TransformerEncoder_train_mode_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Transformer_swap_False_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_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ZeroPad1d_swap_True_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_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ZeroPad2d_swap_True_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_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ZeroPad3d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ZeroPad3d_swap_True_set_grad_True_cpu_float32 2025-08-14T23:26:14.0914893Z 2025-08-14T23:26:19.1903187Z Running test_ops 3/9 ... [2025-08-14 23:26:19.189643] 2025-08-14T23:26:19.1903897Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:26:19.1912862Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops.py', '-m', 'not serial', '--shard-id=3', '--num-shards=9', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:26:19.190839] 2025-08-14T23:26:37.9249260Z 2025-08-14T23:26:37.9250073Z test_ops 2/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_2.9_8e1d3780335732ec_.log 2025-08-14T23:26:38.0403132Z Running 3752 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_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-14T23:26:38.1520496Z 2025-08-14T23:26:43.2981115Z Running test_ops 9/9 ... [2025-08-14 23:26:43.297837] 2025-08-14T23:26:43.2981826Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:26:43.2991114Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops.py', '-m', 'not serial', '--shard-id=9', '--num-shards=9', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:26:43.298440] 2025-08-14T23:27:23.4183991Z 2025-08-14T23:27:23.4184812Z test_ops 1/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_1.9_ed013c5de6a82eb5_.log 2025-08-14T23:27:23.5354506Z Running 3730 items in this shard: test/test_ops.py::TestCommonCPU::test_compare_cpu___rmul___cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu___rxor___cpu_int64, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs__conversions_byte_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs__conversions_double_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs__conversions_float_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_addcmul_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_arange_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_dstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_expand_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_fft_fftshift_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_fmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_nn_functional_dropout_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_nn_functional_huber_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_repeat_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_std_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_to_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__segment_reduce_offsets_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_bincount_cpu_int64, test/test_ops.py::TestCommonCPU::test_compare_cpu_bitwise_left_shift_cpu_int64, test/test_ops.py::TestCommonCPU::test_compare_cpu_chalf_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_cumsum_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_gather_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_grid_sampler_2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_histc_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_hsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_index_reduce_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_cholesky_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_lu_factor_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_matrix_rank_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_qr_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_svdvals_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_logaddexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_max_pool2d_with_indices_backward_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_median_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_mul_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_new_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_bilinear_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_interpolate_area_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_interpolate_linear_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_interpolate_trilinear_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_linear_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_max_unpool2d_grad_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_multi_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_soft_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_upsample_nearest_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_qr_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_renorm_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_resize__cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_sparse_sampled_addmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_special_zeta_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_split_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_std_unbiased_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_transpose_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_atleast_2d_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_block_diag_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_cfloat_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_chalf_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_column_stack_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_double_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_dstack_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_float_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_index_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_index_put_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_long_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_masked_fill_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_new_empty_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_ravel_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_unsafe_split_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_vsplit_cpu_complex32, test/test_ops.py::TestCommonCPU::test_dtypes___rdiv___cpu, test/test_ops.py::TestCommonCPU::test_dtypes__native_batch_norm_legit_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs__conversions_complex_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs__conversions_polar_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs__conversions_short_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_acosh_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_addcmul_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_all_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_as_strided_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_as_strided_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_atleast_1d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_broadcast_tensors_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_cauchy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_exp_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_eye_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_rfft2_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_hsplit_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_igamma_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_imag_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_isinf_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_isnan_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_isposinf_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_linalg_svdvals_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_log10_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_lt_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_maximum_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_mean_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_minimum_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_ne_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_new_empty_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_new_empty_strided_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_dropout_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_gelu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_softmax_with_dtype_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_triplet_margin_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_prod_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_real_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_rot90_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_rsub_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_split_with_sizes_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_square_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_triu_indices_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_zeros_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_argmin_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_argsort_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_argwhere_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_as_strided_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_baddbmm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_block_diag_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_bool_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cartesian_prod_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cholesky_solve_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_corrcoef_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_diag_embed_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_dot_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_eq_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_erfinv_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fft_fft_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fft_ifftn_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_gcd_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_gradient_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_heaviside_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_i0_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_igammac_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_lgamma_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_cond_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_ldl_solve_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_solve_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_tensorinv_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_logical_and_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_logical_not_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_lu_unpack_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_argmax_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_softmax_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_sum_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_matrix_exp_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_max_pool2d_with_indices_backward_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_max_reduction_with_dim_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_min_binary_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_mvlgamma_mvlgamma_p_5_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_ne_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_adaptive_avg_pool3d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_channel_shuffle_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_conv_transpose3d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_instance_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_max_pool1d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_mse_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_pad_circular_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_pdist_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_poisson_nll_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_selu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_softplus_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_tanhshrink_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_norm_nuc_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_ones_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_polygamma_polygamma_n_2_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_put_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_rad2deg_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_remainder_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_renorm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_scalar_tensor_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_select_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_sigmoid_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_signal_windows_exponential_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_sparse_mm_reduce_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_modified_bessel_i0_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_spherical_bessel_j0_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_xlog1py_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_squeeze_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_std_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_trapz_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_triu_indices_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_unfold_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_where_cpu, test/test_ops.py::TestCommonCPU::test_errors___radd___cpu, test/test_ops.py::TestCommonCPU::test_errors___rpow___cpu, test/test_ops.py::TestCommonCPU::test_errors_aminmax_cpu, test/test_ops.py::TestCommonCPU::test_errors_bitwise_xor_cpu, test/test_ops.py::TestCommonCPU::test_errors_bucketize_cpu, test/test_ops.py::TestCommonCPU::test_errors_cat_cpu, test/test_ops.py::TestCommonCPU::test_errors_clamp_min_cpu, test/test_ops.py::TestCommonCPU::test_errors_complex_cpu, test/test_ops.py::TestCommonCPU::test_errors_diff_cpu, test/test_ops.py::TestCommonCPU::test_errors_fft_ihfft_cpu, test/test_ops.py::TestCommonCPU::test_errors_fft_ihfftn_cpu, test/test_ops.py::TestCommonCPU::test_errors_fft_irfftn_cpu, test/test_ops.py::TestCommonCPU::test_errors_gcd_cpu, test/test_ops.py::TestCommonCPU::test_errors_gradient_cpu, test/test_ops.py::TestCommonCPU::test_errors_linspace_cpu, test/test_ops.py::TestCommonCPU::test_errors_linspace_tensor_overload_cpu, test/test_ops.py::TestCommonCPU::test_errors_logspace_tensor_overload_cpu, test/test_ops.py::TestCommonCPU::test_errors_median_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_adaptive_avg_pool1d_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_gelu_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_huber_loss_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_rms_norm_cpu, test/test_ops.py::TestCommonCPU::test_errors_remainder_cpu, test/test_ops.py::TestCommonCPU::test_errors_roll_cpu, test/test_ops.py::TestCommonCPU::test_errors_scatter_add_cpu, test/test_ops.py::TestCommonCPU::test_errors_signal_windows_exponential_cpu, test/test_ops.py::TestCommonCPU::test_errors_special_chebyshev_polynomial_v_cpu, test/test_ops.py::TestCommonCPU::test_errors_vsplit_cpu, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_abs_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_addr_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_asinh_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_bernoulli_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_cholesky_inverse_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_clamp_max_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_erfinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_eye_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_fft_hfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_fmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_geqrf_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_heaviside_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_histogram_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_index_reduce_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_isposinf_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_kthvalue_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_lgamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_cholesky_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_cross_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_logspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_lu_unpack_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_max_binary_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_max_reduction_no_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_mm_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_mul_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_normal_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_polygamma_polygamma_n_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_randn_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_round_decimals_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_sin_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_bessel_j0_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_scaled_modified_bessel_k0_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_vdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_xlogy_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices___getitem___cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices___rmul___cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices___rpow___cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices___rsub___cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices__unsafe_masked_index_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_addmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_addmm_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_addmm_decomposed_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_addr_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_aminmax_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_angle_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_argmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_as_strided_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_atan_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_atleast_3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_atleast_3d_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_bincount_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_bitwise_right_shift_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_block_diag_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_bool_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_byte_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_clamp_min_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_conj_physical_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_corrcoef_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_cummax_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_cumulative_trapezoid_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_deg2rad_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_diagflat_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_digamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_div_floor_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_div_no_rounding_mode_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_empty_permuted_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_erfinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_erfinv_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_expand_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_fft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_fftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_ifft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_ifftshift_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_ihfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_rfft_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_flip_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fmod_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_hash_tensor_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_histc_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_index_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_index_reduce_amin_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_index_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_isneginf_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_item_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_jiterator_binary_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_ldl_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_log_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_logical_xor_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_long_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_lt_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_lu_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_argmax_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_matmul_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_max_reduction_with_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_maximum_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_maximum_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_median_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_movedim_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_msort_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_mvlgamma_mvlgamma_p_5_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_new_full_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_bilinear_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_conv1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_instance_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_one_hot_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_pad_circular_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_pad_constant_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_pad_replicate_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_pad_replicate_negative_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_relu_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_selu_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_softmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_upsample_nearest_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_ormqr_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_polygamma_polygamma_n_1_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_positive_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_put_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_randint_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_randn_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_repeat_interleave_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_resolve_neg_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_scatter_reduce_prod_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_signal_windows_kaiser_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_sort_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_sparse_mm_reduce_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_bessel_j0_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_bessel_y0_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_bessel_y1_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_chebyshev_polynomial_t_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_entr_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_i1e_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_legendre_polynomial_p_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_modified_bessel_i0_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_split_with_sizes_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_sum_to_size_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_svd_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_take_along_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_trace_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_trapezoid_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_triangular_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_tril_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_triu_indices_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_trunc_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_unbind_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_unsqueeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_zero__cpu_float32, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values___ror___cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_angle_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_atleast_1d_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_atleast_2d_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_cfloat_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_char_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_dstack_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_expand_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fft_fft_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fft_irfftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fft_rfft_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_flip_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fmax_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_gt_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_index_put_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_index_select_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_jiterator_4inputs_with_extra_args_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_jiterator_unary_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_log2_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_mH_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_meshgrid_list_of_tensors_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_min_binary_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_nonzero_static_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_polygamma_polygamma_n_3_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_real_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_repeat_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_repeat_interleave_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_scatter_reduce_amin_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_bessel_y0_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_bessel_y1_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_chebyshev_polynomial_v_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_chebyshev_polynomial_w_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_ndtri_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_scaled_modified_bessel_k1_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_split_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_split_with_sizes_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_unique_consecutive_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_view_as_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_zeros_cpu_bool, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___getitem___cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___rsub___cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples__chunk_cat_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples__chunk_cat_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples__unsafe_masked_index_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_add_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addcmul_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addmm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_amax_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_angle_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_argwhere_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_argwhere_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_as_strided_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_atan2_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_bitwise_not_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_bitwise_right_shift_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_bucketize_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cartesian_prod_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cartesian_prod_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_clamp_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_clamp_max_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_clamp_min_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_conj_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_corrcoef_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cosh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cov_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cumulative_trapezoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diagonal_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diff_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_div_no_rounding_mode_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_dot_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_empty_like_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_exp2_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_expand_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_fft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_hfft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_hfft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_hfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ifft_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_rfft_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_flipud_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_floor_divide_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_gt_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_gt_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_hash_tensor_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_heaviside_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_hsplit_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_hstack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_hstack_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_int_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_kthvalue_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ldexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_cholesky_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_diagonal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_eig_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_ldl_factor_ex_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_ldl_factor_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_lu_factor_ex_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_matrix_rank_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_pinv_hermitian_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_slogdet_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_solve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_vander_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linspace_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_log10_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_log_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logical_and_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logical_not_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logical_or_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logsumexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_cumsum_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_fill_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_std_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_std_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_matmul_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_median_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_min_binary_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_minimum_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nanquantile_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ne_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_new_full_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_new_zeros_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_avg_pool1d_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_conv3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_conv_transpose3d_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_feature_alpha_dropout_without_train_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_interpolate_trilinear_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_kl_div_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_linear_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pad_circular_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_relu6_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_softmin_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_softsign_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_softsign_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nonzero_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ones_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_polygamma_polygamma_n_4_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_positive_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_pow_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_rand_like_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_renorm_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_repeat_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_reshape_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_resolve_conj_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_resolve_neg_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_scalar_tensor_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_scatter_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_select_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_select_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_signal_windows_hann_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_signbit_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_airy_ai_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_bessel_j1_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_bessel_y0_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_entr_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_i0e_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_i1e_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_modified_bessel_i1_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_scaled_modified_bessel_k0_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_shifted_chebyshev_polynomial_t_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_split_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_split_list_args_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_split_with_sizes_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sqrt_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_square_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sub_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_t_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_t_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_take_along_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_take_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_tan_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_tanh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_tanh_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_trace_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_transpose_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unbind_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unbind_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unflatten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unflatten_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unique_consecutive_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unsafe_chunk_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_view_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_zero__cpu_float32, test/test_ops.py::TestCommonCPU::test_numpy_ref_clamp_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_clone_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_clone_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_equal_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_linalg_cross_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_conv_transpose3d_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_l1_loss_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_l1_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_smooth_l1_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_ravel_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_searchsorted_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_squeeze_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_squeeze_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_unbind_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_unbind_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_unravel_index_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_where_cpu_int64, test/test_ops.py::TestCommonCPU::test_out__chunk_cat_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs__conversions_cdouble_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs__conversions_char_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs__conversions_double_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs__conversions_float_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs__conversions_half_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs__conversions_long_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_atan2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_bitwise_or_cpu_int64, test/test_ops.py::TestCommonCPU::test_out__refs_erfinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_expand_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_expm1_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_flip_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_flipud_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_floor_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_isfinite_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_native_layer_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nextafter_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_celu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_elu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_glu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_pdist_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_tanhshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_randn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_rot90_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_sigmoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_signbit_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_special_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_sum_to_size_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_transpose_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_triu_indices_cpu_int64, test/test_ops.py::TestCommonCPU::test_out__refs_unsqueeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_view_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_broadcast_shapes_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_conj_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_constant_pad_nd_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_diagonal_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_equal_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_erfinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fft_rfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fliplr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_floor_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_geometric_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_hsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_index_reduce_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_inner_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_isclose_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_isin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_isnan_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_lcm_cpu_int64, test/test_ops.py::TestCommonCPU::test_out_linalg_cross_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_pinv_singular_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_slogdet_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_log1p_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_logit_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_mT_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_argmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_std_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_min_binary_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_mv_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nanquantile_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_native_dropout_backward_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_new_zeros_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_avg_pool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_conv_transpose2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_cosine_embedding_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_elu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_hardshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_max_unpool3d_grad_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_relu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_softplus_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nonzero_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_permute_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_polygamma_polygamma_n_4_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_remainder_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_acos_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_addmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_baddbmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_cholesky_inverse_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_cumsum_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_diagonal_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_dstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_erf_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_erfc_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_hfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_ifftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_irfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_frexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_hstack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_hstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_lgamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_eigh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_eigvalsh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_inv_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_lu_factor_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_slogdet_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_svd_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_svdvals_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linspace_tensor_overload_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_log10_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_logaddexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_lu_solve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_maximum_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_minimum_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_nan_to_num_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_nansum_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_native_batch_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_neg_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_nn_functional_logsigmoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_outer_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_remainder_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_round_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_scatter_add_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_special_xlog1py_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_svd_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_take_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_take_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_triu_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_unsqueeze_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_vdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_rot90_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_sgn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_signal_windows_bartlett_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_signal_windows_cosine_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_signal_windows_kaiser_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_bessel_y0_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_i0e_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_i1e_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_svd_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_tensor_split_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_tile_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_trapezoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_tril_indices_cpu_int64, test/test_ops.py::TestCommonCPU::test_out_vstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_warning___rpow___cpu, test/test_ops.py::TestCommonCPU::test_out_warning___rxor___cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs__conversions_byte_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs__conversions_cfloat_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs__conversions_long_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_abs_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_add_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_bitwise_not_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_broadcast_to_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_empty_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_equal_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_exp2_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fft_ifft2_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fft_rfft_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_float_power_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_gt_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_i0_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_index_add_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_linalg_svd_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_linalg_vector_norm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_log_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_movedim_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nextafter_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_celu_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_gelu_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_mse_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_normal_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_randn_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_real_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_remainder_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_special_entr_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_special_softmax_with_dtype_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_squeeze_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_sum_to_size_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_trace_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_view_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__unsafe_masked_index_put_accumulate_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_abs_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_addbmm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_as_strided_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_atanh_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_atleast_1d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_bitwise_xor_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_broadcast_to_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_cholesky_solve_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_deg2rad_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_diagonal_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_diff_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_empty_strided_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_eq_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_expand_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fft_hfft_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fft_ifftn_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_floor_divide_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fmod_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_geqrf_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_hstack_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_igammac_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_item_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_kthvalue_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_lerp_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_lstsq_grad_oriented_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_lu_factor_ex_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_matrix_norm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_matrix_rank_hermitian_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_norm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_svdvals_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_logspace_tensor_overload_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_lu_unpack_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_argmax_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_logaddexp_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_maximum_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_mvlgamma_mvlgamma_p_1_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nan_to_num_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_new_empty_strided_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_alpha_dropout_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_bilinear_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_conv3d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_conv_transpose3d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_dropout3d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_linear_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_multilabel_margin_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_one_hot_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_pad_constant_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_relu_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_selu_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_softmin_with_dtype_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_upsample_nearest_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_ones_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_pca_lowrank_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_ravel_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_remainder_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_scatter_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_short_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_signal_windows_exponential_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_signbit_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_bessel_j0_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_i0e_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_i1e_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_modified_bessel_i1_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_modified_bessel_k1_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_ndtr_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_scaled_modified_bessel_k0_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_shifted_chebyshev_polynomial_w_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_squeeze_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_std_mean_unbiased_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_std_unbiased_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_svd_lowrank_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_take_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_tril_indices_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_trunc_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_unique_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_unravel_index_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_unsqueeze_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_vsplit_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_xlogy_cpu, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float___rdiv___cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_acosh_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_acosh_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_asin_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_atan2_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_atanh_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_atanh_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_deg2rad_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_div_no_rounding_mode_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_erf_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_erf_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_exp2_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_float_power_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_i0_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_ldexp_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log1p_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log2_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_mvlgamma_mvlgamma_p_3_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_1_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_3_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_4_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_rad2deg_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_rad2deg_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_reciprocal_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sigmoid_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sin_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sinc_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_u_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_v_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_hermite_polynomial_he_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_laguerre_polynomial_l_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_legendre_polynomial_p_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_v_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_zeta_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_true_divide_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_T_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_T_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_T_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bfloat16_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bool_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_byte_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cfloat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_chalf_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_chalf_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_chalf_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_char_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_char_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_double_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_float_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_half_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_half_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_int_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_abs_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acos_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acosh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_add_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addcmul_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addr_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addr_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_alias_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_alias_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_all_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_allclose_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amax_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amin_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amin_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_any_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_arange_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_partial_views_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asin_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asin_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asin_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asin_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asinh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asinh_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atanh_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atanh_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_2d_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_not_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_or_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_block_diag_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_block_diag_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_block_diag_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_shapes_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_tensors_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cauchy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ceil_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clone_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_column_stack_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_column_stack_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_physical_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_physical_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_physical_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_constant_pad_nd_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_constant_pad_nd_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_constant_pad_nd_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_constant_pad_nd_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_copysign_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cos_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cos_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_count_nonzero_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumprod_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_embed_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_embed_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_digamma_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_no_rounding_mode_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_no_rounding_mode_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_no_rounding_mode_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_trunc_rounding_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dot_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dstack_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dstack_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dstack_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_like_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_like_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eq_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eq_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_equal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_equal_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_equal_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfinv_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expm1_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expm1_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exponential_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eye_cpu_float8_e4m3fnuz, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eye_cpu_float8_e5m2, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eye_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fft2_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fft_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftn_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftshift_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftshift_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftshift_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftshift_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftshift_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfftn_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftn_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfft_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfft2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfftn_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfft2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfft_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfftn_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fill_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fill_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fill_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flatten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flip_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flip_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fliplr_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fliplr_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flipud_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmax_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmax_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmax_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmod_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmod_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ge_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_geometric_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_igammac_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_add_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_fill_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_select_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_select_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isclose_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isclose_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isfinite_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isinf_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isinf_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isinf_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isnan_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isneginf_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isposinf_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_le_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lgamma_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_vector_norm_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_vector_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log1p_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log1p_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log1p_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_normal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_normal_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_and_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_and_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_and_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_not_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_not_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_not_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_not_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_or_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_xor_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lt_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_maximum_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_maximum_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_list_of_tensors_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_list_of_tensors_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_variadic_tensors_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_minimum_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_movedim_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_mul_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nan_to_num_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ne_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_neg_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_neg_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_neg_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_strided_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_strided_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_strided_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_full_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_full_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_ones_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_zeros_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_zeros_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nextafter_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_channel_shuffle_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_dropout_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_dropout_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_glu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_group_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_l1_loss_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pairwise_distance_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pairwise_distance_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_shuffle_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_shuffle_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_shuffle_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_prelu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_relu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_relu_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_selu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmax_with_dtype_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmax_with_dtype_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmax_with_dtype_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmax_with_dtype_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softplus_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softshrink_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_tanhshrink_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_tanhshrink_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_tanhshrink_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_triplet_margin_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_triplet_margin_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_normal__in_place_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_normal_number_mean_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ones_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ones_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_positive_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_positive_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_positive_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_prod_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rad2deg_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_randn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ravel_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ravel_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ravel_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_real_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reciprocal_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_repeat_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_repeat_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_as_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_roll_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_roll_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rot90_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rot90_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsqrt_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsqrt_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsub_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sgn_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sign_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sign_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sign_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sin_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sin_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinc_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinc_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinh_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinh_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinh_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_bessel_j0_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_bessel_j0_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_bessel_j1_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_entr_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_entr_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_erfcx_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1e_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_log_ndtr_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_log_softmax_with_dtype_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_log_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_log_softmax_with_dtype_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_logit_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_1_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_1_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_1_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_3_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_ndtr_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_ndtr_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_softmax_with_dtype_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_spherical_bessel_j0_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_square_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_stack_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_std_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_stft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sub_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_take_along_dim_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_take_along_dim_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tan_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tanh_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tanh_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tensor_split_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tensor_split_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tensor_split_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tensor_split_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tensor_split_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_to_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tril_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tril_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_true_divide_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_trunc_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unflatten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unflatten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vdot_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vdot_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_as_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_as_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_as_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vsplit_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vstack_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vstack_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_where_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_zeros_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_T_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_cat_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_fft_ihfftn_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_fmax_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_hstack_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_linalg_diagonal_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_linspace_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_logspace_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_renorm_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_rsub_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_special_xlog1py_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_tril_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_true_divide_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_unbind_copy_cpu, 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_T_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bfloat16_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bool_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_byte_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_byte_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cdouble_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cdouble_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cfloat_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cfloat_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cfloat_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_chalf_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_chalf_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_char_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_double_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_int_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_short_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_short_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_abs_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acos_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_add_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addcmul_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addcmul_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addcmul_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addr_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addr_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_all_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_allclose_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_allclose_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_amax_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_amin_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_any_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_any_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_copy_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_copy_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_copy_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_scatter_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asin_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asin_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asin_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asinh_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atanh_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_1d_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_1d_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_2d_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_2d_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_3d_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_left_shift_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_or_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_xor_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_tensors_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_tensors_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bucketize_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cat_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cat_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ceil_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_chunk_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_chunk_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_chunk_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_max_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clone_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_column_stack_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_column_stack_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_physical_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_physical_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_physical_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_constant_pad_nd_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_constant_pad_nd_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_contiguous_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_copysign_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cos_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cos_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cosh_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cosh_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumprod_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumsum_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_deg2rad_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_embed_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_embed_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_embed_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_copy_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_copy_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_copy_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_scatter_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_scatter_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_digamma_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_digamma_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_floor_rounding_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_floor_rounding_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_no_rounding_mode_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_no_rounding_mode_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_trunc_rounding_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_trunc_rounding_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dot_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dot_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dsplit_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dstack_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_like_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_strided_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_strided_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eq_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eq_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_equal_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_equal_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erf_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erfc_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erfc_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erfinv_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erfinv_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exp2_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exp2_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exp2_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exp2_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exp_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exp_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exp_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_as_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_as_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_as_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_copy_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expm1_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eye_executor_aten_cpu_float8_e4m3fn, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eye_executor_aten_cpu_float8_e5m2, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fft2_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fft2_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fft_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fftn_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fftshift_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fftshift_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfft_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfftn_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfftn_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifft_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftn_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftshift_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ihfft2_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ihfft_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ihfft_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ihfftn_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfft2_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfft2_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfft_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfftn_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfft2_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfft2_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfft2_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flatten_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flip_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flipud_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flipud_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_float_power_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_float_power_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_floor_divide_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmax_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmax_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmin_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmod_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_frac_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_gcd_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ge_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_geometric_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_heaviside_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_heaviside_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hsplit_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hstack_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hypot_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_add_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_copy_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_copy_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_copy_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_copy_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_copy_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_fill_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_select_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_select_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isclose_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isclose_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isfinite_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isfinite_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isinf_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isinf_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isinf_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isnan_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isnan_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isposinf_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isreal_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_le_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_le_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_le_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lgamma_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lgamma_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lgamma_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_diagonal_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_svd_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_svdvals_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_vecdot_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_vecdot_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log1p_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log2_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log2_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_softmax_with_dtype_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_softmax_with_dtype_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logaddexp_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_not_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_not_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_xor_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logsumexp_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logsumexp_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_masked_fill_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_masked_fill_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_masked_fill_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_maximum_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_maximum_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_mean_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_mean_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_list_of_tensors_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_variadic_tensors_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_variadic_tensors_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_variadic_tensors_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_variadic_tensors_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_movedim_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_movedim_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_mul_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nan_to_num_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_copy_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_copy_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_copy_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_native_layer_norm_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_native_layer_norm_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ne_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ne_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_neg_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_strided_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_full_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_full_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_full_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_ones_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_ones_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_zeros_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nextafter_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_channel_shuffle_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_channel_shuffle_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_channel_shuffle_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_glu_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_glu_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_group_norm_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_group_norm_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_hardshrink_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_huber_loss_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_l1_loss_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_layer_norm_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_leaky_relu_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_mish_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pdist_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_shuffle_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_shuffle_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_unshuffle_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_unshuffle_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_unshuffle_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_poisson_nll_loss_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_prelu_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_relu_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_relu_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_selu_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmax_with_dtype_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmax_with_dtype_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmin_with_dtype_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_tanhshrink_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_threshold_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_threshold_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_triplet_margin_loss_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_triplet_margin_loss_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_triplet_margin_loss_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_triplet_margin_loss_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_normal_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_normal_number_mean_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ones_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ones_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_copy_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_copy_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_positive_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_pow_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_prod_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rad2deg_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rad2deg_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rad2deg_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_randn_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_randn_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ravel_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ravel_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reciprocal_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reciprocal_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_renorm_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_repeat_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_as_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_as_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_roll_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_roll_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_round_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsqrt_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsqrt_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_select_scatter_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sgn_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sgn_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sigmoid_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sin_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinc_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinc_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinh_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_softmax_with_dtype_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_bessel_j1_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_entr_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i0e_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i1_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_log_softmax_with_dtype_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_3_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_ndtri_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_ndtri_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_softmax_with_dtype_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_spherical_bessel_j0_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_xlog1py_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_xlog1py_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_xlog1py_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_zeta_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_split_with_sizes_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_split_with_sizes_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_square_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_copy_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_multiple_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_multiple_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_stack_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_std_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_stft_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sub_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sub_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sum_to_size_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sum_to_size_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sum_to_size_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_copy_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_copy_executor_aten_cpu_int8, 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_t_executor_aten_cpu_int64, 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_tanh_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tensor_split_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tril_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_true_divide_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_true_divide_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_true_divide_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_copy_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unflatten_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_copy_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_copy_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_copy_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_copy_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_copy_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_var_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vsplit_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vsplit_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vsplit_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vstack_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_where_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_zeros_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_T_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_T_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bool_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bool_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_byte_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cdouble_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cdouble_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_chalf_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_chalf_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_char_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_double_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_double_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_double_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_float_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_float_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_half_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_int_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_long_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_long_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_short_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_abs_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_abs_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acos_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acosh_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_add_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addcmul_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addr_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_alias_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_alias_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_alias_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_all_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_all_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_amax_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_amax_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_amax_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_amin_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_amin_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_amin_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_any_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_arange_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_arange_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_scatter_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asin_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asinh_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_1d_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_2d_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_3d_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_3d_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_3d_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_and_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_xor_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_block_diag_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_tensors_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bucketize_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bucketize_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bucketize_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cat_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cauchy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ceil_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_max_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_max_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_max_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_min_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_min_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_column_stack_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_column_stack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_column_stack_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_column_stack_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_column_stack_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_column_stack_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_column_stack_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_physical_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_constant_pad_nd_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_constant_pad_nd_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_constant_pad_nd_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_constant_pad_nd_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_contiguous_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_contiguous_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_contiguous_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cos_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cosh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cosh_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cosh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_count_nonzero_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumprod_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumprod_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumsum_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_deg2rad_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_embed_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_embed_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_embed_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_scatter_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_no_rounding_mode_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_no_rounding_mode_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_trunc_rounding_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dsplit_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dsplit_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dstack_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_strided_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eq_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_equal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_equal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_equal_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_equal_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erf_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erf_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erfc_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erfc_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erfinv_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp2_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_as_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expm1_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expm1_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exponential_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eye_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fft2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fft_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftn_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftshift_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftshift_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftshift_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfft_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfft_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfft_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifft2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifft2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftn_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftshift_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfft2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfftn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfftn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_rfft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_rfft2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_rfft2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_rfft2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_rfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_rfft_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_rfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_rfftn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_rfftn_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fill_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flip_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fliplr_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_float_power_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmax_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmin_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmod_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_frac_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ge_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_geometric_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_gt_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_heaviside_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hsplit_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hsplit_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hsplit_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_imag_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_add_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_add_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_add_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_add_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_fill_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_select_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isfinite_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isinf_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isinf_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isinf_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isnan_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isnan_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isneginf_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isreal_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_item_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lcm_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_le_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lgamma_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_cross_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_cross_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_cross_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_cross_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_cross_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_vector_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log10_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log1p_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_softmax_with_dtype_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logaddexp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_and_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_not_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_not_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_or_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_or_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lt_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lt_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_masked_fill_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_maximum_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_maximum_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_mean_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_variadic_tensors_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_variadic_tensors_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_variadic_tensors_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_minimum_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_mul_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_mul_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nan_to_num_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_neg_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_strided_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_full_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_ones_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_zeros_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nextafter_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_channel_shuffle_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_gelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_group_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_hardshrink_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_l1_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_log_softmax_with_dtype_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_margin_ranking_loss_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_mse_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_shuffle_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_shuffle_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_unshuffle_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_poisson_nll_loss_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_relu_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_selu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmax_with_dtype_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_tanhshrink_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_threshold_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_norm_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_normal_number_mean_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_positive_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_pow_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_prod_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_prod_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rad2deg_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_randn_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_real_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_real_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reciprocal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reciprocal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_remainder_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_repeat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_repeat_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_repeat_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_roll_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rot90_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rot90_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsqrt_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsub_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsub_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_select_scatter_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sigmoid_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sign_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_signbit_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sin_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sin_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sin_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinc_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinc_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_softmax_with_dtype_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_bessel_j1_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_entr_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_erfcx_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_ndtr_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_logit_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_logit_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_1_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_3_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_ndtr_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_spherical_bessel_j0_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_spherical_bessel_j0_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_xlog1py_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_xlog1py_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_xlog1py_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_split_with_sizes_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_split_with_sizes_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_square_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_square_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_stack_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_stack_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_std_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_std_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_std_mean_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_std_mean_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_stft_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sub_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_to_size_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_take_along_dim_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_take_along_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_take_along_dim_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tan_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tan_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tan_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tanh_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tanh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tril_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tril_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tril_indices_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tril_indices_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_triu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_trunc_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unflatten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unflatten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_var_mean_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vdot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_as_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_as_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_as_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vsplit_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vstack_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vstack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_where_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_where_cpu_complex64, 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__conversions_bfloat16_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bfloat16_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bfloat16_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bool_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bool_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_byte_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_byte_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cdouble_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cdouble_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cfloat_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_char_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_double_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_float_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_float_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_half_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_half_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_long_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_polar_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_short_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_short_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_short_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_abs_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acos_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acos_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acosh_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acosh_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acosh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_alias_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_alias_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_alias_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_allclose_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_amax_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_amax_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_amax_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_amin_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_amin_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_any_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_any_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_any_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_partial_views_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_scatter_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_scatter_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asin_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asin_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asinh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atanh_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_1d_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_3d_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_and_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_left_shift_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_left_shift_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_not_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_not_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_xor_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_block_diag_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_to_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_to_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bucketize_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bucketize_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cat_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ceil_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_chunk_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_chunk_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_min_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_min_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clone_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clone_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_column_stack_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_column_stack_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_column_stack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_physical_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_physical_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_physical_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_constant_pad_nd_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_contiguous_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_contiguous_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cos_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cos_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cosh_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cosh_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cosh_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_count_nonzero_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumprod_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumprod_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_digamma_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_digamma_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_trunc_rounding_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dot_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dot_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dsplit_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dsplit_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dstack_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_like_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_strided_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eq_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erfinv_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_as_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expm1_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eye_cpu_float8_e4m3fn, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eye_cpu_float8_e4m3fnuz, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eye_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eye_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fft2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fft_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fft_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftshift_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftshift_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfft2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifft_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftshift_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfft2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfftn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfftn_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fill_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fill_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flatten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flip_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_floor_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_floor_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_floor_divide_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmax_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmin_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_frac_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_gt_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_heaviside_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hsplit_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hsplit_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hstack_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_igamma_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_igammac_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_imag_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_add_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_fill_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_fill_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_select_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_select_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_select_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isclose_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isclose_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isfinite_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isfinite_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isfinite_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isfinite_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isinf_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isinf_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isinf_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isinf_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isnan_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isneginf_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isposinf_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isreal_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_item_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lcm_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_le_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lerp_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lerp_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lgamma_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_cross_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_matrix_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linspace_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linspace_tensor_overload_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linspace_tensor_overload_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log10_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log1p_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log1p_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logaddexp2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_and_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_and_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_not_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_or_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_or_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_xor_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_xor_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_xor_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_tensor_overload_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_tensor_overload_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_tensor_overload_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logsumexp_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logsumexp_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lt_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_mean_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_list_of_tensors_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_list_of_tensors_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_variadic_tensors_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_minimum_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_movedim_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_mul_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_mul_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_mul_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ne_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_neg_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_strided_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_full_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_full_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_ones_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_zeros_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_alpha_dropout_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_celu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_elu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_elu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_hardshrink_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_hardtanh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_hardtanh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_log_softmax_with_dtype_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_mish_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_mse_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pdist_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_shuffle_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_unshuffle_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_unshuffle_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_unshuffle_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_prelu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_relu6_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_relu6_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_relu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_relu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_smooth_l1_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmin_with_dtype_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softshrink_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_tanhshrink_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_threshold_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_triplet_margin_loss_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_positive_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_positive_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_positive_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_pow_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_prod_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rad2deg_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_randn_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ravel_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ravel_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_real_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_real_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_real_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_real_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reciprocal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reciprocal_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reciprocal_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_renorm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_renorm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_repeat_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_roll_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_round_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsqrt_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsub_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsub_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_select_scatter_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sign_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_signbit_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_signbit_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sin_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sin_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinc_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_softmax_with_dtype_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_bessel_j0_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_bessel_j1_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_entr_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_log_ndtr_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_logit_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_logit_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_1_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_1_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_3_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_3_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_5_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_softmax_with_dtype_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_softmax_with_dtype_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_softmax_with_dtype_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_spherical_bessel_j0_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_spherical_bessel_j0_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_spherical_bessel_j0_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_xlog1py_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_xlog1py_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_zeta_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_split_with_sizes_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sqrt_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_multiple_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_stack_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_std_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_std_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_stft_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sub_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sub_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sub_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sub_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_to_size_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tan_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tanh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_trace_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tril_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tril_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tril_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tril_indices_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_triu_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_triu_indices_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_true_divide_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_true_divide_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unflatten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_var_mean_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vsplit_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vstack_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vstack_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_where_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_where_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_xlogy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_xlogy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_zeros_cpu_int8, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_H_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_H_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager___getitem___cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager___rpow___cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager___rsub___cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager__segment_reduce_lengths_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager__upsample_bilinear2d_aa_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_atanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_baddbmm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_bfloat16_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_block_diag_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_ceil_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cholesky_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_chunk_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_clamp_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_column_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_combinations_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cov_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_diag_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_diagonal_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_empty_like_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_exponential_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_eye_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_fftshift_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_ifftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_irfft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_irfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_rfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_flatten_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_float_power_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_gather_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_geqrf_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_index_reduce_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_isnan_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_isneginf_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_jiterator_binary_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_kron_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_le_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_eig_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_ldl_factor_ex_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_matrix_power_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_pinv_singular_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_svdvals_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_log10_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_log_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logcumsumexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logical_xor_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_lu_unpack_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_softmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_sum_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_narrow_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_narrow_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_ne_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_new_full_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_new_zeros_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_batch_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_conv3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_dropout2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_dropout3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_multi_head_attention_forward_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_multilabel_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_pad_circular_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_selu_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_softmin_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_unfold_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_ones_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_polygamma_polygamma_n_2_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_randn_like_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_randn_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_repeat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_resize__cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_searchsorted_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_short_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sigmoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sign_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_signal_windows_exponential_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sin_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sparse_mm_reduce_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_airy_ai_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_bessel_y0_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_laguerre_polynomial_l_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_spherical_bessel_j0_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_split_with_sizes_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_square_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_squeeze_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_squeeze_multiple_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_std_mean_unbiased_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sum_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sum_to_size_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_tan_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_trapz_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_unbind_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_unflatten_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_unfold_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_uniform_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_unsafe_split_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_var_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_var_mean_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_vsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_vstack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_zeros_cpu_complex64, test/test_ops.py::TestCompositeComplianceCPU::test_backward__segment_reduce_lengths_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward__unsafe_masked_index_put_accumulate_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_addmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_addmv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_amax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_as_strided_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_atleast_1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_chunk_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_diagflat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_div_floor_rounding_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_erfinv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_ifft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_rfftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_frexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_eig_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_eigh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_lu_factor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_slogdet_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_lu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_msort_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_native_batch_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_embedding_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_group_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_hardswish_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_max_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_max_unpool1d_grad_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_pdist_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_rms_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_rrelu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_soft_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_softmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_upsample_bilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_outer_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_qr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_round_decimals_neg_3_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_rsqrt_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_scatter_add_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_sigmoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_svd_lowrank_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_trapezoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_view_as_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input___rmod___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_acosh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_addmv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_addr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_alias_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_aminmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_angle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_arange_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_asin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_baddbmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_clone_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_column_stack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_copysign_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_dot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_expand_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fft_fftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_floor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_gather_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_index_add_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_index_put_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_isfinite_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_isreal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_det_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_eigvalsh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_ldl_factor_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_lstsq_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_lu_factor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_logcumsumexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_logical_and_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_logical_xor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_normalize_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nan_to_num_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_native_layer_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_avg_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_celu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_ctc_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_dropout_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_elu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_interpolate_bicubic_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_max_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_pad_circular_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_pad_constant_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_pdist_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_prelu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_relu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_rms_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_threshold_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_ones_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_ones_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_polygamma_polygamma_n_1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_polygamma_polygamma_n_3_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_quantile_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_roll_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_round_decimals_neg_3_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_scatter_reduce_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_signal_windows_blackman_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_signal_windows_hamming_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_signal_windows_nuttall_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_sparse_mm_reduce_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_i1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_i1e_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_laguerre_polynomial_l_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_zeta_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_std_mean_unbiased_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_t_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_tanh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_to_sparse_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_trace_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_unbind_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_unbind_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_unfold_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_var_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_vsplit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_where_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_H_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad___getitem___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad___rmul___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad__unsafe_masked_index_put_accumulate_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_atleast_1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_ceil_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_clone_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_conj_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_conj_physical_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_contiguous_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_diagonal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_digamma_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_fftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_hfftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_ihfftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_full_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_gradient_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_half_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_heaviside_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_histogram_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_histogramdd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_index_put_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_inner_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_isclose_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_ldl_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_lstsq_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_tensorsolve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_vander_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_logaddexp2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_logical_xor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_long_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_lt_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_logaddexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_median_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_mode_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_movedim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_native_batch_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_gaussian_nll_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_hardtanh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_interpolate_bicubic_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_interpolate_linear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_logsigmoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_max_unpool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_pad_reflect_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_relu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_rrelu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_ones_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_pca_lowrank_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_permute_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_qr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_rad2deg_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_randn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_rsub_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_sgn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_short_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_sigmoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_bessel_j1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_bessel_y0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_log_ndtr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_modified_bessel_i0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_square_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_std_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_std_unbiased_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_tanh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_topk_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_transpose_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_true_divide_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_var_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_view_as_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_zeros_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_zeros_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator___rdiv___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator__chunk_cat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator__segment_reduce_offsets_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator__unsafe_masked_index_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator__unsafe_masked_index_put_accumulate_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_acos_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_addmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_arange_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_argmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_atan_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_atanh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_char_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_cholesky_inverse_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_cholesky_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_cross_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_diagflat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_diagonal_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_empty_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_erfinv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_expm1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_eye_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fft_fft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fft_ifft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fft_ihfftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_ge_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_geometric_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_grid_sampler_2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_hash_tensor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_histogram_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_igamma_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_index_fill_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_isreal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_jiterator_2inputs_2outputs_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_ldexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_le_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_cond_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_inv_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_ldl_factor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_lu_factor_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_slogdet_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_log1p_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_logaddexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_logcumsumexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_logdet_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_logical_and_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_logical_or_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_lt_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_lu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_argmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_matrix_exp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_multinomial_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_avg_pool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_bilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_binary_cross_entropy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_conv_transpose1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_ctc_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_grid_sample_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_hardshrink_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_hardswish_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_interpolate_trilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_l1_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_linear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_permute_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_polar_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_randint_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_real_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_round_decimals_3_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_rsub_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_scatter_reduce_sum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_short_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_sigmoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_signal_windows_blackman_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_bessel_y0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_ndtri_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_take_along_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_tan_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_unique_consecutive_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_unique_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_unsafe_chunk_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_unsqueeze_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_vsplit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_zeros_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_zeros_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_T_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay___rmul___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_add_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_addcdiv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_addr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_as_strided_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_bmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_cauchy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_complex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_digamma_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_div_trunc_rounding_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_dot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_dsplit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_erfinv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_expand_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_fftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_hfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_hfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_ifft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_ihfftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_rfftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_flipud_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fmod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_histogram_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_histogramdd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_index_put_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_isin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_isnan_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_jiterator_4inputs_with_extra_args_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_kron_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_cholesky_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_cholesky_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_cond_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_eig_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_matrix_rank_hermitian_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_pinv_hermitian_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_slogdet_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_vector_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_median_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_max_reduction_no_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nanmean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_narrow_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_new_empty_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_elu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_embedding_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_fractional_max_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_gelu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_group_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_hardshrink_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_interpolate_nearest_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_tanhshrink_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nonzero_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_norm_nuc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_ones_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_pow_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_quantile_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_randint_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_repeat_interleave_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_roll_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_round_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_scatter_reduce_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_signal_windows_blackman_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_i1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_laguerre_polynomial_l_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_log_ndtr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_modified_bessel_i1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_split_with_sizes_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_square_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_squeeze_multiple_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_tensor_split_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_to_sparse_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_transpose_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_triangular_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_uniform_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_zero__cpu_float32, test/test_ops.py::TestMathBitsCPU::test_conj_view_T_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view___rmul___cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs__conversions_bool_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs__conversions_byte_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_acosh_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_all_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_float_power_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_linalg_cross_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_linalg_matrix_norm_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_linalg_norm_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_logical_or_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_mean_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_nn_functional_triplet_margin_loss_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_special_log_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_stft_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_to_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_unsqueeze_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_var_mean_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__unsafe_masked_index_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_as_strided_scatter_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_atleast_2d_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_bmm_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_cosh_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_cross_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_diagonal_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_dist_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_double_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_empty_permuted_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_fft_fft_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_index_fill_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_cond_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_multi_dot_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_pinv_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_solve_triangular_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_lu_unpack_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_mT_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_masked_cumprod_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_masked_fill_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_masked_normalize_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_masked_scatter_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_new_empty_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_pairwise_distance_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_silu_complex_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_softsign_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_positive_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_tan_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_tile_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_trapezoid_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_trapz_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_T_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view___rdiv___cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view___rmul___cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs__conversions_bool_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_dstack_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_fft_ifft2_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_fft_irfft2_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_fft_irfft_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_flipud_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_float_power_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_linalg_vector_norm_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_logaddexp_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_masked_fill_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_nn_functional_l1_loss_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_repeat_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_triu_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_var_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_var_mean_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_view_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_view_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_zeros_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_abs_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_addcmul_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_angle_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_as_strided_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_atleast_2d_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_count_nonzero_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_cumulative_trapezoid_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_double_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_eq_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_expand_as_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_fft_fftshift_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_fft_hfft2_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_fft_ifftshift_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_fill_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_fliplr_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_float_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_float_power_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_index_select_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_eig_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_ldl_factor_ex_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_lu_factor_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_lu_factor_ex_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_matrix_norm_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_matrix_rank_hermitian_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_pinv_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_qr_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_tensorsolve_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linspace_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_log10_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_log_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_logsumexp_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_masked_fill_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_mean_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_mm_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_new_empty_strided_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_conv_transpose2d_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_rms_norm_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_triplet_margin_loss_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_norm_fro_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_norm_inf_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_normal_in_place_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_resolve_neg_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_rot90_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_sgn_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_short_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_sinh_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_sub_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_tan_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_transpose_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_triangular_solve_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_tril_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_unflatten_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs__conversions_polar_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_add_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_arange_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_broadcast_to_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_bucketize_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_chunk_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_conj_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_cosh_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_div_floor_rounding_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_fft2_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_float_power_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_hstack_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_index_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_isposinf_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_linalg_norm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_linspace_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_log10_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_logical_xor_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_narrow_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_new_zeros_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_log_softmax_with_dtype_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_pixel_unshuffle_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_randn_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_ravel_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_reciprocal_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_remainder_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_select_scatter_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_std_mean_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_t_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_tanh_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_to_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_transpose_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_unfold_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_unsqueeze_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__segment_reduce_offsets_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_addr_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_allclose_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_atanh_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_broadcast_tensors_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_chunk_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_clamp_max_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_copysign_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_div_trunc_rounding_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_exponential_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fft_fftn_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fft_ihfft2_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fft_ihfft_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fliplr_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_floor_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fmin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fmod_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_index_reduce_prod_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_isfinite_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_jiterator_binary_return_by_ref_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_eigh_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_qr_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_solve_ex_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_log2_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_logaddexp2_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_logsumexp_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_lu_solve_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_mH_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_amin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_logsumexp_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_normalize_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_std_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_mm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_mode_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nanquantile_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_native_batch_norm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_native_dropout_backward_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_dropout2d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_embedding_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_group_norm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_hinge_embedding_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_layer_norm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_max_pool2d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_max_unpool2d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_multi_margin_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_pad_circular_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_pairwise_distance_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_poisson_nll_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_softsign_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_polar_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_polygamma_polygamma_n_2_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_positive_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_put_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_quantile_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_renorm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_round_decimals_neg_3_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_scatter_reduce_sum_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_signal_windows_exponential_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_signbit_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_scaled_modified_bessel_k0_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_split_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_std_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_std_unbiased_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_sum_to_size_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_tile_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_to_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_transpose_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_trunc_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_var_mean_unbiased_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_view_as_cpu_float64, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs__conversions_byte_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs__conversions_cfloat_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_atan__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_bitwise_not_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_block_diag_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_ceil__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_constant_pad_nd_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_count_nonzero_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_diagonal_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_eq_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_erfinv__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_exp2_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_expand_as_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fft_ihfftn_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fft_irfftn_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fft_rfft2_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_floor_divide__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fmax_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_gt__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_gt_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_imag_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_isposinf_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_istft_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_movedim_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_narrow_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_nn_functional_hinge_embedding_loss_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_mse_loss_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_prelu_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_softmax_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_norm_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_rsub_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_sigmoid__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_special_i0e_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_special_spherical_bessel_j0_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_transpose_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_tril_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_unfold_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_unsqueeze_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_unsqueeze_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_vdot_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_zero__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs__conversions_half_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs__conversions_polar_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_acos_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_atan2_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_atleast_2d_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_conj_physical_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_cos_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_digamma_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_erfinv_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_fft_fft2_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fft_hfftn_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fft_ihfft2_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fft_ihfft_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_flatten_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_ge_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_index_add_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_le__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_lgamma_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_hardshrink_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_hardtanh_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_poisson_nll_loss_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_relu6_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_relu_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_tanhshrink_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_normal_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_permute_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_prod_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_roll_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_rpow_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_softmax_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_special_expit_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_special_spherical_bessel_j0_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_special_zeta_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_split_with_sizes_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_true_divide__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_trunc_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_unfold_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_vstack_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_zero_cpu, test/test_ops.py::TestFakeTensorCPU::test_fake_H_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_T_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake___rand___cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake__unsafe_masked_index_put_accumulate_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_add_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_addcmul_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_amin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast___rmod___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_acos_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_atan2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_atan_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_atanh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_atleast_2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_bitwise_not_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_bitwise_xor_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_broadcast_to_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_cdist_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_cholesky_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_chunk_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_cumprod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_diagonal_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_diagonal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_empty_permuted_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_exponential_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fft_ihfft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_flip_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_floor_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_ge_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_isin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_lerp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_cond_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_ldl_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_lu_factor_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_matrix_power_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_vector_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_logdet_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_logsumexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_lu_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_softmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_max_reduction_no_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_mv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nanquantile_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_native_batch_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_ne_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_new_full_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_celu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_hardsigmoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_huber_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_max_pool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_max_unpool2d_grad_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_max_unpool3d_grad_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_normalize_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_ones_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_polygamma_polygamma_n_0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_positive_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_ravel_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_reciprocal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_remainder_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_round_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_scatter_reduce_amin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_scatter_reduce_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_signal_windows_cosine_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_slice_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_sparse_mm_reduce_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_i0e_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_triangular_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_trunc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_unflatten_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_unique_consecutive_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_unsqueeze_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_vdot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_vsplit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_bfloat16_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_bitwise_and_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_bitwise_xor_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_block_diag_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_char_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_clamp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_conj_physical_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_cos_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp___rdiv___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_acosh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_angle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_as_strided_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_asinh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_atleast_3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_bernoulli_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_bmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_cholesky_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_constant_pad_nd_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_contiguous_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_corrcoef_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_cross_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_dot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fft_fft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fft_hfft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fft_hfftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fft_irfft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fft_irfft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_index_fill_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_cholesky_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_lu_factor_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_slogdet_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_solve_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_tensorinv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_vector_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_logaddexp2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_logit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_lu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_masked_fill_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_masked_logsumexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_masked_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_masked_select_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_matmul_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_max_pool2d_with_indices_backward_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_maximum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_native_batch_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_celu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_conv_transpose1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_elu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_interpolate_bilinear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_max_pool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_max_unpool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_relu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_silu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_norm_nuc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_permute_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_pinverse_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_polygamma_polygamma_n_1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_reciprocal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_resolve_conj_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_scatter_add_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_sigmoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_softmax_with_dtype_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_special_i1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_special_xlog1py_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_std_mean_unbiased_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_std_unbiased_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_tanh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_unflatten_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_unsafe_chunk_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_view_as_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_view_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_H_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp___rmatmul___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_as_strided_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_atan2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_atanh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_bfloat16_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_broadcast_to_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_cdist_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_clone_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_column_stack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_conj_physical_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_double_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_dstack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_exp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fft_ifft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fft_ihfft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fft_irfft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fft_irfft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fft_rfft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fill_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_i0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_diagonal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_eigh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_norm_subgradients_at_zero_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_log10_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_log1p_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_logcumsumexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_logdet_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_masked_logsumexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_masked_softmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_maximum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_mode_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_mul_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_mv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_binary_cross_entropy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_conv3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_dropout_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_elu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_max_unpool3d_grad_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_multi_head_attention_forward_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_pad_reflect_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_tanhshrink_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_polygamma_polygamma_n_2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_remainder_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_resolve_conj_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_resolve_neg_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_scatter_reduce_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_select_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_stack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_std_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_std_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_tanh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_to_sparse_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_topk_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_transpose_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_unsqueeze_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_diag_embed_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_diagonal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_dist_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_erfc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_hfftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_rfftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_flatten_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_frac_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_heaviside_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_int_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_isneginf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_isreal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_jiterator_binary_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_matrix_rank_hermitian_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_multi_dot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_norm_subgradients_at_zero_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_pinv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_svd_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_vector_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_logical_not_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_lu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_mH_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_var_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_maximum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_median_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_min_reduction_no_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_avg_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_celu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_conv_transpose1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_ctc_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_dropout2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_huber_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_interpolate_trilinear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_mse_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_pad_constant_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_tanhshrink_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_upsample_bilinear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_norm_nuc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_normal_number_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_polygamma_polygamma_n_1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_rad2deg_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_reshape_as_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_rot90_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_scatter_add_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_scatter_reduce_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_sigmoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_signal_windows_gaussian_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_squeeze_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_stack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_std_mean_unbiased_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_trapezoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_unfold_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_view_as_complex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_zeros_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_acos_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_acosh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_add_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_amax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_argmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_broadcast_to_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cdouble_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_ceil_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cfloat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_clamp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_diag_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_diag_embed_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_dist_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_double_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_exp2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fft_hfft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fft_ifft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_grid_sampler_2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_histogram_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_histogramdd_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_hstack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_igammac_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_index_put_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_isfinite_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_isposinf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_ldexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_cholesky_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_eigh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_lstsq_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_lstsq_grad_oriented_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_lu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_solve_triangular_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_svdvals_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_tensorsolve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_log_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_logdet_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_log_softmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_softmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_movedim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_narrow_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_neg_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_conv_transpose3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_cosine_embedding_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_grid_sample_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_kl_div_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_max_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_mish_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_normalize_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_pad_circular_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_pad_constant_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_pad_replicate_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_softmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_softsign_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_unfold_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_norm_fro_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_pca_lowrank_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_put_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_quantile_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_randn_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_repeat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_reshape_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_rsqrt_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_select_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_signal_windows_hamming_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_signbit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_slice_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_legendre_polynomial_p_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_zeta_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_stft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_tanh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_tensor_split_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_transpose_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_trapezoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_triu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_unique_consecutive_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_var_unbiased_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_view_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_cpu_int16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_cpu_uint8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_tensor_overload_cpu_uint8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_tensor_overload_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_ones_cpu_bool, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_ones_cpu_float64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_zeros_cpu_float16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_zeros_cpu_int16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_arange_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_arange_cpu_int8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_tensor_overload_cpu_float16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_tensor_overload_cpu_int16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_tensor_overload_cpu_bfloat16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_tensor_overload_cpu_int16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_tensor_overload_cpu_int8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_zeros_cpu_uint8, test/test_ops.py::TestTagsCPU::test_tags___rand___cpu_int64, test/test_ops.py::TestTagsCPU::test_tags__native_batch_norm_legit_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_all_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_any_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_bitwise_or_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags__refs_chunk_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_clamp_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_cumprod_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_cumsum_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_div_floor_rounding_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_expand_as_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_fft_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_hfftn_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_ihfft2_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_ihfftn_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_irfft2_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fill_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_float_power_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_gt_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_hypot_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_igamma_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_isfinite_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_linalg_vector_norm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_logical_and_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_maximum_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nan_to_num_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_celu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_glu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_relu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_permute_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_prod_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_real_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_reshape_as_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_sinh_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_special_entr_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_special_i0e_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_special_multigammaln_mvlgamma_p_3_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_trunc_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_unbind_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__segment_reduce_offsets_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__upsample_bilinear2d_aa_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_acosh_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_addcmul_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_amin_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_bitwise_left_shift_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags_bool_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_cdouble_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_chalf_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_deg2rad_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_diag_embed_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_diff_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_dot_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_empty_like_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_eq_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_fftshift_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_floor_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_heaviside_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_index_reduce_mean_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_item_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_jiterator_2inputs_2outputs_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_jiterator_binary_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_jiterator_binary_return_by_ref_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_lstsq_grad_oriented_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_matrix_power_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_svd_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_vander_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_logsumexp_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_lu_solve_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_log_softmax_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_norm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_var_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_max_binary_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nansum_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_native_dropout_backward_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_new_empty_strided_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_avg_pool3d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_ctc_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_gaussian_nll_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_hardshrink_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_interpolate_nearest_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_max_unpool2d_grad_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_normalize_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_one_hot_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_silu_complex_cpu_complex64, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_silu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_ormqr_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_quantile_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_ravel_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_scatter_add_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_searchsorted_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_signal_windows_bartlett_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_signal_windows_gaussian_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_sinc_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_slice_scatter_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_bessel_j1_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_i0e_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_split_list_args_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_sum_to_size_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_svd_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_tan_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_unique_consecutive_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_unravel_index_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags_var_mean_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_view_as_cpu_float32 2025-08-14T23:27:23.6458487Z 2025-08-14T23:27:29.0977479Z Running distributions/test_constraints 1/1 ... [2025-08-14 23:27:29.087876] 2025-08-14T23:27:29.0978048Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:27:29.0984228Z 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-14 23:27:29.097981] 2025-08-14T23:27:35.0627869Z 2025-08-14T23:27:35.0629632Z distributions/test_constraints 1/1 was successful, full logs can be found in artifacts with path test/test-reports/distributions.test_constraints_1.1_1cf86e7a3ea83de9_.log 2025-08-14T23:27:35.0716685Z 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-14T23:27:35.0791648Z 2025-08-14T23:27:40.4432739Z Running profiler/test_record_function 1/1 ... [2025-08-14 23:27:40.441445] 2025-08-14T23:27:40.4433256Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:27:40.4441679Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'profiler/test_record_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-14 23:27:40.443996] 2025-08-14T23:27:45.6225649Z 2025-08-14T23:27:45.6226634Z profiler/test_record_function 1/1 was successful, full logs can be found in artifacts with path test/test-reports/profiler.test_record_function_1.1_b564b67431d6f05b_.log 2025-08-14T23:27:45.6228860Z Running 4 items in this shard: test/profiler/test_record_function.py::TestRecordFunction::test_datapipe_delegation_with_profiler, test/profiler/test_record_function.py::TestRecordFunction::test_datapipe_with_record_function, test/profiler/test_record_function.py::TestRecordFunction::test_datapipe_with_record_function_fork, test/profiler/test_record_function.py::TestRecordFunction::test_record_function 2025-08-14T23:27:45.6230453Z 2025-08-14T23:27:51.2584182Z Running nn/test_lazy_modules 1/1 ... [2025-08-14 23:27:51.255795] 2025-08-14T23:27:51.2584821Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:27:51.2590880Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'nn/test_lazy_modules.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-14 23:27:51.255795] 2025-08-14T23:27:57.8093907Z 2025-08-14T23:27:57.8094940Z nn/test_lazy_modules 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_lazy_modules_1.1_b449dac1d886b293_.log 2025-08-14T23:27:57.8112146Z Running 59 items in this shard: test/nn/test_lazy_modules.py::TestLazyModules::test_chained_initialization, test/nn/test_lazy_modules.py::TestLazyModules::test_invalid_functions, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_batchnorm1d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_batchnorm1d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_batchnorm1d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_batchnorm2d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_batchnorm2d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_batchnorm2d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_batchnorm3d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_batchnorm3d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_batchnorm3d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_batchnorm_with_dict_input, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv1d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv1d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv1d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv2d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv2d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv2d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv3d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv3d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv3d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transpose1d_kwargs, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transpose1d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transpose1d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transpose2d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transpose2d_kwargs, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transpose2d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transpose2d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transpose3d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transpose3d_kwargs, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transpose3d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transpose3d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transposed1d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_forward_hook, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_instancenorm1d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_instancenorm1d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_instancenorm1d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_instancenorm2d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_instancenorm2d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_instancenorm2d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_instancenorm3d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_instancenorm3d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_instancenorm3d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_linear_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_linear_state_and_forward, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_module_buffer, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_module_jit_buffer, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_module_jit_param, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_module_parameter, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_pre_forward_hook, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_share_memory_buffer, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_share_memory_param, test/nn/test_lazy_modules.py::TestLazyModules::test_linear, test/nn/test_lazy_modules.py::TestLazyModules::test_linear_state, test/nn/test_lazy_modules.py::TestLazyModules::test_materialize_device, test/nn/test_lazy_modules.py::TestLazyModules::test_materialize_dtype, test/nn/test_lazy_modules.py::TestLazyModules::test_optimizer_pass, test/nn/test_lazy_modules.py::TestLazyModules::test_spectral_norm, test/nn/test_lazy_modules.py::TestLazyModules::test_weight_norm 2025-08-14T23:27:57.8128291Z 2025-08-14T23:28:03.5585932Z Running test_jit_fuser_te 1/1 ... [2025-08-14 23:28:03.557761] 2025-08-14T23:28:03.5586379Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:28:03.5592337Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_jit_fuser_te.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-14 23:28:03.557761] 2025-08-14T23:34:33.2062903Z 2025-08-14T23:34:33.2064190Z test_ops 3/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_3.9_1ddd70667f3b9ca3_.log 2025-08-14T23:34:33.3659969Z Running 3807 items in this shard: test/test_ops.py::TestCommonCPU::test_compare_cpu___rdiv___cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu___ror___cpu_int64, test/test_ops.py::TestCommonCPU::test_compare_cpu__chunk_cat_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs__conversions_half_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs__conversions_int_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_addr_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_alias_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_dsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_empty_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_expand_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_linspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_log_normal_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_logaddexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_mul_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_new_full_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_nn_functional_glu_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_normal_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_reshape_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_sum_to_size_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_trace_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_transpose_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_vsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_addr_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_arange_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_atleast_2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_atleast_3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_bucketize_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_cholesky_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_combinations_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_copysign_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_cumulative_trapezoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_dist_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_dstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_empty_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_expand_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_expand_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_eye_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_fft_fftshift_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_gradient_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_half_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_index_reduce_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_lu_factor_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_pinv_hermitian_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_vector_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_logaddexp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_logcumsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_lu_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_max_reduction_with_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_dropout3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_multilabel_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_rrelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_randn_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_resolve_conj_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_svd_lowrank_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_to_sparse_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_topk_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_vdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_view_as_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_xlogy_cpu_float32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing___getitem___cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing__chunk_cat_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_alias_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_atleast_3d_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_fft_fftshift_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_item_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_mH_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_new_zeros_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_sgn_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_unfold_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_view_cpu_complex32, test/test_ops.py::TestCommonCPU::test_dtypes__refs__conversions_bfloat16_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs__conversions_float_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs__conversions_half_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs__conversions_long_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_addr_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_as_strided_partial_views_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_atanh_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_bitwise_and_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_bitwise_right_shift_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_bucketize_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_count_nonzero_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_diag_embed_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_diagonal_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_div_floor_rounding_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_eq_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_fftn_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_fftshift_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_ifft2_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_rfftn_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_flatten_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_flip_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_flipud_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_hstack_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_isfinite_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_lerp_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_lgamma_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_logaddexp_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_meshgrid_list_of_tensors_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_meshgrid_variadic_tensors_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nan_to_num_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_narrow_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_huber_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_log_softmax_with_dtype_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_relu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_softshrink_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_randn_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_renorm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_reshape_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_select_scatter_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_sgn_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_special_log_ndtr_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_std_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_sum_to_size_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_t_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_var_mean_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_view_as_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__segment_reduce_lengths_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__segment_reduce_offsets_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__softmax_backward_data_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__unsafe_masked_index_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__unsafe_masked_index_put_accumulate_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_angle_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_any_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_broadcast_shapes_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_chunk_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_clone_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_combinations_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cummax_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_diagonal_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_diagonal_scatter_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_einsum_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_exp2_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_expm1_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_eye_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fft_fftn_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fft_ifftshift_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fft_ihfft2_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fmax_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_geometric_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_half_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_histc_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_index_reduce_mean_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_int_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_jiterator_binary_return_by_ref_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_le_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_lerp_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_inv_ex_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_matrix_power_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_multi_dot_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_pinv_hermitian_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_tensorsolve_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_log_normal_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_lt_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_logaddexp_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_select_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_std_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_meshgrid_list_of_tensors_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_msort_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_mvlgamma_mvlgamma_p_1_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nanquantile_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_new_ones_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_alpha_dropout_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_avg_pool2d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_avg_pool3d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_celu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_ctc_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_gelu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_glu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_interpolate_bicubic_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_interpolate_nearest-exact_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_logsigmoid_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_multilabel_margin_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_pixel_unshuffle_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_silu_complex_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_softshrink_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_softsign_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_pinverse_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_polygamma_polygamma_n_1_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_polygamma_polygamma_n_4_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_real_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_reshape_as_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_sign_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_signal_windows_hamming_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_softmax_with_dtype_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_chebyshev_polynomial_w_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_i0e_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_legendre_polynomial_p_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_modified_bessel_i1_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_scaled_modified_bessel_k0_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_zeta_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_split_list_args_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_split_with_sizes_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_std_mean_unbiased_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_torch_ops_aten__efficient_attention_forward_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_torch_ops_aten__safe_softmax_default_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_true_divide_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_unflatten_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_view_as_real_cpu, test/test_ops.py::TestCommonCPU::test_errors___rand___cpu, test/test_ops.py::TestCommonCPU::test_errors___rxor___cpu, test/test_ops.py::TestCommonCPU::test_errors_amin_cpu, test/test_ops.py::TestCommonCPU::test_errors_arange_cpu, test/test_ops.py::TestCommonCPU::test_errors_bitwise_or_cpu, test/test_ops.py::TestCommonCPU::test_errors_clamp_max_cpu, test/test_ops.py::TestCommonCPU::test_errors_div_trunc_rounding_cpu, test/test_ops.py::TestCommonCPU::test_errors_fft_ifft_cpu, test/test_ops.py::TestCommonCPU::test_errors_fft_ifftn_cpu, test/test_ops.py::TestCommonCPU::test_errors_gather_cpu, test/test_ops.py::TestCommonCPU::test_errors_logaddexp_cpu, test/test_ops.py::TestCommonCPU::test_errors_narrow_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_adaptive_max_pool1d_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_group_norm_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_max_pool3d_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_rrelu_cpu, test/test_ops.py::TestCommonCPU::test_errors_normal_in_place_cpu, test/test_ops.py::TestCommonCPU::test_errors_scatter_cpu, test/test_ops.py::TestCommonCPU::test_errors_signal_windows_blackman_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_mul_layout2_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_mul_layout3_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_randn_like_layout4_cpu, test/test_ops.py::TestCommonCPU::test_errors_special_chebyshev_polynomial_t_cpu, test/test_ops.py::TestCommonCPU::test_errors_special_shifted_chebyshev_polynomial_v_cpu, test/test_ops.py::TestCommonCPU::test_errors_trace_cpu, test/test_ops.py::TestCommonCPU::test_errors_unbind_copy_cpu, test/test_ops.py::TestCommonCPU::test_errors_unbind_cpu, test/test_ops.py::TestCommonCPU::test_errors_view_cpu, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_argmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_erfc_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_fft_ihfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_fmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_full_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_index_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_isin_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_inv_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_ldl_factor_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_ldl_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_lu_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_pinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_svd_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_max_reduction_with_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_native_batch_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_nn_functional_gelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_norm_nuc_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_permute_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_polygamma_polygamma_n_0_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_polygamma_polygamma_n_4_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_rad2deg_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_rsqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_i1e_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_modified_bessel_i0_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_spherical_bessel_j0_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_transpose_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_unbind_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_T_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices___rmatmul___cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_alias_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_all_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_allclose_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_any_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_argsort_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_as_strided_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_bernoulli_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_bfloat16_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_broadcast_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_cholesky_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_clamp_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_clamp_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_clamp_max_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_conj_physical_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_copysign_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_cross_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_cumprod_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_cumulative_trapezoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_einsum_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_erfc_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_exponential_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_eye_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_fftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_ifft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_irfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_rfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_rfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fliplr_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_float_power_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_full_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_gather_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_grid_sampler_2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_gt_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_hstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_index_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_index_put_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_isclose_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_isinf_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_ldexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_ldexp_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_le_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_det_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_eig_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_eigvals_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_inv_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_vector_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_log1p_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_logical_and_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_lu_unpack_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_argmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_cumsum_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_max_reduction_no_dim_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_max_reduction_with_dim_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_minimum_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_multinomial_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_native_dropout_backward_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_neg_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_neg_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_conv2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_elu_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_hardtanh_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_interpolate_area_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_interpolate_bilinear_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_max_pool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_max_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_max_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_normalize_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_pad_reflect_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_relu6_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_softsign_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_triplet_margin_with_distance_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nonzero_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_norm_inf_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_norm_nuc_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_normal_number_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_polygamma_polygamma_n_4_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_qr_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_randint_like_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_real_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_repeat_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_resize__cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_resize_as__cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_resolve_conj_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_scatter_reduce_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_signal_windows_gaussian_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_signal_windows_general_cosine_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_signbit_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_sin_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_slice_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_slice_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_bessel_j1_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_erfcx_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_i1_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_i1e_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_legendre_polynomial_p_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_log_ndtr_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_shifted_chebyshev_polynomial_v_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_spherical_bessel_j0_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_spherical_bessel_j0_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_sub_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_tanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_tile_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_to_sparse_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_transpose_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_trapz_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_unfold_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_unravel_index_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_unsqueeze_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_view_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_H_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values___rand___cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_acosh_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_argsort_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_cdouble_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_chunk_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_column_stack_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_deg2rad_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_digamma_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fft_ifft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fill_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_full_like_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_isinf_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_lgamma_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_logical_not_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_logsumexp_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_nn_functional_pad_constant_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_permute_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_rad2deg_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_roll_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_scatter_reduce_sum_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_hermite_polynomial_h_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_hermite_polynomial_he_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_log_ndtr_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_modified_bessel_i1_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_modified_bessel_k0_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_xlog1py_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_t_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_tril_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_unique_cpu_bool, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_T_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___rdiv___cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples__chunk_cat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples__segment_reduce_lengths_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples__softmax_backward_data_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_acosh_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addbmm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addbmm_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_as_strided_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_as_strided_partial_views_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_as_strided_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_atan2_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_baddbmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_bfloat16_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_bool_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_bool_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_bool_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_broadcast_shapes_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_byte_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_char_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cholesky_solve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_column_stack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_constant_pad_nd_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_copysign_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cos_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_count_nonzero_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cov_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_deg2rad_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diag_embed_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diagonal_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_digamma_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_div_floor_rounding_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_dstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_einsum_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_empty_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_empty_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_empty_permuted_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_erfinv_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_exp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_exp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_expm1_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_fft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_fftshift_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_fftshift_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ifft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ihfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_irfft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_irfft_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_rfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fill_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_flip_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fliplr_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_float_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_gather_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_geqrf_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_gradient_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_half_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_hsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_reduce_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_select_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_isclose_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_isfinite_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_isneginf_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_isneginf_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_jiterator_2inputs_2outputs_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_jiterator_2inputs_2outputs_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_jiterator_binary_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_kron_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_lerp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_lgamma_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_eigvals_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_householder_product_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_ldl_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_lu_factor_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_norm_subgradients_at_zero_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_solve_ex_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_svdvals_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_tensorinv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_log10_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_log10_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_log2_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logaddexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logaddexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logical_and_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logical_and_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logit_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logspace_tensor_overload_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_long_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_lt_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_amin_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_sum_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_sum_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_matmul_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_max_binary_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_max_reduction_no_dim_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mean_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_min_reduction_with_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mode_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nanmedian_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_narrow_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_new_empty_strided_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_new_full_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_bilinear_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_conv_transpose3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_cross_entropy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_gelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_local_response_norm_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_max_pool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_max_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pad_circular_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pixel_unshuffle_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_rrelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_tanhshrink_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_tanhshrink_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_threshold_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_upsample_nearest_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nonzero_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nonzero_static_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_outer_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_pca_lowrank_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_permute_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_polygamma_polygamma_n_0_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_polygamma_polygamma_n_1_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_polygamma_polygamma_n_4_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_pow_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_quantile_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_repeat_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_repeat_interleave_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_reshape_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_resize_as__cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_rsub_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_scalar_tensor_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_scatter_reduce_sum_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_signbit_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sparse_sampled_addmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_bessel_j1_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_bessel_y1_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_chebyshev_polynomial_t_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_ndtri_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_stack_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_std_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_std_mean_unbiased_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sub_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sum_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sum_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sum_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_svd_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_svd_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_svd_lowrank_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_t_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_take_along_dim_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_tensor_split_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_tile_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_transpose_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_trapezoid_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_trapezoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_triu_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_triu_indices_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_true_divide_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_trunc_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unsafe_chunk_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unsafe_split_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unsqueeze_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_vdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_view_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_view_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_vsplit_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_vstack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_vstack_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_where_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_zeros_like_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_zeros_like_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_argwhere_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_cat_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_diagflat_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_diagflat_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_diff_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_flatten_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_jiterator_2inputs_2outputs_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_jiterator_2inputs_2outputs_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_meshgrid_variadic_tensors_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_conv_transpose1d_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_pairwise_distance_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_permute_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_repeat_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_roll_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_signal_windows_bartlett_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_signal_windows_general_cosine_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_tensor_split_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_transpose_cpu_float64, test/test_ops.py::TestCommonCPU::test_out__refs__conversions_bool_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_alias_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_any_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_atleast_1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_bitwise_and_cpu_int64, test/test_ops.py::TestCommonCPU::test_out__refs_cumsum_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_diag_embed_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_fft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_hfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_ifftshift_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_ihfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_irfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_igammac_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_linalg_vecdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_log10_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_logspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_new_full_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_hardtanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_ravel_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_real_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_reciprocal_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_remainder_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_tril_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_unfold_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__unsafe_masked_index_put_accumulate_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_all_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_angle_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_argmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_argwhere_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_bitwise_right_shift_cpu_int64, test/test_ops.py::TestCommonCPU::test_out_bitwise_xor_cpu_int64, test/test_ops.py::TestCommonCPU::test_out_block_diag_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_conj_physical_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_cummax_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_cumsum_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_diagonal_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_exp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_expand_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fft_fft_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fft_ihfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fft_irfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fft_rfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_flipud_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_float_power_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_floor_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_grid_sampler_2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_igamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_index_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_index_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_isreal_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_jiterator_binary_return_by_ref_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_le_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_eigvalsh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_ldl_factor_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_ldl_factor_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_norm_subgradients_at_zero_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_solve_triangular_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_tensorinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_log_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_log_normal_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_logical_and_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_lu_unpack_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_argmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_logaddexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_matmul_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_narrow_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_new_full_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_conv3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_conv_transpose3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_fractional_max_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_fractional_max_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_grid_sample_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_interpolate_trilinear_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_kl_div_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_max_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_max_unpool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_pad_constant_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_silu_complex_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_nn_functional_soft_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nonzero_static_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_norm_nuc_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_normal_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_outer_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_pinverse_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_polar_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_put_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_randn_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_real_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_abs_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_acos_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_addmm_decomposed_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_addmv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_addmv_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_angle_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_arange_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_as_strided_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_as_strided_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_baddbmm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_cholesky_inverse_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_clamp_max_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_column_stack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_cross_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_diag_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_diff_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_hfft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_hfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fmod_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_frac_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_i0_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_index_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_index_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_index_reduce_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_index_reduce_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_lerp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_cond_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_cross_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_eigvals_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_lstsq_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_lu_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_matrix_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_matrix_power_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_vecdot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_log2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_max_binary_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_msort_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_mul_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_neg_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_norm_inf_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_ormqr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_reciprocal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_sparse_sampled_addmm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_sub_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_t_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_transpose_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_view_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_where_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_roll_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_round_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_scatter_reduce_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_scatter_reduce_sum_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_sigmoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_signal_windows_gaussian_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_signal_windows_hamming_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_sparse_sampled_addmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_zeta_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_split_list_args_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_split_with_sizes_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_std_unbiased_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_trace_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_triangular_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_triu_indices_cpu_int64, test/test_ops.py::TestCommonCPU::test_out_unbind_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_unfold_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_unsafe_chunk_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_var_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_warning__refs__conversions_bfloat16_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs__conversions_char_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs__conversions_double_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs__conversions_int_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_acosh_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_alias_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_as_strided_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_asin_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_bitwise_or_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_bitwise_right_shift_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_constant_pad_nd_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_copysign_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_diag_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_digamma_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_expand_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fft_hfft2_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fft_hfftn_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fft_ifft_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fft_ihfft_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fft_rfftn_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fill_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_frac_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_isneginf_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_log10_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_log1p_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_logical_not_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_narrow_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_narrow_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_native_layer_norm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_alpha_dropout_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_dropout_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_group_norm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_leaky_relu_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_log_softmax_with_dtype_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_pairwise_distance_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_smooth_l1_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_threshold_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_rad2deg_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_softmax_with_dtype_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_special_log_ndtr_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_special_logit_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_special_multigammaln_mvlgamma_p_1_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_special_ndtri_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_special_zeta_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_std_mean_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_transpose_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_tril_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_triu_indices_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_unbind_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_unsqueeze_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_where_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_allclose_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_argwhere_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_bucketize_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_cartesian_prod_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_clamp_min_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_conj_physical_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_constant_pad_nd_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_contiguous_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_cos_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_cummax_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_cummin_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_empty_like_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_empty_permuted_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_erf_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_expm1_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_exponential_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fft_fftshift_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fft_ifft_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_full_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_gt_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_histc_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_histogramdd_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_hsplit_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_index_reduce_amax_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_isclose_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_jiterator_4inputs_with_extra_args_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_ldl_factor_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_ldl_solve_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_log_softmax_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_logit_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_lu_solve_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_argmin_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_cumsum_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nanmedian_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_narrow_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_new_empty_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_new_ones_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_batch_norm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_binary_cross_entropy_with_logits_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_channel_shuffle_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_conv1d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_ctc_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_dropout_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_elu_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_gaussian_nll_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_interpolate_nearest-exact_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_max_pool3d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_max_unpool1d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_pad_reflect_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_pdist_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_pixel_unshuffle_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_norm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_outer_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_renorm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_resize_as__cpu, test/test_ops.py::TestCommonCPU::test_out_warning_resolve_neg_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_round_decimals_neg_3_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_scatter_reduce_sum_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_sign_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_signal_windows_bartlett_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_signal_windows_hamming_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_softmax_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_softmax_with_dtype_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_sort_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_erfcx_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_modified_bessel_i0_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_scaled_modified_bessel_k1_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_shifted_chebyshev_polynomial_t_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_squeeze_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_sub_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_tanh_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_tensor_split_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_trapezoid_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_triangular_solve_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_true_divide_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_unfold_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_uniform_cpu, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_acos_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_asinh_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_atan2_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_cos_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_cosh_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_digamma_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_digamma_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_erf_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_erfc_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_exp2_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_exp_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_exp_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_expm1_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_i0_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_ldexp_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log10_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log1p_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log1p_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log2_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_logit_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_masked_var_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_masked_var_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_mvlgamma_mvlgamma_p_1_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_3_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_rad2deg_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_reciprocal_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sigmoid_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sigmoid_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sin_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sinc_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sinh_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_w_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_w_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_hermite_polynomial_h_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_legendre_polynomial_p_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_t_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_w_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_tan_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_tan_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_tanh_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_true_divide_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_T_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_T_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bfloat16_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bfloat16_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bool_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_byte_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_byte_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cdouble_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_chalf_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_chalf_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_char_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_char_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_char_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_float_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_float_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_float_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_int_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_abs_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_add_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addcmul_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addcmul_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addr_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addr_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_all_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_all_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amax_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_any_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_arange_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_scatter_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_scatter_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asinh_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atanh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_1d_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_3d_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_3d_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_and_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_not_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_block_diag_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_to_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cat_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cat_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ceil_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_chunk_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_max_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clone_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_column_stack_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_physical_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_constant_pad_nd_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_constant_pad_nd_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_contiguous_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_contiguous_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_contiguous_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_copysign_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cosh_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_count_nonzero_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumprod_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumprod_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumsum_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_deg2rad_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_deg2rad_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_embed_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_embed_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_scatter_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_scatter_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_scatter_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_floor_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_floor_rounding_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_floor_rounding_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_no_rounding_mode_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_no_rounding_mode_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_no_rounding_mode_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_trunc_rounding_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dsplit_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dsplit_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dsplit_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dstack_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_like_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eq_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eq_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erf_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erf_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfc_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_as_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expm1_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eye_cpu_float8_e4m3fn, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eye_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fft2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft2_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftn_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftshift_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftshift_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfft_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfftn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfftn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fill_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fill_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fill_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flatten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flatten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flip_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fliplr_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flipud_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flipud_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flipud_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_float_power_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_float_power_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_floor_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_floor_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_floor_divide_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmod_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_frac_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_frac_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_heaviside_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hsplit_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hsplit_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hsplit_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hsplit_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hstack_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_i0_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_add_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_fill_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_fill_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_select_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_select_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isinf_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isinf_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isnan_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isnan_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isnan_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isposinf_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isreal_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isreal_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_item_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_item_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_item_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_item_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_item_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lcm_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lcm_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_le_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lgamma_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_cross_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_cross_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_cross_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_cross_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_diagonal_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_norm_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_vecdot_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_vector_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_tensor_overload_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_tensor_overload_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_tensor_overload_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_tensor_overload_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log10_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log10_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log1p_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log1p_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log2_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_normal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_normal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_softmax_with_dtype_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_and_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_or_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_or_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_xor_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_xor_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_tensor_overload_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logsumexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lt_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lt_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lt_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lt_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_masked_fill_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_masked_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_maximum_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_list_of_tensors_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_variadic_tensors_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_minimum_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_minimum_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_movedim_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_movedim_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_mul_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_native_layer_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_native_layer_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ne_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_strided_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_strided_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_strided_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_strided_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_ones_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_ones_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_ones_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_zeros_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_zeros_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_zeros_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_channel_shuffle_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_channel_shuffle_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_hardshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_hardtanh_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_hardtanh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_hardtanh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_hardtanh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_hinge_embedding_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_log_softmax_with_dtype_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_margin_ranking_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_margin_ranking_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_mse_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_shuffle_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_shuffle_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_unshuffle_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_prelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_relu6_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_relu_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softplus_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_tanhshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_tanhshrink_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_norm_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ones_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_positive_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_positive_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_prod_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_prod_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rad2deg_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ravel_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ravel_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_real_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reciprocal_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reciprocal_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reciprocal_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_renorm_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_repeat_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_repeat_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_repeat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_repeat_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_as_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_roll_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rot90_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rot90_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_round_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsqrt_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsqrt_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsub_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsub_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_select_scatter_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sgn_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sigmoid_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sign_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_signbit_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sin_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinc_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_softmax_with_dtype_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_softmax_with_dtype_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_bessel_j0_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_bessel_j1_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_entr_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_entr_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_erfcx_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i0e_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1e_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1e_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1e_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_log_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_log_ndtr_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_log_ndtr_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_log_ndtr_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_3_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_ndtr_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_ndtri_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_softmax_with_dtype_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_spherical_bessel_j0_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_xlog1py_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_xlog1py_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_split_with_sizes_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_split_with_sizes_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sqrt_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sqrt_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_square_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_multiple_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_multiple_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_stack_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_stack_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_stft_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sub_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sub_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_to_size_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_take_along_dim_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tan_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tanh_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_to_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_trace_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_trace_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tril_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_true_divide_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_true_divide_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_trunc_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_trunc_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unflatten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unflatten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unflatten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unflatten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_var_mean_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_var_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_var_mean_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vdot_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_as_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vsplit_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vsplit_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vstack_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_where_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_where_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_where_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_zeros_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_bucketize_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_eye_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_fft_fft2_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_fft_irfft_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_floor_divide_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_heaviside_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_item_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_log_normal_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_logical_and_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_logical_or_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_lt_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_masked_fill_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_mean_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_nn_functional_hinge_embedding_loss_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_nn_functional_huber_loss_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_nn_functional_prelu_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_unbind_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_T_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bfloat16_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bool_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bool_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bool_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_byte_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_byte_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cfloat_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cfloat_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cfloat_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_chalf_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_float_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_int_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_int_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_long_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_long_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_long_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_long_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_long_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_polar_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_polar_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_abs_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acos_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acosh_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acosh_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acosh_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_add_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_add_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addcdiv_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addcmul_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_alias_copy_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_all_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_all_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_allclose_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_any_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_copy_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_copy_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_copy_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_partial_views_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_partial_views_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_scatter_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atanh_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atanh_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atanh_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_1d_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_2d_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_2d_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_3d_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_3d_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_3d_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_left_shift_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_right_shift_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_to_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bucketize_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cauchy_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ceil_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_chunk_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_max_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_min_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_min_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_min_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_constant_pad_nd_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_contiguous_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_copysign_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_copysign_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cos_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cos_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cosh_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cosh_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumsum_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_deg2rad_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_deg2rad_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_embed_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_copy_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_scatter_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_digamma_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_floor_rounding_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_no_rounding_mode_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_no_rounding_mode_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_no_rounding_mode_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_trunc_rounding_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dsplit_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dsplit_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dsplit_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dstack_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_like_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_strided_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_strided_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_strided_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eq_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eq_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eq_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erfc_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erfc_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erfinv_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exp2_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exp_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_as_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exponential_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exponential_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eye_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eye_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fft2_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fftn_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fftshift_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fftshift_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfft2_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfft_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfft_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfftn_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifft2_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifft2_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifft_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftn_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftn_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftn_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftn_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftn_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ihfft2_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfft2_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfft_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfft_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfftn_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfft_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfft_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfft_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfftn_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fill_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fill_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fill_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flatten_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flip_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flipud_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_float_power_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_float_power_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_floor_divide_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_floor_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmin_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmod_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmod_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_frac_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_gcd_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ge_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ge_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ge_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_gt_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_gt_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_gt_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hsplit_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hsplit_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hsplit_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hsplit_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hypot_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_igamma_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_igammac_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_imag_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_add_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_copy_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_select_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_select_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_select_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_select_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isclose_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isfinite_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isfinite_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isinf_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isnan_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isneginf_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isposinf_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isposinf_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isreal_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_item_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_item_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lerp_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lerp_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lgamma_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_cross_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_diagonal_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_norm_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_norm_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_svdvals_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log10_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log10_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log10_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log1p_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log1p_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log2_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_normal_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_normal_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_softmax_with_dtype_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_and_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_not_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_tensor_overload_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_tensor_overload_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_tensor_overload_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logsumexp_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_masked_fill_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_masked_fill_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_list_of_tensors_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_list_of_tensors_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_minimum_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_minimum_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_minimum_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_mul_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_mul_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_mul_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_copy_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_neg_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_strided_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_full_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_ones_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_ones_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_ones_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_celu_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_channel_shuffle_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_channel_shuffle_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_dropout_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_dropout_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_gelu_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_group_norm_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_hardtanh_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_l1_loss_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_layer_norm_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_leaky_relu_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_log_softmax_with_dtype_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_mish_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_mish_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_mse_loss_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_nll_loss_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_nll_loss_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pairwise_distance_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pairwise_distance_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_shuffle_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_unshuffle_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_poisson_nll_loss_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_prelu_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_prelu_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_smooth_l1_loss_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmax_with_dtype_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmax_with_dtype_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_tanhshrink_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_tanhshrink_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_threshold_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_norm_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_norm_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_norm_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_normal__in_place_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ones_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ones_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_copy_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_copy_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_positive_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_positive_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_pow_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_pow_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_pow_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_prod_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_prod_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rad2deg_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ravel_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ravel_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_real_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reciprocal_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_remainder_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_remainder_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_repeat_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_repeat_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_repeat_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_as_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_as_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_as_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_as_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_roll_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_roll_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_roll_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rot90_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsub_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsub_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_select_scatter_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sgn_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sigmoid_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sigmoid_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sign_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_signbit_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sin_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sin_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinh_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinh_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_bessel_j0_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_bessel_j0_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_bessel_j1_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_entr_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_erfcx_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i0e_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i1_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i1_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i1e_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_log_ndtr_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_log_ndtr_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_log_ndtr_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_log_softmax_with_dtype_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_log_softmax_with_dtype_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_logit_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_5_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_5_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_ndtr_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_ndtr_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_ndtri_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_softmax_with_dtype_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_split_with_sizes_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_split_with_sizes_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sqrt_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sqrt_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_square_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_square_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_multiple_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_multiple_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_multiple_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_stack_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_std_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_std_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_std_mean_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_stft_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_stft_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sum_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sum_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sum_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sum_to_size_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_copy_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_take_along_dim_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_take_along_dim_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tensor_split_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_to_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_to_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_trace_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_copy_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_copy_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tril_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tril_indices_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_triu_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_true_divide_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_trunc_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_trunc_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unflatten_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unflatten_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_copy_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vdot_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vdot_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vdot_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_as_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_copy_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vsplit_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_where_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_where_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_xlogy_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_zeros_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_zeros_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_T_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bfloat16_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bool_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_byte_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_byte_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_byte_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cdouble_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cfloat_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cfloat_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_char_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_char_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_complex_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_double_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_double_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_half_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_half_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_int_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_long_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_abs_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acos_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acos_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acos_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acosh_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acosh_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_add_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addcmul_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addcmul_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addcmul_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addcmul_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addr_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addr_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_arange_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_partial_views_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_partial_views_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_partial_views_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_scatter_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_scatter_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asinh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atanh_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atanh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_2d_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_2d_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_left_shift_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_xor_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_block_diag_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_tensors_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_to_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_to_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_to_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cat_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ceil_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_chunk_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_chunk_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_physical_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_physical_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_constant_pad_nd_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_constant_pad_nd_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_constant_pad_nd_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_constant_pad_nd_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_contiguous_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_contiguous_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_copysign_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_copysign_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_copysign_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cos_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumprod_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumsum_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_deg2rad_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_scatter_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_scatter_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_no_rounding_mode_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_trunc_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dot_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dsplit_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dstack_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_like_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_like_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_like_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_strided_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eq_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eq_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_equal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erf_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erf_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erfc_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erfc_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erfinv_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_as_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_as_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expm1_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eye_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eye_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eye_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fft2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fft_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fft_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftshift_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfft2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfftn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfftn_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifft_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftn_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftshift_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfft2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfft2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfft_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfftn_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfftn_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_rfft_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_rfft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fill_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flatten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fliplr_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fliplr_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flipud_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_floor_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_floor_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmax_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmin_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmod_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_frexp_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_gt_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_heaviside_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hsplit_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hsplit_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hsplit_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_i0_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_add_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_fill_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_select_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isfinite_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isfinite_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isfinite_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isinf_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isneginf_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isreal_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isreal_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_istft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_item_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_item_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lcm_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lcm_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_le_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_le_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_le_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lerp_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lgamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lgamma_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lgamma_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lgamma_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_cross_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_cross_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_diagonal_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_diagonal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_diagonal_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_matrix_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_svd_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_vecdot_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_vecdot_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_tensor_overload_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log10_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log1p_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log1p_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_softmax_with_dtype_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_softmax_with_dtype_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logaddexp_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logaddexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_and_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_and_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_and_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_not_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_not_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_or_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_or_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_or_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_or_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_or_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logsumexp_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lt_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_masked_fill_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_maximum_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_list_of_tensors_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_movedim_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_movedim_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_movedim_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_mul_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_mul_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_native_layer_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_native_layer_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ne_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_neg_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_ones_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_zeros_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_zeros_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_zeros_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_zeros_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_alpha_dropout_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_celu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_channel_shuffle_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_channel_shuffle_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_dropout_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_elu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_glu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_glu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_group_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_huber_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_layer_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_log_softmax_with_dtype_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_margin_ranking_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_mse_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_mse_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_nll_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pairwise_distance_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pairwise_distance_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pairwise_distance_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_shuffle_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_shuffle_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_shuffle_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_unshuffle_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_unshuffle_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_poisson_nll_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_poisson_nll_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_prelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_relu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_relu_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_smooth_l1_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmin_with_dtype_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmin_with_dtype_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softplus_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_tanhshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_triplet_margin_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_triplet_margin_loss_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_triplet_margin_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_normal__in_place_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_normal__in_place_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ones_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ones_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ones_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_positive_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_positive_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_pow_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rad2deg_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rad2deg_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ravel_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_real_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_real_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reciprocal_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_renorm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_repeat_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_as_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_roll_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rot90_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsqrt_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsqrt_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsub_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_select_scatter_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sgn_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sgn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sgn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sgn_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sign_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sign_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_signbit_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_signbit_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_signbit_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_signbit_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sin_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sin_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sin_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_softmax_with_dtype_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_softmax_with_dtype_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_bessel_j0_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_bessel_j1_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_entr_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_erfcx_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i0e_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i1_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i1e_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i1e_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_ndtr_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_ndtr_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_softmax_with_dtype_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_3_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_5_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_5_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_ndtr_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_ndtr_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_ndtri_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_softmax_with_dtype_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_spherical_bessel_j0_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_spherical_bessel_j0_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_xlog1py_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_xlog1py_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_split_with_sizes_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_split_with_sizes_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_split_with_sizes_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_multiple_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_multiple_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_stack_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_stack_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_stft_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sub_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_to_size_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_to_size_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_to_size_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_take_along_dim_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tan_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_to_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_trace_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_trace_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tril_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tril_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_triu_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_true_divide_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_trunc_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_trunc_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unflatten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_var_mean_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vdot_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_as_complex_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vstack_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_where_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_xlogy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_zeros_cpu_complex32, 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__conversions_bool_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_byte_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_byte_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cdouble_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cdouble_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cfloat_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cfloat_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_chalf_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_chalf_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_char_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_double_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_double_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_double_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_double_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_float_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_half_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_half_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_half_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_long_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_short_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_abs_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_abs_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acos_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acosh_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_add_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_add_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_add_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addr_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addr_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_all_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_all_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_allclose_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_amax_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_amin_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_any_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_any_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_partial_views_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_scatter_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_scatter_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_scatter_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asin_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asin_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asinh_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atanh_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_1d_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_1d_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_1d_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_2d_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_2d_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_3d_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_and_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_left_shift_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_not_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_right_shift_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_right_shift_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_tensors_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_tensors_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_tensors_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_to_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_to_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bucketize_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cat_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cat_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cauchy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ceil_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ceil_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_chunk_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_chunk_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clone_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clone_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_constant_pad_nd_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_constant_pad_nd_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_contiguous_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_copysign_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_copysign_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cos_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cos_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cosh_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cosh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_count_nonzero_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_count_nonzero_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_count_nonzero_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_count_nonzero_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_deg2rad_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diag_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diag_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diag_embed_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diag_embed_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diag_embed_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diag_embed_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diag_embed_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_scatter_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_scatter_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_floor_rounding_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_floor_rounding_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_no_rounding_mode_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dsplit_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_like_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_strided_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eq_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eq_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eq_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_equal_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_equal_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erf_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erf_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erf_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_as_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expm1_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exponential_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fft_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftn_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftshift_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfft2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfft_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftshift_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftshift_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfftn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfftn_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fill_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fill_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flatten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flatten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flip_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flip_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fliplr_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flipud_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_float_power_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_float_power_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_floor_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_floor_divide_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmax_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmax_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmin_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmod_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_gcd_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_gcd_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ge_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ge_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_gt_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hsplit_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hsplit_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hsplit_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hstack_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hstack_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hstack_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hypot_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_i0_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_i0_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_igammac_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_add_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_add_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_add_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_fill_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isclose_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isclose_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isfinite_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isinf_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isinf_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isinf_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isneginf_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isposinf_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isposinf_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isposinf_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_istft_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_item_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_item_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_item_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_le_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_le_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_cross_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_cross_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_cross_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_diagonal_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_diagonal_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_diagonal_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_matrix_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_svd_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linspace_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linspace_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linspace_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log10_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log1p_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log1p_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_softmax_with_dtype_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_and_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_and_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_and_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_not_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_not_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_not_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_or_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_xor_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_masked_fill_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_list_of_tensors_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_list_of_tensors_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_list_of_tensors_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_variadic_tensors_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_variadic_tensors_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_minimum_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_minimum_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_mul_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_mul_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nan_to_num_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ne_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_neg_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_strided_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_ones_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_zeros_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_celu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_channel_shuffle_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_channel_shuffle_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_glu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_group_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_l1_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pairwise_distance_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pairwise_distance_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pdist_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_unshuffle_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_poisson_nll_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmin_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_tanhshrink_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_threshold_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_triplet_margin_loss_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_triplet_margin_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_normal__in_place_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_normal_number_mean_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ones_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ones_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_positive_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_positive_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_prod_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_prod_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_prod_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rad2deg_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_real_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_real_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reciprocal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reciprocal_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reciprocal_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_renorm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_as_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_as_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_as_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_roll_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_roll_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_roll_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_roll_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rot90_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsqrt_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsub_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sigmoid_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sigmoid_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sign_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_signbit_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_signbit_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sin_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sin_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinc_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinc_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinh_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinh_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_softmax_with_dtype_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_softmax_with_dtype_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_entr_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1e_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_log_ndtr_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_logit_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_logit_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_1_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_zeta_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_split_with_sizes_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_split_with_sizes_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_split_with_sizes_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sqrt_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_multiple_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_multiple_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_stack_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_stack_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_stack_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_std_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_std_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sub_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_to_size_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_take_along_dim_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tan_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tanh_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tanh_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tanh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tensor_split_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tensor_split_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tensor_split_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tensor_split_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_to_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tril_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tril_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_triu_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_triu_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_true_divide_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unflatten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_var_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_var_mean_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vdot_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_as_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_where_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_xlogy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_xlogy_cpu_int8, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager__batch_norm_with_update_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager__unsafe_masked_index_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_addmm_decomposed_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_arange_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_argmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_argsort_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_as_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_asinh_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_atan_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_atan_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_bernoulli_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_bool_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_bool_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_broadcast_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_byte_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cfloat_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_char_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_clamp_min_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cosh_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cumulative_trapezoid_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cumulative_trapezoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_deg2rad_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_diff_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_empty_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_empty_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_fftshift_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_ifft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_irfft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_flatten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fliplr_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_full_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_gather_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_igammac_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_index_put_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_index_reduce_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_istft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_item_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_jiterator_4inputs_with_extra_args_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_det_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_eig_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_eigh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_eigvalsh_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_inv_ex_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_ldl_factor_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_ldl_solve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_pinv_singular_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_solve_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_svdvals_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_vector_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_log_normal_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logical_not_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logspace_tensor_overload_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_lu_solve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_sum_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_mul_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_mv_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_new_ones_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_new_zeros_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_conv1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_gaussian_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_hardshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_max_unpool2d_grad_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nonzero_static_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_ormqr_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_pca_lowrank_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_polygamma_polygamma_n_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_pow_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_rand_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_resize__cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_roll_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_round_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_scatter_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_signbit_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_bessel_y1_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_modified_bessel_i0_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_modified_bessel_k1_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_std_mean_unbiased_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_std_unbiased_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_stft_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_svd_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_svd_lowrank_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_t_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_tanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_trace_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_triangular_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_triu_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_var_unbiased_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_view_as_real_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_view_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_zero__cpu_complex64, test/test_ops.py::TestCompositeComplianceCPU::test_backward___rsub___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward__segment_reduce_offsets_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_angle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_atan_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_cdist_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_ceil_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_cfloat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_cosh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_cummax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_erfc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_ifft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_float_power_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_floor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_grid_sampler_2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_index_put_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_cholesky_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_pinv_hermitian_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_pinv_singular_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_solve_triangular_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_maximum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_mm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_mode_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nanmedian_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_narrow_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_embedding_bag_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_gelu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_glu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_hardshrink_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_huber_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_interpolate_linear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_interpolate_trilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_max_unpool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_norm_nuc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_polygamma_polygamma_n_2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_put_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_special_entr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_special_i1e_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_std_unbiased_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_stft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_take_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_tensordot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_unbind_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_view_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_as_strided_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_atan2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_atleast_1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_atleast_3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_broadcast_shapes_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_bucketize_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_chunk_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_conj_physical_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_cumulative_trapezoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_empty_permuted_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_exp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_exponential_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fft_fft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fft_fft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fft_ifftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fliplr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_index_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_index_reduce_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_index_select_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_isclose_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_isneginf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_householder_product_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_matrix_rank_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linspace_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_log10_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_logaddexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_long_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_mT_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_argmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_argmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_cumprod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_fill_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_median_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_select_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_max_reduction_with_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_avg_pool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_bilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_cosine_similarity_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_cross_entropy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_glu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_group_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_huber_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_instance_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_linear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_mse_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_upsample_nearest_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_rand_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_reciprocal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_renorm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_reshape_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_scatter_reduce_amin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_scatter_reduce_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_signal_windows_hann_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_slice_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_bessel_j1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_erfcx_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_modified_bessel_i1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_ndtri_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_square_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_squeeze_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_squeeze_multiple_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_std_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_svd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_take_along_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_tan_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_transpose_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_triangular_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_uniform_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_xlogy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad___rdiv___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad___rmatmul___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_atleast_2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_cummax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_div_trunc_rounding_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_erf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fliplr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_index_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_index_reduce_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_isposinf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_eigvalsh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_inv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_ldl_factor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_multi_dot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_qr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_tensorinv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_log_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_logdet_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_logsumexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_matrix_exp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_median_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_minimum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_mv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nan_to_num_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_native_dropout_backward_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_native_layer_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_ne_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_new_empty_strided_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_cosine_embedding_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_fractional_max_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_group_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_hardshrink_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_local_response_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_max_unpool1d_grad_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_max_unpool2d_grad_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_prelu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_softmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_threshold_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_upsample_nearest_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nonzero_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_reshape_as_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_resize_as__cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_signal_windows_gaussian_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_signal_windows_kaiser_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_sinc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_i1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_modified_bessel_i1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_xlog1py_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_squeeze_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_std_mean_unbiased_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_t_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_tensor_split_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_to_sparse_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_transpose_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_triangular_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_unique_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_var_unbiased_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_where_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator___getitem___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_addbmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_addr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_all_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_amin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_argsort_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_as_strided_partial_views_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_atan2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_baddbmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_cartesian_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_cauchy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_chunk_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_column_stack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_cosh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_cumulative_trapezoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_diag_embed_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_diff_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_div_floor_rounding_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_expand_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_expand_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fft_hfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fft_ihfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_flip_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_floor_divide_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fmod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_i0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_isneginf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_jiterator_binary_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_eigvalsh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_solve_triangular_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_svdvals_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_tensorinv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_vector_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_logical_not_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_normalize_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_max_reduction_with_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nextafter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_fractional_max_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_mse_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_pad_reflect_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_prelu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nonzero_static_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_norm_nuc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_normal_in_place_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_polygamma_polygamma_n_0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_positive_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_sgn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_signal_windows_general_cosine_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_signal_windows_kaiser_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_bessel_j1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_i1e_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_log_ndtr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_spherical_bessel_j0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_split_list_args_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_split_with_sizes_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_squeeze_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_squeeze_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_tanh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_to_sparse_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_topk_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_triu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_unflatten_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_var_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_view_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_where_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay__batch_norm_with_update_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay__chunk_cat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay__segment_reduce_lengths_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_asinh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_atan2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_atan_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_bfloat16_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_cholesky_inverse_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_cholesky_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_conj_physical_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_constant_pad_nd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_cosh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_diagflat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_empty_permuted_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_ifftshift_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fliplr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_floor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_frac_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_geometric_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_gradient_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_heaviside_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_isclose_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_isneginf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_jiterator_binary_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_le_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_det_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_lstsq_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_pinv_singular_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_tensorinv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_vecdot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linspace_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_log1p_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_log_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_long_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_argmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_logsumexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_sum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nanquantile_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_new_zeros_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_dropout3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_fractional_max_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_glu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_logsigmoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_max_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_pad_replicate_negative_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_pairwise_distance_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_relu6_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_threshold_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_upsample_bilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_pinverse_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_scatter_reduce_sum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_short_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_signal_windows_bartlett_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_signal_windows_general_hamming_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_signal_windows_hann_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_erfcx_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_hermite_polynomial_h_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_ndtr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_xlog1py_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_sqrt_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_std_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_sub_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_sum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_sum_to_size_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_transpose_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_trunc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_unique_consecutive_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_view_as_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_view_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_view_cpu_float32, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs__conversions_chalf_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs__conversions_float_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs__conversions_short_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_atleast_3d_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_cosh_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_dot_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_empty_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_empty_strided_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_eq_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_fill_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_imag_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_linalg_diagonal_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_linalg_svd_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_linalg_vecdot_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_logspace_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_prod_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_ravel_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_roll_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_unbind_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_view_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_vsplit_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_zeros_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_alias_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_allclose_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_as_strided_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_cholesky_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_constant_pad_nd_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_dstack_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_empty_strided_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_fft_fft2_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_fft_hfft_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_flip_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_full_like_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_index_select_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_ldl_factor_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_ldl_factor_ex_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_lu_factor_ex_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_solve_ex_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_vector_norm_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_logaddexp_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_logspace_tensor_overload_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_masked_logsumexp_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_masked_sum_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_meshgrid_variadic_tensors_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_mm_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_ne_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_new_full_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_tanhshrink_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_permute_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_qr_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_rand_like_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_reciprocal_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_rsub_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_sqrt_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_t_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_tensor_split_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_vsplit_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_zero__cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view___getitem___cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs__conversions_float_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs__conversions_long_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_addcmul_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_all_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_any_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_asin_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_atleast_2d_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_expand_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_fft_hfft2_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_item_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_linalg_diagonal_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_linalg_vecdot_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_logical_not_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_logical_or_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_new_zeros_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_ones_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_permute_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_pow_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_reciprocal_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_rot90_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_rsub_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_squeeze_multiple_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_tanh_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_tensor_split_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_transpose_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_addr_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_all_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_baddbmm_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_block_diag_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_bool_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_broadcast_tensors_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_cdouble_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_chalf_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_chunk_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_cov_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_cross_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_cumprod_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_diag_embed_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_empty_strided_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_exp_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_fft_hfftn_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_fft_ifftn_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_gather_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_geqrf_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_hsplit_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_inner_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_isclose_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_jiterator_binary_return_by_ref_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_lerp_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_eigvalsh_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_inv_ex_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_slogdet_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_solve_ex_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_log1p_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_logcumsumexp_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_logspace_tensor_overload_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_masked_cumprod_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_masked_normalize_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_new_empty_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_new_ones_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_conv_transpose1d_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_pow_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_rsqrt_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_sigmoid_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_squeeze_multiple_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_take_along_dim_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_tensor_split_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_to_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_trapz_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_var_mean_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_view___rdiv___cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__native_batch_norm_legit_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs__conversions_byte_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs__conversions_char_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_amin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_diagonal_scatter_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_eq_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_irfftn_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_rfft2_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_frac_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_frexp_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_gt_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_igamma_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_linalg_svdvals_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_log2_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_logaddexp2_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_meshgrid_variadic_tensors_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_native_layer_norm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_margin_ranking_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_nll_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_pow_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_round_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_sigmoid_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_sinc_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_multigammaln_mvlgamma_p_5_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_stft_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_sub_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_tan_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_tril_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_unbind_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_unflatten_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_view_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__unsafe_masked_index_put_accumulate_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_bucketize_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_cdist_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_chalf_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_combinations_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_conj_physical_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_cross_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_cummin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_dsplit_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_empty_like_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_expand_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fft_fftshift_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fft_hfftn_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fft_ihfftn_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_flatten_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_full_like_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_gradient_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_gt_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_histc_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_igamma_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_index_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_index_fill_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_inner_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_ldexp_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_le_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_det_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_diagonal_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_eig_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_lu_solve_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_matrix_rank_hermitian_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_multi_dot_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_pinv_hermitian_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_vecdot_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_log1p_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_log_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_mean_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_select_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_var_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nanmedian_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_narrow_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_native_layer_norm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nextafter_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_bilinear_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_dropout3d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_fractional_max_pool3d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_gaussian_nll_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_gelu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_hardswish_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_hardtanh_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_instance_norm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_pad_reflect_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_smooth_l1_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_soft_margin_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_tanhshrink_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_norm_fro_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_norm_inf_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_normal_number_mean_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_outer_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_polygamma_polygamma_n_0_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_randint_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_repeat_interleave_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_rsqrt_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_scalar_tensor_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_select_scatter_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_signal_windows_nuttall_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_slice_scatter_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_legendre_polynomial_p_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_modified_bessel_i0_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_ndtr_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_spherical_bessel_j0_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_split_with_sizes_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_sqrt_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_tan_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_tanh_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_unfold_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_unfold_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_unique_consecutive_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_unsafe_split_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_vdot_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_view_cpu_float64, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs__conversions_bfloat16_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs__conversions_chalf_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs__conversions_long_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_as_strided_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_atan_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_bitwise_left_shift_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_bitwise_not__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_bucketize_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__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_copy_to_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_copysign__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_eq__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_erf_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_erfinv_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_expand_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fft_fft2_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fft_ifft2_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_geometric__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_heaviside_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_hypot__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_isfinite_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_lerp_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_lgamma__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_logaddexp2_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_logspace_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_meshgrid_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_mish_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_relu6_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_selu_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_sinh_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_special_bessel_j0_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_special_bessel_j1_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_special_log_softmax_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_special_multigammaln_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_special_softmax_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_sum_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_tanh__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_trace_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_triu_indices_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_trunc_divide_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_addcdiv_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_addcmul__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_addcmul_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_all_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_allclose_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_atan2__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_atan_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_broadcast_shapes_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_cat_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_constant_pad_nd_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_cosh__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_cumprod_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_deg2rad__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_deg2rad_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_dstack_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_empty_strided_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_erfinv__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_expand_as_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_flipud_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_frac_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_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_hypot__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_lgamma__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_linspace_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_masked_fill_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_maximum_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_minimum_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_new_ones_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_group_norm_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_hinge_embedding_loss_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_log_softmax_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_softmax_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_softshrink_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_rad2deg__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_rad2deg_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_reshape_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_rfloordiv_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_rsub_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_special_i1_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_square_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_squeeze_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_tensor_split_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_trace_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_unbind_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_var_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_vsplit_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_where_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_zero__cpu, test/test_ops.py::TestFakeTensorCPU::test_fake___rxor___cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_alias_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_aminmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_angle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_any_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_as_strided_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_T_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_addmm_decomposed_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_addr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_asin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_chalf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_count_nonzero_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_diff_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_div_trunc_rounding_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fft_ihfft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fft_ihfftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fft_rfftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_frac_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_grid_sampler_2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_hstack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_i0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_int_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_item_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_jiterator_4inputs_with_extra_args_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_ldexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_cholesky_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_diagonal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_qr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_solve_triangular_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_svdvals_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_vecdot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_log_softmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_min_binary_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_min_reduction_with_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_mul_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_new_empty_strided_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_glu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_hardtanh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_interpolate_trilinear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_kl_div_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_l1_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_multilabel_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_pad_reflect_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_pad_replicate_negative_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_pairwise_distance_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_softplus_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_pca_lowrank_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_pinverse_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_randn_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_resize__cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_resolve_conj_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_searchsorted_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_signal_windows_general_cosine_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_signal_windows_general_hamming_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_sinh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_bessel_y0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_entr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_hermite_polynomial_he_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_laguerre_polynomial_l_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_modified_bessel_k0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_ndtri_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_split_list_args_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_squeeze_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_stack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_tile_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_torch__scaled_mm_cpu_float8_e4m3fn, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_true_divide_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_unfold_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_bmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_ceil_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_conj_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_cov_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp__softmax_backward_data_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_addcmul_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_addr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_as_strided_partial_views_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_atleast_2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_broadcast_tensors_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_cov_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_einsum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_expand_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fft_hfft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fft_irfftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fft_rfftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_frac_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_gather_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_i0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_kthvalue_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_ldexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_qr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_log_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_masked_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_masked_var_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_max_binary_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_max_reduction_no_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_median_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nansum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_native_dropout_backward_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_interpolate_area_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_interpolate_bicubic_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_max_unpool1d_grad_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_multi_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_multilabel_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_pad_replicate_negative_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_selu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_upsample_bilinear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_norm_fro_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_norm_inf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_normal_number_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_pca_lowrank_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_qr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_ravel_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_remainder_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_renorm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_reshape_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_resolve_neg_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_roll_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_round_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_sparse_mm_reduce_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_special_i1e_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_special_ndtri_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_sqrt_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_sum_to_size_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_trace_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_trapz_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_tril_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_vstack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_where_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp___radd___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp__upsample_bilinear2d_aa_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_atleast_2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_block_diag_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_cholesky_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_complex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_cosh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_cummin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_diag_embed_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fft_fft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fft_irfftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_half_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_index_add_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_cholesky_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_eigvalsh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_lu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_svd_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_vecdot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_logit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_lu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_masked_select_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_masked_std_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_masked_sum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_masked_var_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_minimum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_batch_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_celu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_conv_transpose2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_interpolate_bicubic_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_interpolate_bilinear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_interpolate_nearest_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_interpolate_trilinear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_max_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_max_unpool2d_grad_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_multi_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_permute_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_pow_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_qr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_round_decimals_neg_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_sgn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_slice_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_sparse_mm_reduce_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_svd_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_unbind_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_vstack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_diagonal_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_empty_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_eq_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_erfinv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_expand_as_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_ifft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_ifftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_irfft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_rfft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_rfft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fill_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_float_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_full_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_gather_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_i0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_index_put_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_isinf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_istft_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_fake_jiterator_4inputs_with_extra_args_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_le_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_diagonal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_eig_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_inv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_ldl_factor_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_ldl_factor_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_log10_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_logdet_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_logit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_max_pool2d_with_indices_backward_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_min_reduction_with_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_mode_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_multinomial_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nan_to_num_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_neg_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_new_zeros_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_conv2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_cross_entropy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_embedding_bag_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_embedding_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_fractional_max_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_gaussian_nll_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_gelu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_hardshrink_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_hardtanh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_interpolate_area_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_kl_div_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_local_response_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_max_unpool3d_grad_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_mish_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_one_hot_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_selu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_silu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_softplus_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_ormqr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_pca_lowrank_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_positive_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_rand_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_randint_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_repeat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_resolve_neg_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_rsqrt_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_sgn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_signal_windows_general_cosine_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_slice_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_softmax_with_dtype_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_hermite_polynomial_h_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_laguerre_polynomial_l_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_xlog1py_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_squeeze_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_sub_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_t_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_take_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_tan_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_transpose_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_transpose_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_trapz_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_view_as_real_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_fake_view_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops___getitem___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops___rmod___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops__chunk_cat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops__unsafe_masked_index_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_all_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_amin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_angle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_any_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_as_strided_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_baddbmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_bernoulli_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_bincount_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_bitwise_or_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cartesian_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cdist_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_char_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_clamp_max_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_column_stack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cumulative_trapezoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_dstack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_expand_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fft_hfftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fft_ihfft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fft_irfftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fill_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_flip_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_flipud_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fmod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_frac_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_half_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_igamma_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_isclose_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_lu_factor_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_lu_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_solve_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_tensorinv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_logaddexp2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_logit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_fill_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_var_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_max_pool2d_with_indices_backward_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_native_layer_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_new_empty_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_avg_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_dropout2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_embedding_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_fractional_max_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_hardtanh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_instance_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_interpolate_bilinear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_interpolate_nearest_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_interpolate_trilinear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_l1_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_max_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_max_unpool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_one_hot_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_pad_reflect_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_soft_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_softplus_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nonzero_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_norm_nuc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_ones_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_permute_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_permute_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_polygamma_polygamma_n_1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_pow_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_renorm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_repeat_interleave_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_reshape_as_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_scalar_tensor_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_softmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_hermite_polynomial_he_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_i1e_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_laguerre_polynomial_l_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_ndtri_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_split_with_sizes_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_sqrt_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_squeeze_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_std_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_tril_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_var_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_view_as_complex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_arange_cpu_bfloat16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_tensor_overload_cpu_float16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_ones_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_tensor_overload_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_tensor_overload_cpu_int8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_cpu_float16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_tensor_overload_cpu_uint8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_ones_cpu_uint8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_zeros_cpu_bool, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_zeros_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags___rdiv___cpu_float32, test/test_ops.py::TestTagsCPU::test_tags___rmatmul___cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs__conversions_bool_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs__conversions_float_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs__conversions_int_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_amax_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_atleast_2d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_copysign_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_cosh_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_div_trunc_rounding_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_erfinv_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_hfft_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_ifftn_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_isnan_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_isposinf_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_istft_cpu_complex64, test/test_ops.py::TestTagsCPU::test_tags__refs_linalg_diagonal_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_log10_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_logical_not_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_logical_or_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_logsumexp_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_lt_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_elu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_group_norm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_l1_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_tanhshrink_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_pow_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_rad2deg_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_repeat_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_reshape_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_sigmoid_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_sinc_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_squeeze_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_tan_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_var_mean_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_view_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_view_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_addmm_decomposed_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_addr_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_angle_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_any_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_argmax_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_atanh_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_bernoulli_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_bitwise_xor_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags_broadcast_shapes_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_column_stack_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_conj_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_cov_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_div_trunc_rounding_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_exp_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_expm1_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_exponential_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_ifft_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_gcd_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags_histogram_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_isfinite_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_isreal_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_lcm_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags_linalg_cholesky_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_cross_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_det_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_ldl_factor_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_norm_subgradients_at_zero_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_slogdet_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_solve_ex_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_svdvals_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_logaddexp2_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_median_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_select_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_min_reduction_with_dim_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_minimum_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_mm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_mul_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nanmedian_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_new_full_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_conv_transpose3d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_embedding_bag_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_gelu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_interpolate_linear_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_kl_div_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_pairwise_distance_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_rms_norm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_norm_nuc_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_pca_lowrank_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_rad2deg_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_rand_like_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_reciprocal_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_reshape_as_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_round_decimals_0_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_scatter_reduce_amin_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_scatter_reduce_prod_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_short_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_sinh_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_log_ndtr_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_zeta_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_squeeze_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_t_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_tanh_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_to_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_tril_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_triu_indices_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags_unbind_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_unsqueeze_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_unsqueeze_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_where_cpu_float32 2025-08-14T23:34:33.4776832Z 2025-08-14T23:34:36.1762623Z 2025-08-14T23:34:36.1763559Z test_ops 9/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_9.9_6afe3c6bdd7a36cd_.log 2025-08-14T23:34:36.3060670Z Running 3861 items in this shard: test/test_ops.py::TestCommonCPU::test_compare_cpu___rsub___cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs__conversions_bfloat16_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs__conversions_chalf_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_chunk_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_eye_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_fft_ifftshift_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_hypot_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_index_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_linalg_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_rsub_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_take_along_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__unsafe_masked_index_put_accumulate_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_atan2_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_atleast_1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_char_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_chunk_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_cross_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_div_floor_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_empty_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_empty_permuted_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_full_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_igamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_int_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_istft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_compare_cpu_kthvalue_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_det_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_eigvalsh_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_inv_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_norm_subgradients_at_zero_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_log_normal_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_logdet_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_masked_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_min_reduction_with_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_mv_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_narrow_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_ctc_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_interpolate_bilinear_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_max_pool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_reshape_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_scalar_tensor_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_scatter_reduce_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_short_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_svd_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_t_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_trapz_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_view_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_zero__cpu_float32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_cat_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_clone_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_diagonal_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_dsplit_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_empty_permuted_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_index_select_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_log_softmax_with_dtype_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_movedim_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_permute_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_repeat_interleave_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_reshape_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_resolve_neg_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_roll_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_scalar_tensor_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_split_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_squeeze_multiple_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_triu_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_unsqueeze_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_view_as_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_where_cpu_complex32, test/test_ops.py::TestCommonCPU::test_dtypes___rpow___cpu, test/test_ops.py::TestCommonCPU::test_dtypes___rsub___cpu, test/test_ops.py::TestCommonCPU::test_dtypes__chunk_cat_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs__conversions_byte_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs__conversions_char_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs__conversions_double_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_arange_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_bitwise_not_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_bitwise_or_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_cat_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_clamp_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_constant_pad_nd_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_diagonal_scatter_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_dstack_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_empty_like_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_equal_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_erf_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_exponential_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_ifftshift_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_floor_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_hypot_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_native_layer_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_neg_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_celu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_channel_shuffle_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_selu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_ones_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_permute_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_permute_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_round_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_special_bessel_j0_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_special_entr_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_special_logit_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_special_ndtr_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_std_mean_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_sum_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_transpose_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_unsqueeze_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_vdot_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_view_as_complex_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_view_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_acosh_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_addmm_decomposed_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_amin_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_asinh_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_atleast_1d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_bernoulli_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_bitwise_xor_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cauchy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_copysign_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cross_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cummin_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_digamma_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_double_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fft_hfftn_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fft_ifft_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fft_rfft2_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_float_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fmin_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_frexp_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_ge_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_igamma_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_isposinf_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_jiterator_4inputs_with_extra_args_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_jiterator_binary_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_cross_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_matrix_rank_hermitian_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_logaddexp2_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_long_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_amax_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_mean_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_max_reduction_no_dim_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_meshgrid_variadic_tensors_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_minimum_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_mode_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_mul_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_mv_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nanmean_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nansum_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_neg_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_adaptive_max_pool3d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_avg_pool1d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_binary_cross_entropy_with_logits_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_conv_transpose2d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_cosine_embedding_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_dropout3d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_fractional_max_pool3d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_hardshrink_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_interpolate_area_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_interpolate_trilinear_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_l1_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_margin_ranking_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_mish_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_pad_reflect_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_relu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_rms_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_rrelu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_softmin_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_triplet_margin_with_distance_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_pow_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_quantile_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_randn_like_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_resolve_neg_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_scatter_reduce_amax_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_signal_windows_bartlett_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_sinc_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_bessel_j1_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_take_along_dim_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_torch_ops_aten__flash_attention_forward_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_tril_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_tril_indices_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_unsafe_chunk_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_view_as_cpu, test/test_ops.py::TestCommonCPU::test_errors_bitwise_right_shift_cpu, test/test_ops.py::TestCommonCPU::test_errors_diagonal_copy_cpu, test/test_ops.py::TestCommonCPU::test_errors_fft_fftn_cpu, test/test_ops.py::TestCommonCPU::test_errors_fft_hfft2_cpu, test/test_ops.py::TestCommonCPU::test_errors_fft_irfft_cpu, test/test_ops.py::TestCommonCPU::test_errors_fft_rfftn_cpu, test/test_ops.py::TestCommonCPU::test_errors_flipud_cpu, test/test_ops.py::TestCommonCPU::test_errors_ge_cpu, test/test_ops.py::TestCommonCPU::test_errors_geometric_cpu, test/test_ops.py::TestCommonCPU::test_errors_hstack_cpu, test/test_ops.py::TestCommonCPU::test_errors_item_cpu, test/test_ops.py::TestCommonCPU::test_errors_linalg_diagonal_cpu, test/test_ops.py::TestCommonCPU::test_errors_masked_fill_cpu, test/test_ops.py::TestCommonCPU::test_errors_multinomial_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_adaptive_avg_pool3d_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_conv1d_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_conv2d_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_embedding_cpu, test/test_ops.py::TestCommonCPU::test_errors_reshape_cpu, test/test_ops.py::TestCommonCPU::test_errors_signal_windows_gaussian_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_mul_layout1_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_randn_like_layout1_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_sum_layout2_cpu, test/test_ops.py::TestCommonCPU::test_errors_special_hermite_polynomial_h_cpu, test/test_ops.py::TestCommonCPU::test_errors_special_shifted_chebyshev_polynomial_w_cpu, test/test_ops.py::TestCommonCPU::test_errors_uniform_cpu, test/test_ops.py::TestCommonCPU::test_errors_view_as_cpu, test/test_ops.py::TestCommonCPU::test_errors_xlogy_cpu, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_addcdiv_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_atan_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_clamp_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_clamp_min_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_column_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_cummax_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_diag_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_digamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_div_floor_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_empty_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_expand_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_fft_fft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_fft_fftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_inner_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_det_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_ldl_factor_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_lu_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_matrix_rank_hermitian_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_slogdet_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_solve_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_masked_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_minimum_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_mv_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_nanmean_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_nanquantile_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_ne_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_quantile_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_remainder_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_sinc_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_sinh_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_slice_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_bessel_y1_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_erfcx_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_laguerre_polynomial_l_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_legendre_polynomial_p_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_modified_bessel_k0_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_squeeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_svd_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_triangular_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_tril_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_true_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_unfold_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_view_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_vstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_abs_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_acosh_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_addbmm_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_all_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_aminmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_argmax_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_argsort_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_argwhere_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_atanh_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_atleast_1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_bitwise_left_shift_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_broadcast_to_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_bucketize_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_cdist_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_ceil_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_char_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_char_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_clone_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_combinations_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_cos_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_count_nonzero_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_cummax_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_diag_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_diff_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_dist_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_einsum_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_empty_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_exp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_exp2_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_exp_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_expand_as_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_expand_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_eye_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_fft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_fftshift_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_hfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_ihfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fmin_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_frexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_hash_tensor_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_histogramdd_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_igammac_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_index_reduce_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_index_reduce_mean_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_index_reduce_prod_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_inner_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_item_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_jiterator_2inputs_2outputs_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_kron_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_cholesky_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_cross_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_eigh_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_lstsq_grad_oriented_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_matrix_power_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_multi_dot_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_mH_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_normalize_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_std_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_matmul_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_min_reduction_with_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_mm_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_mode_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nanmean_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nanquantile_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_narrow_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_new_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_new_zeros_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nextafter_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_avg_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_cosine_embedding_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_cross_entropy_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_l1_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_max_unpool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_max_unpool2d_grad_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_multi_head_attention_forward_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_pad_constant_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_softplus_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_upsample_bilinear_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nonzero_static_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_ones_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_permute_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_polygamma_polygamma_n_0_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_polygamma_polygamma_n_4_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_quantile_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_ravel_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_real_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_reciprocal_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_remainder_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_resize__cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_resolve_conj_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_rot90_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_round_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_rsqrt_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_searchsorted_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_select_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_select_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_signal_windows_cosine_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_slice_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_bessel_y0_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_hermite_polynomial_h_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_i0e_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_scaled_modified_bessel_k1_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_shifted_chebyshev_polynomial_u_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_sqrt_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_squeeze_multiple_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_squeeze_multiple_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_std_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_std_mean_unbiased_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_sub_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_sum_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_tan_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_to_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_transpose_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_unsafe_split_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_unsafe_split_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_var_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_view_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_view_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_vstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_zeros_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_zeros_like_cpu_int64, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_T_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_alias_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_asin_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_atan_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_bitwise_or_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_broadcast_tensors_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_cosh_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_cummax_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_erfinv_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_half_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_jiterator_binary_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_log10_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_log_softmax_with_dtype_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_logical_and_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_meshgrid_variadic_tensors_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_movedim_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_narrow_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_new_ones_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_new_zeros_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_nn_functional_pad_circular_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_put_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_resize_as__cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_resolve_conj_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_rsqrt_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_signbit_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_sin_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_entr_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_legendre_polynomial_p_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_ndtr_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_shifted_chebyshev_polynomial_t_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_shifted_chebyshev_polynomial_v_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_sqrt_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_squeeze_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_to_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_unbind_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_unsqueeze_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___rand___cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___rmatmul___cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_acos_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_acosh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_alias_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_all_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_angle_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_any_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_argsort_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_argwhere_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_as_strided_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_asin_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_atleast_1d_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_bfloat16_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_bitwise_or_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_block_diag_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_broadcast_to_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_byte_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cdouble_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cfloat_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cholesky_inverse_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_chunk_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_conj_physical_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_contiguous_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_contiguous_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_corrcoef_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cummin_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cumprod_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diag_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_div_floor_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_double_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_dsplit_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_empty_like_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_empty_strided_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_exp2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_expand_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_fft_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_fftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_fftshift_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ifft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ifft_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ifftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ihfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ihfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_irfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_rfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_flipud_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_floor_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_floor_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fmod_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_full_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_full_like_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_histc_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_i0_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_igamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_isreal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_istft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_item_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_jiterator_4inputs_with_extra_args_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_jiterator_binary_return_by_ref_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ldexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_lgamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_det_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_eigvalsh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_lu_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_lu_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_matrix_rank_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_matrix_rank_hermitian_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_multi_dot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_solve_triangular_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_tensorinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logspace_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logspace_tensor_overload_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_lu_unpack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mT_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_argmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_log_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_var_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_max_reduction_with_dim_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_min_binary_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_min_reduction_no_dim_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_msort_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mvlgamma_mvlgamma_p_3_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mvlgamma_mvlgamma_p_5_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nansum_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_narrow_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_new_empty_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_new_ones_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_avg_pool2d_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_bilinear_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_binary_cross_entropy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_conv2d_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_conv_transpose1d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_fractional_max_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_hardshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_l1_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_local_response_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_max_unpool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_max_unpool3d_grad_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_multi_head_attention_forward_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pad_replicate_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_rms_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_triplet_margin_loss_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_triplet_margin_with_distance_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nonzero_static_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_norm_fro_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_norm_nuc_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_normal_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_normal_in_place_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ormqr_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_permute_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_pinverse_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_randint_like_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_randn_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_reciprocal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_remainder_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_resize_as__cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_resolve_conj_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_roll_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_rot90_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_rsqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_scalar_tensor_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_short_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_short_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sigmoid_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_bessel_j0_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_i1_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_log_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_xlog1py_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_split_list_args_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_split_with_sizes_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sqrt_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_tensor_split_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_tensordot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_to_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_to_sparse_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_topk_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_topk_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_trapz_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_trapz_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_true_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unbind_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unfold_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_uniform_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unique_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unravel_index_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unsqueeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_var_mean_unbiased_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_var_unbiased_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_xlogy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_zero__cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_zero__cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_zeros_cpu_float32, test/test_ops.py::TestCommonCPU::test_numpy_ref_broadcast_to_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_diag_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_diff_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_jiterator_2inputs_2outputs_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_jiterator_4inputs_with_extra_args_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_linalg_vecdot_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_meshgrid_variadic_tensors_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_meshgrid_variadic_tensors_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_conv_transpose2d_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_permute_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_repeat_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_repeat_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_signal_windows_exponential_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_signal_windows_gaussian_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_squeeze_multiple_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_tensor_split_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_transpose_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_tril_indices_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_view_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_where_cpu_float64, test/test_ops.py::TestCommonCPU::test_out___getitem___cpu_float32, test/test_ops.py::TestCommonCPU::test_out___rmul___cpu_float32, test/test_ops.py::TestCommonCPU::test_out__batch_norm_with_update_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__native_batch_norm_legit_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_T_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs__conversions_cfloat_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_addr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_allclose_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_broadcast_to_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_digamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_div_floor_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_eq_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_equal_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_exp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_hfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_floor_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_lerp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_linspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_log2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_lt_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_permute_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_roll_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_special_spherical_bessel_j0_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_squeeze_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_trace_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_true_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_vdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_xlogy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_abs_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_argsort_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_as_strided_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_asin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_byte_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_div_trunc_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_erf_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fft_fft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fft_irfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_geqrf_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_gradient_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_histc_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_histogram_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_index_reduce_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_isneginf_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_kthvalue_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_ldexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_cholesky_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_ldl_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_matrix_rank_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_logaddexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_logcumsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_softmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_matrix_exp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_max_reduction_with_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_maximum_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nan_to_num_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nanmedian_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_avg_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_conv2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_dropout_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_group_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_hardsigmoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_interpolate_bicubic_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_l1_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_max_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_max_unpool2d_grad_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_multi_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_multilabel_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_one_hot_cpu_int64, test/test_ops.py::TestCommonCPU::test_out_norm_fro_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_norm_inf_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_normal_number_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_rad2deg_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_randn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_abs_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_add_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_addbmm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_addcdiv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_addr_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_angle_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_asin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_asinh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_atan_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_cat_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_ceil_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_cos_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_cosh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_cosh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_cummax_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_diag_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_dot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_dstack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_exp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_expand_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_fft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_fftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_ifft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_ihfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_rfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_full_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_gather_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_index_add_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_kron_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_ldexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_ldexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_cholesky_ex_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_inv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_lu_factor_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_multi_dot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_slogdet_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_solve_triangular_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_svd_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_tensorinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_tensorsolve_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_log2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_logaddexp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_logspace_tensor_overload_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_lu_unpack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_matmul_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_normal_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_rsqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_tensordot_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_vstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_rsub_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_scatter_reduce_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_searchsorted_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_sin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_sparse_mm_reduce_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_airy_ai_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_hermite_polynomial_he_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_modified_bessel_i1_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_xlog1py_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_sub_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_take_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_to_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_transpose_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_unflatten_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_uniform_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_unique_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_view_as_real_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_warning___rand___cpu, test/test_ops.py::TestCommonCPU::test_out_warning___rmatmul___cpu, test/test_ops.py::TestCommonCPU::test_out_warning___rmod___cpu, test/test_ops.py::TestCommonCPU::test_out_warning__chunk_cat_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs__conversions_complex_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_addcdiv_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_amax_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_broadcast_shapes_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_cat_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_clamp_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_clamp_max_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_clamp_min_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_conj_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_conj_physical_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_cosh_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_deg2rad_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_diagonal_scatter_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_div_floor_rounding_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_erfc_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_expand_as_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_flatten_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fliplr_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_isnan_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_isposinf_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_isreal_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_linspace_tensor_overload_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_logspace_tensor_overload_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_logsumexp_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_mean_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_meshgrid_variadic_tensors_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_new_empty_strided_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_new_full_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_pixel_unshuffle_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_softmax_with_dtype_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_softplus_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_triplet_margin_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_norm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_ones_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_sinh_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_special_bessel_j1_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_square_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_sub_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_sum_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_transpose_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_unbind_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_view_as_complex_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_xlogy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__segment_reduce_offsets_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_aminmax_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_argmin_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_atleast_3d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_bitwise_left_shift_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_bitwise_or_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_bitwise_right_shift_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_block_diag_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_bool_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_count_nonzero_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_diag_embed_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_dsplit_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_exp2_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fft_fft_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fft_ihfft2_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fft_rfftn_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fliplr_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_geometric_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_index_add_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_index_fill_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_isin_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_isinf_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_isposinf_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_jiterator_2inputs_2outputs_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_lcm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_cholesky_ex_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_log2_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_logdet_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_lt_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_amax_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_norm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_sum_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_max_binary_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_meshgrid_variadic_tensors_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_min_binary_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_mv_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_mvlgamma_mvlgamma_p_3_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_new_full_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_dropout2d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_fractional_max_pool2d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_group_norm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_interpolate_trilinear_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_logsigmoid_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_mse_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_pad_replicate_negative_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_relu6_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nonzero_static_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_polar_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_positive_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_rand_like_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_round_decimals_3_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_rsqrt_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_scalar_tensor_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_scatter_reduce_amax_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_scatter_reduce_amin_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_sigmoid_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_sinh_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_chebyshev_polynomial_w_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_entr_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_tan_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_torch_ops_aten__flash_attention_forward_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_torch_ops_aten__safe_softmax_default_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_transpose_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_triu_indices_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_vstack_cpu, test/test_ops.py::TestCommonCPU::test_pointwise_tag_coverage_cpu, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_acos_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_asin_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_asin_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_atan2_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_atan2_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_atan2_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_copysign_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_div_no_rounding_mode_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_erf_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_erf_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_expm1_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_lgamma_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log10_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log10_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_masked_std_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_mvlgamma_mvlgamma_p_1_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_0_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_0_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_1_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_1_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_1_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_2_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_rsqrt_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_rsqrt_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sin_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sin_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sinc_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sinh_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sinh_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_u_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_u_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_w_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_hermite_polynomial_h_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_laguerre_polynomial_l_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_t_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_w_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_xlog1py_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_tan_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_tanh_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_tanh_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_true_divide_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_true_divide_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_xlogy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bfloat16_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bool_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cdouble_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cdouble_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cfloat_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_char_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_char_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_char_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_double_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_float_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_float_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_half_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_half_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_int_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_long_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_long_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_polar_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_short_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_short_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_short_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_abs_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_abs_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acos_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acosh_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acosh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_add_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addcmul_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addcmul_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_alias_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_all_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_allclose_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amax_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_any_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_arange_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_partial_views_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asin_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atanh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_1d_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_2d_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_2d_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_left_shift_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_not_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_right_shift_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_xor_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_xor_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_xor_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_block_diag_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_block_diag_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_tensors_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_tensors_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_tensors_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_to_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_to_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bucketize_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ceil_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_chunk_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_chunk_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_chunk_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_max_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clone_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clone_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_column_stack_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_physical_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_constant_pad_nd_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_constant_pad_nd_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_contiguous_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_copysign_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cos_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cos_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cosh_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cosh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cosh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_count_nonzero_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumprod_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_embed_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_embed_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_embed_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_scatter_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_digamma_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_floor_rounding_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_floor_rounding_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_no_rounding_mode_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dot_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dot_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dstack_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_like_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_like_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_like_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_equal_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erf_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfc_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfc_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfinv_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfinv_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfinv_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp2_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_as_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eye_cpu_float8_e5m2fnuz, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftshift_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfftn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftshift_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfft2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfft2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfft_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfftn_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfftn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfft2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfft_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flatten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flipud_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flipud_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_float_power_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_float_power_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_floor_divide_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmin_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmod_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_frexp_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ge_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ge_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_geometric_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_gt_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_gt_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_gt_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_heaviside_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hsplit_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hsplit_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hstack_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hstack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hstack_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hstack_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hypot_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_i0_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_igammac_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_imag_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_fill_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isclose_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isfinite_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isfinite_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isinf_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isinf_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isnan_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isneginf_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isposinf_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isreal_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isreal_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lcm_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lcm_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_le_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lerp_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lgamma_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lgamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_cross_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_diagonal_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_matrix_norm_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_matrix_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_svd_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_vecdot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_vector_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log10_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log10_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log10_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log1p_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log1p_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log1p_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log2_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log2_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_softmax_with_dtype_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logaddexp2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logaddexp_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logaddexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_and_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_and_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_and_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_or_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_xor_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_tensor_overload_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_tensor_overload_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_tensor_overload_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logsumexp_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logsumexp_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lt_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_maximum_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_mean_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_variadic_tensors_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_minimum_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_movedim_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_movedim_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_mul_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_mul_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nan_to_num_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nan_to_num_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_neg_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_full_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_ones_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_zeros_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_zeros_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_celu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_channel_shuffle_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_channel_shuffle_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_glu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_hinge_embedding_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_huber_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_huber_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_l1_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_l1_loss_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_layer_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_mse_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_mse_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pairwise_distance_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pairwise_distance_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pdist_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_shuffle_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_unshuffle_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_unshuffle_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_unshuffle_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_poisson_nll_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_poisson_nll_loss_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_prelu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_relu6_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_relu_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_smooth_l1_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmin_with_dtype_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softshrink_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_tanhshrink_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_tanhshrink_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_threshold_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_threshold_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_threshold_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_triplet_margin_loss_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ones_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ones_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ones_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_positive_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_pow_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_pow_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_pow_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_prod_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_randn_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_randn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_real_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reciprocal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reciprocal_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_remainder_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_remainder_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_repeat_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_as_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_as_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_as_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_roll_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_roll_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_roll_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rot90_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsqrt_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsqrt_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsub_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_select_scatter_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sgn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sigmoid_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sigmoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sigmoid_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sigmoid_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sign_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sign_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sin_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sin_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinc_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinc_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_softmax_with_dtype_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_bessel_j1_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_erfcx_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i0e_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1e_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_log_softmax_with_dtype_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_log_softmax_with_dtype_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_logit_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_3_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_3_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_5_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_ndtri_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_ndtri_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_spherical_bessel_j0_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_spherical_bessel_j0_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_xlog1py_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_xlog1py_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_xlog1py_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_xlog1py_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_split_with_sizes_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_split_with_sizes_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_square_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_square_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_stack_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sub_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_to_size_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_to_size_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tan_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tanh_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tanh_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tanh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tril_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_triu_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_true_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_trunc_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unflatten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unflatten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_var_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_var_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vdot_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vsplit_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vsplit_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vstack_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vstack_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vstack_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_where_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_where_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_where_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_where_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_where_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_xlogy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_amax_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_amin_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_clamp_max_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_clamp_min_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_div_trunc_rounding_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_dsplit_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_fft_irfftn_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_geometric_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_logaddexp_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_logspace_tensor_overload_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_minimum_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_ne_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_nextafter_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_nn_functional_gelu_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_nn_functional_hardtanh_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_nn_functional_l1_loss_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_reshape_as_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_t_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_vstack_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_T_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bfloat16_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bfloat16_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bool_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_byte_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cdouble_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cfloat_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cfloat_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_chalf_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_chalf_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_complex_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_double_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_double_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_float_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_float_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_float_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_half_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_half_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_int_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_long_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_short_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_short_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_short_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_short_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_abs_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acos_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acos_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acos_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acos_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acosh_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acosh_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_add_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_add_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addcmul_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addcmul_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addcmul_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_all_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_all_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_all_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_allclose_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_allclose_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_amin_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_amin_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_any_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_any_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_arange_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_arange_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_copy_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_copy_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asin_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan2_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atanh_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_1d_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_2d_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_left_shift_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_not_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_right_shift_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_right_shift_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_xor_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_block_diag_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_block_diag_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_block_diag_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_tensors_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_tensors_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_to_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_to_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ceil_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_chunk_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_max_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_max_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_max_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clone_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clone_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_column_stack_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_physical_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_physical_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_constant_pad_nd_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_constant_pad_nd_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_contiguous_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_copysign_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_copysign_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cos_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cos_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_count_nonzero_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_count_nonzero_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumsum_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_embed_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_embed_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_embed_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_embed_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_copy_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_scatter_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_scatter_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_scatter_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_floor_rounding_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_floor_rounding_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_trunc_rounding_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dot_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dot_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dsplit_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dsplit_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dstack_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dstack_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_like_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_equal_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_equal_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_equal_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erf_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erfc_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exp2_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exp_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_as_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_as_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_as_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_as_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_copy_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_copy_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expm1_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eye_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fft_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fftshift_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfft2_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfft_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfft_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfftn_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfftn_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifft_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifft_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifft_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftn_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ihfftn_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfft2_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfft_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfft_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfftn_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fill_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fill_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fill_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flatten_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flip_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flip_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fliplr_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flipud_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flipud_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_floor_divide_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_floor_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_floor_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmax_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmin_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmin_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmod_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmod_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_frexp_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_geometric_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_gt_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_gt_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hsplit_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hstack_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hstack_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_i0_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_igamma_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_imag_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_add_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_add_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_add_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_copy_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isclose_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isfinite_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isfinite_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isfinite_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isinf_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isnan_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isnan_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isnan_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isposinf_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isposinf_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isreal_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isreal_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_istft_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_item_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_item_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_item_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_item_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_item_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lgamma_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_cross_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_cross_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_diagonal_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_diagonal_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_diagonal_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_vecdot_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log2_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_softmax_with_dtype_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logaddexp_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_and_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_and_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_not_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_not_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_or_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_or_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_xor_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_xor_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_tensor_overload_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_tensor_overload_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logsumexp_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lt_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_maximum_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_list_of_tensors_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_list_of_tensors_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_list_of_tensors_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_list_of_tensors_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_list_of_tensors_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_variadic_tensors_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_minimum_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_mul_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_copy_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_copy_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_copy_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_copy_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_copy_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_neg_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_strided_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_full_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_full_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_ones_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_ones_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_zeros_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_zeros_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_zeros_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nextafter_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_channel_shuffle_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_channel_shuffle_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_elu_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_group_norm_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_hardtanh_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_hardtanh_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_leaky_relu_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_log_softmax_with_dtype_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_log_softmax_with_dtype_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_margin_ranking_loss_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_mish_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_mse_loss_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_nll_loss_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pairwise_distance_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pairwise_distance_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_shuffle_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_shuffle_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_unshuffle_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_poisson_nll_loss_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_prelu_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_relu6_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_relu6_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_relu_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_smooth_l1_loss_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmin_with_dtype_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_norm_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_normal_number_mean_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ones_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_copy_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_positive_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_positive_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_pow_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_prod_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_prod_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_prod_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_prod_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rad2deg_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_randn_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ravel_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ravel_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ravel_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_real_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reciprocal_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_remainder_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_remainder_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_renorm_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_renorm_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_repeat_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_as_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_roll_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_roll_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsqrt_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsqrt_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsqrt_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sgn_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sgn_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sgn_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sigmoid_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sigmoid_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sigmoid_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sign_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sign_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_signbit_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sin_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sin_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinh_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_softmax_with_dtype_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_softmax_with_dtype_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_bessel_j0_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_bessel_j1_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_bessel_j1_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_entr_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i0e_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i1e_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i1e_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i1e_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_log_ndtr_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_log_softmax_with_dtype_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_log_softmax_with_dtype_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_log_softmax_with_dtype_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_1_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_1_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_1_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_3_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_5_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_ndtr_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_ndtri_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_softmax_with_dtype_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_softmax_with_dtype_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_spherical_bessel_j0_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_xlog1py_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_xlog1py_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_zeta_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_zeta_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_split_with_sizes_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_split_with_sizes_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sqrt_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sqrt_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_square_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_copy_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_multiple_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_stack_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_stack_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_std_mean_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_std_mean_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sub_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sub_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sub_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sum_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sum_to_size_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sum_to_size_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_copy_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_copy_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_take_along_dim_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_take_along_dim_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tan_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tensor_split_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_to_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_trace_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_copy_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_copy_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tril_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tril_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_triu_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_true_divide_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_true_divide_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_true_divide_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_copy_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unflatten_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unflatten_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_copy_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_copy_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_copy_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_var_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_var_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_var_mean_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_var_mean_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_as_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_as_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_copy_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vsplit_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vsplit_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vsplit_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vsplit_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_where_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_where_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_where_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_xlogy_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_T_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_T_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bfloat16_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bfloat16_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bfloat16_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bfloat16_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bfloat16_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bool_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_byte_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_byte_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_byte_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cdouble_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cdouble_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_chalf_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_chalf_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_char_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_char_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_double_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_double_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_float_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_float_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_int_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_long_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_abs_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_abs_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_abs_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addcdiv_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addcmul_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addr_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addr_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_alias_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_alias_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_amax_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_amax_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_arange_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_partial_views_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_scatter_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asin_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asin_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asinh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atanh_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atanh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_1d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_1d_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_2d_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_3d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_3d_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_not_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_not_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_or_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_right_shift_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_xor_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_block_diag_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_block_diag_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_tensors_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_tensors_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_tensors_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_tensors_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_to_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bucketize_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cat_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cat_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ceil_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_chunk_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_max_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_max_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_min_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_min_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_column_stack_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_physical_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_constant_pad_nd_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_copysign_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cos_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cos_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cos_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cosh_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_count_nonzero_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumsum_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumsum_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_deg2rad_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_embed_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_scatter_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_no_rounding_mode_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_no_rounding_mode_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_no_rounding_mode_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_trunc_rounding_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dstack_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dstack_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_like_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_strided_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eq_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_equal_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erfc_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erfc_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp2_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expm1_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expm1_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expm1_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expm1_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eye_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fft2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftn_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftn_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfftn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfftn_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifft2_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifft_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifft_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftshift_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfftn_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfftn_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_rfft_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_rfftn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_rfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fill_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flatten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flatten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flatten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fliplr_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fliplr_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flipud_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flipud_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmax_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmax_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmax_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_gcd_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ge_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ge_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ge_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_geometric_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_geometric_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_gt_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_gt_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_heaviside_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hsplit_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hstack_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hypot_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_i0_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_add_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_add_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_select_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isclose_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isclose_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isclose_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isfinite_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isfinite_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isinf_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isinf_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isnan_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isnan_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isneginf_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isposinf_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isreal_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lcm_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_le_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lerp_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lerp_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lerp_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lgamma_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lgamma_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_cross_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_vecdot_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_vecdot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_vector_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_tensor_overload_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_tensor_overload_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log10_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log1p_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_normal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_normal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_normal_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_softmax_with_dtype_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logaddexp2_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logaddexp_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_and_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_and_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_and_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_or_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logsumexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logsumexp_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_maximum_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_list_of_tensors_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_list_of_tensors_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_variadic_tensors_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_variadic_tensors_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_movedim_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_movedim_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_movedim_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_movedim_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_mul_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_mul_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nan_to_num_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nan_to_num_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ne_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ne_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_neg_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_neg_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_strided_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_strided_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_full_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_full_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_zeros_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_alpha_dropout_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_channel_shuffle_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_hardtanh_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_hinge_embedding_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_layer_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_layer_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_log_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_margin_ranking_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_margin_ranking_loss_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_nll_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pairwise_distance_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_shuffle_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_shuffle_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_unshuffle_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_poisson_nll_loss_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_relu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmax_with_dtype_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_tanhshrink_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_tanhshrink_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_threshold_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_triplet_margin_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_normal_number_mean_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_pow_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_prod_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rad2deg_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_randn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ravel_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ravel_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_real_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reciprocal_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reciprocal_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reciprocal_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_remainder_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_repeat_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_as_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_as_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_as_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_roll_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_roll_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rot90_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rot90_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_round_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsqrt_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsub_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_select_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sgn_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sign_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sign_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sin_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinc_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinc_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinc_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinh_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinh_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_bessel_j0_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_bessel_j0_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_bessel_j0_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_bessel_j0_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_bessel_j1_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_erfcx_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i0e_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i0e_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i1_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_softmax_with_dtype_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_logit_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_ndtri_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_xlog1py_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_zeta_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_split_with_sizes_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_split_with_sizes_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sqrt_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sqrt_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_square_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_multiple_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_stack_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_std_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_std_mean_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sub_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_to_size_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_to_size_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_to_size_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_take_along_dim_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_take_along_dim_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tan_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tanh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tensor_split_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tensor_split_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_to_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_to_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_trace_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_trace_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_triu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_triu_indices_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_true_divide_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_true_divide_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_true_divide_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_var_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_var_mean_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_var_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vdot_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vdot_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_as_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_as_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vsplit_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vstack_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vstack_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vstack_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_where_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_xlogy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_zeros_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_T_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_T_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_T_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_T_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_T_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bfloat16_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bool_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_byte_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cdouble_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cfloat_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cfloat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_chalf_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_char_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_char_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_double_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_double_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_double_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_double_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_float_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_float_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_int_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_int_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_int_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_short_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_short_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_short_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_abs_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_abs_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acos_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acos_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_add_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_add_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_add_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_add_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addr_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_alias_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_all_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_all_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_any_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_arange_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_arange_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_partial_views_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_scatter_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_scatter_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asinh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_1d_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_2d_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_3d_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_3d_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_and_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_left_shift_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_xor_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_xor_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_block_diag_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_tensors_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_to_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cat_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cat_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ceil_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_chunk_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clone_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_column_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_constant_pad_nd_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_constant_pad_nd_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_contiguous_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_contiguous_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cosh_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_count_nonzero_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumprod_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumsum_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumsum_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_deg2rad_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diag_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diag_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diag_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diag_embed_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_scatter_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_scatter_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_digamma_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dot_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dsplit_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eq_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eq_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_equal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_equal_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erf_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erf_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erfinv_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erfinv_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp2_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_as_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_as_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expm1_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expm1_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exponential_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fft2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftn_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfftn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifft2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifft_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftn_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftn_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftn_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftshift_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfft2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfft_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfft_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfft2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flatten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flip_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flip_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fliplr_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fliplr_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flipud_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flipud_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flipud_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flipud_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_float_power_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_float_power_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_floor_divide_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_floor_divide_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmin_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmin_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmod_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmod_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ge_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_geometric_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_geometric_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_geometric_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_gt_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_gt_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_heaviside_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hsplit_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hstack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_i0_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_igammac_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_add_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_fill_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isclose_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isclose_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isclose_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isfinite_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isfinite_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isinf_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isnan_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isreal_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isreal_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isreal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_istft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_item_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_item_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_le_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_le_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lgamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lgamma_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_diagonal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_svdvals_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_vector_norm_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_vector_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linspace_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linspace_tensor_overload_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log10_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log10_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log1p_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_softmax_with_dtype_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_softmax_with_dtype_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logaddexp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_and_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_and_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_not_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_not_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logsumexp_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logsumexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logsumexp_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logsumexp_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logsumexp_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logsumexp_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lt_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lt_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lt_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_masked_fill_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_maximum_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_mean_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_list_of_tensors_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_variadic_tensors_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_minimum_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_movedim_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_movedim_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_mul_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_mul_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nan_to_num_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nan_to_num_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ne_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_neg_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_strided_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_strided_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_ones_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_zeros_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_zeros_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nextafter_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_channel_shuffle_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_dropout_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_hardshrink_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_leaky_relu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_log_softmax_with_dtype_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_log_softmax_with_dtype_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_log_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_mse_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_nll_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pairwise_distance_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_shuffle_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_unshuffle_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_poisson_nll_loss_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_relu6_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_relu_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_selu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmax_with_dtype_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmax_with_dtype_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmin_with_dtype_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmin_with_dtype_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softplus_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softshrink_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_triplet_margin_loss_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_triplet_margin_loss_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_normal__in_place_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_normal__in_place_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_normal_number_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ones_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ones_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ones_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ones_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_positive_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_positive_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_pow_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_pow_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_prod_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_prod_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_randn_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reciprocal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reciprocal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_remainder_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_repeat_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_as_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_as_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_roll_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_roll_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rot90_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_round_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_round_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsqrt_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsqrt_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsub_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsub_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_select_scatter_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_select_scatter_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_select_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_select_scatter_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sgn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sgn_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sigmoid_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sigmoid_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sin_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_bessel_j0_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_bessel_j1_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_entr_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_erfcx_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i0e_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1e_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1e_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_log_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_log_softmax_with_dtype_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_log_softmax_with_dtype_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_1_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_3_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_5_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_5_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtr_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtr_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtr_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_softmax_with_dtype_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_xlog1py_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sqrt_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_multiple_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_multiple_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_stack_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_stack_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_std_mean_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_std_mean_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sub_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_to_size_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_take_along_dim_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_take_along_dim_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_take_along_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tan_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tanh_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tensor_split_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tensor_split_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_to_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_trace_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tril_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tril_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_triu_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_true_divide_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_trunc_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_trunc_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_trunc_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_var_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_var_mean_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_as_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_as_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_as_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_as_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vsplit_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vstack_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_xlogy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_zeros_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_zeros_cpu_complex128, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_T_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager___radd___cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager___rpow___cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager__chunk_cat_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_acos_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_acos_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_addmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_addmm_decomposed_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_addr_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_alias_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_aminmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_angle_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_as_strided_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_as_strided_scatter_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_atleast_1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_atleast_2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_atleast_3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_bmm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_broadcast_shapes_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_broadcast_tensors_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cfloat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_constant_pad_nd_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_constant_pad_nd_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_contiguous_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cosh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_count_nonzero_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cummax_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_diag_embed_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_diagonal_scatter_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_digamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_dist_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_dot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_equal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_equal_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_eye_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_fft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_hfft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_hfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_hfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_ifft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_ifftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_irfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_irfftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_rfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_flip_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_gradient_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_half_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_histc_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_histogramdd_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_index_reduce_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_index_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_isin_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_jiterator_2inputs_2outputs_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_jiterator_binary_return_by_ref_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_jiterator_unary_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_cond_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_cond_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_eigvals_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_inv_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_inv_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_lu_factor_ex_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_matrix_rank_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_matrix_rank_hermitian_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_norm_subgradients_at_zero_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_solve_triangular_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_svd_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_vander_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logaddexp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logical_and_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logical_not_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logical_xor_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_long_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_mH_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_mT_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_argmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_cumsum_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_std_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_matmul_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_mm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_mv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_new_empty_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_new_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nextafter_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_bilinear_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_channel_shuffle_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_conv_transpose1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_conv_transpose2d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_feature_alpha_dropout_without_train_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_fractional_max_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_grid_sample_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_hardswish_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_kl_div_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_l1_loss_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_max_unpool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_pad_circular_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_pad_constant_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_pixel_shuffle_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_prelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_rad2deg_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_resolve_conj_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_roll_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_rot90_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_rsub_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_scatter_reduce_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_scatter_reduce_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sgn_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_bessel_j0_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_hermite_polynomial_h_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_hermite_polynomial_he_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_i1_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_log_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_stack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_std_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_stft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sub_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sub_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_t_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_tile_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_to_sparse_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_trace_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_true_divide_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_true_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_unbind_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_unique_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_unsafe_split_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_view_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_view_copy_cpu_complex64, test/test_ops.py::TestCompositeComplianceCPU::test_backward___radd___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward__softmax_backward_data_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_asinh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_atleast_2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_cholesky_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_cholesky_inverse_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_clamp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_column_stack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_combinations_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_conj_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_cos_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_cross_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_exp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_fft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_ifftshift_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_irfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fill_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fmod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_inner_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_kron_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_cholesky_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_det_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_diagonal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_inv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_solve_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_vecdot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_log1p_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_logdet_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_fill_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_native_dropout_backward_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_bilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_cross_entropy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_dropout3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_grid_sample_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_linear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_max_unpool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_mish_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_multi_head_attention_forward_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_pad_replicate_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_pinverse_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_real_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_repeat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_reshape_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_rot90_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_select_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_special_i1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_split_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_std_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_std_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_tan_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_trapz_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_unsqueeze_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_var_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_var_unbiased_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_view_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_vstack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input___getitem___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input__softmax_backward_data_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_argmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_argwhere_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_as_strided_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_as_strided_partial_views_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_broadcast_to_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_combinations_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_cov_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_diagflat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_div_floor_rounding_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_div_trunc_rounding_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_expand_as_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_expm1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fft_irfftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fft_rfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_flipud_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_i0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_igamma_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_lgamma_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_ldl_factor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_lu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_logspace_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nanmedian_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nanquantile_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_narrow_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_new_empty_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_new_full_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_conv1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_conv3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_dropout2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_unfold_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_permute_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_polar_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_positive_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_round_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_sigmoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_sign_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_bessel_y0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_hermite_polynomial_h_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_hermite_polynomial_he_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_trapezoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_unsafe_chunk_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_var_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_view_as_complex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad___radd___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad__softmax_backward_data_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_addcdiv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_amin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_arange_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_argsort_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_asin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_bmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_broadcast_shapes_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_cartesian_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_char_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_clamp_min_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_diagonal_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_dist_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_empty_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_empty_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_expm1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_exponential_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_eye_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_fft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_hfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_ifftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_ihfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_irfftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_flipud_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_frexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_grid_sampler_2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_igammac_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_index_fill_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_index_reduce_amin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_isfinite_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_isnan_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_kthvalue_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_lerp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_det_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_eig_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_eigvals_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_lu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_matrix_power_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_vector_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_logcumsumexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_fill_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_max_reduction_no_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_celu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_ctc_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_dropout_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_interpolate_area_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_l1_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_max_unpool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_pdist_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_rms_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_ones_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_ormqr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_outer_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_permute_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_rand_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_randint_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_resolve_conj_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_resolve_neg_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_round_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_sign_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_signal_windows_bartlett_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_signal_windows_blackman_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_sin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_bessel_j0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_erfcx_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_hermite_polynomial_he_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_laguerre_polynomial_l_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_ndtr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_unbind_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_vdot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_T_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_addmv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_argwhere_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_as_strided_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_asinh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_bfloat16_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_block_diag_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_bucketize_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_byte_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_cdist_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_cfloat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_chalf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_conj_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_constant_pad_nd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_cumprod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fft_fft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fft_hfftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fft_ifft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fft_ifftshift_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fft_irfftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_flatten_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_full_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_gather_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_half_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_heaviside_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_hstack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_index_reduce_amin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_index_reduce_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_index_reduce_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_inner_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_jiterator_binary_return_by_ref_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_jiterator_unary_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_kthvalue_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_eig_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_eigh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_inv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_svd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_log_normal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_logaddexp2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_logical_xor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_sum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_maximum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_mode_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_narrow_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_native_layer_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_new_empty_strided_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_new_full_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_dropout_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_hardtanh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_instance_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_local_response_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_max_unpool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_normalize_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_pad_circular_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_pairwise_distance_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_relu6_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_rms_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_softplus_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_upsample_nearest_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_ones_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_pinverse_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_put_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_ravel_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_rot90_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_round_decimals_0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_signal_windows_nuttall_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_slice_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_sparse_sampled_addmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_airy_ai_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_bessel_y1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_modified_bessel_i1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_modified_bessel_k1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_scaled_modified_bessel_k0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_sub_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_t_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_true_divide_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_uniform_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_var_unbiased_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_vstack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay___getitem___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_abs_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_acos_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_atleast_2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_byte_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_cdist_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_chunk_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_contiguous_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_diff_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_empty_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_empty_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_irfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fill_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_frexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_full_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_igammac_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_index_reduce_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_item_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_jiterator_binary_return_by_ref_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_kthvalue_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_lu_factor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_lu_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_logical_or_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_logit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_fill_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_normalize_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_std_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_min_reduction_with_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_minimum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nanmedian_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_native_dropout_backward_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_native_layer_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_new_empty_strided_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_new_ones_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_avg_pool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_conv3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_conv_transpose1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_conv_transpose3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_instance_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_max_unpool2d_grad_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_max_unpool3d_grad_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_multi_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_pad_circular_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_pdist_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_prelu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_relu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_rms_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_silu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_norm_fro_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_polygamma_polygamma_n_0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_polygamma_polygamma_n_3_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_positive_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_qr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_rad2deg_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_renorm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_reshape_as_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_sgn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_signal_windows_general_cosine_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_bessel_j1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_bessel_y1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_scaled_modified_bessel_k1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_split_list_args_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_std_unbiased_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_stft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_take_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_tanh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_unflatten_cpu_float32, test/test_ops.py::TestMathBitsCPU::test_conj_view_H_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view___rsub___cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs__conversions_int_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs__conversions_long_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_atan_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_block_diag_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_broadcast_tensors_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_diagonal_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_dsplit_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_fft_hfft_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_fft_hfftn_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_fft_ifftshift_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_fft_irfftn_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_index_add_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_isfinite_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_isinf_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_lerp_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_logical_xor_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_meshgrid_list_of_tensors_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_meshgrid_variadic_tensors_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_neg_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_nn_functional_l1_loss_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_nn_functional_pixel_unshuffle_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_pow_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_reshape_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_squeeze_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_squeeze_multiple_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_std_mean_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_sum_to_size_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_t_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_transpose_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_true_divide_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_vstack_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_addmm_decomposed_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_all_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_atanh_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_cov_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_diagflat_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_empty_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_equal_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_exp_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_expand_as_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_expand_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_fft_ifft2_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_fft_ifftshift_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_fft_irfft_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_flatten_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_float_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_geqrf_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_isclose_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_istft_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_jiterator_4inputs_with_extra_args_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_eigvals_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_eigvalsh_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_matrix_rank_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_slogdet_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_svdvals_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_tensorinv_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_log10_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_logical_or_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_masked_mean_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_masked_select_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_mean_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_new_empty_strided_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_channel_shuffle_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_normalize_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_pad_replicate_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_pixel_shuffle_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_pixel_unshuffle_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_norm_fro_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_randn_like_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_repeat_interleave_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_resize__cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_std_unbiased_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_stft_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_sum_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_svd_lowrank_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_tanh_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_trace_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_true_divide_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_uniform_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_var_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_var_mean_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_var_mean_unbiased_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_vdot_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs__conversions_byte_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs__conversions_short_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_abs_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_addcdiv_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_chunk_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_clone_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_cos_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_div_no_rounding_mode_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_dot_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_empty_like_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_expand_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_eye_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_fft_hfft_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_fft_ifftshift_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_flip_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_linalg_matrix_norm_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_linalg_svd_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_log2_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_meshgrid_list_of_tensors_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_meshgrid_variadic_tensors_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_new_empty_strided_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_normal__in_place_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_prod_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_reshape_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_roll_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_sinh_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_squeeze_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_sum_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_to_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_transpose_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_unbind_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_addmv_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_allclose_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_as_strided_scatter_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_asin_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_asinh_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_atleast_3d_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_broadcast_to_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_byte_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_cfloat_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_cholesky_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_cholesky_solve_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_cumsum_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_div_no_rounding_mode_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_dsplit_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_expand_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_flipud_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_cholesky_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_cond_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_diagonal_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_lu_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_lu_solve_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_svd_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_vander_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_vector_norm_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_lu_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_mH_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_masked_select_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_masked_std_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_matmul_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_meshgrid_variadic_tensors_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_mv_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_conv1d_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_conv2d_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_l1_loss_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_norm_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_ones_like_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_prod_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_randn_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_repeat_interleave_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_reshape_as_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_rsub_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_split_list_args_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_square_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_sum_to_size_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_svd_lowrank_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_transpose_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_view_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_zeros_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_view___getitem___cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view___rmatmul___cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs__conversions_cfloat_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs__conversions_float_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_as_strided_partial_views_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_block_diag_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_cauchy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_clamp_max_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_cumprod_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_diag_embed_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_erfc_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_expm1_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_fftshift_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_ifft2_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_ifftshift_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_irfft2_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_irfft_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_flip_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_floor_divide_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_ge_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_heaviside_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_hsplit_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_index_select_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_lerp_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_lgamma_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_linalg_matrix_norm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_meshgrid_list_of_tensors_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_ne_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_new_ones_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_celu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_pairwise_distance_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_prelu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_softshrink_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_prod_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_rsub_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_signbit_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_bessel_j0_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_i1e_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_logit_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_ndtr_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_stack_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_sum_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_triu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_view_as_complex_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_vsplit_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_acosh_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_addmm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_angle_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_any_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_argsort_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_bfloat16_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_block_diag_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_bmm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_broadcast_to_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_cauchy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_ceil_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_column_stack_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_complex_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_count_nonzero_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_diagflat_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_diagonal_scatter_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_einsum_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_eq_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fft_irfft_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_flip_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_gather_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_igammac_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_index_reduce_amax_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_isclose_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_isposinf_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_lgamma_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_eigvalsh_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_lu_factor_ex_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_matrix_norm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_matrix_power_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_norm_subgradients_at_zero_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_tensorsolve_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_log_normal_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_logspace_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_lu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_cumprod_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_prod_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_softmin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_matrix_exp_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_max_binary_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_max_reduction_no_dim_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_meshgrid_list_of_tensors_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_msort_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_ne_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_batch_norm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_conv2d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_dropout_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_interpolate_bicubic_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_interpolate_nearest_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_local_response_norm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_logsigmoid_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_max_pool3d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_pixel_shuffle_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_normal_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_ormqr_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_prod_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_resolve_neg_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_searchsorted_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_sign_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_signal_windows_bartlett_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_signal_windows_cosine_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_signal_windows_general_cosine_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_sinc_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_chebyshev_polynomial_t_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_hermite_polynomial_h_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_split_list_args_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_square_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_uniform_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_unsafe_chunk_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_unsqueeze_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_var_mean_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_var_unbiased_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_zero__cpu_float64, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs__conversions_bool_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs__conversions_double_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_acos_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_atan2_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_bitwise_or_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_min__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_conj_physical__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_deg2rad_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_empty_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_exp2__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fft_fft_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fft_hfft2_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fft_ihfft2_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_flipud_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_full_like_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_heaviside__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_lgamma_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_logaddexp_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_lt__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_mean_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_nan_to_num__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nan_to_num_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_new_empty_strided_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_new_ones_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_nll_loss_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_pairwise_distance_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_selu__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_triplet_margin_loss_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_prod_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_rfloordiv_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_rsqrt_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_special_i1_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_special_zeta_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_squeeze_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_stft_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_tan_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_tanh_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_transpose_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs__conversions_chalf_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_amax_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_asinh_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_conj_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_diag_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_diag_embed_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_digamma__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_erfc__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_exp_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fft_hfft_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fft_ifftshift_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_is_complex_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_isinf_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_isposinf_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_lcm__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_lcm_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_log2__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_log2_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_log_softmax_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_logaddexp2_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_meshgrid_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_mvlgamma__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_mvlgamma_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_new_empty_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_celu__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_mse_loss_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_nll_loss_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_pairwise_distance_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_norm_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_special_log_softmax_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_special_multigammaln_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_special_xlog1py_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_sqrt_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_t_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_take_along_dim_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_transpose_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_true_divide_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_unflatten_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_unsqueeze_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_view_as_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_xlogy__cpu, test/test_ops.py::TestFakeTensorCPU::test_fake___getitem___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_acosh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_addbmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_allclose_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_as_strided_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast__batch_norm_with_update_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_add_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_allclose_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_aminmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_argmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_bernoulli_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_bitwise_or_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_ceil_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_clamp_max_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_cross_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_double_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_dstack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_eye_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fft_ifft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fft_ifft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_gcd_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_geometric_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_histogramdd_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_igamma_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_imag_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_index_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_jiterator_2inputs_2outputs_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_jiterator_binary_return_by_ref_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_lstsq_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_lstsq_grad_oriented_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_tensorsolve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_log10_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_log2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_logical_or_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_cumprod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_cumsum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_min_reduction_no_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_conv2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_cosine_similarity_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_dropout2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_dropout_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_fractional_max_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_gaussian_nll_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_grid_sample_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_group_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_instance_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_interpolate_bilinear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_interpolate_nearest_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_linear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_pad_replicate_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_relu6_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_rms_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_threshold_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_normal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_qr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_quantile_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_randint_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_randn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_reshape_as_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_scatter_reduce_sum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_short_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_sign_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_softmax_with_dtype_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_scaled_modified_bessel_k0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_tensordot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_trace_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_unravel_index_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_var_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_zero__cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_zeros_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_bincount_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_bitwise_right_shift_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_broadcast_to_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_chunk_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_clone_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_column_stack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_constant_pad_nd_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_T_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_abs_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_addmm_decomposed_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_as_strided_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_as_strided_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_cholesky_inverse_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_chunk_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_clamp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_clone_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_cummax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_diagflat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_double_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_dstack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_erf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_expand_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fill_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_float_power_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_frexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_gradient_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_index_add_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_index_put_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_index_reduce_amin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_index_reduce_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_vecdot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_log1p_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_masked_std_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_max_reduction_with_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_mode_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_cosine_embedding_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_dropout_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_fractional_max_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_group_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_hardswish_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_interpolate_linear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_l1_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_pad_reflect_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_pdist_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_rms_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_softplus_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_polygamma_polygamma_n_4_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_put_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_quantile_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_rad2deg_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_round_decimals_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_scatter_reduce_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_sign_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_special_log_ndtr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_square_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_t_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_to_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_unfold_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_var_unbiased_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_vdot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_view_as_complex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp___rpow___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp__unsafe_masked_index_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_addmm_decomposed_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_addmv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_ceil_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_clamp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_clamp_min_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_combinations_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_conj_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_constant_pad_nd_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_diag_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_diagonal_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_diagonal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_erfc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_expand_as_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_expand_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fft_rfftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_lgamma_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_cross_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_det_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_eigvals_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_householder_product_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_lu_factor_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_solve_triangular_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_tensorinv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_vector_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_logaddexp2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_masked_amax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_masked_cumprod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_masked_median_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_max_reduction_with_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nansum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_dropout2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_hardsigmoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_relu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_silu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_soft_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_upsample_nearest_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_norm_nuc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_polygamma_polygamma_n_1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_polygamma_polygamma_n_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_quantile_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_repeat_interleave_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_rsub_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_sinc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_slice_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_special_entr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_special_i1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_squeeze_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_t_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_take_along_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_trapezoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_trunc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_var_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_view_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_cummax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_cummin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_diag_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_dsplit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_dstack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_empty_permuted_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_fft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_fftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_ihfft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_full_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_gcd_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_geometric_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_geqrf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_gradient_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_imag_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_fake_jiterator_unary_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_kron_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_det_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_lu_factor_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_slogdet_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_solve_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_logical_xor_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_logsumexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_argmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_mm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_msort_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_narrow_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_conv3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_conv_transpose2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_linear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_pdist_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_norm_fro_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_norm_inf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_normal_in_place_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_ones_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_polygamma_polygamma_n_0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_randint_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_resize__cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_round_decimals_0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_round_decimals_neg_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_rsub_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_scatter_reduce_amax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_signal_windows_kaiser_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_sinh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_sort_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_bessel_j1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_squeeze_multiple_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_std_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_t_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_trace_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_tril_indices_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_unflatten_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_unsqueeze_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_var_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_view_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_where_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_xlogy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_zeros_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_T_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops___rmatmul___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops__softmax_backward_data_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_addbmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_atan2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_atanh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_bfloat16_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cauchy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_constant_pad_nd_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cos_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cummax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_div_trunc_rounding_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_erf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_erfc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_expand_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_expm1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fft_fftshift_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fft_ifft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fft_ifftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_floor_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_hypot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_isin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_item_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_jiterator_binary_return_by_ref_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_lgamma_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_cholesky_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_det_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_householder_product_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_matrix_rank_hermitian_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_logspace_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_argmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_cumsum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_sum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_median_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nansum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_narrow_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nextafter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_batch_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_max_unpool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_multi_head_attention_forward_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_ormqr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_polygamma_polygamma_n_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_resolve_conj_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_rsub_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_signal_windows_bartlett_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_signal_windows_general_hamming_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_softmax_with_dtype_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_squeeze_multiple_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_torch__scaled_mm_cpu_float8_e4m3fn, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_unsafe_chunk_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_unsqueeze_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_view_as_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_xlogy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_arange_cpu_int16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_cpu_float16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_tensor_overload_cpu_int8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_cpu_float16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_tensor_overload_cpu_int8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_ones_cpu_bfloat16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_zeros_cpu_bfloat16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_zeros_cpu_complex32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_zeros_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_zeros_cpu_float64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_arange_cpu_int32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_full_cpu_int16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_full_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_cpu_int32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_ones_cpu_bool, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_ones_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_zeros_cpu_complex128, test/test_ops.py::TestTagsCPU::test_tags__refs__conversions_bfloat16_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs__conversions_chalf_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs__conversions_char_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs__conversions_long_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_addcmul_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_asin_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_bitwise_not_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags__refs_ceil_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_clamp_min_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_cos_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_diagonal_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_dsplit_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_empty_strided_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_eq_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_equal_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_fftshift_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_ifft2_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_rfft_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_hstack_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_linalg_svd_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_masked_fill_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_narrow_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_ne_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_pairwise_distance_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_softplus_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_remainder_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_special_spherical_bessel_j0_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_special_zeta_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_split_with_sizes_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_squeeze_multiple_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_transpose_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_triu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_triu_indices_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags__refs_unfold_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_vdot_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_abs_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_acos_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_aminmax_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_arange_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_argwhere_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_as_strided_scatter_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_bitwise_not_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags_contiguous_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_cummax_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_diag_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_diagonal_scatter_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_einsum_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_erfinv_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_eye_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_fftn_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_hfftn_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_ifftn_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_irfft_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_rfftn_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_float_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_floor_divide_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_full_like_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_geometric_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_igamma_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_igammac_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_index_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_isinf_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_ldexp_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_lu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_multi_dot_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_tensorsolve_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_log1p_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_log_softmax_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_logical_xor_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_mH_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_mT_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_fill_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_softmin_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nanmean_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_bilinear_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_celu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_hardtanh_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_tanhshrink_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_ones_like_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_pinverse_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_positive_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_remainder_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_repeat_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_reshape_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_select_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_signal_windows_cosine_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_signal_windows_general_cosine_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_signal_windows_hann_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_signbit_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_softmax_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_i1_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_i1e_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_scaled_modified_bessel_k1_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_sqrt_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_tensor_split_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_trace_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_var_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_vdot_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_view_as_complex_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_view_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_zeros_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_zeros_like_cpu_float32 2025-08-14T23:34:36.4203303Z 2025-08-14T23:34:38.6844548Z Running test_segment_reductions 1/1 ... [2025-08-14 23:34:38.674085] 2025-08-14T23:34:38.6845022Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:34:38.6850851Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_segment_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-14 23:34:38.674085] 2025-08-14T23:34:41.4683345Z Running test_import_stats 1/1 ... [2025-08-14 23:34:41.463988] 2025-08-14T23:34:41.4683801Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:34:41.4689908Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_import_stats.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-14 23:34:41.463988] 2025-08-14T23:34:45.0549511Z 2025-08-14T23:34:45.0550617Z test_segment_reductions 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_segment_reductions_1.1_0780fc9e580ed2dc_.log 2025-08-14T23:34:45.0582621Z Running 74 items in this shard: test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_cpu_bfloat16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_cpu_bfloat16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_cpu_float16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_cpu_float16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_cpu_float32_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_cpu_float32_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_cpu_float64_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_cpu_float64_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_simple_cpu_bfloat16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_simple_cpu_bfloat16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_simple_cpu_float16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_simple_cpu_float16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_simple_cpu_float32_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_simple_cpu_float32_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_simple_cpu_float64_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_simple_cpu_float64_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_max_cpu_bfloat16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_max_cpu_bfloat16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_max_cpu_float16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_max_cpu_float16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_max_cpu_float32_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_max_cpu_float32_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_max_cpu_float64_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_max_cpu_float64_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_mean_cpu_bfloat16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_mean_cpu_bfloat16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_mean_cpu_float16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_mean_cpu_float16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_mean_cpu_float32_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_mean_cpu_float32_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_mean_cpu_float64_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_mean_cpu_float64_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_min_cpu_bfloat16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_min_cpu_bfloat16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_min_cpu_float16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_min_cpu_float16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_min_cpu_float32_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_min_cpu_float32_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_min_cpu_float64_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_min_cpu_float64_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_prod_cpu_bfloat16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_prod_cpu_bfloat16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_prod_cpu_float16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_prod_cpu_float16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_prod_cpu_float32_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_prod_cpu_float32_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_prod_cpu_float64_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_prod_cpu_float64_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_sum_cpu_bfloat16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_sum_cpu_bfloat16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_sum_cpu_float16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_sum_cpu_float16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_sum_cpu_float32_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_sum_cpu_float32_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_sum_cpu_float64_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_sum_cpu_float64_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_1d_cpu_bfloat16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_1d_cpu_bfloat16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_1d_cpu_float16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_1d_cpu_float16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_1d_cpu_float32_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_1d_cpu_float32_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_1d_cpu_float64_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_1d_cpu_float64_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_zero_length_cpu_bfloat16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_zero_length_cpu_bfloat16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_zero_length_cpu_float16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_zero_length_cpu_float16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_zero_length_cpu_float32_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_zero_length_cpu_float32_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_zero_length_cpu_float64_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_zero_length_cpu_float64_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_unsafe_flag_cpu_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_unsafe_flag_cpu_int64 2025-08-14T23:34:45.0613143Z 2025-08-14T23:34:50.2503328Z Running test_masked 1/1 ... [2025-08-14 23:34:50.247083] 2025-08-14T23:34:50.2503800Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:34:50.2509865Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_masked.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-14 23:34:50.247083] 2025-08-14T23:34:50.6339676Z 2025-08-14T23:34:50.6340944Z test_import_stats 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_import_stats_1.1_a2ff9688ae2cdc7f_.log 2025-08-14T23:34:50.6342141Z Running 2 items in this shard: test/test_import_stats.py::TestImportTime::test_time_cuda_device_count, test/test_import_stats.py::TestImportTime::test_time_import_torch 2025-08-14T23:34:50.6342828Z 2025-08-14T23:34:55.9381690Z Running test_cuda_sanitizer 1/1 ... [2025-08-14 23:34:55.936077] 2025-08-14T23:34:55.9382157Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:34:55.9391737Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_cuda_sanitizer.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-14 23:34:55.936077] 2025-08-14T23:35:01.1063191Z 2025-08-14T23:35:01.1064497Z test_cuda_sanitizer 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cuda_sanitizer_1.1_ee2f5246c1e8d253_.log 2025-08-14T23:35:01.1065846Z Running 0 items in this shard: 2025-08-14T23:35:01.1066160Z 2025-08-14T23:35:06.9713770Z Running test_monitor 1/1 ... [2025-08-14 23:35:06.971137] 2025-08-14T23:35:06.9719860Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:35:06.9721595Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_monitor.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-14 23:35:06.971709] 2025-08-14T23:35:13.3164364Z 2025-08-14T23:35:13.3165726Z test_monitor 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_monitor_1.1_6a8d410a8b1b7646_.log 2025-08-14T23:35:13.3169417Z Running 6 items in this shard: test/test_monitor.py::TestMonitor::test_event_handler, test/test_monitor.py::TestMonitor::test_fixed_count_stat, test/test_monitor.py::TestMonitor::test_interval_stat, test/test_monitor.py::TestMonitor::test_log_event, test/test_monitor.py::TestMonitor::test_wait_counter, test/test_monitor.py::TestMonitorTensorboard::test_event_handler 2025-08-14T23:35:13.3171927Z 2025-08-14T23:35:18.6558388Z Running profiler/test_cpp_thread 1/1 ... [2025-08-14 23:35:18.652098] 2025-08-14T23:35:18.6559169Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:35:18.6565461Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'profiler/test_cpp_thread.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-14 23:35:18.652098] 2025-08-14T23:35:22.6174058Z 2025-08-14T23:35:22.6175050Z test_masked 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_masked_1.1_fa3c1f4937dddd45_.log 2025-08-14T23:35:22.6237397Z Running 194 items in this shard: test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_amax_cpu_bfloat16, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_amax_cpu_float16, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_amax_cpu_float32, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_amax_cpu_float64, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_amax_cpu_int16, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_amax_cpu_int32, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_amax_cpu_int64, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_amax_cpu_int8, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_amax_cpu_uint8, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_amin_cpu_bfloat16, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_amin_cpu_float16, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_amin_cpu_float32, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_amin_cpu_float64, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_amin_cpu_int16, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_amin_cpu_int32, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_amin_cpu_int64, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_amin_cpu_int8, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_amin_cpu_uint8, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_mean_cpu_bfloat16, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_mean_cpu_complex128, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_mean_cpu_complex64, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_mean_cpu_float16, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_mean_cpu_float32, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_mean_cpu_float64, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_prod_cpu_bfloat16, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_prod_cpu_bool, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_prod_cpu_complex128, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_prod_cpu_complex64, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_prod_cpu_float16, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_prod_cpu_float32, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_prod_cpu_float64, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_prod_cpu_int16, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_prod_cpu_int32, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_prod_cpu_int64, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_prod_cpu_int8, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_prod_cpu_uint8, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_sum_cpu_bfloat16, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_sum_cpu_bool, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_sum_cpu_complex128, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_sum_cpu_complex64, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_sum_cpu_float16, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_sum_cpu_float32, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_sum_cpu_float64, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_sum_cpu_int16, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_sum_cpu_int32, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_sum_cpu_int64, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_sum_cpu_int8, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_coo_masked_sum_cpu_uint8, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_amax_cpu_bfloat16, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_amax_cpu_float16, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_amax_cpu_float32, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_amax_cpu_float64, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_amax_cpu_int16, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_amax_cpu_int32, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_amax_cpu_int64, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_amax_cpu_int8, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_amax_cpu_uint8, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_amin_cpu_bfloat16, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_amin_cpu_float16, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_amin_cpu_float32, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_amin_cpu_float64, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_amin_cpu_int16, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_amin_cpu_int32, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_amin_cpu_int64, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_amin_cpu_int8, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_amin_cpu_uint8, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_mean_cpu_bfloat16, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_mean_cpu_complex128, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_mean_cpu_complex64, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_mean_cpu_float16, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_mean_cpu_float32, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_mean_cpu_float64, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_prod_cpu_bfloat16, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_prod_cpu_bool, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_prod_cpu_complex128, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_prod_cpu_complex64, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_prod_cpu_float16, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_prod_cpu_float32, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_prod_cpu_float64, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_prod_cpu_int16, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_prod_cpu_int32, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_prod_cpu_int64, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_prod_cpu_int8, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_prod_cpu_uint8, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_sum_cpu_bfloat16, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_sum_cpu_bool, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_sum_cpu_complex128, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_sum_cpu_complex64, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_sum_cpu_float16, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_sum_cpu_float32, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_sum_cpu_float64, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_sum_cpu_int16, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_sum_cpu_int32, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_sum_cpu_int64, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_sum_cpu_int8, test/test_masked.py::TestMaskedCPU::test_mask_layout_sparse_csr_masked_sum_cpu_uint8, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_amax_cpu_bfloat16, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_amax_cpu_float16, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_amax_cpu_float32, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_amax_cpu_float64, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_amax_cpu_int16, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_amax_cpu_int32, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_amax_cpu_int64, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_amax_cpu_int8, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_amax_cpu_uint8, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_amin_cpu_bfloat16, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_amin_cpu_float16, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_amin_cpu_float32, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_amin_cpu_float64, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_amin_cpu_int16, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_amin_cpu_int32, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_amin_cpu_int64, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_amin_cpu_int8, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_amin_cpu_uint8, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_mean_cpu_bfloat16, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_mean_cpu_complex128, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_mean_cpu_complex64, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_mean_cpu_float16, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_mean_cpu_float32, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_mean_cpu_float64, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_prod_cpu_bfloat16, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_prod_cpu_bool, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_prod_cpu_complex128, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_prod_cpu_complex64, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_prod_cpu_float16, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_prod_cpu_float32, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_prod_cpu_float64, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_prod_cpu_int16, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_prod_cpu_int32, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_prod_cpu_int64, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_prod_cpu_int8, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_prod_cpu_uint8, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_sum_cpu_bfloat16, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_sum_cpu_bool, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_sum_cpu_complex128, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_sum_cpu_complex64, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_sum_cpu_float16, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_sum_cpu_float32, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_sum_cpu_float64, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_sum_cpu_int16, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_sum_cpu_int32, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_sum_cpu_int64, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_sum_cpu_int8, test/test_masked.py::TestMaskedCPU::test_mask_layout_strided_masked_sum_cpu_uint8, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_log_softmax_cpu_bfloat16, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_log_softmax_cpu_float16, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_log_softmax_cpu_float32, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_log_softmax_cpu_float64, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_norm_cpu_bfloat16, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_norm_cpu_float16, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_norm_cpu_float32, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_norm_cpu_float64, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_normalize_cpu_bfloat16, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_normalize_cpu_complex128, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_normalize_cpu_complex64, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_normalize_cpu_float16, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_normalize_cpu_float32, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_normalize_cpu_float64, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_softmax_cpu_bfloat16, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_softmax_cpu_float16, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_softmax_cpu_float32, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_softmax_cpu_float64, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_softmin_cpu_bfloat16, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_softmin_cpu_float16, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_softmin_cpu_float32, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_softmin_cpu_float64, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_std_cpu_bfloat16, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_std_cpu_complex128, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_std_cpu_complex64, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_std_cpu_float16, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_std_cpu_float32, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_std_cpu_float64, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_std_cpu_int16, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_std_cpu_int32, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_std_cpu_int64, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_std_cpu_int8, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_std_cpu_uint8, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_var_cpu_bfloat16, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_var_cpu_complex128, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_var_cpu_complex64, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_var_cpu_float16, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_var_cpu_float32, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_var_cpu_float64, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_var_cpu_int16, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_var_cpu_int32, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_var_cpu_int64, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_var_cpu_int8, test/test_masked.py::TestMaskedCPU::test_reference_masked_masked_var_cpu_uint8, test/test_masked.py::TestMaskedCPU::test_where_coo_fill_value_0_cpu, test/test_masked.py::TestMaskedCPU::test_where_coo_fill_value_123_cpu, test/test_masked.py::TestMaskedCPU::test_where_csr_fill_value_0_cpu, test/test_masked.py::TestMaskedCPU::test_where_csr_fill_value_123_cpu, test/test_masked.py::TestMaskedCPU::test_where_hybrid_coo_fill_value_0_cpu, test/test_masked.py::TestMaskedCPU::test_where_hybrid_coo_fill_value_123_cpu 2025-08-14T23:35:22.6296077Z 2025-08-14T23:35:23.4867005Z 2025-08-14T23:35:23.4867920Z profiler/test_cpp_thread 1/1 was successful, full logs can be found in artifacts with path test/test-reports/profiler.test_cpp_thread_1.1_36c8a511871d48de_.log 2025-08-14T23:35:23.4871028Z Running 6 items in this shard: test/profiler/test_cpp_thread.py::CppThreadTestCUDA::test_profile_memory_cuda, test/profiler/test_cpp_thread.py::CppThreadTestCUDA::test_with_enable_profiler_in_child_thread_cuda, test/profiler/test_cpp_thread.py::CppThreadTestCUDA::test_without_enable_profiler_in_child_thread_cuda, test/profiler/test_cpp_thread.py::CppThreadTestXPU::test_profile_memory_xpu, test/profiler/test_cpp_thread.py::CppThreadTestXPU::test_with_enable_profiler_in_child_thread_xpu, test/profiler/test_cpp_thread.py::CppThreadTestXPU::test_without_enable_profiler_in_child_thread_xpu 2025-08-14T23:35:23.4873311Z 2025-08-14T23:35:27.3509616Z 2025-08-14T23:35:27.3510515Z test_jit_fuser_te 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_jit_fuser_te_1.1_9f30e28565c9308f_.log 2025-08-14T23:35:27.5806824Z Running 6842 items in this shard: test/test_jit_fuser_te.py::TestFuserCommon::test_autodiff_fallback, test/test_jit_fuser_te.py::TestTEFuserStatic::test_abs, test/test_jit_fuser_te.py::TestTEFuserStatic::test_adaptive_avg_pool2d, test/test_jit_fuser_te.py::TestTEFuserStatic::test_add_bool, test/test_jit_fuser_te.py::TestTEFuserStatic::test_addcmul, test/test_jit_fuser_te.py::TestTEFuserStatic::test_arg_configurations_smoke, test/test_jit_fuser_te.py::TestTEFuserStatic::test_autocast_down, test/test_jit_fuser_te.py::TestTEFuserStatic::test_autocast_up, test/test_jit_fuser_te.py::TestTEFuserStatic::test_batch_norm, test/test_jit_fuser_te.py::TestTEFuserStatic::test_binary_div_ops, test/test_jit_fuser_te.py::TestTEFuserStatic::test_binary_ops, test/test_jit_fuser_te.py::TestTEFuserStatic::test_binary_pow, test/test_jit_fuser_te.py::TestTEFuserStatic::test_binary_scalar_ops, test/test_jit_fuser_te.py::TestTEFuserStatic::test_binary_tensor_scalar_ops, test/test_jit_fuser_te.py::TestTEFuserStatic::test_bitwise_ops, test/test_jit_fuser_te.py::TestTEFuserStatic::test_broadcast, test/test_jit_fuser_te.py::TestTEFuserStatic::test_cat_2k_args, test/test_jit_fuser_te.py::TestTEFuserStatic::test_cat_graph_opt, test/test_jit_fuser_te.py::TestTEFuserStatic::test_channels_last_dims_dynamic, test/test_jit_fuser_te.py::TestTEFuserStatic::test_checks_cat_inputs, test/test_jit_fuser_te.py::TestTEFuserStatic::test_chunk, test/test_jit_fuser_te.py::TestTEFuserStatic::test_chunk_correctness, test/test_jit_fuser_te.py::TestTEFuserStatic::test_chunk_distributes, test/test_jit_fuser_te.py::TestTEFuserStatic::test_chunk_motion_deduplicates_inputs, test/test_jit_fuser_te.py::TestTEFuserStatic::test_chunk_mul_one, test/test_jit_fuser_te.py::TestTEFuserStatic::test_chunk_multiple, test/test_jit_fuser_te.py::TestTEFuserStatic::test_clamp, test/test_jit_fuser_te.py::TestTEFuserStatic::test_clamp_double, test/test_jit_fuser_te.py::TestTEFuserStatic::test_clamp_int, test/test_jit_fuser_te.py::TestTEFuserStatic::test_comparison_eq_ne, test/test_jit_fuser_te.py::TestTEFuserStatic::test_comparison_ge_le, test/test_jit_fuser_te.py::TestTEFuserStatic::test_comparison_gt_lt, test/test_jit_fuser_te.py::TestTEFuserStatic::test_concat, test/test_jit_fuser_te.py::TestTEFuserStatic::test_concat_invariant, test/test_jit_fuser_te.py::TestTEFuserStatic::test_constant_chunk_shapes, test/test_jit_fuser_te.py::TestTEFuserStatic::test_conv2d, test/test_jit_fuser_te.py::TestTEFuserStatic::test_conv2d_depthwise, test/test_jit_fuser_te.py::TestTEFuserStatic::test_cuda_half, test/test_jit_fuser_te.py::TestTEFuserStatic::test_dims, test/test_jit_fuser_te.py::TestTEFuserStatic::test_disabled, test/test_jit_fuser_te.py::TestTEFuserStatic::test_div_bool, test/test_jit_fuser_te.py::TestTEFuserStatic::test_dynamic_cat, test/test_jit_fuser_te.py::TestTEFuserStatic::test_dynamic_shapes, test/test_jit_fuser_te.py::TestTEFuserStatic::test_eq_unsqueeze_type_as, test/test_jit_fuser_te.py::TestTEFuserStatic::test_erf, test/test_jit_fuser_te.py::TestTEFuserStatic::test_exhaust_specializations, test/test_jit_fuser_te.py::TestTEFuserStatic::test_exp, test/test_jit_fuser_te.py::TestTEFuserStatic::test_fusion_reuse_multi_gpu, test/test_jit_fuser_te.py::TestTEFuserStatic::test_gelu, test/test_jit_fuser_te.py::TestTEFuserStatic::test_hardsigmoid_fwd_bwd, test/test_jit_fuser_te.py::TestTEFuserStatic::test_hardswish_fwd_bwd, test/test_jit_fuser_te.py::TestTEFuserStatic::test_inlined_optimized_graph, test/test_jit_fuser_te.py::TestTEFuserStatic::test_isnan, test/test_jit_fuser_te.py::TestTEFuserStatic::test_kernel_cache_multi_gpu, test/test_jit_fuser_te.py::TestTEFuserStatic::test_lerp, test/test_jit_fuser_te.py::TestTEFuserStatic::test_list_ops, test/test_jit_fuser_te.py::TestTEFuserStatic::test_lstm, test/test_jit_fuser_te.py::TestTEFuserStatic::test_lstm_concat, test/test_jit_fuser_te.py::TestTEFuserStatic::test_lstm_gates_permutations, test/test_jit_fuser_te.py::TestTEFuserStatic::test_lstm_traced, test/test_jit_fuser_te.py::TestTEFuserStatic::test_masked_fill, test/test_jit_fuser_te.py::TestTEFuserStatic::test_matmul, test/test_jit_fuser_te.py::TestTEFuserStatic::test_milstm, test/test_jit_fuser_te.py::TestTEFuserStatic::test_minmax, test/test_jit_fuser_te.py::TestTEFuserStatic::test_minmax_int_ops, test/test_jit_fuser_te.py::TestTEFuserStatic::test_mul_bool, test/test_jit_fuser_te.py::TestTEFuserStatic::test_neg_pow, test/test_jit_fuser_te.py::TestTEFuserStatic::test_nonzero_device_cuda, test/test_jit_fuser_te.py::TestTEFuserStatic::test_nop, test/test_jit_fuser_te.py::TestTEFuserStatic::test_pow_multiple_dtype, test/test_jit_fuser_te.py::TestTEFuserStatic::test_profiler, test/test_jit_fuser_te.py::TestTEFuserStatic::test_rand_broadcast_cuda, test/test_jit_fuser_te.py::TestTEFuserStatic::test_rand_cuda, test/test_jit_fuser_te.py::TestTEFuserStatic::test_rand_diamond, test/test_jit_fuser_te.py::TestTEFuserStatic::test_relu, test/test_jit_fuser_te.py::TestTEFuserStatic::test_relu_fwd_bwd, test/test_jit_fuser_te.py::TestTEFuserStatic::test_remove_output_used_only_in_size, test/test_jit_fuser_te.py::TestTEFuserStatic::test_scalar, test/test_jit_fuser_te.py::TestTEFuserStatic::test_scalar_arg, test/test_jit_fuser_te.py::TestTEFuserStatic::test_scalar_only_inputs, test/test_jit_fuser_te.py::TestTEFuserStatic::test_skip_grad_in_check, test/test_jit_fuser_te.py::TestTEFuserStatic::test_small_constant, test/test_jit_fuser_te.py::TestTEFuserStatic::test_sub_gt_and, test/test_jit_fuser_te.py::TestTEFuserStatic::test_sum_dim, test/test_jit_fuser_te.py::TestTEFuserStatic::test_sum_keepdim_cast, test/test_jit_fuser_te.py::TestTEFuserStatic::test_sum_simple, test/test_jit_fuser_te.py::TestTEFuserStatic::test_superslomo, test/test_jit_fuser_te.py::TestTEFuserStatic::test_tensor_scalar_ops, test/test_jit_fuser_te.py::TestTEFuserStatic::test_ternary_norm_ops, test/test_jit_fuser_te.py::TestTEFuserStatic::test_ternary_ops, test/test_jit_fuser_te.py::TestTEFuserStatic::test_threshold, test/test_jit_fuser_te.py::TestTEFuserStatic::test_to_device, test/test_jit_fuser_te.py::TestTEFuserStatic::test_to_dtype, test/test_jit_fuser_te.py::TestTEFuserStatic::test_torch_to, test/test_jit_fuser_te.py::TestTEFuserStatic::test_type_as_cat, test/test_jit_fuser_te.py::TestTEFuserStatic::test_typecheck, test/test_jit_fuser_te.py::TestTEFuserStatic::test_unary_ops, test/test_jit_fuser_te.py::TestTEFuserStatic::test_unrolled_cat, test/test_jit_fuser_te.py::TestTEFuserStatic::test_unsqueeze_size_calculation, test/test_jit_fuser_te.py::TestTEFuserStatic::test_unsqueeze_var_dim, test/test_jit_fuser_te.py::TestTEFuserStatic::test_unsupported_dtypes, test/test_jit_fuser_te.py::TestTEFuserStatic::test_where_and_typing, test/test_jit_fuser_te.py::TestTEFuserStatic::test_where_ops, test/test_jit_fuser_te.py::TestTEFuserStatic::test_with_strict_fusion, test/test_jit_fuser_te.py::TestTEFuserStatic::test_zero_element_tensors, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_abs, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_adaptive_avg_pool2d, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_add_bool, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_addcmul, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_arg_configurations_smoke, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_autocast_down, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_autocast_up, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_batch_norm, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_binary_div_ops, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_binary_ops, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_binary_pow, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_binary_scalar_ops, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_binary_tensor_scalar_ops, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_bitwise_ops, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_broadcast, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_cat_2k_args, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_cat_graph_opt, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_channels_last_dims_dynamic, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_checks_cat_inputs, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_chunk, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_chunk_correctness, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_chunk_distributes, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_chunk_motion_deduplicates_inputs, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_chunk_mul_one, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_chunk_multiple, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_clamp, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_clamp_double, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_clamp_int, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_comparison_eq_ne, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_comparison_ge_le, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_comparison_gt_lt, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_concat, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_concat_invariant, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_constant_chunk_shapes, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_conv2d, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_conv2d_depthwise, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_cuda_half, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_dims, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_disabled, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_div_bool, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_dynamic_cat, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_dynamic_shapes, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_eq_unsqueeze_type_as, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_erf, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_exhaust_specializations, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_exp, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_fusion_reuse_multi_gpu, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_gelu, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_hardsigmoid_fwd_bwd, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_hardswish_fwd_bwd, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_inlined_optimized_graph, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_isnan, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_kernel_cache_multi_gpu, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_lerp, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_list_ops, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_lstm, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_lstm_concat, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_lstm_gates_permutations, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_lstm_traced, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_masked_fill, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_matmul, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_milstm, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_minmax, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_minmax_int_ops, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_mul_bool, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_neg_pow, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_nonzero_device_cuda, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_nop, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_pow_multiple_dtype, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_profiler, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_rand_broadcast_cuda, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_rand_cuda, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_rand_diamond, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_relu, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_relu_fwd_bwd, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_remove_output_used_only_in_size, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_scalar, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_scalar_arg, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_scalar_only_inputs, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_skip_grad_in_check, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_small_constant, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_sub_gt_and, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_sum_dim, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_sum_keepdim_cast, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_sum_simple, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_superslomo, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_tensor_scalar_ops, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_ternary_norm_ops, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_ternary_ops, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_threshold, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_to_device, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_to_dtype, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_torch_to, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_type_as_cat, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_typecheck, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_unary_ops, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_unrolled_cat, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_unsqueeze_size_calculation, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_unsqueeze_var_dim, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_unsupported_dtypes, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_where_and_typing, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_where_ops, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_with_strict_fusion, test/test_jit_fuser_te.py::TestTEFuserDynamic::test_zero_element_tensors, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_failures___rmatmul___cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_failures_frac_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_failures_matmul_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_H_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_H_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_H_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_H_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_H_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_H_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_H_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_H_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_H_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_H_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_H_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_H_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_H_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_T_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_T_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_T_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_T_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_T_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_T_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_T_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_T_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_T_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_T_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_T_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_T_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_T_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___getitem___cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___getitem___cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___getitem___cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___getitem___cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___getitem___cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___getitem___cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___getitem___cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___getitem___cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___getitem___cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___getitem___cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___getitem___cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___getitem___cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___getitem___cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___radd___cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___radd___cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___radd___cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___radd___cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___radd___cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___radd___cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___radd___cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___radd___cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___radd___cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___radd___cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___radd___cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___radd___cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rand___cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rand___cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rand___cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rand___cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rand___cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rand___cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rdiv___cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rdiv___cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rdiv___cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rdiv___cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rdiv___cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rdiv___cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rdiv___cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rdiv___cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rdiv___cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rdiv___cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rdiv___cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rdiv___cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rmod___cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rmod___cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rmod___cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rmod___cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rmul___cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rmul___cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rmul___cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rmul___cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rmul___cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rmul___cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rmul___cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rmul___cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rmul___cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rmul___cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rmul___cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rmul___cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___ror___cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___ror___cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___ror___cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___ror___cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___ror___cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___ror___cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rpow___cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rpow___cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rpow___cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rpow___cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rpow___cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rpow___cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rpow___cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rpow___cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rpow___cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rpow___cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rpow___cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rsub___cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rsub___cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rsub___cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rsub___cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rsub___cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rsub___cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rsub___cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rsub___cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rsub___cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rsub___cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rsub___cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rxor___cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rxor___cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rxor___cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rxor___cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rxor___cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness___rxor___cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__batch_norm_with_update_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__batch_norm_with_update_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__batch_norm_with_update_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__batch_norm_with_update_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__chunk_cat_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__chunk_cat_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__chunk_cat_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__chunk_cat_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__chunk_cat_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__chunk_cat_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__chunk_cat_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__chunk_cat_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__chunk_cat_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__chunk_cat_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__chunk_cat_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__chunk_cat_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__chunk_cat_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__native_batch_norm_legit_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__native_batch_norm_legit_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__native_batch_norm_legit_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__native_batch_norm_legit_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__segment_reduce_lengths_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__segment_reduce_lengths_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__segment_reduce_lengths_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__segment_reduce_lengths_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__segment_reduce_offsets_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__segment_reduce_offsets_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__segment_reduce_offsets_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__segment_reduce_offsets_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__softmax_backward_data_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__softmax_backward_data_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__softmax_backward_data_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__softmax_backward_data_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__unsafe_masked_index_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__unsafe_masked_index_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__unsafe_masked_index_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__unsafe_masked_index_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__unsafe_masked_index_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__unsafe_masked_index_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__unsafe_masked_index_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__unsafe_masked_index_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__unsafe_masked_index_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__unsafe_masked_index_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__unsafe_masked_index_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__unsafe_masked_index_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__unsafe_masked_index_put_accumulate_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__unsafe_masked_index_put_accumulate_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__unsafe_masked_index_put_accumulate_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__unsafe_masked_index_put_accumulate_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__unsafe_masked_index_put_accumulate_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__unsafe_masked_index_put_accumulate_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__unsafe_masked_index_put_accumulate_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__unsafe_masked_index_put_accumulate_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__unsafe_masked_index_put_accumulate_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__unsafe_masked_index_put_accumulate_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__unsafe_masked_index_put_accumulate_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__upsample_bilinear2d_aa_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__upsample_bilinear2d_aa_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness__upsample_bilinear2d_aa_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_abs_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_abs_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_abs_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_abs_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_abs_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_abs_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_abs_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_abs_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_abs_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_abs_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_abs_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_abs_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_acos_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_acos_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_acos_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_acos_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_acos_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_acos_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_acos_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_acos_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_acos_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_acos_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_acos_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_acos_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_acosh_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_acosh_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_acosh_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_acosh_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_acosh_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_acosh_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_acosh_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_acosh_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_acosh_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_acosh_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_acosh_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_acosh_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_add_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_add_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_add_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_add_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_add_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_add_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_add_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_add_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_add_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_add_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_add_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_add_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_add_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addbmm_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addbmm_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addbmm_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addbmm_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addbmm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addbmm_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addbmm_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addbmm_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addbmm_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addbmm_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addbmm_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addcdiv_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addcdiv_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addcdiv_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addcdiv_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addcdiv_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addcdiv_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addcmul_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addcmul_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addcmul_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addcmul_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addcmul_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addcmul_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addcmul_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addcmul_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addcmul_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addcmul_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addcmul_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addmm_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addmm_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addmm_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addmm_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addmm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addmm_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addmm_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addmm_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addmm_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addmm_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addmm_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addmm_decomposed_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addmm_decomposed_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addmm_decomposed_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addmm_decomposed_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addmm_decomposed_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addmm_decomposed_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addmm_decomposed_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addmm_decomposed_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addmm_decomposed_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addmm_decomposed_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addmm_decomposed_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addmv_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addmv_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addmv_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addmv_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addmv_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addmv_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addmv_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addmv_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addmv_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addmv_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addmv_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addr_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addr_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addr_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addr_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addr_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addr_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addr_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addr_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addr_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addr_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addr_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_addr_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_alias_copy_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_alias_copy_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_alias_copy_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_alias_copy_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_alias_copy_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_alias_copy_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_alias_copy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_alias_copy_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_alias_copy_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_alias_copy_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_alias_copy_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_alias_copy_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_alias_copy_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_all_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_all_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_all_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_all_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_all_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_all_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_all_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_all_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_all_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_all_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_all_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_all_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_allclose_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_allclose_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_allclose_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_allclose_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_allclose_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_allclose_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_amax_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_amax_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_amax_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_amax_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_amax_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_amax_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_amax_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_amax_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_amax_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_amax_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_amin_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_amin_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_amin_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_amin_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_amin_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_amin_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_amin_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_amin_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_amin_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_amin_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_aminmax_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_aminmax_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_aminmax_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_aminmax_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_aminmax_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_aminmax_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_aminmax_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_aminmax_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_aminmax_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_aminmax_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_angle_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_angle_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_angle_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_angle_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_angle_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_angle_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_angle_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_angle_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_angle_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_angle_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_angle_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_angle_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_any_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_any_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_any_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_any_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_any_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_any_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_any_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_any_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_any_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_any_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_any_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_any_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_arange_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_arange_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_arange_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_arange_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_arange_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_arange_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_arange_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_arange_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_arange_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argmax_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argmax_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argmax_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argmax_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argmax_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argmax_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argmax_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argmax_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argmax_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argmin_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argmin_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argmin_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argmin_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argmin_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argmin_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argmin_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argmin_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argmin_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argsort_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argsort_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argsort_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argsort_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argsort_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argsort_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argsort_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argsort_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argsort_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argsort_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argwhere_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argwhere_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argwhere_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argwhere_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argwhere_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argwhere_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argwhere_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argwhere_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argwhere_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argwhere_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argwhere_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_argwhere_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_copy_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_copy_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_copy_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_copy_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_copy_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_copy_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_copy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_copy_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_copy_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_copy_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_copy_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_copy_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_copy_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_partial_views_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_partial_views_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_partial_views_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_partial_views_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_partial_views_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_partial_views_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_partial_views_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_partial_views_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_partial_views_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_partial_views_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_partial_views_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_partial_views_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_partial_views_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_scatter_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_scatter_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_scatter_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_scatter_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_scatter_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_scatter_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_scatter_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_scatter_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_scatter_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_scatter_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_scatter_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_scatter_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_as_strided_scatter_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_asin_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_asin_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_asin_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_asin_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_asin_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_asin_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_asin_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_asin_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_asin_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_asin_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_asin_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_asin_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_asinh_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_asinh_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_asinh_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_asinh_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_asinh_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_asinh_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_asinh_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_asinh_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_asinh_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_asinh_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_asinh_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_asinh_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atan2_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atan2_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atan2_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atan2_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atan2_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atan2_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atan2_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atan2_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atan2_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atan2_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atan_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atan_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atan_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atan_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atan_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atan_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atan_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atan_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atan_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atan_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atan_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atan_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atanh_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atanh_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atanh_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atanh_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atanh_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atanh_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atanh_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atanh_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atanh_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atanh_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atanh_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atanh_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_1d_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_1d_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_1d_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_1d_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_1d_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_1d_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_1d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_1d_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_1d_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_1d_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_1d_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_1d_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_1d_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_2d_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_2d_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_2d_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_2d_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_2d_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_2d_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_2d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_2d_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_2d_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_2d_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_2d_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_2d_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_2d_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_3d_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_3d_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_3d_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_3d_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_3d_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_3d_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_3d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_3d_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_3d_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_3d_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_3d_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_3d_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_atleast_3d_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_baddbmm_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_baddbmm_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_baddbmm_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_baddbmm_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_baddbmm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_baddbmm_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_baddbmm_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_baddbmm_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_baddbmm_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_baddbmm_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_baddbmm_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bernoulli_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bernoulli_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bernoulli_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bernoulli_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bfloat16_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bfloat16_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bfloat16_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bfloat16_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bfloat16_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bfloat16_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bfloat16_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bfloat16_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bfloat16_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bfloat16_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bfloat16_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bfloat16_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bfloat16_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bincount_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bincount_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bincount_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bincount_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bincount_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bitwise_and_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bitwise_and_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bitwise_and_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bitwise_and_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bitwise_and_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bitwise_and_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bitwise_left_shift_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bitwise_left_shift_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bitwise_left_shift_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bitwise_left_shift_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bitwise_left_shift_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bitwise_not_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bitwise_not_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bitwise_not_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bitwise_not_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bitwise_not_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bitwise_not_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bitwise_or_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bitwise_or_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bitwise_or_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bitwise_or_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bitwise_or_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bitwise_or_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bitwise_right_shift_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bitwise_right_shift_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bitwise_right_shift_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bitwise_right_shift_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bitwise_right_shift_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bitwise_xor_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bitwise_xor_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bitwise_xor_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bitwise_xor_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bitwise_xor_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bitwise_xor_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_block_diag_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_block_diag_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_block_diag_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_block_diag_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_block_diag_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_block_diag_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_block_diag_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_block_diag_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_block_diag_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_block_diag_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_block_diag_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_block_diag_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_block_diag_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bmm_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bmm_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bmm_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bmm_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bmm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bmm_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bmm_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bmm_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bmm_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bmm_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bmm_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bool_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bool_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bool_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bool_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bool_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bool_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bool_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bool_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bool_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bool_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bool_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bool_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bool_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_broadcast_shapes_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_broadcast_tensors_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_broadcast_tensors_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_broadcast_tensors_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_broadcast_tensors_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_broadcast_tensors_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_broadcast_tensors_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_broadcast_tensors_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_broadcast_tensors_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_broadcast_tensors_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_broadcast_tensors_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_broadcast_tensors_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_broadcast_tensors_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_broadcast_to_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_broadcast_to_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_broadcast_to_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_broadcast_to_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_broadcast_to_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_broadcast_to_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_broadcast_to_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_broadcast_to_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_broadcast_to_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_broadcast_to_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_broadcast_to_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_broadcast_to_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bucketize_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bucketize_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bucketize_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bucketize_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bucketize_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bucketize_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bucketize_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bucketize_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_bucketize_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_byte_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_byte_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_byte_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_byte_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_byte_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_byte_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_byte_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_byte_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_byte_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_byte_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_byte_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_byte_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cartesian_prod_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cartesian_prod_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cartesian_prod_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cartesian_prod_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cartesian_prod_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cartesian_prod_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cartesian_prod_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cartesian_prod_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cartesian_prod_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cartesian_prod_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cartesian_prod_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cartesian_prod_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cat_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cat_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cat_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cat_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cat_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cat_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cat_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cat_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cat_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cat_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cat_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cat_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cat_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cauchy_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cauchy_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cauchy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cauchy_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cdist_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cdist_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cdouble_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cdouble_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cdouble_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cdouble_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cdouble_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cdouble_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cdouble_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cdouble_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cdouble_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cdouble_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cdouble_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cdouble_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cdouble_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ceil_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ceil_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ceil_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ceil_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ceil_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ceil_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ceil_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ceil_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ceil_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cfloat_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cfloat_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cfloat_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cfloat_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cfloat_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cfloat_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cfloat_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cfloat_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cfloat_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cfloat_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cfloat_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cfloat_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cfloat_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_chalf_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_chalf_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_chalf_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_chalf_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_chalf_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_chalf_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_chalf_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_chalf_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_chalf_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_chalf_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_chalf_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_chalf_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_chalf_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_char_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_char_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_char_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_char_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_char_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_char_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_char_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_char_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_char_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_char_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_char_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_char_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_char_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cholesky_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cholesky_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cholesky_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cholesky_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cholesky_inverse_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cholesky_inverse_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cholesky_inverse_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cholesky_inverse_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cholesky_solve_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cholesky_solve_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cholesky_solve_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cholesky_solve_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_chunk_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_chunk_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_chunk_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_chunk_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_chunk_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_chunk_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_chunk_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_chunk_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_chunk_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_chunk_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_chunk_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_chunk_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_chunk_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clamp_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clamp_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clamp_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clamp_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clamp_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clamp_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clamp_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clamp_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clamp_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clamp_max_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clamp_max_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clamp_max_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clamp_max_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clamp_max_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clamp_max_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clamp_max_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clamp_max_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clamp_max_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clamp_max_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clamp_min_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clamp_min_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clamp_min_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clamp_min_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clamp_min_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clamp_min_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clamp_min_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clamp_min_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clamp_min_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clamp_min_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clone_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clone_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clone_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clone_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clone_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clone_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clone_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clone_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clone_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clone_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clone_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clone_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_clone_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_column_stack_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_column_stack_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_column_stack_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_column_stack_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_column_stack_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_column_stack_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_column_stack_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_column_stack_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_column_stack_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_column_stack_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_column_stack_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_column_stack_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_column_stack_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_combinations_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_combinations_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_combinations_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_combinations_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_combinations_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_combinations_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_combinations_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_combinations_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_combinations_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_combinations_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_combinations_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_combinations_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_complex_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_complex_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_complex_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_conj_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_conj_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_conj_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_conj_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_conj_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_conj_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_conj_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_conj_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_conj_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_conj_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_conj_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_conj_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_conj_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_conj_physical_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_conj_physical_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_conj_physical_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_conj_physical_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_conj_physical_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_conj_physical_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_conj_physical_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_conj_physical_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_conj_physical_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_conj_physical_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_conj_physical_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_conj_physical_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_conj_physical_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_constant_pad_nd_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_constant_pad_nd_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_constant_pad_nd_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_constant_pad_nd_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_constant_pad_nd_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_constant_pad_nd_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_constant_pad_nd_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_constant_pad_nd_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_constant_pad_nd_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_constant_pad_nd_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_constant_pad_nd_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_constant_pad_nd_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_contiguous_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_contiguous_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_contiguous_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_contiguous_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_contiguous_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_contiguous_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_contiguous_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_contiguous_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_contiguous_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_contiguous_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_contiguous_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_contiguous_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_contiguous_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_copysign_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_copysign_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_copysign_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_copysign_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_copysign_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_copysign_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_copysign_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_copysign_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_copysign_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_copysign_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_corrcoef_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_corrcoef_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_corrcoef_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_corrcoef_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_corrcoef_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_corrcoef_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_corrcoef_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_corrcoef_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_corrcoef_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_corrcoef_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_corrcoef_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cos_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cos_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cos_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cos_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cos_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cos_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cos_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cos_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cos_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cos_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cos_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cos_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cosh_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cosh_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cosh_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cosh_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cosh_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cosh_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cosh_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cosh_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cosh_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cosh_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cosh_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cosh_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_count_nonzero_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_count_nonzero_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_count_nonzero_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_count_nonzero_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_count_nonzero_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_count_nonzero_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_count_nonzero_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_count_nonzero_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_count_nonzero_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_count_nonzero_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_count_nonzero_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_count_nonzero_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cov_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cov_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cov_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cov_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cov_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cov_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cov_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cov_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cov_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cov_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cov_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cross_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cross_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cross_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cross_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cross_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cross_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cross_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cross_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cross_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cross_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cross_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cummax_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cummax_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cummax_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cummax_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cummax_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cummax_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cummax_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cummax_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cummax_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cummax_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cummin_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cummin_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cummin_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cummin_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cummin_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cummin_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cummin_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cummin_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cummin_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cummin_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cumprod_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cumprod_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cumprod_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cumprod_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cumprod_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cumprod_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cumprod_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cumprod_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cumprod_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cumprod_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cumprod_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cumsum_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cumsum_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cumsum_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cumsum_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cumsum_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cumsum_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cumsum_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cumsum_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cumsum_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cumsum_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cumsum_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cumulative_trapezoid_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cumulative_trapezoid_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cumulative_trapezoid_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cumulative_trapezoid_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cumulative_trapezoid_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cumulative_trapezoid_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cumulative_trapezoid_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cumulative_trapezoid_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cumulative_trapezoid_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cumulative_trapezoid_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_cumulative_trapezoid_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_deg2rad_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_deg2rad_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_deg2rad_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_deg2rad_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_deg2rad_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_deg2rad_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_deg2rad_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_deg2rad_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_deg2rad_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_deg2rad_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diag_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diag_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diag_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diag_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diag_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diag_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diag_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diag_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diag_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diag_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diag_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diag_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diag_embed_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diag_embed_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diag_embed_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diag_embed_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diag_embed_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diag_embed_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diag_embed_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diag_embed_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diag_embed_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diag_embed_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diag_embed_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diag_embed_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diag_embed_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagflat_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagflat_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagflat_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagflat_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagflat_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagflat_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagflat_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagflat_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagflat_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagflat_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagflat_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagflat_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_copy_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_copy_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_copy_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_copy_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_copy_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_copy_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_copy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_copy_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_copy_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_copy_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_copy_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_copy_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_copy_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_scatter_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_scatter_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_scatter_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_scatter_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_scatter_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_scatter_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_scatter_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_scatter_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_scatter_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_scatter_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_scatter_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diagonal_scatter_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diff_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diff_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diff_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diff_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diff_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diff_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diff_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diff_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diff_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diff_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diff_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_diff_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_digamma_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_digamma_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_digamma_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_digamma_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_digamma_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_digamma_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_digamma_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_digamma_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_digamma_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_digamma_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dist_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dist_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dist_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dist_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dist_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dist_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_div_floor_rounding_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_div_floor_rounding_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_div_floor_rounding_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_div_floor_rounding_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_div_floor_rounding_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_div_floor_rounding_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_div_floor_rounding_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_div_floor_rounding_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_div_floor_rounding_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_div_no_rounding_mode_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_div_no_rounding_mode_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_div_no_rounding_mode_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_div_no_rounding_mode_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_div_no_rounding_mode_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_div_no_rounding_mode_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_div_no_rounding_mode_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_div_no_rounding_mode_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_div_no_rounding_mode_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_div_no_rounding_mode_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_div_no_rounding_mode_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_div_no_rounding_mode_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_div_trunc_rounding_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_div_trunc_rounding_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_div_trunc_rounding_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_div_trunc_rounding_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_div_trunc_rounding_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_div_trunc_rounding_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_div_trunc_rounding_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_div_trunc_rounding_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_div_trunc_rounding_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dot_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dot_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dot_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dot_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dot_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dot_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dot_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dot_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dot_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dot_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dot_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_double_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_double_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_double_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_double_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_double_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_double_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_double_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_double_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_double_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_double_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_double_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_double_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_double_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dsplit_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dsplit_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dsplit_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dsplit_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dsplit_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dsplit_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dsplit_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dsplit_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dsplit_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dsplit_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dsplit_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dsplit_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dsplit_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dstack_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dstack_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dstack_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dstack_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dstack_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dstack_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dstack_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dstack_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dstack_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dstack_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dstack_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dstack_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_dstack_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_einsum_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_einsum_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_einsum_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_einsum_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_einsum_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_einsum_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_einsum_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_einsum_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_einsum_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_einsum_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_einsum_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_like_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_like_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_like_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_like_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_like_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_like_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_like_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_like_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_like_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_like_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_like_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_like_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_like_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_permuted_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_permuted_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_permuted_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_permuted_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_permuted_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_permuted_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_permuted_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_permuted_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_permuted_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_permuted_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_permuted_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_permuted_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_permuted_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_strided_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_strided_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_strided_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_strided_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_strided_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_strided_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_strided_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_strided_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_strided_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_strided_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_strided_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_empty_strided_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_eq_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_eq_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_eq_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_eq_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_eq_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_eq_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_eq_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_eq_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_eq_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_eq_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_eq_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_eq_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_eq_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_equal_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_equal_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_equal_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_equal_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_equal_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_equal_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_equal_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_equal_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_equal_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_equal_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_equal_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_equal_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_erf_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_erf_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_erf_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_erf_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_erf_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_erf_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_erf_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_erf_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_erf_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_erf_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_erfc_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_erfc_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_erfc_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_erfc_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_erfc_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_erfc_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_erfc_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_erfc_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_erfc_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_erfc_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_erfinv_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_erfinv_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_erfinv_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_erfinv_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_erfinv_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_erfinv_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_erfinv_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_erfinv_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_erfinv_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_erfinv_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_exp2_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_exp2_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_exp2_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_exp2_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_exp2_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_exp2_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_exp2_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_exp2_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_exp2_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_exp2_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_exp2_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_exp2_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_exp_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_exp_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_exp_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_exp_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_exp_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_exp_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_exp_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_exp_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_exp_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_exp_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_exp_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_exp_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_as_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_as_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_as_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_as_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_as_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_as_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_as_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_as_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_as_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_as_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_as_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_as_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_copy_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_copy_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_copy_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_copy_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_copy_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_copy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_copy_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_copy_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_copy_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_copy_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_copy_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_copy_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expand_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expm1_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expm1_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expm1_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expm1_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expm1_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expm1_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expm1_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expm1_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expm1_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expm1_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expm1_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_expm1_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_exponential_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_exponential_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_exponential_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_exponential_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_eye_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_eye_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_eye_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_eye_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_eye_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_eye_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_eye_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_eye_cpu_float8_e4m3fn, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_eye_cpu_float8_e4m3fnuz, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_eye_cpu_float8_e5m2, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_eye_cpu_float8_e5m2fnuz, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_eye_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_eye_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_eye_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_eye_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_eye_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fft2_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fft2_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fft2_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fft2_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fft2_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fft2_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fft2_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fft2_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fft2_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fft2_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fft_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fft_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fft_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fft_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fft_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fft_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fft_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fft_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fft_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fft_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fftn_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fftn_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fftn_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fftn_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fftn_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fftn_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fftn_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fftn_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fftn_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fftn_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fftshift_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fftshift_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fftshift_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fftshift_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fftshift_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fftshift_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fftshift_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fftshift_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fftshift_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fftshift_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fftshift_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fftshift_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_fftshift_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_hfft2_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_hfft2_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_hfft2_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_hfft2_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_hfft2_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_hfft2_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_hfft2_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_hfft2_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_hfft2_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_hfft2_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_hfft_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_hfft_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_hfft_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_hfft_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_hfft_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_hfft_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_hfft_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_hfft_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_hfft_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_hfft_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_hfftn_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_hfftn_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_hfftn_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_hfftn_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_hfftn_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_hfftn_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_hfftn_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_hfftn_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_hfftn_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_hfftn_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifft2_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifft2_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifft2_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifft2_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifft2_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifft2_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifft2_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifft2_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifft2_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifft2_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifft_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifft_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifft_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifft_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifft_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifft_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifft_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifft_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifft_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifft_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifftn_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifftn_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifftn_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifftn_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifftn_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifftn_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifftn_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifftn_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifftn_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifftn_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifftshift_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifftshift_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifftshift_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifftshift_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifftshift_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifftshift_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifftshift_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifftshift_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifftshift_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifftshift_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifftshift_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifftshift_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ifftshift_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ihfft2_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ihfft2_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ihfft2_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ihfft2_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ihfft2_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ihfft2_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ihfft2_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ihfft2_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ihfft_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ihfft_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ihfft_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ihfft_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ihfft_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ihfft_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ihfft_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ihfft_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ihfftn_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ihfftn_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ihfftn_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ihfftn_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ihfftn_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ihfftn_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ihfftn_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_ihfftn_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_irfft2_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_irfft2_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_irfft2_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_irfft2_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_irfft2_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_irfft2_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_irfft2_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_irfft2_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_irfft2_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_irfft2_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_irfft_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_irfft_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_irfft_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_irfft_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_irfft_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_irfft_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_irfft_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_irfft_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_irfft_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_irfft_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_irfftn_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_irfftn_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_irfftn_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_irfftn_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_irfftn_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_irfftn_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_irfftn_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_irfftn_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_irfftn_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_irfftn_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_rfft2_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_rfft2_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_rfft2_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_rfft2_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_rfft2_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_rfft2_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_rfft2_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_rfft2_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_rfft_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_rfft_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_rfft_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_rfft_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_rfft_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_rfft_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_rfft_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_rfft_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_rfftn_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_rfftn_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_rfftn_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_rfftn_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_rfftn_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_rfftn_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_rfftn_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fft_rfftn_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fill_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fill_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fill_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fill_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fill_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fill_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fill_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fill_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fill_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fill_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fill_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fill_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fill_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flatten_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flatten_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flatten_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flatten_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flatten_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flatten_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flatten_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flatten_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flatten_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flatten_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flatten_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flatten_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flatten_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flip_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flip_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flip_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flip_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flip_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flip_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flip_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flip_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flip_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flip_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flip_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flip_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fliplr_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fliplr_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fliplr_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fliplr_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fliplr_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fliplr_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fliplr_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fliplr_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fliplr_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fliplr_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fliplr_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fliplr_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flipud_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flipud_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flipud_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flipud_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flipud_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flipud_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flipud_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flipud_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flipud_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flipud_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flipud_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_flipud_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_float_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_float_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_float_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_float_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_float_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_float_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_float_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_float_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_float_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_float_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_float_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_float_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_float_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_float_power_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_float_power_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_float_power_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_float_power_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_float_power_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_float_power_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_float_power_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_float_power_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_float_power_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_float_power_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_float_power_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_float_power_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_floor_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_floor_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_floor_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_floor_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_floor_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_floor_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_floor_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_floor_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_floor_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_floor_divide_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_floor_divide_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_floor_divide_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_floor_divide_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_floor_divide_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_floor_divide_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_floor_divide_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_floor_divide_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_floor_divide_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fmax_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fmax_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fmax_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fmax_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fmax_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fmax_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fmax_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fmax_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fmax_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fmax_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fmin_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fmin_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fmin_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fmin_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fmin_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fmin_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fmin_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fmin_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fmin_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fmin_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fmod_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fmod_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fmod_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fmod_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fmod_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fmod_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fmod_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fmod_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_fmod_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_frexp_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_frexp_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_frexp_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_frexp_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_full_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_full_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_full_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_full_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_full_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_full_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_full_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_full_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_full_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_full_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_full_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_full_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_full_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_full_like_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_full_like_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_full_like_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_full_like_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_full_like_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_full_like_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_full_like_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_full_like_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_full_like_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_full_like_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_full_like_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_full_like_cpu_uint16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_full_like_cpu_uint32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_full_like_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gather_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gather_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gather_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gather_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gather_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gather_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gather_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gather_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gather_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gather_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gather_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gather_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gcd_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gcd_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gcd_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gcd_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gcd_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ge_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ge_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ge_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ge_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ge_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ge_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ge_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ge_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ge_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ge_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_geometric_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_geometric_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_geometric_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_geometric_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_geometric_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_geometric_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_geometric_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_geometric_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_geometric_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_geqrf_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_geqrf_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_geqrf_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_geqrf_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gradient_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gradient_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gradient_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gradient_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gradient_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gradient_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gradient_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gradient_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gradient_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gradient_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_grid_sampler_2d_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_grid_sampler_2d_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_grid_sampler_2d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_grid_sampler_2d_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gt_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gt_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gt_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gt_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gt_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gt_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gt_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gt_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gt_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_gt_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_half_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_half_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_half_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_half_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_half_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_half_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_half_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_half_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_half_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_half_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_half_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_half_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hash_tensor_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hash_tensor_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hash_tensor_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hash_tensor_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hash_tensor_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hash_tensor_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hash_tensor_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hash_tensor_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hash_tensor_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hash_tensor_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_heaviside_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_heaviside_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_heaviside_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_heaviside_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_heaviside_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_heaviside_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_heaviside_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_heaviside_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_heaviside_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_heaviside_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_histc_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_histc_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_histc_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_histc_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_histogram_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_histogram_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_histogramdd_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_histogramdd_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hsplit_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hsplit_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hsplit_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hsplit_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hsplit_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hsplit_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hsplit_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hsplit_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hsplit_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hsplit_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hsplit_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hsplit_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hsplit_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hstack_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hstack_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hstack_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hstack_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hstack_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hstack_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hstack_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hstack_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hstack_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hstack_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hstack_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hstack_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hstack_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hypot_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hypot_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hypot_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_hypot_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_i0_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_i0_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_i0_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_i0_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_i0_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_i0_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_i0_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_i0_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_i0_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_i0_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_igamma_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_igamma_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_igamma_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_igamma_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_igammac_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_igammac_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_igammac_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_igammac_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_imag_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_imag_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_imag_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_add_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_add_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_add_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_add_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_add_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_add_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_add_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_add_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_add_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_add_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_add_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_add_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_add_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_copy_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_copy_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_copy_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_copy_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_copy_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_copy_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_copy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_copy_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_copy_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_copy_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_copy_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_copy_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_copy_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_fill_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_fill_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_fill_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_fill_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_fill_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_fill_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_fill_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_fill_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_fill_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_fill_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_fill_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_fill_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_fill_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_put_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_put_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_put_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_put_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_put_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_put_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_put_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_put_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_put_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_put_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_put_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_put_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_put_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_amax_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_amax_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_amax_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_amax_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_amax_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_amax_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_amax_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_amax_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_amax_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_amin_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_amin_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_amin_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_amin_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_amin_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_amin_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_amin_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_amin_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_amin_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_mean_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_mean_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_mean_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_mean_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_mean_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_mean_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_mean_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_mean_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_mean_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_prod_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_prod_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_prod_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_prod_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_prod_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_prod_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_prod_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_prod_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_reduce_prod_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_select_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_select_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_select_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_select_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_select_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_select_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_select_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_select_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_select_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_select_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_select_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_select_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_index_select_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_inner_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_inner_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_inner_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_inner_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_inner_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_inner_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_inner_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_inner_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_inner_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_inner_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_inner_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_int_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_int_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_int_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_int_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_int_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_int_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_int_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_int_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_int_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_int_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_int_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_int_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isclose_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isclose_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isclose_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isclose_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isclose_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isclose_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isclose_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isclose_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isclose_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isclose_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isclose_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isclose_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isfinite_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isfinite_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isfinite_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isfinite_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isfinite_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isfinite_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isfinite_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isfinite_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isfinite_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isfinite_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isfinite_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isfinite_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isfinite_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isin_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isin_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isin_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isin_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isin_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isin_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isin_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isin_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isin_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isinf_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isinf_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isinf_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isinf_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isinf_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isinf_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isinf_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isinf_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isinf_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isinf_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isinf_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isinf_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isinf_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isnan_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isnan_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isnan_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isnan_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isnan_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isnan_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isnan_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isnan_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isnan_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isnan_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isnan_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isnan_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isneginf_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isneginf_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isneginf_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isneginf_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isneginf_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isneginf_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isneginf_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isneginf_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isneginf_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isneginf_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isposinf_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isposinf_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isposinf_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isposinf_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isposinf_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isposinf_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isposinf_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isposinf_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isposinf_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isposinf_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isreal_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isreal_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isreal_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isreal_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isreal_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isreal_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isreal_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isreal_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isreal_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isreal_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isreal_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isreal_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_isreal_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_istft_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_istft_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_item_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_item_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_item_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_item_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_item_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_item_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_item_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_item_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_item_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_item_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_item_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_item_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_item_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_2inputs_2outputs_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_2inputs_2outputs_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_2inputs_2outputs_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_2inputs_2outputs_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_2inputs_2outputs_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_2inputs_2outputs_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_2inputs_2outputs_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_2inputs_2outputs_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_2inputs_2outputs_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_2inputs_2outputs_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_2inputs_2outputs_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_2inputs_2outputs_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_4inputs_with_extra_args_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_4inputs_with_extra_args_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_4inputs_with_extra_args_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_4inputs_with_extra_args_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_4inputs_with_extra_args_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_4inputs_with_extra_args_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_4inputs_with_extra_args_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_4inputs_with_extra_args_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_4inputs_with_extra_args_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_4inputs_with_extra_args_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_4inputs_with_extra_args_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_binary_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_binary_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_binary_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_binary_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_binary_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_binary_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_binary_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_binary_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_binary_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_binary_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_binary_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_binary_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_binary_return_by_ref_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_binary_return_by_ref_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_binary_return_by_ref_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_binary_return_by_ref_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_binary_return_by_ref_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_binary_return_by_ref_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_binary_return_by_ref_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_binary_return_by_ref_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_binary_return_by_ref_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_binary_return_by_ref_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_binary_return_by_ref_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_binary_return_by_ref_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_unary_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_unary_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_unary_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_unary_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_unary_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_unary_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_unary_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_unary_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_unary_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_unary_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_unary_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_jiterator_unary_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_kron_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_kron_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_kron_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_kron_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_kron_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_kron_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_kron_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_kron_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_kron_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_kron_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_kron_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_kron_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_kthvalue_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_kthvalue_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_kthvalue_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_kthvalue_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_kthvalue_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_kthvalue_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_kthvalue_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_kthvalue_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_kthvalue_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lcm_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lcm_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lcm_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lcm_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lcm_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ldexp_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ldexp_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ldexp_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ldexp_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ldexp_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ldexp_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ldexp_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ldexp_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ldexp_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ldexp_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ldexp_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ldexp_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_le_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_le_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_le_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_le_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_le_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_le_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_le_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_le_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_le_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_le_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lerp_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lerp_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lerp_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lerp_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lerp_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lerp_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lgamma_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lgamma_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lgamma_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lgamma_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lgamma_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lgamma_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lgamma_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lgamma_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lgamma_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lgamma_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_cholesky_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_cholesky_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_cholesky_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_cholesky_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_cholesky_ex_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_cholesky_ex_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_cholesky_ex_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_cholesky_ex_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_cond_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_cond_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_cond_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_cond_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_cross_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_cross_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_cross_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_cross_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_cross_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_cross_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_cross_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_cross_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_cross_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_cross_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_cross_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_det_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_det_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_det_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_det_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_diagonal_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_diagonal_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_diagonal_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_diagonal_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_diagonal_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_diagonal_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_diagonal_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_diagonal_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_diagonal_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_diagonal_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_diagonal_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_diagonal_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_diagonal_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_eig_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_eig_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_eig_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_eig_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_eigh_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_eigh_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_eigh_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_eigh_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_eigvals_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_eigvals_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_eigvals_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_eigvals_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_eigvalsh_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_eigvalsh_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_eigvalsh_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_eigvalsh_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_householder_product_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_householder_product_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_householder_product_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_householder_product_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_inv_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_inv_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_inv_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_inv_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_inv_ex_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_inv_ex_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_inv_ex_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_inv_ex_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_ldl_factor_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_ldl_factor_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_ldl_factor_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_ldl_factor_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_ldl_factor_ex_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_ldl_factor_ex_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_ldl_factor_ex_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_ldl_factor_ex_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_ldl_solve_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_ldl_solve_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_ldl_solve_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_ldl_solve_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_lstsq_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_lstsq_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_lstsq_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_lstsq_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_lstsq_grad_oriented_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_lstsq_grad_oriented_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_lstsq_grad_oriented_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_lstsq_grad_oriented_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_lu_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_lu_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_lu_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_lu_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_lu_factor_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_lu_factor_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_lu_factor_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_lu_factor_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_lu_factor_ex_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_lu_factor_ex_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_lu_factor_ex_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_lu_factor_ex_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_lu_solve_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_lu_solve_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_lu_solve_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_lu_solve_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_matrix_norm_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_matrix_norm_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_matrix_norm_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_matrix_norm_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_matrix_norm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_matrix_norm_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_matrix_power_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_matrix_power_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_matrix_power_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_matrix_power_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_matrix_rank_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_matrix_rank_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_matrix_rank_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_matrix_rank_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_matrix_rank_hermitian_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_matrix_rank_hermitian_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_matrix_rank_hermitian_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_matrix_rank_hermitian_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_multi_dot_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_multi_dot_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_multi_dot_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_multi_dot_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_multi_dot_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_multi_dot_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_multi_dot_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_multi_dot_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_multi_dot_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_multi_dot_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_multi_dot_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_norm_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_norm_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_norm_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_norm_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_norm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_norm_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_norm_subgradients_at_zero_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_norm_subgradients_at_zero_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_norm_subgradients_at_zero_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_norm_subgradients_at_zero_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_norm_subgradients_at_zero_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_pinv_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_pinv_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_pinv_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_pinv_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_pinv_hermitian_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_pinv_hermitian_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_pinv_hermitian_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_pinv_hermitian_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_pinv_singular_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_pinv_singular_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_pinv_singular_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_pinv_singular_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_qr_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_qr_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_qr_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_qr_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_slogdet_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_slogdet_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_slogdet_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_slogdet_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_solve_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_solve_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_solve_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_solve_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_solve_ex_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_solve_ex_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_solve_ex_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_solve_ex_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_solve_triangular_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_solve_triangular_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_solve_triangular_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_solve_triangular_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_svd_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_svd_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_svd_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_svd_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_svdvals_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_svdvals_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_svdvals_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_svdvals_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_tensorinv_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_tensorinv_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_tensorinv_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_tensorinv_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_tensorsolve_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_tensorsolve_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_tensorsolve_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_tensorsolve_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_vander_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_vander_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_vander_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_vander_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_vander_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_vander_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_vander_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_vander_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_vander_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_vecdot_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_vecdot_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_vecdot_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_vecdot_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_vecdot_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_vecdot_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_vector_norm_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_vector_norm_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_vector_norm_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_vector_norm_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_vector_norm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linalg_vector_norm_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linspace_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linspace_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linspace_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linspace_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linspace_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linspace_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linspace_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linspace_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linspace_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linspace_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linspace_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linspace_tensor_overload_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linspace_tensor_overload_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linspace_tensor_overload_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linspace_tensor_overload_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linspace_tensor_overload_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linspace_tensor_overload_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linspace_tensor_overload_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linspace_tensor_overload_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linspace_tensor_overload_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linspace_tensor_overload_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_linspace_tensor_overload_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log10_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log10_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log10_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log10_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log10_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log10_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log10_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log10_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log10_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log10_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log10_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log10_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log1p_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log1p_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log1p_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log1p_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log1p_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log1p_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log1p_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log1p_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log1p_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log1p_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log1p_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log1p_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log2_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log2_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log2_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log2_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log2_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log2_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log2_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log2_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log2_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log2_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log2_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log2_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log_normal_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log_normal_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log_normal_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log_normal_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log_softmax_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log_softmax_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log_softmax_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log_softmax_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log_softmax_with_dtype_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log_softmax_with_dtype_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log_softmax_with_dtype_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log_softmax_with_dtype_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log_softmax_with_dtype_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log_softmax_with_dtype_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log_softmax_with_dtype_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log_softmax_with_dtype_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log_softmax_with_dtype_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log_softmax_with_dtype_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log_softmax_with_dtype_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log_softmax_with_dtype_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_log_softmax_with_dtype_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logaddexp2_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logaddexp2_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logaddexp2_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logaddexp2_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logaddexp_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logaddexp_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logaddexp_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logaddexp_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logaddexp_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logaddexp_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logcumsumexp_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logcumsumexp_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logcumsumexp_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logcumsumexp_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logcumsumexp_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logcumsumexp_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logdet_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logdet_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logdet_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logdet_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_and_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_and_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_and_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_and_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_and_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_and_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_and_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_and_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_and_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_and_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_and_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_and_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_not_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_not_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_not_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_not_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_not_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_not_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_not_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_not_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_not_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_not_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_not_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_not_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_or_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_or_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_or_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_or_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_or_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_or_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_or_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_or_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_or_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_or_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_or_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_or_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_xor_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_xor_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_xor_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_xor_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_xor_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_xor_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_xor_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_xor_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_xor_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_xor_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_xor_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logical_xor_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logit_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logit_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logit_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logit_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logit_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logit_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logit_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logit_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logit_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logit_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logspace_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logspace_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logspace_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logspace_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logspace_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logspace_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logspace_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logspace_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logspace_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logspace_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logspace_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logspace_tensor_overload_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logspace_tensor_overload_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logspace_tensor_overload_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logspace_tensor_overload_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logspace_tensor_overload_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logspace_tensor_overload_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logspace_tensor_overload_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logspace_tensor_overload_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logspace_tensor_overload_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logspace_tensor_overload_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logspace_tensor_overload_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logsumexp_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logsumexp_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logsumexp_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logsumexp_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logsumexp_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logsumexp_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logsumexp_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logsumexp_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logsumexp_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logsumexp_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logsumexp_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_logsumexp_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_long_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_long_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_long_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_long_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_long_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_long_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_long_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_long_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_long_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_long_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_long_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_long_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_long_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lt_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lt_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lt_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lt_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lt_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lt_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lt_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lt_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lt_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lt_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lu_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lu_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lu_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lu_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lu_solve_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lu_solve_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lu_solve_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lu_solve_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lu_unpack_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lu_unpack_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lu_unpack_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_lu_unpack_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mH_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mH_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mH_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mH_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mH_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mH_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mH_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mH_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mH_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mH_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mH_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mH_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mH_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mT_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mT_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mT_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mT_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mT_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mT_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mT_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mT_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mT_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mT_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mT_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mT_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mT_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_amax_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_amax_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_amax_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_amax_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_amax_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_amax_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_amax_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_amax_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_amax_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_amin_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_amin_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_amin_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_amin_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_amin_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_amin_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_amin_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_amin_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_amin_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_argmax_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_argmax_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_argmax_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_argmax_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_argmax_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_argmax_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_argmax_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_argmax_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_argmax_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_argmin_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_argmin_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_argmin_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_argmin_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_argmin_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_argmin_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_argmin_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_argmin_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_argmin_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_cumprod_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_cumprod_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_cumprod_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_cumprod_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_cumprod_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_cumprod_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_cumprod_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_cumprod_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_cumprod_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_cumprod_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_cumprod_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_cumsum_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_cumsum_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_cumsum_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_cumsum_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_cumsum_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_cumsum_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_cumsum_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_cumsum_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_cumsum_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_cumsum_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_cumsum_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_fill_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_fill_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_fill_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_fill_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_fill_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_fill_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_fill_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_fill_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_fill_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_fill_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_fill_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_fill_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_fill_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_log_softmax_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_log_softmax_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_log_softmax_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_log_softmax_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_logaddexp_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_logaddexp_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_logaddexp_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_logaddexp_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_logsumexp_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_logsumexp_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_logsumexp_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_logsumexp_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_logsumexp_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_logsumexp_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_logsumexp_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_logsumexp_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_logsumexp_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_logsumexp_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_logsumexp_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_mean_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_mean_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_mean_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_mean_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_mean_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_mean_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_median_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_median_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_median_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_median_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_norm_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_norm_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_norm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_norm_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_normalize_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_normalize_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_normalize_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_normalize_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_normalize_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_normalize_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_prod_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_prod_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_prod_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_prod_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_prod_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_prod_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_prod_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_prod_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_prod_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_prod_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_prod_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_prod_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_scatter_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_scatter_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_scatter_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_scatter_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_scatter_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_scatter_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_scatter_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_scatter_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_scatter_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_scatter_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_scatter_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_scatter_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_select_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_select_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_select_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_select_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_select_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_select_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_select_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_select_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_select_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_select_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_select_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_select_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_softmax_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_softmax_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_softmax_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_softmax_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_softmin_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_softmin_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_softmin_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_softmin_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_std_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_std_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_std_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_std_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_std_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_std_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_std_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_std_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_std_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_std_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_std_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_sum_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_sum_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_sum_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_sum_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_sum_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_sum_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_sum_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_sum_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_sum_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_sum_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_sum_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_sum_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_var_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_var_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_var_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_var_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_var_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_var_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_var_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_var_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_var_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_var_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_masked_var_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_matrix_exp_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_matrix_exp_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_matrix_exp_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_matrix_exp_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_matrix_exp_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_matrix_exp_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_max_binary_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_max_binary_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_max_binary_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_max_binary_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_max_binary_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_max_binary_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_max_binary_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_max_binary_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_max_binary_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_max_binary_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_max_pool2d_with_indices_backward_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_max_pool2d_with_indices_backward_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_max_pool2d_with_indices_backward_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_max_pool2d_with_indices_backward_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_max_reduction_no_dim_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_max_reduction_no_dim_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_max_reduction_no_dim_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_max_reduction_no_dim_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_max_reduction_no_dim_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_max_reduction_no_dim_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_max_reduction_no_dim_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_max_reduction_no_dim_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_max_reduction_no_dim_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_max_reduction_no_dim_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_max_reduction_with_dim_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_max_reduction_with_dim_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_max_reduction_with_dim_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_max_reduction_with_dim_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_max_reduction_with_dim_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_max_reduction_with_dim_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_max_reduction_with_dim_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_max_reduction_with_dim_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_max_reduction_with_dim_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_max_reduction_with_dim_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_maximum_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_maximum_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_maximum_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_maximum_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_maximum_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_maximum_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_maximum_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_maximum_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_maximum_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_maximum_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mean_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mean_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mean_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mean_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mean_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mean_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_median_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_median_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_median_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_median_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_median_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_median_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_median_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_median_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_median_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_meshgrid_list_of_tensors_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_meshgrid_list_of_tensors_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_meshgrid_list_of_tensors_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_meshgrid_list_of_tensors_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_meshgrid_list_of_tensors_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_meshgrid_list_of_tensors_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_meshgrid_list_of_tensors_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_meshgrid_list_of_tensors_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_meshgrid_list_of_tensors_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_meshgrid_list_of_tensors_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_meshgrid_list_of_tensors_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_meshgrid_list_of_tensors_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_meshgrid_variadic_tensors_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_meshgrid_variadic_tensors_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_meshgrid_variadic_tensors_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_meshgrid_variadic_tensors_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_meshgrid_variadic_tensors_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_meshgrid_variadic_tensors_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_meshgrid_variadic_tensors_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_meshgrid_variadic_tensors_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_meshgrid_variadic_tensors_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_meshgrid_variadic_tensors_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_meshgrid_variadic_tensors_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_meshgrid_variadic_tensors_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_min_binary_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_min_binary_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_min_binary_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_min_binary_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_min_binary_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_min_binary_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_min_binary_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_min_binary_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_min_binary_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_min_binary_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_min_reduction_no_dim_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_min_reduction_no_dim_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_min_reduction_no_dim_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_min_reduction_no_dim_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_min_reduction_no_dim_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_min_reduction_no_dim_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_min_reduction_no_dim_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_min_reduction_no_dim_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_min_reduction_no_dim_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_min_reduction_no_dim_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_min_reduction_with_dim_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_min_reduction_with_dim_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_min_reduction_with_dim_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_min_reduction_with_dim_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_min_reduction_with_dim_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_min_reduction_with_dim_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_min_reduction_with_dim_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_min_reduction_with_dim_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_min_reduction_with_dim_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_min_reduction_with_dim_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_minimum_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_minimum_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_minimum_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_minimum_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_minimum_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_minimum_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_minimum_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_minimum_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_minimum_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_minimum_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mm_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mm_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mm_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mm_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mm_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mm_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mm_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mm_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mm_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mm_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mode_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mode_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mode_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mode_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mode_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mode_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mode_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mode_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mode_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mode_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_movedim_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_movedim_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_movedim_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_movedim_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_movedim_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_movedim_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_movedim_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_movedim_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_movedim_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_movedim_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_movedim_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_movedim_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_movedim_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_msort_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_msort_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_msort_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_msort_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_msort_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_msort_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_msort_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_msort_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_msort_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_msort_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mul_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mul_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mul_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mul_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mul_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mul_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mul_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mul_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mul_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mul_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mul_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mul_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mul_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_multinomial_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_multinomial_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_multinomial_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_multinomial_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mv_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mv_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mv_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mv_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mv_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mv_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mv_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mv_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mv_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mv_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mv_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mvlgamma_mvlgamma_p_1_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mvlgamma_mvlgamma_p_1_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mvlgamma_mvlgamma_p_1_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mvlgamma_mvlgamma_p_1_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mvlgamma_mvlgamma_p_1_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mvlgamma_mvlgamma_p_1_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mvlgamma_mvlgamma_p_3_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mvlgamma_mvlgamma_p_3_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mvlgamma_mvlgamma_p_3_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mvlgamma_mvlgamma_p_3_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mvlgamma_mvlgamma_p_3_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mvlgamma_mvlgamma_p_3_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mvlgamma_mvlgamma_p_3_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mvlgamma_mvlgamma_p_5_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mvlgamma_mvlgamma_p_5_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mvlgamma_mvlgamma_p_5_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mvlgamma_mvlgamma_p_5_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mvlgamma_mvlgamma_p_5_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mvlgamma_mvlgamma_p_5_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_mvlgamma_mvlgamma_p_5_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nan_to_num_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nan_to_num_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nan_to_num_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nan_to_num_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nan_to_num_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nan_to_num_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nan_to_num_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nan_to_num_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nan_to_num_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nan_to_num_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nanmean_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nanmean_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nanmean_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nanmean_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nanmedian_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nanmedian_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nanmedian_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nanmedian_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nanmedian_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nanmedian_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nanmedian_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nanmedian_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nanmedian_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nanquantile_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nanquantile_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nansum_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nansum_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nansum_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nansum_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nansum_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nansum_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nansum_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nansum_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nansum_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nansum_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_narrow_copy_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_narrow_copy_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_narrow_copy_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_narrow_copy_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_narrow_copy_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_narrow_copy_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_narrow_copy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_narrow_copy_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_narrow_copy_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_narrow_copy_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_narrow_copy_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_narrow_copy_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_narrow_copy_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_narrow_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_narrow_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_narrow_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_narrow_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_narrow_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_narrow_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_narrow_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_narrow_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_narrow_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_narrow_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_narrow_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_narrow_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_narrow_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_native_batch_norm_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_native_batch_norm_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_native_batch_norm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_native_batch_norm_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_native_dropout_backward_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_native_dropout_backward_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_native_dropout_backward_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_native_dropout_backward_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_native_dropout_backward_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_native_dropout_backward_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_native_dropout_backward_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_native_dropout_backward_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_native_dropout_backward_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_native_dropout_backward_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_native_layer_norm_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_native_layer_norm_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_native_layer_norm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_native_layer_norm_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ne_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ne_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ne_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ne_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ne_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ne_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ne_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ne_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ne_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ne_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ne_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ne_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_neg_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_neg_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_neg_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_neg_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_neg_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_neg_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_neg_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_neg_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_neg_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_neg_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_neg_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_neg_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_empty_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_empty_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_empty_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_empty_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_empty_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_empty_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_empty_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_empty_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_empty_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_empty_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_empty_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_empty_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_empty_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_empty_strided_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_empty_strided_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_empty_strided_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_empty_strided_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_empty_strided_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_empty_strided_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_empty_strided_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_empty_strided_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_empty_strided_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_empty_strided_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_empty_strided_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_empty_strided_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_empty_strided_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_full_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_full_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_full_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_full_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_full_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_full_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_full_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_full_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_full_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_full_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_full_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_full_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_full_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_ones_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_ones_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_ones_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_ones_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_ones_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_ones_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_ones_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_ones_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_ones_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_ones_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_ones_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_ones_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_ones_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_zeros_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_zeros_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_zeros_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_zeros_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_zeros_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_zeros_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_zeros_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_zeros_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_zeros_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_zeros_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_zeros_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_zeros_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_new_zeros_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nextafter_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nextafter_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nextafter_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nextafter_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_adaptive_avg_pool1d_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_adaptive_avg_pool1d_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_adaptive_avg_pool2d_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_adaptive_avg_pool2d_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_adaptive_avg_pool3d_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_adaptive_avg_pool3d_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_adaptive_max_pool1d_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_adaptive_max_pool1d_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_adaptive_max_pool2d_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_adaptive_max_pool2d_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_adaptive_max_pool3d_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_adaptive_max_pool3d_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_alpha_dropout_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_alpha_dropout_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_alpha_dropout_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_alpha_dropout_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_avg_pool1d_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_avg_pool1d_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_avg_pool1d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_avg_pool1d_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_avg_pool1d_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_avg_pool2d_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_avg_pool2d_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_avg_pool2d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_avg_pool2d_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_avg_pool2d_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_avg_pool3d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_avg_pool3d_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_avg_pool3d_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_batch_norm_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_batch_norm_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_batch_norm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_batch_norm_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_bilinear_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_bilinear_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_bilinear_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_bilinear_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_bilinear_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_bilinear_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_bilinear_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_bilinear_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_bilinear_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_binary_cross_entropy_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_binary_cross_entropy_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_binary_cross_entropy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_binary_cross_entropy_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_binary_cross_entropy_with_logits_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_binary_cross_entropy_with_logits_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_celu_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_celu_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_celu_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_celu_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_channel_shuffle_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_channel_shuffle_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_channel_shuffle_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_channel_shuffle_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_channel_shuffle_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_channel_shuffle_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_channel_shuffle_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_channel_shuffle_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_channel_shuffle_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_channel_shuffle_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_channel_shuffle_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_channel_shuffle_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv1d_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv1d_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv1d_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv1d_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv1d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv1d_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv1d_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv2d_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv2d_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv2d_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv2d_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv2d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv2d_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv2d_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv3d_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv3d_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv3d_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv3d_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv3d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv3d_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv3d_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv_transpose1d_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv_transpose1d_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv_transpose1d_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv_transpose1d_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv_transpose1d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv_transpose1d_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv_transpose1d_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv_transpose2d_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv_transpose2d_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv_transpose2d_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv_transpose2d_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv_transpose2d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv_transpose2d_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv_transpose2d_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv_transpose3d_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv_transpose3d_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv_transpose3d_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv_transpose3d_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv_transpose3d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv_transpose3d_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_conv_transpose3d_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_cosine_embedding_loss_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_cosine_embedding_loss_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_cosine_embedding_loss_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_cosine_embedding_loss_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_cosine_embedding_loss_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_cosine_embedding_loss_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_cosine_embedding_loss_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_cosine_embedding_loss_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_cosine_embedding_loss_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_cosine_embedding_loss_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_cosine_similarity_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_cosine_similarity_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_cosine_similarity_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_cosine_similarity_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_cross_entropy_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_cross_entropy_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_cross_entropy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_cross_entropy_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_ctc_loss_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_ctc_loss_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_dropout2d_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_dropout2d_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_dropout2d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_dropout2d_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_dropout3d_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_dropout3d_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_dropout3d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_dropout3d_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_dropout_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_dropout_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_dropout_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_dropout_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_elu_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_elu_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_elu_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_elu_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_embedding_bag_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_embedding_bag_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_embedding_bag_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_embedding_bag_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_embedding_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_embedding_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_embedding_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_embedding_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_feature_alpha_dropout_with_train_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_feature_alpha_dropout_with_train_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_feature_alpha_dropout_with_train_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_feature_alpha_dropout_without_train_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_feature_alpha_dropout_without_train_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_feature_alpha_dropout_without_train_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_feature_alpha_dropout_without_train_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_feature_alpha_dropout_without_train_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_feature_alpha_dropout_without_train_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_feature_alpha_dropout_without_train_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_feature_alpha_dropout_without_train_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_feature_alpha_dropout_without_train_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_fractional_max_pool2d_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_fractional_max_pool2d_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_fractional_max_pool2d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_fractional_max_pool2d_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_fractional_max_pool3d_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_fractional_max_pool3d_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_fractional_max_pool3d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_fractional_max_pool3d_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_gaussian_nll_loss_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_gaussian_nll_loss_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_gaussian_nll_loss_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_gaussian_nll_loss_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_gelu_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_gelu_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_gelu_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_gelu_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_glu_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_glu_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_glu_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_glu_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_grid_sample_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_grid_sample_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_grid_sample_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_grid_sample_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_group_norm_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_group_norm_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_group_norm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_group_norm_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_hardshrink_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_hardshrink_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_hardshrink_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_hardshrink_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_hardsigmoid_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_hardsigmoid_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_hardsigmoid_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_hardsigmoid_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_hardswish_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_hardswish_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_hardswish_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_hardswish_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_hardtanh_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_hardtanh_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_hardtanh_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_hardtanh_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_hardtanh_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_hardtanh_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_hardtanh_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_hardtanh_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_hinge_embedding_loss_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_hinge_embedding_loss_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_hinge_embedding_loss_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_hinge_embedding_loss_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_huber_loss_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_huber_loss_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_huber_loss_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_huber_loss_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_instance_norm_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_instance_norm_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_instance_norm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_instance_norm_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_interpolate_area_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_interpolate_area_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_interpolate_area_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_interpolate_area_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_interpolate_bicubic_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_interpolate_bicubic_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_interpolate_bicubic_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_interpolate_bicubic_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_interpolate_bicubic_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_interpolate_bilinear_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_interpolate_bilinear_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_interpolate_bilinear_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_interpolate_bilinear_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_interpolate_bilinear_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_interpolate_linear_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_interpolate_linear_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_interpolate_linear_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_interpolate_linear_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_interpolate_nearest-exact_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_interpolate_nearest-exact_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_interpolate_nearest-exact_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_interpolate_nearest_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_interpolate_nearest_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_interpolate_nearest_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_interpolate_nearest_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_interpolate_nearest_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_interpolate_trilinear_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_interpolate_trilinear_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_interpolate_trilinear_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_interpolate_trilinear_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_kl_div_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_kl_div_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_kl_div_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_kl_div_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_l1_loss_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_l1_loss_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_l1_loss_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_l1_loss_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_l1_loss_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_l1_loss_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_layer_norm_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_layer_norm_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_layer_norm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_layer_norm_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_leaky_relu_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_leaky_relu_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_leaky_relu_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_leaky_relu_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_linear_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_linear_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_linear_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_linear_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_linear_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_linear_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_linear_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_linear_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_linear_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_linear_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_linear_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_local_response_norm_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_local_response_norm_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_local_response_norm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_local_response_norm_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_local_response_norm_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_logsigmoid_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_logsigmoid_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_logsigmoid_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_logsigmoid_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_margin_ranking_loss_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_margin_ranking_loss_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_margin_ranking_loss_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_margin_ranking_loss_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_margin_ranking_loss_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_margin_ranking_loss_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_margin_ranking_loss_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_margin_ranking_loss_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_margin_ranking_loss_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_pool1d_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_pool1d_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_pool1d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_pool1d_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_pool2d_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_pool2d_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_pool2d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_pool2d_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_pool2d_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_pool2d_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_pool2d_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_pool2d_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_pool2d_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_pool3d_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_pool3d_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_pool3d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_pool3d_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_pool3d_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_pool3d_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_pool3d_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_pool3d_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_pool3d_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_unpool1d_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_unpool1d_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_unpool1d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_unpool1d_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_unpool1d_grad_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_unpool1d_grad_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_unpool1d_grad_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_unpool1d_grad_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_unpool2d_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_unpool2d_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_unpool2d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_unpool2d_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_unpool2d_grad_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_unpool2d_grad_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_unpool2d_grad_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_unpool2d_grad_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_unpool3d_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_unpool3d_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_unpool3d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_unpool3d_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_unpool3d_grad_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_unpool3d_grad_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_unpool3d_grad_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_max_unpool3d_grad_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_mish_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_mish_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_mish_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_mish_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_mse_loss_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_mse_loss_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_mse_loss_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_mse_loss_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_multi_head_attention_forward_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_multi_head_attention_forward_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_multi_head_attention_forward_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_multi_head_attention_forward_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_multi_margin_loss_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_multi_margin_loss_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_multilabel_margin_loss_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_multilabel_margin_loss_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_multilabel_soft_margin_loss_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_multilabel_soft_margin_loss_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_nll_loss_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_nll_loss_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_nll_loss_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_nll_loss_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_normalize_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_normalize_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_normalize_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_normalize_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_normalize_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_normalize_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_one_hot_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_circular_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_circular_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_circular_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_circular_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_circular_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_circular_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_circular_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_circular_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_circular_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_circular_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_circular_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_circular_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_constant_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_constant_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_constant_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_constant_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_constant_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_constant_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_constant_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_constant_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_constant_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_constant_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_constant_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_constant_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_reflect_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_reflect_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_reflect_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_reflect_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_reflect_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_reflect_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_reflect_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_reflect_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_reflect_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_reflect_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_reflect_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_replicate_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_replicate_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_replicate_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_replicate_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_replicate_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_replicate_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_replicate_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_replicate_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_replicate_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_replicate_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_replicate_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_replicate_negative_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_replicate_negative_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_replicate_negative_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_replicate_negative_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_replicate_negative_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_replicate_negative_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_replicate_negative_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_replicate_negative_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_replicate_negative_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_replicate_negative_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pad_replicate_negative_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pairwise_distance_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pairwise_distance_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pairwise_distance_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pairwise_distance_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pairwise_distance_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pairwise_distance_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pairwise_distance_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pairwise_distance_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pairwise_distance_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pairwise_distance_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pairwise_distance_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pdist_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pdist_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pixel_shuffle_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pixel_shuffle_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pixel_shuffle_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pixel_shuffle_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pixel_shuffle_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pixel_shuffle_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pixel_shuffle_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pixel_shuffle_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pixel_shuffle_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pixel_shuffle_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pixel_shuffle_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pixel_shuffle_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pixel_unshuffle_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pixel_unshuffle_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pixel_unshuffle_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pixel_unshuffle_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pixel_unshuffle_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pixel_unshuffle_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pixel_unshuffle_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pixel_unshuffle_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pixel_unshuffle_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pixel_unshuffle_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pixel_unshuffle_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_pixel_unshuffle_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_poisson_nll_loss_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_poisson_nll_loss_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_poisson_nll_loss_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_poisson_nll_loss_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_poisson_nll_loss_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_poisson_nll_loss_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_poisson_nll_loss_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_poisson_nll_loss_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_poisson_nll_loss_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_prelu_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_prelu_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_prelu_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_prelu_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_relu6_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_relu6_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_relu6_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_relu6_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_relu6_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_relu6_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_relu6_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_relu6_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_relu6_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_relu_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_relu_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_relu_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_relu_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_relu_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_relu_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_relu_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_relu_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_relu_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_rms_norm_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_rms_norm_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_rms_norm_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_rms_norm_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_rms_norm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_rms_norm_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_rrelu_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_rrelu_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_rrelu_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_scaled_dot_product_attention_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_scaled_dot_product_attention_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_selu_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_selu_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_selu_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_selu_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_silu_complex_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_silu_complex_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_silu_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_silu_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_silu_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_silu_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_smooth_l1_loss_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_smooth_l1_loss_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_smooth_l1_loss_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_smooth_l1_loss_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_soft_margin_loss_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_soft_margin_loss_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_soft_margin_loss_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_soft_margin_loss_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_softmin_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_softmin_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_softmin_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_softmin_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_softmin_with_dtype_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_softmin_with_dtype_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_softmin_with_dtype_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_softmin_with_dtype_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_softmin_with_dtype_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_softmin_with_dtype_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_softmin_with_dtype_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_softmin_with_dtype_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_softmin_with_dtype_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_softmin_with_dtype_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_softmin_with_dtype_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_softplus_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_softplus_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_softplus_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_softplus_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_softshrink_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_softshrink_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_softshrink_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_softshrink_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_softsign_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_softsign_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_softsign_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_softsign_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_softsign_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_softsign_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_softsign_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_softsign_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_softsign_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_softsign_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_softsign_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_tanhshrink_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_tanhshrink_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_tanhshrink_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_tanhshrink_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_tanhshrink_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_tanhshrink_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_tanhshrink_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_tanhshrink_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_tanhshrink_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_tanhshrink_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_tanhshrink_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_threshold_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_threshold_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_threshold_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_threshold_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_threshold_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_threshold_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_threshold_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_threshold_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_threshold_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_triplet_margin_loss_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_triplet_margin_loss_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_triplet_margin_loss_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_triplet_margin_loss_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_triplet_margin_loss_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_triplet_margin_loss_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_triplet_margin_loss_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_triplet_margin_loss_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_triplet_margin_loss_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_triplet_margin_loss_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_triplet_margin_loss_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_triplet_margin_with_distance_loss_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_triplet_margin_with_distance_loss_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_triplet_margin_with_distance_loss_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_triplet_margin_with_distance_loss_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_triplet_margin_with_distance_loss_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_triplet_margin_with_distance_loss_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_triplet_margin_with_distance_loss_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_triplet_margin_with_distance_loss_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_unfold_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_unfold_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_unfold_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_unfold_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_unfold_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_unfold_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_unfold_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_upsample_bilinear_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_upsample_bilinear_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_upsample_bilinear_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_upsample_bilinear_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_upsample_bilinear_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_upsample_nearest_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_upsample_nearest_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_upsample_nearest_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_upsample_nearest_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nn_functional_upsample_nearest_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nonzero_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nonzero_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nonzero_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nonzero_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nonzero_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nonzero_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nonzero_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nonzero_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nonzero_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nonzero_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nonzero_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nonzero_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nonzero_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nonzero_static_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nonzero_static_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nonzero_static_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nonzero_static_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nonzero_static_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nonzero_static_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nonzero_static_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nonzero_static_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nonzero_static_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nonzero_static_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nonzero_static_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nonzero_static_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_nonzero_static_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_norm_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_norm_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_norm_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_norm_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_norm_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_norm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_norm_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_norm_fro_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_norm_fro_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_norm_fro_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_norm_fro_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_norm_fro_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_norm_fro_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_norm_inf_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_norm_inf_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_norm_inf_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_norm_inf_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_norm_inf_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_norm_inf_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_norm_inf_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_norm_nuc_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_norm_nuc_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_norm_nuc_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_norm_nuc_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_normal_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_normal_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_normal_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_normal_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_normal_in_place_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_normal_in_place_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_normal_in_place_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_normal_in_place_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_normal_in_place_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_normal_in_place_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_normal_number_mean_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_normal_number_mean_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_normal_number_mean_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_normal_number_mean_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ones_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ones_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ones_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ones_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ones_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ones_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ones_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ones_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ones_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ones_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ones_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ones_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ones_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ones_like_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ones_like_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ones_like_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ones_like_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ones_like_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ones_like_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ones_like_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ones_like_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ones_like_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ones_like_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ones_like_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ones_like_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ones_like_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ormqr_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ormqr_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ormqr_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ormqr_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_outer_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_outer_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_outer_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_outer_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_outer_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_outer_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_outer_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_outer_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_outer_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_outer_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_outer_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_outer_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_pca_lowrank_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_pca_lowrank_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_pca_lowrank_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_pca_lowrank_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_permute_copy_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_permute_copy_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_permute_copy_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_permute_copy_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_permute_copy_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_permute_copy_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_permute_copy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_permute_copy_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_permute_copy_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_permute_copy_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_permute_copy_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_permute_copy_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_permute_copy_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_permute_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_permute_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_permute_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_permute_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_permute_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_permute_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_permute_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_permute_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_permute_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_permute_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_permute_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_permute_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_permute_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_pinverse_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_pinverse_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_pinverse_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_pinverse_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polar_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polar_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_0_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_0_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_0_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_0_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_0_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_0_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_0_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_0_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_0_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_0_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_1_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_1_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_1_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_1_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_1_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_1_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_1_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_1_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_1_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_2_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_2_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_2_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_2_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_2_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_2_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_2_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_2_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_2_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_3_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_3_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_3_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_3_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_3_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_3_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_3_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_3_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_3_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_4_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_4_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_4_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_4_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_4_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_4_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_4_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_4_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_polygamma_polygamma_n_4_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_positive_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_positive_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_positive_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_positive_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_positive_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_positive_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_positive_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_positive_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_positive_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_positive_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_positive_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_positive_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_pow_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_pow_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_pow_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_pow_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_pow_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_pow_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_pow_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_pow_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_pow_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_pow_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_pow_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_prod_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_prod_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_prod_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_prod_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_prod_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_prod_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_prod_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_prod_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_prod_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_prod_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_prod_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_prod_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_put_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_put_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_put_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_put_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_put_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_put_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_put_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_put_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_put_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_put_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_put_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_put_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_qr_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_qr_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_qr_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_qr_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_quantile_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_quantile_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rad2deg_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rad2deg_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rad2deg_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rad2deg_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rad2deg_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rad2deg_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rad2deg_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rad2deg_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rad2deg_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rad2deg_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rand_like_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rand_like_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rand_like_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rand_like_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rand_like_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rand_like_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rand_like_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_randint_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_randint_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_randint_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_randint_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_randint_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_randint_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_randint_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_randint_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_randint_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_randint_like_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_randint_like_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_randint_like_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_randint_like_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_randint_like_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_randint_like_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_randint_like_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_randint_like_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_randint_like_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_randn_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_randn_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_randn_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_randn_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_randn_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_randn_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_randn_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_randn_like_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_randn_like_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_randn_like_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_randn_like_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_randn_like_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_randn_like_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_randn_like_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ravel_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ravel_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ravel_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ravel_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ravel_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ravel_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ravel_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ravel_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ravel_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ravel_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ravel_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ravel_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_ravel_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_real_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_real_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_real_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_real_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_real_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_real_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_real_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_real_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_real_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_real_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_real_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_real_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_real_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reciprocal_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reciprocal_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reciprocal_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reciprocal_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reciprocal_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reciprocal_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reciprocal_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reciprocal_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reciprocal_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reciprocal_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reciprocal_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reciprocal_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_remainder_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_remainder_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_remainder_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_remainder_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_remainder_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_remainder_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_remainder_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_remainder_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_remainder_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_renorm_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_renorm_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_renorm_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_renorm_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_renorm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_renorm_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_repeat_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_repeat_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_repeat_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_repeat_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_repeat_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_repeat_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_repeat_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_repeat_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_repeat_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_repeat_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_repeat_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_repeat_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_repeat_interleave_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_repeat_interleave_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_repeat_interleave_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_repeat_interleave_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_repeat_interleave_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_repeat_interleave_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_repeat_interleave_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_repeat_interleave_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_repeat_interleave_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_repeat_interleave_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_repeat_interleave_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_repeat_interleave_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_repeat_interleave_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reshape_as_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reshape_as_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reshape_as_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reshape_as_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reshape_as_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reshape_as_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reshape_as_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reshape_as_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reshape_as_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reshape_as_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reshape_as_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reshape_as_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reshape_as_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reshape_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reshape_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reshape_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reshape_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reshape_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reshape_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reshape_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reshape_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reshape_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reshape_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reshape_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reshape_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_reshape_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resize__cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resize__cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resize__cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resize__cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resize__cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resize__cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resize__cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resize__cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resize__cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resize__cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resize__cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resize__cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resize_as__cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resize_as__cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resize_as__cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resize_as__cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resize_as__cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resize_as__cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resize_as__cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resize_as__cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resize_as__cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resize_as__cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resize_as__cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resize_as__cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resolve_conj_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resolve_conj_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resolve_conj_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resolve_conj_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resolve_conj_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resolve_conj_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resolve_conj_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resolve_conj_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resolve_conj_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resolve_conj_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resolve_conj_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resolve_conj_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resolve_neg_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resolve_neg_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resolve_neg_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resolve_neg_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resolve_neg_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resolve_neg_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resolve_neg_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resolve_neg_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resolve_neg_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resolve_neg_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resolve_neg_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resolve_neg_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_resolve_neg_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_roll_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_roll_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_roll_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_roll_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_roll_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_roll_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_roll_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_roll_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_roll_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_roll_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_roll_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_roll_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_roll_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rot90_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rot90_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rot90_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rot90_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rot90_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rot90_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rot90_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rot90_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rot90_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rot90_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rot90_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rot90_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_round_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_round_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_round_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_round_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_round_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_round_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_round_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_round_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_round_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_round_decimals_0_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_round_decimals_0_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_round_decimals_0_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_round_decimals_0_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_round_decimals_3_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_round_decimals_3_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_round_decimals_3_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_round_decimals_neg_3_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_round_decimals_neg_3_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_round_decimals_neg_3_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rsqrt_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rsqrt_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rsqrt_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rsqrt_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rsqrt_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rsqrt_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rsqrt_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rsqrt_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rsqrt_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rsqrt_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rsqrt_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rsqrt_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rsub_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rsub_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rsub_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rsub_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rsub_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rsub_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rsub_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rsub_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rsub_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rsub_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_rsub_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scalar_tensor_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scalar_tensor_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scalar_tensor_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scalar_tensor_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scalar_tensor_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scalar_tensor_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scalar_tensor_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scalar_tensor_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scalar_tensor_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scalar_tensor_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scalar_tensor_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scalar_tensor_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scalar_tensor_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_add_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_add_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_add_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_add_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_add_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_add_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_add_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_add_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_add_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_add_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_add_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_add_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_amax_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_amax_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_amax_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_amax_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_amax_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_amax_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_amax_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_amax_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_amax_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_amax_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_amin_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_amin_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_amin_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_amin_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_amin_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_amin_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_amin_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_amin_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_amin_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_amin_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_mean_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_mean_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_mean_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_mean_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_mean_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_mean_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_mean_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_mean_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_mean_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_prod_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_prod_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_prod_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_prod_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_prod_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_prod_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_prod_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_prod_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_prod_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_prod_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_sum_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_sum_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_sum_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_sum_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_sum_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_sum_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_sum_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_sum_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_sum_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_scatter_reduce_sum_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_searchsorted_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_searchsorted_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_searchsorted_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_searchsorted_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_searchsorted_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_searchsorted_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_searchsorted_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_searchsorted_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_searchsorted_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_select_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_select_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_select_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_select_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_select_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_select_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_select_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_select_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_select_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_select_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_select_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_select_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_select_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_select_scatter_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_select_scatter_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_select_scatter_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_select_scatter_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_select_scatter_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_select_scatter_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_select_scatter_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_select_scatter_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_select_scatter_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_select_scatter_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sgn_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sgn_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sgn_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sgn_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sgn_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sgn_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sgn_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sgn_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sgn_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sgn_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sgn_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sgn_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sgn_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_short_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_short_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_short_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_short_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_short_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_short_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_short_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_short_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_short_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_short_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_short_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_short_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sigmoid_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sigmoid_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sigmoid_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sigmoid_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sigmoid_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sigmoid_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sigmoid_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sigmoid_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sigmoid_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sigmoid_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sigmoid_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sigmoid_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sign_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sign_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sign_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sign_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sign_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sign_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sign_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sign_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sign_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sign_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_signal_windows_bartlett_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_signal_windows_bartlett_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_signal_windows_blackman_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_signal_windows_blackman_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_signal_windows_cosine_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_signal_windows_cosine_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_signal_windows_exponential_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_signal_windows_exponential_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_signal_windows_gaussian_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_signal_windows_gaussian_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_signal_windows_general_cosine_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_signal_windows_general_cosine_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_signal_windows_general_hamming_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_signal_windows_general_hamming_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_signal_windows_hamming_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_signal_windows_hamming_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_signal_windows_hann_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_signal_windows_hann_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_signal_windows_kaiser_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_signal_windows_kaiser_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_signal_windows_nuttall_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_signal_windows_nuttall_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_signbit_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_signbit_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_signbit_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_signbit_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_signbit_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_signbit_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_signbit_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_signbit_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_signbit_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_signbit_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sin_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sin_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sin_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sin_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sin_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sin_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sin_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sin_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sin_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sin_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sin_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sin_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sinc_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sinc_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sinc_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sinc_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sinc_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sinc_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sinc_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sinc_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sinc_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sinc_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sinc_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sinc_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sinh_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sinh_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sinh_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sinh_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sinh_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sinh_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sinh_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sinh_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sinh_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sinh_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sinh_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sinh_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_slice_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_slice_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_slice_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_slice_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_slice_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_slice_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_slice_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_slice_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_slice_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_slice_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_slice_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_slice_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_slice_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_slice_scatter_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_slice_scatter_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_slice_scatter_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_slice_scatter_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_slice_scatter_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_slice_scatter_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_slice_scatter_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_slice_scatter_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_slice_scatter_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_slice_scatter_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_softmax_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_softmax_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_softmax_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_softmax_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_softmax_with_dtype_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_softmax_with_dtype_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_softmax_with_dtype_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_softmax_with_dtype_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_softmax_with_dtype_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_softmax_with_dtype_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_softmax_with_dtype_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_softmax_with_dtype_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_softmax_with_dtype_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_softmax_with_dtype_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_softmax_with_dtype_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_softmax_with_dtype_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sort_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sort_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sort_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sort_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sort_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sort_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sort_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sort_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sort_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sort_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sparse_mm_reduce_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sparse_mm_reduce_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sparse_mm_reduce_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sparse_mm_reduce_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sparse_sampled_addmm_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sparse_sampled_addmm_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sparse_sampled_addmm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sparse_sampled_addmm_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_airy_ai_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_airy_ai_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_airy_ai_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_airy_ai_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_airy_ai_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_airy_ai_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_airy_ai_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_airy_ai_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_bessel_j0_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_bessel_j0_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_bessel_j0_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_bessel_j0_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_bessel_j0_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_bessel_j0_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_bessel_j0_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_bessel_j0_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_bessel_j1_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_bessel_j1_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_bessel_j1_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_bessel_j1_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_bessel_j1_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_bessel_j1_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_bessel_j1_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_bessel_j1_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_bessel_y0_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_bessel_y0_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_bessel_y0_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_bessel_y0_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_bessel_y0_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_bessel_y0_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_bessel_y0_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_bessel_y0_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_bessel_y1_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_bessel_y1_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_bessel_y1_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_bessel_y1_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_bessel_y1_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_bessel_y1_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_bessel_y1_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_bessel_y1_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_chebyshev_polynomial_t_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_chebyshev_polynomial_t_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_chebyshev_polynomial_t_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_chebyshev_polynomial_t_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_chebyshev_polynomial_t_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_chebyshev_polynomial_t_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_chebyshev_polynomial_t_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_chebyshev_polynomial_t_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_chebyshev_polynomial_u_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_chebyshev_polynomial_u_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_chebyshev_polynomial_u_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_chebyshev_polynomial_u_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_chebyshev_polynomial_u_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_chebyshev_polynomial_u_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_chebyshev_polynomial_u_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_chebyshev_polynomial_u_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_chebyshev_polynomial_v_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_chebyshev_polynomial_v_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_chebyshev_polynomial_v_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_chebyshev_polynomial_v_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_chebyshev_polynomial_v_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_chebyshev_polynomial_v_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_chebyshev_polynomial_v_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_chebyshev_polynomial_v_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_chebyshev_polynomial_w_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_chebyshev_polynomial_w_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_chebyshev_polynomial_w_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_chebyshev_polynomial_w_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_chebyshev_polynomial_w_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_chebyshev_polynomial_w_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_chebyshev_polynomial_w_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_chebyshev_polynomial_w_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_entr_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_entr_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_entr_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_entr_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_entr_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_entr_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_entr_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_entr_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_entr_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_entr_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_erfcx_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_erfcx_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_erfcx_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_erfcx_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_erfcx_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_erfcx_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_erfcx_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_erfcx_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_hermite_polynomial_h_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_hermite_polynomial_h_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_hermite_polynomial_h_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_hermite_polynomial_h_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_hermite_polynomial_h_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_hermite_polynomial_h_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_hermite_polynomial_h_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_hermite_polynomial_h_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_hermite_polynomial_he_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_hermite_polynomial_he_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_hermite_polynomial_he_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_hermite_polynomial_he_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_hermite_polynomial_he_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_hermite_polynomial_he_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_hermite_polynomial_he_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_hermite_polynomial_he_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_i0e_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_i0e_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_i0e_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_i0e_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_i0e_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_i0e_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_i0e_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_i0e_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_i0e_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_i0e_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_i1_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_i1_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_i1_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_i1_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_i1_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_i1_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_i1_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_i1_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_i1_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_i1_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_i1e_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_i1e_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_i1e_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_i1e_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_i1e_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_i1e_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_i1e_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_i1e_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_i1e_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_i1e_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_laguerre_polynomial_l_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_laguerre_polynomial_l_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_laguerre_polynomial_l_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_laguerre_polynomial_l_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_laguerre_polynomial_l_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_laguerre_polynomial_l_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_laguerre_polynomial_l_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_laguerre_polynomial_l_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_legendre_polynomial_p_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_legendre_polynomial_p_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_legendre_polynomial_p_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_legendre_polynomial_p_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_legendre_polynomial_p_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_legendre_polynomial_p_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_legendre_polynomial_p_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_legendre_polynomial_p_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_log_ndtr_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_log_ndtr_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_log_ndtr_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_log_ndtr_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_log_ndtr_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_log_ndtr_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_log_ndtr_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_log_ndtr_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_modified_bessel_i0_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_modified_bessel_i0_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_modified_bessel_i0_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_modified_bessel_i0_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_modified_bessel_i0_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_modified_bessel_i0_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_modified_bessel_i0_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_modified_bessel_i0_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_modified_bessel_i1_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_modified_bessel_i1_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_modified_bessel_i1_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_modified_bessel_i1_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_modified_bessel_i1_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_modified_bessel_i1_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_modified_bessel_i1_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_modified_bessel_i1_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_modified_bessel_k0_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_modified_bessel_k0_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_modified_bessel_k0_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_modified_bessel_k0_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_modified_bessel_k0_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_modified_bessel_k0_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_modified_bessel_k0_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_modified_bessel_k0_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_modified_bessel_k1_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_modified_bessel_k1_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_modified_bessel_k1_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_modified_bessel_k1_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_modified_bessel_k1_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_modified_bessel_k1_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_modified_bessel_k1_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_modified_bessel_k1_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_ndtr_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_ndtr_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_ndtr_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_ndtr_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_ndtr_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_ndtr_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_ndtr_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_ndtr_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_ndtr_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_ndtr_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_ndtri_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_ndtri_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_ndtri_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_ndtri_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_ndtri_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_ndtri_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_ndtri_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_ndtri_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_polygamma_special_polygamma_n_0_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_polygamma_special_polygamma_n_0_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_polygamma_special_polygamma_n_0_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_polygamma_special_polygamma_n_0_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_polygamma_special_polygamma_n_0_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_polygamma_special_polygamma_n_0_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_polygamma_special_polygamma_n_0_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_polygamma_special_polygamma_n_0_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_scaled_modified_bessel_k0_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_scaled_modified_bessel_k0_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_scaled_modified_bessel_k0_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_scaled_modified_bessel_k0_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_scaled_modified_bessel_k0_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_scaled_modified_bessel_k0_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_scaled_modified_bessel_k0_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_scaled_modified_bessel_k0_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_scaled_modified_bessel_k1_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_scaled_modified_bessel_k1_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_scaled_modified_bessel_k1_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_scaled_modified_bessel_k1_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_scaled_modified_bessel_k1_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_scaled_modified_bessel_k1_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_scaled_modified_bessel_k1_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_scaled_modified_bessel_k1_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_shifted_chebyshev_polynomial_t_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_shifted_chebyshev_polynomial_t_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_shifted_chebyshev_polynomial_t_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_shifted_chebyshev_polynomial_t_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_shifted_chebyshev_polynomial_t_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_shifted_chebyshev_polynomial_t_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_shifted_chebyshev_polynomial_u_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_shifted_chebyshev_polynomial_u_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_shifted_chebyshev_polynomial_u_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_shifted_chebyshev_polynomial_u_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_shifted_chebyshev_polynomial_u_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_shifted_chebyshev_polynomial_u_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_shifted_chebyshev_polynomial_v_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_shifted_chebyshev_polynomial_v_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_shifted_chebyshev_polynomial_v_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_shifted_chebyshev_polynomial_v_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_shifted_chebyshev_polynomial_v_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_shifted_chebyshev_polynomial_v_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_shifted_chebyshev_polynomial_w_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_shifted_chebyshev_polynomial_w_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_shifted_chebyshev_polynomial_w_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_shifted_chebyshev_polynomial_w_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_shifted_chebyshev_polynomial_w_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_shifted_chebyshev_polynomial_w_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_spherical_bessel_j0_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_spherical_bessel_j0_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_spherical_bessel_j0_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_spherical_bessel_j0_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_spherical_bessel_j0_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_spherical_bessel_j0_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_spherical_bessel_j0_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_spherical_bessel_j0_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_xlog1py_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_xlog1py_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_xlog1py_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_xlog1py_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_xlog1py_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_xlog1py_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_xlog1py_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_xlog1py_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_xlog1py_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_xlog1py_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_zeta_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_zeta_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_zeta_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_zeta_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_zeta_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_zeta_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_zeta_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_special_zeta_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_list_args_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_list_args_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_list_args_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_list_args_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_list_args_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_list_args_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_list_args_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_list_args_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_list_args_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_list_args_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_list_args_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_list_args_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_with_sizes_copy_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_with_sizes_copy_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_with_sizes_copy_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_with_sizes_copy_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_with_sizes_copy_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_with_sizes_copy_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_with_sizes_copy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_with_sizes_copy_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_with_sizes_copy_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_with_sizes_copy_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_with_sizes_copy_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_with_sizes_copy_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_with_sizes_copy_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_with_sizes_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_with_sizes_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_with_sizes_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_with_sizes_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_with_sizes_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_with_sizes_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_with_sizes_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_with_sizes_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_with_sizes_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_with_sizes_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_with_sizes_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_with_sizes_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_split_with_sizes_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sqrt_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sqrt_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sqrt_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sqrt_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sqrt_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sqrt_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sqrt_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sqrt_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sqrt_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sqrt_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sqrt_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sqrt_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_square_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_square_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_square_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_square_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_square_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_square_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_square_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_square_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_square_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_square_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_square_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_square_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_copy_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_copy_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_copy_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_copy_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_copy_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_copy_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_copy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_copy_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_copy_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_copy_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_copy_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_copy_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_copy_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_multiple_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_multiple_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_multiple_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_multiple_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_multiple_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_multiple_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_multiple_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_multiple_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_multiple_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_multiple_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_multiple_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_multiple_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_squeeze_multiple_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_stack_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_stack_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_stack_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_stack_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_stack_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_stack_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_stack_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_stack_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_stack_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_stack_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_stack_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_stack_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_stack_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_std_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_std_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_std_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_std_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_std_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_std_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_std_mean_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_std_mean_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_std_mean_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_std_mean_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_std_mean_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_std_mean_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_std_mean_unbiased_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_std_mean_unbiased_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_std_mean_unbiased_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_std_mean_unbiased_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_std_mean_unbiased_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_std_mean_unbiased_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_std_unbiased_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_std_unbiased_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_std_unbiased_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_std_unbiased_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_std_unbiased_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_std_unbiased_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_stft_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_stft_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_stft_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_stft_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sub_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sub_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sub_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sub_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sub_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sub_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sub_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sub_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sub_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sub_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sub_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sub_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sum_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sum_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sum_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sum_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sum_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sum_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sum_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sum_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sum_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sum_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sum_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sum_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sum_to_size_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sum_to_size_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sum_to_size_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sum_to_size_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sum_to_size_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sum_to_size_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sum_to_size_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sum_to_size_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sum_to_size_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sum_to_size_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sum_to_size_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_sum_to_size_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_svd_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_svd_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_svd_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_svd_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_svd_lowrank_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_svd_lowrank_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_svd_lowrank_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_svd_lowrank_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_t_copy_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_t_copy_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_t_copy_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_t_copy_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_t_copy_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_t_copy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_t_copy_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_t_copy_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_t_copy_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_t_copy_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_t_copy_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_t_copy_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_t_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_t_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_t_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_t_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_t_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_t_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_t_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_t_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_t_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_t_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_t_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_t_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_take_along_dim_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_take_along_dim_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_take_along_dim_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_take_along_dim_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_take_along_dim_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_take_along_dim_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_take_along_dim_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_take_along_dim_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_take_along_dim_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_take_along_dim_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_take_along_dim_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_take_along_dim_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_take_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_take_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_take_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_take_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_take_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_take_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_take_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_take_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_take_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_take_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_take_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_take_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tan_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tan_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tan_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tan_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tan_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tan_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tan_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tan_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tan_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tan_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tan_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tan_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tanh_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tanh_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tanh_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tanh_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tanh_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tanh_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tanh_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tanh_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tanh_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tanh_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tanh_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tanh_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tensor_split_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tensor_split_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tensor_split_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tensor_split_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tensor_split_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tensor_split_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tensor_split_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tensor_split_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tensor_split_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tensor_split_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tensor_split_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tensor_split_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tensordot_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tensordot_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tensordot_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tensordot_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tensordot_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tensordot_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tensordot_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tensordot_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tensordot_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tensordot_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tensordot_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tile_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tile_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tile_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tile_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tile_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tile_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tile_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tile_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tile_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tile_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tile_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tile_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_to_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_to_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_to_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_to_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_to_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_to_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_to_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_to_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_to_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_to_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_to_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_to_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_to_sparse_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_to_sparse_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_to_sparse_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_to_sparse_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_to_sparse_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_to_sparse_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_to_sparse_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_to_sparse_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_to_sparse_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_to_sparse_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_to_sparse_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_to_sparse_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_topk_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_topk_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_topk_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_topk_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_topk_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_topk_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_topk_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_topk_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_topk_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_torch__scaled_mm_cpu_float8_e4m3fn, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_torch__scaled_mm_cpu_float8_e4m3fnuz, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_torch__scaled_mm_cpu_float8_e5m2, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_torch__scaled_mm_cpu_float8_e5m2fnuz, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_torch_ops_aten__safe_softmax_default_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_torch_ops_aten__safe_softmax_default_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_torch_ops_aten__safe_softmax_default_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_torch_ops_aten__safe_softmax_default_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_torch_ops_aten__safe_softmax_default_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_torch_ops_aten__safe_softmax_default_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_torch_ops_aten__safe_softmax_default_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_torch_ops_aten__safe_softmax_default_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trace_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trace_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trace_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trace_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trace_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trace_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trace_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trace_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trace_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_transpose_copy_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_transpose_copy_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_transpose_copy_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_transpose_copy_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_transpose_copy_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_transpose_copy_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_transpose_copy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_transpose_copy_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_transpose_copy_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_transpose_copy_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_transpose_copy_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_transpose_copy_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_transpose_copy_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_transpose_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_transpose_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_transpose_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_transpose_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_transpose_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_transpose_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_transpose_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_transpose_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_transpose_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_transpose_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_transpose_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_transpose_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_transpose_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trapezoid_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trapezoid_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trapezoid_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trapezoid_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trapezoid_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trapezoid_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trapezoid_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trapezoid_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trapezoid_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trapezoid_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trapezoid_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trapz_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trapz_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trapz_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trapz_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trapz_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trapz_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trapz_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trapz_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trapz_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trapz_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trapz_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_triangular_solve_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_triangular_solve_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_triangular_solve_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_triangular_solve_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tril_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tril_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tril_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tril_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tril_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tril_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tril_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tril_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tril_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tril_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tril_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tril_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tril_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tril_indices_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_tril_indices_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_triu_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_triu_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_triu_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_triu_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_triu_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_triu_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_triu_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_triu_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_triu_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_triu_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_triu_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_triu_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_triu_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_triu_indices_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_triu_indices_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_true_divide_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_true_divide_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_true_divide_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_true_divide_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_true_divide_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_true_divide_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_true_divide_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_true_divide_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_true_divide_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_true_divide_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_true_divide_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_true_divide_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trunc_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trunc_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trunc_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trunc_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trunc_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trunc_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trunc_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trunc_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_trunc_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unbind_copy_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unbind_copy_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unbind_copy_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unbind_copy_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unbind_copy_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unbind_copy_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unbind_copy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unbind_copy_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unbind_copy_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unbind_copy_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unbind_copy_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unbind_copy_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unbind_copy_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unbind_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unbind_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unbind_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unbind_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unbind_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unbind_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unbind_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unbind_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unbind_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unbind_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unbind_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unbind_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unbind_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unflatten_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unflatten_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unflatten_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unflatten_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unflatten_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unflatten_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unflatten_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unflatten_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unflatten_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unflatten_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unflatten_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unflatten_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unflatten_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unfold_copy_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unfold_copy_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unfold_copy_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unfold_copy_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unfold_copy_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unfold_copy_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unfold_copy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unfold_copy_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unfold_copy_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unfold_copy_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unfold_copy_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unfold_copy_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unfold_copy_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unfold_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unfold_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unfold_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unfold_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unfold_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unfold_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unfold_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unfold_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unfold_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unfold_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unfold_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unfold_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unfold_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_uniform_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_uniform_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_uniform_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_uniform_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_uniform_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_uniform_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unique_consecutive_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unique_consecutive_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unique_consecutive_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unique_consecutive_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unique_consecutive_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unique_consecutive_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unique_consecutive_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unique_consecutive_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unique_consecutive_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unique_consecutive_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unique_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unique_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unique_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unique_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unique_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unique_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unique_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unique_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unique_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unique_cpu_uint16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unique_cpu_uint32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unique_cpu_uint64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unique_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unravel_index_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unravel_index_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unravel_index_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unravel_index_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unravel_index_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsafe_chunk_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsafe_chunk_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsafe_chunk_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsafe_chunk_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsafe_chunk_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsafe_chunk_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsafe_chunk_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsafe_chunk_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsafe_chunk_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsafe_chunk_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsafe_chunk_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsafe_chunk_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsafe_chunk_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsafe_split_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsafe_split_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsafe_split_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsafe_split_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsafe_split_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsafe_split_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsafe_split_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsafe_split_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsafe_split_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsafe_split_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsafe_split_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsafe_split_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsafe_split_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsqueeze_copy_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsqueeze_copy_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsqueeze_copy_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsqueeze_copy_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsqueeze_copy_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsqueeze_copy_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsqueeze_copy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsqueeze_copy_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsqueeze_copy_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsqueeze_copy_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsqueeze_copy_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsqueeze_copy_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsqueeze_copy_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsqueeze_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsqueeze_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsqueeze_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsqueeze_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsqueeze_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsqueeze_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsqueeze_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsqueeze_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsqueeze_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsqueeze_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsqueeze_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsqueeze_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_unsqueeze_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_var_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_var_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_var_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_var_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_var_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_var_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_var_mean_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_var_mean_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_var_mean_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_var_mean_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_var_mean_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_var_mean_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_var_mean_unbiased_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_var_mean_unbiased_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_var_mean_unbiased_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_var_mean_unbiased_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_var_mean_unbiased_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_var_mean_unbiased_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_var_unbiased_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_var_unbiased_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_var_unbiased_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_var_unbiased_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_var_unbiased_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_var_unbiased_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vdot_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vdot_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vdot_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vdot_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vdot_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vdot_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vdot_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vdot_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vdot_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vdot_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vdot_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_as_complex_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_as_complex_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_as_complex_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_as_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_as_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_as_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_as_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_as_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_as_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_as_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_as_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_as_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_as_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_as_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_as_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_as_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_as_real_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_as_real_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_copy_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_copy_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_copy_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_copy_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_copy_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_copy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_copy_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_copy_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_copy_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_copy_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_copy_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_copy_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_view_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vsplit_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vsplit_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vsplit_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vsplit_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vsplit_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vsplit_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vsplit_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vsplit_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vsplit_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vsplit_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vsplit_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vsplit_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vsplit_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vstack_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vstack_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vstack_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vstack_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vstack_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vstack_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vstack_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vstack_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vstack_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vstack_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vstack_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vstack_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_vstack_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_where_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_where_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_where_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_where_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_where_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_where_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_where_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_where_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_where_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_where_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_where_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_where_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_where_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_xlogy_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_xlogy_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_xlogy_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_xlogy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_xlogy_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_xlogy_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_xlogy_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_xlogy_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_xlogy_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_xlogy_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zero__cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zero__cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zero__cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zero__cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zero__cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zero__cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zero__cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zero__cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zero__cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zero__cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zero__cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zero__cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zeros_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zeros_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zeros_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zeros_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zeros_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zeros_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zeros_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zeros_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zeros_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zeros_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zeros_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zeros_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zeros_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zeros_like_cpu_bfloat16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zeros_like_cpu_bool, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zeros_like_cpu_complex128, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zeros_like_cpu_complex32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zeros_like_cpu_complex64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zeros_like_cpu_float16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zeros_like_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zeros_like_cpu_float64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zeros_like_cpu_int16, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zeros_like_cpu_int32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zeros_like_cpu_int64, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zeros_like_cpu_int8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_nnc_correctness_zeros_like_cpu_uint8, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_H_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_T_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported___getitem___cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported___rpow___cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported___rsub___cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported__batch_norm_with_update_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported__chunk_cat_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported__native_batch_norm_legit_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported__segment_reduce_lengths_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported__segment_reduce_offsets_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported__softmax_backward_data_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported__unsafe_masked_index_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported__unsafe_masked_index_put_accumulate_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported__upsample_bilinear2d_aa_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_acosh_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_addbmm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_addcdiv_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_addmm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_addmv_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_addr_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_alias_copy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_all_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_allclose_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_amax_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_amin_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_aminmax_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_angle_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_any_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_arange_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_argmax_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_argmin_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_argsort_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_argwhere_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_as_strided_copy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_as_strided_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_as_strided_partial_views_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_as_strided_scatter_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_asinh_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_atanh_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_atleast_1d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_atleast_2d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_atleast_3d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_baddbmm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_bernoulli_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_bfloat16_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_block_diag_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_bmm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_broadcast_shapes_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_broadcast_tensors_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_broadcast_to_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_bucketize_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_cartesian_prod_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_cat_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_cauchy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_cdist_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_cdouble_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_cfloat_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_chalf_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_cholesky_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_cholesky_inverse_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_cholesky_solve_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_chunk_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_clamp_max_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_clamp_min_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_clone_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_column_stack_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_combinations_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_complex_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_conj_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_conj_physical_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_constant_pad_nd_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_copysign_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_corrcoef_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_count_nonzero_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_cov_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_cross_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_cummax_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_cummin_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_cumprod_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_cumsum_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_cumulative_trapezoid_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_deg2rad_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_diag_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_diag_embed_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_diagflat_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_diagonal_copy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_diagonal_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_diagonal_scatter_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_diff_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_digamma_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_dist_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_dot_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_dsplit_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_dstack_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_einsum_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_empty_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_empty_like_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_empty_permuted_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_empty_strided_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_equal_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_erfinv_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_exp2_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_expand_copy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_exponential_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_eye_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_fft_fft2_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_fft_fft_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_fft_fftn_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_fft_fftshift_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_fft_hfft2_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_fft_hfft_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_fft_hfftn_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_fft_ifft2_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_fft_ifft_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_fft_ifftn_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_fft_ifftshift_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_fft_ihfft2_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_fft_ihfft_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_fft_ihfftn_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_fft_irfft2_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_fft_irfft_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_fft_irfftn_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_fft_rfft2_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_fft_rfft_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_fft_rfftn_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_fill_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_flatten_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_flip_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_fliplr_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_flipud_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_float_power_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_floor_divide_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_fmax_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_fmin_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_frexp_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_full_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_full_like_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_gather_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_geometric_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_geqrf_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_gradient_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_grid_sampler_2d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_hash_tensor_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_heaviside_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_histc_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_histogram_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_histogramdd_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_hsplit_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_hstack_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_hypot_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_i0_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_igamma_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_igammac_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_index_add_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_index_copy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_index_fill_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_index_put_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_index_reduce_amax_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_index_reduce_amin_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_index_reduce_mean_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_index_reduce_prod_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_index_select_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_inner_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_isclose_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_isfinite_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_isin_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_isinf_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_isneginf_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_isposinf_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_isreal_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_item_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_jiterator_2inputs_2outputs_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_jiterator_4inputs_with_extra_args_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_jiterator_binary_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_jiterator_binary_return_by_ref_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_jiterator_unary_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_kron_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_kthvalue_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_ldexp_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_cholesky_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_cholesky_ex_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_cond_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_cross_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_det_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_diagonal_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_eig_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_eigh_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_eigvals_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_eigvalsh_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_householder_product_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_inv_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_inv_ex_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_ldl_factor_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_ldl_factor_ex_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_ldl_solve_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_lstsq_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_lstsq_grad_oriented_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_lu_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_lu_factor_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_lu_factor_ex_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_lu_solve_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_matrix_norm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_matrix_power_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_matrix_rank_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_matrix_rank_hermitian_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_multi_dot_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_norm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_norm_subgradients_at_zero_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_pinv_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_pinv_hermitian_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_pinv_singular_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_qr_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_slogdet_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_solve_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_solve_ex_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_solve_triangular_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_svd_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_svdvals_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_tensorinv_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_tensorsolve_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_vander_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_vecdot_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linalg_vector_norm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linspace_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_linspace_tensor_overload_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_log_normal_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_log_softmax_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_log_softmax_with_dtype_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_logaddexp2_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_logaddexp_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_logcumsumexp_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_logdet_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_logical_and_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_logical_not_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_logical_or_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_logical_xor_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_logit_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_logspace_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_logspace_tensor_overload_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_logsumexp_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_lu_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_lu_solve_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_lu_unpack_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_mH_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_mT_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_masked_amax_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_masked_amin_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_masked_argmax_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_masked_argmin_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_masked_cumprod_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_masked_cumsum_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_masked_log_softmax_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_masked_logaddexp_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_masked_logsumexp_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_masked_mean_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_masked_median_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_masked_norm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_masked_normalize_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_masked_prod_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_masked_scatter_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_masked_select_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_masked_softmax_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_masked_softmin_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_masked_std_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_masked_sum_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_masked_var_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_matrix_exp_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_max_pool2d_with_indices_backward_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_max_reduction_no_dim_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_max_reduction_with_dim_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_maximum_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_median_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_meshgrid_list_of_tensors_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_meshgrid_variadic_tensors_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_min_reduction_no_dim_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_min_reduction_with_dim_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_minimum_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_mode_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_movedim_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_msort_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_multinomial_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_mv_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nan_to_num_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nanmean_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nanmedian_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nanquantile_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nansum_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_narrow_copy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_narrow_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_native_batch_norm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_native_dropout_backward_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_native_layer_norm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_new_empty_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_new_empty_strided_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_new_full_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_new_ones_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_new_zeros_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nextafter_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_alpha_dropout_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_avg_pool1d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_avg_pool2d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_avg_pool3d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_batch_norm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_bilinear_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_binary_cross_entropy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_celu_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_channel_shuffle_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_conv1d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_conv2d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_conv3d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_conv_transpose1d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_conv_transpose2d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_conv_transpose3d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_cosine_embedding_loss_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_cosine_similarity_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_cross_entropy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_ctc_loss_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_dropout2d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_dropout3d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_dropout_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_elu_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_embedding_bag_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_embedding_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_fractional_max_pool2d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_fractional_max_pool3d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_gaussian_nll_loss_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_gelu_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_glu_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_grid_sample_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_group_norm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_hinge_embedding_loss_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_huber_loss_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_instance_norm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_interpolate_area_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_interpolate_bicubic_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_interpolate_bilinear_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_interpolate_linear_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_interpolate_nearest_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_interpolate_trilinear_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_kl_div_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_l1_loss_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_layer_norm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_linear_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_local_response_norm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_logsigmoid_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_margin_ranking_loss_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_max_pool1d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_max_pool2d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_max_pool3d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_max_unpool1d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_max_unpool1d_grad_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_max_unpool2d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_max_unpool2d_grad_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_max_unpool3d_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_max_unpool3d_grad_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_mish_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_mse_loss_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_multi_head_attention_forward_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_multi_margin_loss_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_multilabel_margin_loss_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_nll_loss_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_normalize_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_pad_circular_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_pad_constant_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_pad_reflect_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_pad_replicate_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_pad_replicate_negative_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_pairwise_distance_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_pdist_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_pixel_shuffle_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_pixel_unshuffle_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_poisson_nll_loss_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_prelu_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_rms_norm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_rrelu_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_selu_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_silu_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_smooth_l1_loss_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_soft_margin_loss_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_softmin_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_softmin_with_dtype_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_softshrink_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_triplet_margin_loss_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_unfold_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_upsample_bilinear_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nn_functional_upsample_nearest_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nonzero_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_nonzero_static_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_norm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_norm_fro_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_norm_inf_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_norm_nuc_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_normal_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_normal_in_place_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_normal_number_mean_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_ones_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_ones_like_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_ormqr_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_outer_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_pca_lowrank_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_permute_copy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_pinverse_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_polar_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_polygamma_polygamma_n_0_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_polygamma_polygamma_n_1_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_polygamma_polygamma_n_2_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_polygamma_polygamma_n_3_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_polygamma_polygamma_n_4_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_positive_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_prod_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_put_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_qr_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_quantile_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_rad2deg_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_rand_like_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_randint_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_randint_like_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_randn_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_randn_like_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_ravel_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_real_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_renorm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_repeat_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_repeat_interleave_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_resize__cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_resize_as__cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_resolve_conj_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_resolve_neg_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_roll_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_rot90_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_round_decimals_0_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_round_decimals_3_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_round_decimals_neg_3_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_scalar_tensor_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_scatter_add_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_scatter_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_scatter_reduce_amax_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_scatter_reduce_amin_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_scatter_reduce_mean_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_scatter_reduce_prod_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_scatter_reduce_sum_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_searchsorted_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_select_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_select_scatter_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_sgn_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_signal_windows_bartlett_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_signal_windows_blackman_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_signal_windows_cosine_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_signal_windows_exponential_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_signal_windows_gaussian_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_signal_windows_general_cosine_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_signal_windows_general_hamming_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_signal_windows_hamming_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_signal_windows_hann_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_signal_windows_kaiser_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_signal_windows_nuttall_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_signbit_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_sinc_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_slice_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_slice_scatter_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_softmax_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_softmax_with_dtype_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_sort_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_sparse_mm_reduce_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_sparse_sampled_addmm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_special_airy_ai_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_special_bessel_j0_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_special_bessel_j1_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_special_bessel_y0_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_special_bessel_y1_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_special_chebyshev_polynomial_t_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_special_chebyshev_polynomial_u_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_special_chebyshev_polynomial_v_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_special_chebyshev_polynomial_w_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_special_entr_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_special_erfcx_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_special_hermite_polynomial_h_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_special_hermite_polynomial_he_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_special_i0e_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_special_i1_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_special_i1e_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_special_laguerre_polynomial_l_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_special_legendre_polynomial_p_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_special_log_ndtr_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_special_modified_bessel_i0_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_special_modified_bessel_i1_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_special_modified_bessel_k0_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_special_modified_bessel_k1_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_special_ndtr_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_special_ndtri_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_special_scaled_modified_bessel_k0_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_special_scaled_modified_bessel_k1_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_special_spherical_bessel_j0_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_special_xlog1py_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_special_zeta_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_split_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_split_list_args_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_split_with_sizes_copy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_split_with_sizes_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_square_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_squeeze_copy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_squeeze_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_squeeze_multiple_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_stack_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_std_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_std_mean_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_std_mean_unbiased_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_std_unbiased_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_stft_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_sum_to_size_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_svd_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_svd_lowrank_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_t_copy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_take_along_dim_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_take_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_tensor_split_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_tensordot_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_tile_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_to_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_to_sparse_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_topk_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_trace_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_transpose_copy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_trapezoid_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_trapz_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_triangular_solve_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_tril_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_triu_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_unbind_copy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_unbind_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_unflatten_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_unfold_copy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_unfold_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_uniform_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_unique_consecutive_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_unique_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_unsafe_chunk_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_unsafe_split_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_unsqueeze_copy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_var_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_var_mean_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_var_mean_unbiased_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_var_unbiased_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_vdot_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_view_as_complex_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_view_copy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_vsplit_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_vstack_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_xlogy_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_zero__cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_zeros_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_unsupported_zeros_like_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working___radd___cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working___rdiv___cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working___rmod___cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working___rmul___cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_abs_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_acos_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_add_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_addcmul_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_addmm_decomposed_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_asin_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_atan2_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_atan_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_bool_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_byte_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_ceil_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_char_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_clamp_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_contiguous_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_cos_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_cosh_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_div_floor_rounding_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_div_no_rounding_mode_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_div_trunc_rounding_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_double_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_eq_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_erf_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_erfc_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_exp_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_expand_as_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_expand_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_expm1_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_float_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_floor_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_fmod_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_ge_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_gt_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_half_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_int_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_isnan_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_le_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_lerp_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_lgamma_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_log10_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_log1p_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_log2_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_log_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_long_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_lt_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_masked_fill_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_max_binary_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_mean_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_min_binary_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_mm_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_mul_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_ne_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_neg_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_nn_functional_hardshrink_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_nn_functional_hardsigmoid_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_nn_functional_hardswish_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_nn_functional_hardtanh_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_nn_functional_leaky_relu_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_nn_functional_relu6_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_nn_functional_relu_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_nn_functional_softplus_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_nn_functional_softsign_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_nn_functional_tanhshrink_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_nn_functional_threshold_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_permute_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_pow_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_reciprocal_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_remainder_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_reshape_as_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_reshape_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_round_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_rsqrt_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_rsub_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_short_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_sigmoid_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_sign_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_sin_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_sinh_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_sqrt_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_sub_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_sum_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_t_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_tan_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_tanh_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_transpose_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_true_divide_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_trunc_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_unsqueeze_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_view_as_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_view_cpu_float32, test/test_jit_fuser_te.py::TestNNCOpInfoCPU::test_working_where_cpu_float32, test/test_jit_fuser_te.py::TestLoopnestRandomizationCPU::test_relu_cpu 2025-08-14T23:35:27.7995816Z 2025-08-14T23:35:27.8620718Z Running test_subclass 1/1 ... [2025-08-14 23:35:27.861726] 2025-08-14T23:35:27.8621171Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:35:27.8627767Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_subclass.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-14 23:35:27.861726] 2025-08-14T23:35:28.6506099Z Running profiler/test_profiler 1/1 ... [2025-08-14 23:35:28.641606] 2025-08-14T23:35:28.6506593Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:35:28.6512660Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'profiler/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-14 23:35:28.641606] 2025-08-14T23:35:32.7055703Z Running functorch/test_vmap_registrations 1/1 ... [2025-08-14 23:35:32.705116] 2025-08-14T23:35:32.7056297Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:35:32.7062168Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_vmap_registrations.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-14 23:35:32.705116] 2025-08-14T23:35:33.4905980Z 2025-08-14T23:35:33.4906738Z test_subclass 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_subclass_1.1_8f04051322516b39_.log 2025-08-14T23:35:33.4943064Z Running 100 items in this shard: test/test_subclass.py::TestSubclass::test_deepcopy_base_tensor_as_param_False, test/test_subclass.py::TestSubclass::test_deepcopy_base_tensor_as_param_True, test/test_subclass.py::TestSubclass::test_deepcopy_diag_tensor_below_as_param_False, test/test_subclass.py::TestSubclass::test_deepcopy_diag_tensor_below_as_param_True, test/test_subclass.py::TestSubclass::test_deepcopy_logging_tensor_as_param_False, test/test_subclass.py::TestSubclass::test_deepcopy_logging_tensor_as_param_True, test/test_subclass.py::TestSubclass::test_deepcopy_non_wrapper_tensor_as_param_False, test/test_subclass.py::TestSubclass::test_deepcopy_non_wrapper_tensor_as_param_True, test/test_subclass.py::TestSubclass::test_deepcopy_sparse_tensor_as_param_False, test/test_subclass.py::TestSubclass::test_deepcopy_sparse_tensor_as_param_True, test/test_subclass.py::TestSubclass::test_deepcopy_wrapper_with_custom_sizes_as_param_False, test/test_subclass.py::TestSubclass::test_deepcopy_wrapper_with_custom_sizes_as_param_True, test/test_subclass.py::TestSubclass::test_deepcopy_wrapper_with_custom_strides_as_param_False, test/test_subclass.py::TestSubclass::test_deepcopy_wrapper_with_custom_strides_as_param_True, test/test_subclass.py::TestSubclass::test_lazy_module_base_tensor, test/test_subclass.py::TestSubclass::test_lazy_module_diag_tensor_below, test/test_subclass.py::TestSubclass::test_lazy_module_logging_tensor, test/test_subclass.py::TestSubclass::test_lazy_module_non_wrapper_tensor, test/test_subclass.py::TestSubclass::test_lazy_module_sparse_tensor, test/test_subclass.py::TestSubclass::test_lazy_module_wrapper_with_custom_sizes, test/test_subclass.py::TestSubclass::test_lazy_module_wrapper_with_custom_strides, test/test_subclass.py::TestSubclass::test_module_optimization_base_tensor, test/test_subclass.py::TestSubclass::test_module_optimization_diag_tensor_below, test/test_subclass.py::TestSubclass::test_module_optimization_logging_tensor, test/test_subclass.py::TestSubclass::test_module_optimization_non_wrapper_tensor, test/test_subclass.py::TestSubclass::test_module_optimization_sparse_tensor, test/test_subclass.py::TestSubclass::test_module_optimization_wrapper_with_custom_sizes, test/test_subclass.py::TestSubclass::test_module_optimization_wrapper_with_custom_strides, test/test_subclass.py::TestSubclass::test_non_rewrapping_torch_dispatch_subclass_as_parameter_throws_for_detach, test/test_subclass.py::TestSubclass::test_param_invariants_base_tensor_tensor_requires_grad_False, test/test_subclass.py::TestSubclass::test_param_invariants_base_tensor_tensor_requires_grad_True, test/test_subclass.py::TestSubclass::test_param_invariants_diag_tensor_below_tensor_requires_grad_False, test/test_subclass.py::TestSubclass::test_param_invariants_diag_tensor_below_tensor_requires_grad_True, test/test_subclass.py::TestSubclass::test_param_invariants_logging_tensor_tensor_requires_grad_False, test/test_subclass.py::TestSubclass::test_param_invariants_logging_tensor_tensor_requires_grad_True, test/test_subclass.py::TestSubclass::test_param_invariants_non_wrapper_tensor_tensor_requires_grad_False, test/test_subclass.py::TestSubclass::test_param_invariants_non_wrapper_tensor_tensor_requires_grad_True, test/test_subclass.py::TestSubclass::test_param_invariants_sparse_tensor_tensor_requires_grad_False, test/test_subclass.py::TestSubclass::test_param_invariants_sparse_tensor_tensor_requires_grad_True, test/test_subclass.py::TestSubclass::test_param_invariants_wrapper_with_custom_sizes_tensor_requires_grad_False, test/test_subclass.py::TestSubclass::test_param_invariants_wrapper_with_custom_sizes_tensor_requires_grad_True, test/test_subclass.py::TestSubclass::test_param_invariants_wrapper_with_custom_strides_tensor_requires_grad_False, test/test_subclass.py::TestSubclass::test_param_invariants_wrapper_with_custom_strides_tensor_requires_grad_True, test/test_subclass.py::TestSubclass::test_parametrization_base_tensor_leave_parametrized_False, test/test_subclass.py::TestSubclass::test_parametrization_base_tensor_leave_parametrized_True, test/test_subclass.py::TestSubclass::test_parametrization_diag_tensor_below_leave_parametrized_False, test/test_subclass.py::TestSubclass::test_parametrization_diag_tensor_below_leave_parametrized_True, test/test_subclass.py::TestSubclass::test_parametrization_logging_tensor_leave_parametrized_False, test/test_subclass.py::TestSubclass::test_parametrization_logging_tensor_leave_parametrized_True, test/test_subclass.py::TestSubclass::test_parametrization_non_wrapper_tensor_leave_parametrized_False, test/test_subclass.py::TestSubclass::test_parametrization_non_wrapper_tensor_leave_parametrized_True, test/test_subclass.py::TestSubclass::test_parametrization_sparse_tensor_leave_parametrized_False, test/test_subclass.py::TestSubclass::test_parametrization_sparse_tensor_leave_parametrized_True, test/test_subclass.py::TestSubclass::test_parametrization_wrapper_with_custom_sizes_leave_parametrized_False, test/test_subclass.py::TestSubclass::test_parametrization_wrapper_with_custom_sizes_leave_parametrized_True, test/test_subclass.py::TestSubclass::test_parametrization_wrapper_with_custom_strides_leave_parametrized_False, test/test_subclass.py::TestSubclass::test_parametrization_wrapper_with_custom_strides_leave_parametrized_True, test/test_subclass.py::TestSubclass::test_repr_base_tensor_as_param_False, test/test_subclass.py::TestSubclass::test_repr_base_tensor_as_param_True, test/test_subclass.py::TestSubclass::test_repr_diag_tensor_below_as_param_False, test/test_subclass.py::TestSubclass::test_repr_diag_tensor_below_as_param_True, test/test_subclass.py::TestSubclass::test_repr_logging_tensor_as_param_False, test/test_subclass.py::TestSubclass::test_repr_logging_tensor_as_param_True, test/test_subclass.py::TestSubclass::test_repr_non_wrapper_tensor_as_param_False, test/test_subclass.py::TestSubclass::test_repr_non_wrapper_tensor_as_param_True, test/test_subclass.py::TestSubclass::test_repr_sparse_tensor_as_param_False, test/test_subclass.py::TestSubclass::test_repr_sparse_tensor_as_param_True, test/test_subclass.py::TestSubclass::test_repr_wrapper_with_custom_sizes_as_param_False, test/test_subclass.py::TestSubclass::test_repr_wrapper_with_custom_sizes_as_param_True, test/test_subclass.py::TestSubclass::test_repr_wrapper_with_custom_strides_as_param_False, test/test_subclass.py::TestSubclass::test_repr_wrapper_with_custom_strides_as_param_True, test/test_subclass.py::TestSubclass::test_serialization_base_tensor_as_param_False, test/test_subclass.py::TestSubclass::test_serialization_base_tensor_as_param_True, test/test_subclass.py::TestSubclass::test_serialization_diag_tensor_below_as_param_False, test/test_subclass.py::TestSubclass::test_serialization_diag_tensor_below_as_param_True, test/test_subclass.py::TestSubclass::test_serialization_logging_tensor_as_param_False, test/test_subclass.py::TestSubclass::test_serialization_logging_tensor_as_param_True, test/test_subclass.py::TestSubclass::test_serialization_non_wrapper_tensor_as_param_False, test/test_subclass.py::TestSubclass::test_serialization_non_wrapper_tensor_as_param_True, test/test_subclass.py::TestSubclass::test_serialization_sparse_tensor_as_param_False, test/test_subclass.py::TestSubclass::test_serialization_sparse_tensor_as_param_True, test/test_subclass.py::TestSubclass::test_serialization_wrapper_with_custom_sizes_as_param_False, test/test_subclass.py::TestSubclass::test_serialization_wrapper_with_custom_sizes_as_param_True, test/test_subclass.py::TestSubclass::test_serialization_wrapper_with_custom_strides_as_param_False, test/test_subclass.py::TestSubclass::test_serialization_wrapper_with_custom_strides_as_param_True, test/test_subclass.py::TestSubclass::test_tensor_subclass_storage_data_accesses_throw, test/test_subclass.py::TestSubclass::test_type_propagation_base_tensor_as_param_False, test/test_subclass.py::TestSubclass::test_type_propagation_base_tensor_as_param_True, test/test_subclass.py::TestSubclass::test_type_propagation_diag_tensor_below_as_param_False, test/test_subclass.py::TestSubclass::test_type_propagation_diag_tensor_below_as_param_True, test/test_subclass.py::TestSubclass::test_type_propagation_logging_tensor_as_param_False, test/test_subclass.py::TestSubclass::test_type_propagation_logging_tensor_as_param_True, test/test_subclass.py::TestSubclass::test_type_propagation_non_wrapper_tensor_as_param_False, test/test_subclass.py::TestSubclass::test_type_propagation_non_wrapper_tensor_as_param_True, test/test_subclass.py::TestSubclass::test_type_propagation_sparse_tensor_as_param_False, test/test_subclass.py::TestSubclass::test_type_propagation_sparse_tensor_as_param_True, test/test_subclass.py::TestSubclass::test_type_propagation_wrapper_with_custom_sizes_as_param_False, test/test_subclass.py::TestSubclass::test_type_propagation_wrapper_with_custom_sizes_as_param_True, test/test_subclass.py::TestSubclass::test_type_propagation_wrapper_with_custom_strides_as_param_False, test/test_subclass.py::TestSubclass::test_type_propagation_wrapper_with_custom_strides_as_param_True 2025-08-14T23:35:33.4977354Z 2025-08-14T23:35:38.7499686Z Running nn/test_parametrization 1/1 ... [2025-08-14 23:35:38.747574] 2025-08-14T23:35:38.7500157Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:35:38.7505776Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'nn/test_parametrization.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-14 23:35:38.747574] 2025-08-14T23:35:44.7039713Z 2025-08-14T23:35:44.7040770Z functorch/test_vmap_registrations 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_vmap_registrations_1.1_7b7dae4b45cdabe4_.log 2025-08-14T23:35:44.8029962Z Running 1720 items in this shard: test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[_TorchScriptTesting::take_an_instance], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[_TorchScriptTesting::take_an_instance_inferred], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[_TorchScriptTesting::takes_foo_cia], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[_test::cat], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[_test::get_first], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[_test::leaky_relu], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::__and__.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::__and__.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::__iand__.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::__iand__.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::__ior__.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::__ior__.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::__ixor__.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::__ixor__.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::__or__.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::__or__.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::__xor__.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::__xor__.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_add_batch_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_autocast_to_full_precision], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_autocast_to_reduced_precision], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_batch_norm_impl_index], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_batch_norm_impl_index_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_cast_Byte], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_cast_Char], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_cast_Double], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_cast_Float], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_cast_Half], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_cast_Int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_cast_Long], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_cast_Short], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_choose_qparams_per_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_convolution.deprecated], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_convolution_double_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_convolution_mode], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_cufft_clear_plan_cache], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_cufft_get_plan_cache_max_size], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_cufft_get_plan_cache_size], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_cufft_set_plan_cache_max_size], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_debug_has_internal_overlap], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_dim_arange], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_embedding_bag_sparse_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_fused_rms_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_gather_sparse_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_grid_sampler_2d_cpu_fallback_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_has_compatible_shallow_copy_type], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_is_zerotensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_lu_with_info], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_nnpack_available], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_pack_padded_sequence_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_pad_circular], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_pad_enum], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_pad_packed_sequence], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_propagate_xla_data], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_remove_batch_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_reshape_from_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_rowwise_prune], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_saturate_weight_to_fp16], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_scaled_dot_product_attention_math], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_shape_as_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sobol_engine_draw], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sobol_engine_ff_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sobol_engine_initialize_state_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sobol_engine_scramble_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sparse_bsc_tensor_unsafe], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sparse_bsr_tensor_unsafe], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sparse_compressed_tensor_unsafe], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sparse_coo_tensor_unsafe], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sparse_csc_tensor_unsafe], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sparse_csr_tensor_unsafe], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sparse_log_softmax.Dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sparse_log_softmax.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sparse_mm.reduce], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sparse_mm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sparse_softmax.Dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sparse_softmax.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sparse_sum.dim_dtype], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sparse_sum.dtype], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sparse_sum], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_test_ambiguous_defaults.a], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_test_ambiguous_defaults.b], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_test_autograd_multiple_dispatch.ntonly], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_test_check_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_test_serialization_subcmul], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_test_string_default], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_thnn_differentiable_gru_cell_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_thnn_differentiable_lstm_cell_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_thnn_fused_lstm_cell_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_to_cpu], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_unpack_dual], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_upsample_bicubic2d_aa.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_upsample_bilinear2d_aa.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_upsample_nearest_exact1d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_upsample_nearest_exact2d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_upsample_nearest_exact3d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_use_cudnn_rnn_flatten_weight], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_validate_sparse_bsc_tensor_args], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_validate_sparse_bsr_tensor_args], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_validate_sparse_compressed_tensor_args], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_validate_sparse_coo_tensor_args], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_validate_sparse_csc_tensor_args], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_validate_sparse_csr_tensor_args], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_version], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_weight_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_weight_norm_differentiable_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_wrapped_linear_prepack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_wrapped_quantized_linear_prepacked], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::absolute.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::absolute], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::absolute_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::adaptive_avg_pool1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::adaptive_avg_pool2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::adaptive_avg_pool3d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::adaptive_max_pool1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::adjoint], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::affine_grid_generator_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::align_as], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::align_tensors], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::align_to.ellipsis_idx], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::align_to], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::all.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::all.dimname_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::alpha_dropout], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::alpha_dropout_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::any.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::any.dimname_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arccos.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arccos], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arccos_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arccosh.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arccosh], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arccosh_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arcsin.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arcsin], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arcsin_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arcsinh.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arcsinh], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arcsinh_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arctan.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arctan2.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arctan2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arctan2_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arctan], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arctan_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arctanh.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arctanh], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arctanh_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::argsort.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::argsort.stable], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::argsort.stable_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::argsort], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::argwhere], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::atleast_1d.Sequence], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::atleast_1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::atleast_2d.Sequence], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::atleast_2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::atleast_3d.Sequence], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::atleast_3d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::avg_pool1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::batch_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::bilinear], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::broadcast_tensors], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::broadcast_to], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::can_cast], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cartesian_prod], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cat.names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cat.names_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cdist], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::chain_matmul.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::chain_matmul], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::chalf], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::choose_qparams_optimized], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::chunk], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::clip.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::clip.Tensor_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::clip.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::clip], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::clip_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::clip_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::coalesce], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::column_stack.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::column_stack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::combinations], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::concat.names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::concat.names_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::concat.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::concat], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::concatenate.names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::concatenate.names_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::concatenate.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::concatenate], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::conj], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::conj_physical], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::contiguous], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::conv1d.padding], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::conv1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::conv2d.padding], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::conv2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::conv3d.padding], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::conv3d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::conv_tbc_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::conv_transpose1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::conv_transpose2d.input], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::conv_transpose3d.input], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::corrcoef], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cosine_embedding_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cosine_similarity], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cov], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cross.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cross], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cross_entropy_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::ctc_loss.IntList], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::ctc_loss.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cudnn_is_acceptable], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cummax.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cummax.dimname_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cummaxmin_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cummin.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cummin.dimname_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cumprod.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cumprod.dimname_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cumprod_.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cumprod_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cumsum.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cumsum.dimname_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cumsum_.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cumulative_trapezoid.dx], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cumulative_trapezoid.x], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::data], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::det], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::diag.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::diag], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::diagflat], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::diagonal.Dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::diff.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::diff], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::divide.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::divide.Scalar_mode], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::divide.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::divide.Tensor_mode], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::divide.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::divide.out_mode], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::divide_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::divide_.Scalar_mode], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::divide_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::divide_.Tensor_mode], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::dropout], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::dropout_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::dsplit.array], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::dsplit.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::dstack.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::dstack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::einsum], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::embedding_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::embedding_bag.padding_idx], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::embedding_bag], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::embedding_sparse_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::empty.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::expand_as], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fake_quantize_per_channel_affine], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fake_quantize_per_channel_affine_cachemask_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fake_quantize_per_tensor_affine.tensor_qparams], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fake_quantize_per_tensor_affine], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fake_quantize_per_tensor_affine_cachemask_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fbgemm_linear_fp16_weight], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fbgemm_linear_fp16_weight_fp32_activation], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fbgemm_linear_int8_weight], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fbgemm_linear_int8_weight_fp32_activation], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fbgemm_linear_quantize_weight], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fbgemm_pack_gemm_matrix_fp16], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fbgemm_pack_quantized_matrix.KN], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fbgemm_pack_quantized_matrix], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::feature_alpha_dropout], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::feature_alpha_dropout_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::feature_dropout], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::feature_dropout_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_fft.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_fft2.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_fft2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_fft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_fftn.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_fftn], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_fftshift], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_hfft.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_hfft2.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_hfft2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_hfft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_hfftn.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_hfftn], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_ifft.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_ifft2.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_ifft2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_ifft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_ifftn.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_ifftn], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_ifftshift], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_ihfft.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_ihfft2.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_ihfft2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_ihfft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_ihfftn.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_ihfftn], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_irfft.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_irfft2.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_irfft2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_irfft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_irfftn.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_irfftn], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_rfft.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_rfft2.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_rfft2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_rfft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_rfftn.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_rfftn], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fill_diagonal_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fix.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fix], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fix_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::flatten.DimnameList], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::flatten.named_out_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::flatten.using_ints], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::flatten.using_names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::flatten_dense_tensors], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fliplr], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::flipud], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::float_power.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::float_power.Scalar_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::float_power.Tensor_Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::float_power.Tensor_Scalar_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::float_power.Tensor_Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::float_power.Tensor_Tensor_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::float_power_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::float_power_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::frobenius_norm.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::frobenius_norm.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fused_moving_avg_obs_fake_quant], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::gather.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::gather.dimname_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::gather_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::ger.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::ger], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::gradient.array], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::gradient.scalararray], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::gradient.scalarint], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::gradient.scalarrayarray], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::gradient.scalarrayint], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::gradient.tensorarray], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::gradient.tensorarrayint], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::greater.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::greater.Scalar_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::greater.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::greater.Tensor_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::greater_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::greater_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::greater_equal.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::greater_equal.Scalar_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::greater_equal.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::greater_equal.Tensor_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::greater_equal_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::greater_equal_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::grid_sampler], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::group_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::gru.data], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::gru.input], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::gru_cell], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::hinge_embedding_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::histogramdd.TensorList_bins], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::histogramdd.int_bins], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::histogramdd], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::hsplit.array], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::hsplit.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::hstack.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::hstack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::imag], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::index_add.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::index_copy.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::index_copy_.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::index_fill.Dimname_Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::index_fill.Dimname_Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::index_fill_.Dimname_Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::index_fill_.Dimname_Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::index_select.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::index_select.dimname_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::index_select_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::infinitely_differentiable_gelu_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::inner.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::inner], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::instance_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::inverse.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::inverse], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::is_complex], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::is_conj], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::is_distributed], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::is_floating_point], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::is_inference], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::is_leaf], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::is_neg], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::is_nonzero], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::is_signed], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::is_vulkan_available], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::isclose], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::isfinite], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::isreal], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::istft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::item], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::kl_div], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::kron.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::kron], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::kthvalue.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::kthvalue.dimname_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::l1_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::layer_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::ldexp.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::ldexp.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::ldexp_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::less.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::less.Scalar_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::less.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::less.Tensor_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::less_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::less_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::less_equal.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::less_equal.Scalar_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::less_equal.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::less_equal.Tensor_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::less_equal_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::less_equal_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_cholesky.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_cholesky], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_cond.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_cond.p_str], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_cond.p_str_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_cond], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_det.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_det], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_diagonal], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_eigh.eigvals], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_eigh], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_eigvals], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_eigvalsh.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_eigvalsh], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_inv.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_inv], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_ldl_factor.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_ldl_factor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_lu_factor.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_lu_factor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_matmul.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_matmul], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_matrix_norm.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_matrix_norm.str_ord], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_matrix_norm.str_ord_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_matrix_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_matrix_power.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_matrix_power], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_matrix_rank.atol_rtol_float], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_matrix_rank.atol_rtol_float_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_matrix_rank.atol_rtol_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_matrix_rank.atol_rtol_tensor_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_matrix_rank.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_matrix_rank.out_tol_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_matrix_rank.tol_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_matrix_rank], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_multi_dot.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_multi_dot], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_norm.ord_str], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_norm.ord_str_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_norm.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_pinv.atol_rtol_float], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_pinv.atol_rtol_float_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_pinv.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_pinv.out_rcond_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_pinv.rcond_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_pinv], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_slogdet.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_slogdet], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_solve.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_solve], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_solve_ex.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_solve_ex], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_svd.U], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_svd], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_svdvals.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_svdvals], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_tensorinv.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_tensorinv], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_tensorsolve.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_tensorsolve], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_vander], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_vecdot.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_vecdot], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linear], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::log_sigmoid.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::log_sigmoid], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::log_softmax.Dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::log_softmax.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::logcumsumexp.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::logcumsumexp.dimname_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::logdet], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::logsumexp.names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::logsumexp.names_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::lstm.data], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::lstm.input], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::lstm_cell], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::lu_solve.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::lu_solve], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::mH], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::mT], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::margin_ranking_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::masked_select_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::matmul.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::matmul], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::matrix_H], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::matrix_exp], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::matrix_exp_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::matrix_power.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::matrix_power], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::max.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::max.names_dim_max], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::max.other], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::max.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::max_pool1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::max_pool1d_with_indices], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::max_pool2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::max_pool3d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::mean.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::mean.names_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::median.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::median.names_dim_values], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::meshgrid.indexing], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::meshgrid], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::min.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::min.names_dim_min], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::min.other], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::min.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::mish_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::mode.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::mode.dimname_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::moveaxis.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::moveaxis.intlist], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::movedim.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::movedim.intlist], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::msort.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::msort], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::multilabel_margin_loss.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::multilabel_margin_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::multiply.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::multiply.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::multiply.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::multiply_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::multiply_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nanmean.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nanmean], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nanmedian.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nanmedian.names_dim_values], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nanquantile.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nanquantile.scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nanquantile.scalar_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nanquantile], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::narrow.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::narrow], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::native_channel_shuffle], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::negative.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::negative], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::negative_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nested_to_padded_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nll_loss.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nll_loss2d.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nll_loss2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nll_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nll_loss_nd], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nonzero_numpy], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::norm.names_ScalarOpt_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::norm.names_ScalarOpt_dim_dtype], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::norm.names_dtype_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::norm.names_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::norm_except_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::not_equal.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::not_equal.Scalar_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::not_equal.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::not_equal.Tensor_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::not_equal_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::not_equal_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nuclear_norm.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nuclear_norm.dim_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nuclear_norm.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nuclear_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::numpy_T], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::one_hot], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::orgqr.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::orgqr], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::outer.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::outer], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::output_nr], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::pad], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::pad_sequence], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::pairwise_distance], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::pdist], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::pin_memory], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::pinverse], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::poisson_nll_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::positive], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::prelu], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::prod.Dimname_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::prod.dim_Dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::promote_types], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::qr.Q], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::qr], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::quantile.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::quantile.scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::quantile.scalar_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::quantile], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::quantized_gru_cell], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::quantized_lstm_cell], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::quantized_rnn_relu_cell], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::quantized_rnn_tanh_cell], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::rand.generator_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::randn.generator_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::randn.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::ravel], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::real], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::refine_names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::relu6], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::relu6_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::rename], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::rename_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::repeat_interleave.self_Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::repeat_interleave.self_int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::requires_grad_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::reshape], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::reshape_as], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::resolve_conj], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::resolve_neg], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::result_type.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::result_type.Scalar_Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::result_type.Scalar_Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::result_type.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::retain_grad], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::retains_grad], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::rms_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::rnn_relu.data], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::rnn_relu.input], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::rnn_relu_cell], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::rnn_tanh.data], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::rnn_tanh.input], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::rnn_tanh_cell], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::row_stack.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::row_stack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::rrelu], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::rrelu_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::scaled_dot_product_attention], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::scatter.dimname_src], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::scatter.dimname_value], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::scatter_add.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::select.Dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::selu], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::selu_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::set_.source_Tensor_storage_offset], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::set_data], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::silu_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::size.Dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::size.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::slogdet.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::slogdet], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::slow_conv3d.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::slow_conv3d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::smm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::softmax.Dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::softmax.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sort.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sort.dimname_stable], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sort.dimname_values], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sort.dimname_values_stable], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sparse_bsc_tensor.ccol_row_value], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sparse_bsc_tensor.ccol_row_value_size], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sparse_bsr_tensor.crow_col_value], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sparse_bsr_tensor.crow_col_value_size], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sparse_coo_tensor.indices], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sparse_coo_tensor.indices_size], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sparse_csc_tensor.ccol_row_value], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sparse_csc_tensor.ccol_row_value_size], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sparse_csr_tensor.crow_col_value], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sparse_csr_tensor.crow_col_value_size], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_digamma.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_digamma], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_erf.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_erf], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_erfc.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_erfc], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_erfinv.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_erfinv], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_exp2.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_exp2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_expit.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_expit], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_expm1.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_expm1], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_gammainc.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_gammainc], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_gammaincc.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_gammaincc], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_gammaln.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_gammaln], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_i0.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_i0], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_log1p.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_log1p], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_log_softmax], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_logit.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_logit], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_logsumexp.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_logsumexp], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_multigammaln.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_multigammaln], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_ndtr.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_ndtr], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_polygamma.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_polygamma], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_psi.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_psi], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_round.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_round], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_sinc.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_sinc], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_softmax], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_xlogy.other_scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_xlogy.other_scalar_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_xlogy.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_xlogy.self_scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_xlogy.self_scalar_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_xlogy], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::split.sizes], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::square.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::square], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::square_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::squeeze.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::squeeze_.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sspaddmm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::std.correction_names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::std.correction_names_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::std.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::std.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::std.names_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::std.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::std], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::std_mean.correction_names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::std_mean.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::std_mean.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::std_mean], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::stft.center], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::stft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::stride.Dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::stride.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::subtract.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::subtract.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::subtract.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::subtract_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::subtract_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sum.DimnameList_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sum.dim_DimnameList], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sum_to_size], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::svd.U], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::svd], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::swapaxes], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::swapaxes_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::swapdims], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::swapdims_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sym_numel], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sym_size.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sym_storage_offset], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sym_stride.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::take_along_dim.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::take_along_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::tensor_split.indices], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::tensor_split.sections], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::tensor_split.tensor_indices_or_sections], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::tensordot.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::tensordot], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::thnn_conv2d.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::thnn_conv2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::tile], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::to.device], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::to.dtype], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::to.dtype_layout], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::to.other], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::to_dense], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::to_dense_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::to_mkldnn_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::to_sparse.sparse_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::to_sparse], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::to_sparse_bsc], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::to_sparse_bsr], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::to_sparse_csc], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::to_sparse_csr], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::trace_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::transpose.Dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::trapezoid.dx], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::trapezoid.x], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::trapz.dx], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::trapz.x], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::triplet_margin_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::true_divide.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::true_divide.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::true_divide.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::true_divide_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::true_divide_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::type_as], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::unbind.Dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::unflatten.Dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::unflatten.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::unflatten_dense_tensors], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::unsafe_chunk], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::upsample_bicubic2d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::upsample_bilinear2d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::upsample_linear1d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::upsample_nearest1d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::upsample_nearest2d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::upsample_nearest3d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::upsample_trilinear3d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::value_selecting_reduction_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::vander], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::var.correction_names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::var.correction_names_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::var.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::var.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::var.names_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::var.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::var], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::var_mean.correction_names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::var_mean.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::var_mean.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::var_mean], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::view_as], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::vsplit.array], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::vsplit.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::vstack.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::vstack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::where.ScalarOther], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::where.ScalarSelf], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::where.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::where], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[c10d_functional::all_gather_into_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[c10d_functional::all_gather_into_tensor_coalesced], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[c10d_functional::all_reduce], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[c10d_functional::all_reduce_coalesced], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[c10d_functional::all_to_all_single], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[c10d_functional::broadcast], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[c10d_functional::reduce_scatter_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[c10d_functional::reduce_scatter_tensor_coalesced], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[c10d_functional::wait_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[inductor::_alloc_from_pool], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[mkldnn::_is_mkldnn_acl_supported], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[mkldnn::_is_mkldnn_bf16_supported], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[mkldnn::_is_mkldnn_fp16_supported], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[prepacked::unpack_prepacked_sizes_conv2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[prepacked::unpack_prepacked_sizes_linear], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[profiler::_record_function_enter], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[profiler::_record_function_enter_new], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[profiler::_record_function_exit._RecordFunction], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[profiler::_record_function_exit], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv1d_unpack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv2d_dilation], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv2d_groups], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv2d_output_padding], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv2d_padding], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv2d_stride], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv2d_transpose], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv2d_unpack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv2d_unpack_sizes], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv3d_dilation], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv3d_groups], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv3d_output_padding], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv3d_padding], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv3d_stride], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv3d_transpose], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv3d_unpack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv_transpose1d_unpack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv_transpose2d_dilation], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv_transpose2d_groups], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv_transpose2d_output_padding], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv_transpose2d_padding], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv_transpose2d_stride], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv_transpose2d_transpose], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv_transpose2d_unpack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv_transpose3d_dilation], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv_transpose3d_groups], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv_transpose3d_output_padding], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv_transpose3d_padding], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv_transpose3d_stride], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv_transpose3d_transpose], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv_transpose3d_unpack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv_unpack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::embedding_bag_unpack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::linear_unpack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::linear_unpack_fp16], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::make_quantized_cell_params_fp16], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[sparse::qlinear_unpack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::__and__.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::__and__.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::__iand__.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::__iand__.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::__ior__.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::__ior__.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::__ixor__.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::__ixor__.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::__or__.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::__or__.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::__xor__.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::__xor__.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::_batch_norm_impl_index], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::_convolution_double_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::_convolution_mode], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::_fused_rms_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::_has_compatible_shallow_copy_type], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::_lu_with_info], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::_pad_circular], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::_scaled_dot_product_attention_math], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::_test_check_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::_upsample_bicubic2d_aa.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::_upsample_bilinear2d_aa.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::absolute], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::absolute_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::adaptive_avg_pool1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::adaptive_avg_pool2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::adaptive_avg_pool3d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::adaptive_max_pool1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::adjoint], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::alias_copy], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::arccos], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::arccos_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::arccosh], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::arccosh_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::arcsin], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::arcsin_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::arcsinh], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::arcsinh_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::arctan2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::arctan2_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::arctan], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::arctan_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::arctanh], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::arctanh_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::argsort.stable], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::argsort], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::as_strided_copy], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::atleast_1d.Sequence], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::atleast_1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::atleast_2d.Sequence], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::atleast_2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::atleast_3d.Sequence], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::atleast_3d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::avg_pool1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::batch_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::broadcast_tensors], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::broadcast_to], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::cartesian_prod], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::cdist], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::chunk], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::clip.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::clip], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::combinations], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::concat], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::concatenate], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::conj_physical], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::contiguous], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::conv1d.padding], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::conv1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::conv2d.padding], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::conv2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::conv3d.padding], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::conv3d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::conv_transpose1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::conv_transpose2d.input], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::conv_transpose3d.input], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::corrcoef], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::cosine_embedding_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::cosine_similarity], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::cov], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::cross], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::cross_entropy_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::cumprod_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::cumulative_trapezoid.dx], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::cumulative_trapezoid.x], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::det], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::diag], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::diagonal_copy], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::diff], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::divide.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::divide.Scalar_mode], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::divide.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::divide.Tensor_mode], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::divide_.Scalar_mode], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::divide_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::divide_.Tensor_mode], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::dropout], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::dsplit.array], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::dsplit.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::dstack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::einsum], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::embedding_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::expand_as], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_fft2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_fft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_fftn], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_fftshift], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_hfft2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_hfft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_hfftn], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_ifft2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_ifft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_ifftn], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_ifftshift], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_ihfft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_irfft2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_irfft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_irfftn], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_rfft2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_rfft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_rfftn], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fix], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::flatten.using_ints], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fliplr], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::flipud], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::float_power.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::float_power.Tensor_Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::float_power.Tensor_Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::frobenius_norm.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::gather_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::ger], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::gradient.array], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::gradient.scalararray], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::gradient.scalarint], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::gradient.scalarrayarray], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::gradient.scalarrayint], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::gradient.tensorarray], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::gradient.tensorarrayint], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::greater.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::greater.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::greater_equal.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::greater_equal.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::grid_sampler], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::group_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::hinge_embedding_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::hsplit.array], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::hsplit.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::hstack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::imag], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::index_select_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::inner], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::instance_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::inverse], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::is_complex], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::is_same_size], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::isfinite], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::isreal], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::kron], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::l1_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::layer_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::ldexp.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::less.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::less.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::less_equal.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::less_equal.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_cholesky], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_cond], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_det], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_diagonal], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_eigh], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_eigvals], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_eigvalsh], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_inv], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_ldl_factor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_lu_factor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_matmul], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_matrix_norm.str_ord], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_matrix_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_matrix_power], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_matrix_rank.atol_rtol_float], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_matrix_rank.atol_rtol_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_multi_dot], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_norm.ord_str], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_pinv.atol_rtol_float], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_pinv], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_solve], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_solve_ex], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_svd], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_svdvals], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_tensorinv], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_vander], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_vecdot], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linear], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::log_sigmoid], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::log_softmax.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::logdet], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::mH], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::mT], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::matmul], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::matrix_H], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::matrix_exp], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::matrix_power], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::max.other], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::max_pool1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::max_pool1d_with_indices], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::max_pool2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::max_pool3d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::meshgrid.indexing], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::meshgrid], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::min.other], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::moveaxis.intlist], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::movedim.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::movedim.intlist], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::msort], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::multiply.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::multiply.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::multiply_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::multiply_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::nanmean], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::narrow], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::negative], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::nll_loss2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::nll_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::nll_loss_nd], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::not_equal.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::not_equal.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::nuclear_norm.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::nuclear_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::numpy_T], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::orgqr], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::outer], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::pad], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::pairwise_distance], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::pinverse], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::poisson_nll_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::positive], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::prelu], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::qr], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::ravel], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::real], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::relu6], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::relu6_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::repeat_interleave.self_Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::repeat_interleave.self_int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::reshape], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::reshape_as], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::resolve_conj], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::resolve_neg], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::result_type.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::result_type.Scalar_Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::result_type.Scalar_Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::result_type.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::rms_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::row_stack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::rrelu], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::rrelu_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::scaled_dot_product_attention], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::selu], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::selu_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::size.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::slogdet], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::softmax.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_digamma], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_erf], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_erfc], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_erfinv], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_exp2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_expit], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_expm1], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_gammainc], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_gammaincc], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_gammaln], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_i0], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_log1p], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_log_softmax], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_logit], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_logsumexp], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_multigammaln], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_ndtr], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_polygamma], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_psi], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_round], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_sinc], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_softmax], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_xlogy.other_scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_xlogy.self_scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_xlogy], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::split.sizes], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::square], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::std.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::std], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::std_mean.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::std_mean], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::subtract.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::sum_to_size], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::svd], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::swapaxes], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::swapaxes_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::swapdims], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::swapdims_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::take_along_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::tensor_split.indices], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::tensor_split.sections], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::tensordot], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::tile], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::to.device], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::to.dtype], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::to.dtype_layout], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::to.other], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::trapezoid.dx], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::trapezoid.x], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::trapz.dx], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::trapz.x], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::true_divide.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::true_divide.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::true_divide_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::true_divide_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::type_as], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::unflatten.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::unfold_copy], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::unsafe_chunk], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::upsample_bicubic2d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::upsample_bilinear2d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::upsample_linear1d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::upsample_nearest1d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::upsample_nearest2d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::upsample_nearest3d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::upsample_trilinear3d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::value_selecting_reduction_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::var.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::var], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::var_mean.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::var_mean], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::view_as], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::vsplit.array], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::vsplit.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::vstack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::where.ScalarOther], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::where.ScalarSelf], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::where.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::absolute], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::absolute_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::adaptive_avg_pool1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::adaptive_avg_pool2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::adaptive_avg_pool3d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::adaptive_max_pool1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::adjoint], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::affine_grid_generator_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::align_as], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::align_tensors], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::align_to.ellipsis_idx], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::align_to], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::alpha_dropout], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::alpha_dropout_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::arccos], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::arccos_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::arccosh], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::arccosh_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::arcsin], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::arcsin_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::arcsinh], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::arcsinh_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::arctan2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::arctan2_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::arctan], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::arctan_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::arctanh], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::arctanh_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::argsort.stable], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::argsort], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::argwhere], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::atleast_1d.Sequence], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::atleast_1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::atleast_2d.Sequence], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::atleast_2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::atleast_3d.Sequence], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::atleast_3d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::avg_pool1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::batch_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::bilinear], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::broadcast_tensors], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::broadcast_to], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::can_cast], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::cartesian_prod], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::cat.names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::cdist], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::chain_matmul], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::chalf], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::choose_qparams_optimized], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::chunk], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::clip.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::clip], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::clip_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::clip_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::coalesce], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::column_stack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::combinations], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::concat.names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::concat], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::concatenate.names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::concatenate], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::conj], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::conj_physical], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::contiguous], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::conv1d.padding], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::conv1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::conv2d.padding], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::conv2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::conv3d.padding], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::conv3d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::conv_tbc_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::conv_transpose1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::conv_transpose2d.input], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::conv_transpose3d.input], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::corrcoef], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::cosine_embedding_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::cosine_similarity], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::cov], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::cross], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::cross_entropy_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::ctc_loss.IntList], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::ctc_loss.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::cudnn_is_acceptable], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::cummaxmin_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::cumprod_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::cumulative_trapezoid.dx], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::cumulative_trapezoid.x], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::data], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::det], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::diag], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::diagflat], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::diff], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::divide.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::divide.Scalar_mode], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::divide.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::divide.Tensor_mode], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::divide.out_mode], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::divide_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::divide_.Scalar_mode], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::divide_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::divide_.Tensor_mode], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::dropout], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::dropout_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::dsplit.array], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::dsplit.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::dstack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::einsum], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::embedding_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::embedding_bag.padding_idx], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::embedding_bag], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::expand_as], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::feature_alpha_dropout], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::feature_alpha_dropout_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::feature_dropout], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::feature_dropout_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_fft2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_fft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_fftn], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_fftshift], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_hfft2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_hfft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_hfftn], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_ifft2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_ifft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_ifftn], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_ifftshift], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_ihfft2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_ihfft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_ihfftn], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_irfft2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_irfft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_irfftn], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_rfft2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_rfft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_rfftn], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fill_diagonal_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fix], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fix_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::flatten.named_out_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::flatten.using_ints], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::flatten.using_names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::flatten_dense_tensors], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fliplr], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::flipud], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::float_power.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::float_power.Tensor_Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::float_power.Tensor_Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::float_power_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::float_power_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::frobenius_norm.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fused_moving_avg_obs_fake_quant], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::gather_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::ger], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::gradient.array], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::gradient.scalararray], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::gradient.scalarint], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::gradient.scalarrayarray], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::gradient.scalarrayint], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::gradient.tensorarray], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::gradient.tensorarrayint], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::greater.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::greater.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::greater_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::greater_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::greater_equal.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::greater_equal.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::greater_equal_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::greater_equal_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::grid_sampler], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::group_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::gru.data], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::gru.input], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::gru_cell], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::hinge_embedding_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::histogramdd.TensorList_bins], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::histogramdd.int_bins], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::histogramdd], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::hsplit.array], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::hsplit.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::hstack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::imag], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::index_select_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::infinitely_differentiable_gelu_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::inner], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::instance_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::inverse], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::isclose], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::isfinite], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::isreal], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::istft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::item], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::kl_div], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::kron], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::l1_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::layer_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::ldexp.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::ldexp_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::less.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::less.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::less_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::less_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::less_equal.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::less_equal.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::less_equal_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::less_equal_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_cholesky], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_cond.p_str], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_cond], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_det], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_diagonal], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_eigh.eigvals], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_eigh], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_eigvals], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_eigvalsh], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_inv], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_ldl_factor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_lu_factor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_matmul], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_matrix_norm.str_ord], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_matrix_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_matrix_power], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_matrix_rank.atol_rtol_float], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_matrix_rank.atol_rtol_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_matrix_rank.out_tol_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_matrix_rank.tol_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_matrix_rank], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_multi_dot], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_norm.ord_str], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_pinv.atol_rtol_float], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_pinv.out_rcond_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_pinv.rcond_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_pinv], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_slogdet], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_solve], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_solve_ex], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_svd.U], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_svd], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_svdvals], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_tensorinv], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_tensorsolve], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_vander], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_vecdot], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linear], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::log_sigmoid], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::log_softmax.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::logdet], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::logsumexp.names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::lstm.data], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::lstm.input], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::lstm_cell], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::lu_solve], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::mH], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::mT], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::margin_ranking_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::masked_select_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::matmul], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::matrix_H], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::matrix_exp], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::matrix_exp_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::matrix_power], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::max.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::max.names_dim_max], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::max.other], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::max_pool1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::max_pool1d_with_indices], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::max_pool2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::max_pool3d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::mean.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::median.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::median.names_dim_values], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::meshgrid.indexing], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::meshgrid], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::min.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::min.names_dim_min], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::min.other], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::mish_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::moveaxis.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::moveaxis.intlist], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::movedim.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::movedim.intlist], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::msort], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::multilabel_margin_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::multiply.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::multiply.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::multiply_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::multiply_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::nanmean], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::nanmedian.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::nanmedian.names_dim_values], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::nanquantile.scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::nanquantile], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::narrow.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::narrow], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::native_channel_shuffle], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::negative], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::negative_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::nested_to_padded_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::nll_loss2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::nll_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::nll_loss_nd], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::nonzero_numpy], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::norm.names_ScalarOpt_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::norm.names_ScalarOpt_dim_dtype], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::norm_except_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::not_equal.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::not_equal.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::not_equal_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::not_equal_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::nuclear_norm.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::nuclear_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::numpy_T], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::one_hot], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::orgqr], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::outer], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::output_nr], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::pad], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::pad_sequence], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::pairwise_distance], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::pdist], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::pin_memory], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::pinverse], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::poisson_nll_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::positive], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::prelu], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::promote_types], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::qr.Q], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::qr], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::quantile.scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::quantile], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::ravel], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::real], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::refine_names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::relu6], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::relu6_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::rename], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::rename_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::repeat_interleave.self_Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::repeat_interleave.self_int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::requires_grad_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::reshape], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::reshape_as], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::resolve_conj], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::resolve_neg], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::result_type.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::result_type.Scalar_Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::result_type.Scalar_Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::result_type.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::retain_grad], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::retains_grad], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::rms_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::rnn_relu.data], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::rnn_relu.input], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::rnn_relu_cell], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::rnn_tanh.data], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::rnn_tanh.input], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::rnn_tanh_cell], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::row_stack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::rrelu], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::rrelu_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::scaled_dot_product_attention], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::selu], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::selu_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::set_.source_Tensor_storage_offset], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::set_data], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::silu_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::size.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::slogdet], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::slow_conv3d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::smm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::softmax.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_digamma], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_erf], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_erfc], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_erfinv], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_exp2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_expit], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_expm1], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_gammainc], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_gammaincc], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_gammaln], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_i0], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_log1p], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_log_softmax], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_logit], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_logsumexp], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_multigammaln], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_ndtr], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_polygamma], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_psi], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_round], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_sinc], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_softmax], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_xlogy.other_scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_xlogy.self_scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_xlogy], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::split.sizes], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::square], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::square_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::sspaddmm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::std.correction_names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::std.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::std.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::std], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::std_mean.correction_names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::std_mean.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::std_mean.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::std_mean], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::stft.center], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::stft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::stride.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::subtract.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::subtract.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::subtract_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::subtract_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::sum_to_size], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::svd.U], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::svd], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::swapaxes], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::swapaxes_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::swapdims], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::swapdims_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::sym_numel], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::sym_size.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::sym_storage_offset], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::sym_stride.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::take_along_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::tensor_split.indices], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::tensor_split.sections], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::tensor_split.tensor_indices_or_sections], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::tensordot], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::thnn_conv2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::tile], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::to.device], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::to.dtype], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::to.dtype_layout], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::to.other], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::to_dense], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::to_dense_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::to_mkldnn_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::trace_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::trapezoid.dx], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::trapezoid.x], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::trapz.dx], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::trapz.x], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::triplet_margin_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::true_divide.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::true_divide.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::true_divide_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::true_divide_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::type_as], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::unflatten.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::unflatten_dense_tensors], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::unsafe_chunk], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::upsample_bicubic2d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::upsample_bilinear2d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::upsample_linear1d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::upsample_nearest1d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::upsample_nearest2d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::upsample_nearest3d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::upsample_trilinear3d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::value_selecting_reduction_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::vander], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::var.correction_names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::var.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::var.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::var], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::var_mean.correction_names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::var_mean.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::var_mean.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::var_mean], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::view_as], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::vsplit.array], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::vsplit.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::vstack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::where.ScalarOther], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::where.ScalarSelf], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::where.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::where] 2025-08-14T23:35:44.8985004Z 2025-08-14T23:35:44.9405883Z 2025-08-14T23:35:44.9406834Z nn/test_parametrization 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_parametrization_1.1_991b4b3a48847f44_.log 2025-08-14T23:35:44.9432333Z Running 58 items in this shard: test/nn/test_parametrization.py::TestNNParametrization::test_caching_parametrization_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_caching_parametrization_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_caching_parametrization_with_transfer_parametrizations_and_params_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_caching_parametrization_with_transfer_parametrizations_and_params_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_deepcopy_after_parametrization_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_deepcopy_after_parametrization_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_errors_parametrized_tensor_parametrization_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_errors_parametrized_tensor_parametrization_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_errors_unparametrized_tensor_parametrization_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_errors_unparametrized_tensor_parametrization_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_initialization_parametrization_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_initialization_parametrization_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_multiple_inputs_parametrization_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_multiple_inputs_parametrization_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_new_spectral_norm_dim_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_new_spectral_norm_dim_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_new_spectral_norm_forward_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_new_spectral_norm_forward_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_new_spectral_norm_load_state_dict_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_new_spectral_norm_load_state_dict_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_new_spectral_norm_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_new_spectral_norm_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_new_spectral_norm_value_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_new_spectral_norm_value_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_orthogonal_errors_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_orthogonal_errors_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_orthogonal_parametrization_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_orthogonal_parametrization_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_parametrization_same_training_mode_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_parametrization_same_training_mode_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_register_and_remove_buffer_parametrization_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_register_and_remove_buffer_parametrization_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_register_and_remove_nested_parametrization_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_register_and_remove_nested_parametrization_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_register_and_remove_parametrization_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_register_and_remove_parametrization_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_register_parametrization_no_grad, test/nn/test_parametrization.py::TestNNParametrization::test_serialization_parametrization_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_serialization_parametrization_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_transfer_parametrizations_and_params_many_to_one_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_transfer_parametrizations_and_params_many_to_one_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_transfer_parametrizations_and_params_right_inverse_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_transfer_parametrizations_and_params_right_inverse_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_transfer_parametrizations_and_params_single_param_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_transfer_parametrizations_and_params_single_param_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_transfer_parametrizations_and_params_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_transfer_parametrizations_and_params_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_type_before_parametrizations_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_type_before_parametrizations_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_weight_norm_deepcopy_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_weight_norm_deepcopy_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_weight_norm_pickle_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_weight_norm_pickle_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_weight_norm_state_dict_compat_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_weight_norm_state_dict_compat_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_wrapper_subclass_parametrization_swap_True, test/nn/test_parametrization.py::TestNNParametrizationDeviceCPU::test_weight_norm_parametrization_swap_False_cpu, test/nn/test_parametrization.py::TestNNParametrizationDeviceCPU::test_weight_norm_parametrization_swap_True_cpu 2025-08-14T23:35:44.9457821Z 2025-08-14T23:35:50.6084218Z Running nn/test_pruning 1/1 ... [2025-08-14 23:35:50.607960] 2025-08-14T23:35:50.6084669Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:35:50.6091044Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'nn/test_pruning.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-14 23:35:50.608558] 2025-08-14T23:35:50.8093491Z Running functorch/test_dims 1/1 ... [2025-08-14 23:35:50.808711] 2025-08-14T23:35:50.8094356Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:35:50.8100564Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_dims.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-14 23:35:50.809854] 2025-08-14T23:35:55.8153301Z 2025-08-14T23:35:55.8154536Z profiler/test_profiler 1/1 was successful, full logs can be found in artifacts with path test/test-reports/profiler.test_profiler_1.1_4205dafb82318496_.log 2025-08-14T23:35:55.8177044Z Running 70 items in this shard: test/profiler/test_profiler.py::TestProfilerCUDA::test_cudagraph_profiling_workaround, test/profiler/test_profiler.py::TestProfilerCUDA::test_custom_module_input_op_ids, test/profiler/test_profiler.py::TestProfilerCUDA::test_mem_leak, test/profiler/test_profiler.py::TestProfilerITT::test_custom_module_input_op_ids, test/profiler/test_profiler.py::TestProfiler::test_basic_chrome_trace, test/profiler/test_profiler.py::TestProfiler::test_basic_profile, test/profiler/test_profiler.py::TestProfiler::test_concrete_inputs_profiling, test/profiler/test_profiler.py::TestProfiler::test_concrete_inputs_profiling_toggling, test/profiler/test_profiler.py::TestProfiler::test_cpu_annotation_overlap, test/profiler/test_profiler.py::TestProfiler::test_disable_external_correlation, test/profiler/test_profiler.py::TestProfiler::test_dynamic_toggle, test/profiler/test_profiler.py::TestProfiler::test_event_list, test/profiler/test_profiler.py::TestProfiler::test_export_stacks, test/profiler/test_profiler.py::TestProfiler::test_flops, test/profiler/test_profiler.py::TestProfiler::test_forked_process, test/profiler/test_profiler.py::TestProfiler::test_guarded_record_function_fast, test/profiler/test_profiler.py::TestProfiler::test_high_level_trace, test/profiler/test_profiler.py::TestProfiler::test_is_profiler_enabled, test/profiler/test_profiler.py::TestProfiler::test_kineto, test/profiler/test_profiler.py::TestProfiler::test_kineto_multigpu, test/profiler/test_profiler.py::TestProfiler::test_kineto_profiler_api, test/profiler/test_profiler.py::TestProfiler::test_kineto_profiler_multiple_steppers, test/profiler/test_profiler.py::TestProfiler::test_kineto_profiler_with_environment_variable, test/profiler/test_profiler.py::TestProfiler::test_lazy_build_tree, test/profiler/test_profiler.py::TestProfiler::test_memory_profiler, test/profiler/test_profiler.py::TestProfiler::test_module_hierarchy, test/profiler/test_profiler.py::TestProfiler::test_nested_tensor_with_shapes, test/profiler/test_profiler.py::TestProfiler::test_oom_tracing, test/profiler/test_profiler.py::TestProfiler::test_override_time_units, test/profiler/test_profiler.py::TestProfiler::test_profile_all_threads, test/profiler/test_profiler.py::TestProfiler::test_profiler_correlation_id, test/profiler/test_profiler.py::TestProfiler::test_profiler_cuda_sync_events, test/profiler/test_profiler.py::TestProfiler::test_profiler_disable_fwd_bwd_link, test/profiler/test_profiler.py::TestProfiler::test_profiler_fwd_bwd_link, test/profiler/test_profiler.py::TestProfiler::test_profiler_metadata, test/profiler/test_profiler.py::TestProfiler::test_profiler_op_event_args, test/profiler/test_profiler.py::TestProfiler::test_profiler_op_event_kwargs, test/profiler/test_profiler.py::TestProfiler::test_profiler_strides, test/profiler/test_profiler.py::TestProfiler::test_profiler_time_scale, test/profiler/test_profiler.py::TestProfiler::test_profiler_tracing, test/profiler/test_profiler.py::TestProfiler::test_profiler_type, test/profiler/test_profiler.py::TestProfiler::test_record_function_fast, test/profiler/test_profiler.py::TestProfiler::test_schedule_function_count, test/profiler/test_profiler.py::TestProfiler::test_skip_first_wait, test/profiler/test_profiler.py::TestProfiler::test_source, test/profiler/test_profiler.py::TestProfiler::test_tensorboard_trace_handler, test/profiler/test_profiler.py::TestProfiler::test_user_annotation, test/profiler/test_profiler.py::TestExperimentalUtils::test_bfs, test/profiler/test_profiler.py::TestExperimentalUtils::test_dfs, test/profiler/test_profiler.py::TestExperimentalUtils::test_fuzz_symbolize, test/profiler/test_profiler.py::TestExperimentalUtils::test_profiler_conv2d_bias_followed_by_batchnorm2d_pattern, test/profiler/test_profiler.py::TestExperimentalUtils::test_profiler_debug_autotuner, test/profiler/test_profiler.py::TestExperimentalUtils::test_profiler_extra_cuda_copy_pattern, test/profiler/test_profiler.py::TestExperimentalUtils::test_profiler_extra_cuda_copy_pattern_benchmark, test/profiler/test_profiler.py::TestExperimentalUtils::test_profiler_for_loop_indexing_pattern, test/profiler/test_profiler.py::TestExperimentalUtils::test_profiler_fp32_matmul_pattern, test/profiler/test_profiler.py::TestExperimentalUtils::test_profiler_grad_not_set_to_none_pattern, test/profiler/test_profiler.py::TestExperimentalUtils::test_profiler_matmul_dim_fp16_pattern, test/profiler/test_profiler.py::TestExperimentalUtils::test_profiler_name_pattern, test/profiler/test_profiler.py::TestExperimentalUtils::test_profiler_optimizer_single_tensor_pattern, test/profiler/test_profiler.py::TestExperimentalUtils::test_profiler_overload_names, test/profiler/test_profiler.py::TestExperimentalUtils::test_profiler_pattern_match_helper, test/profiler/test_profiler.py::TestExperimentalUtils::test_profiler_pattern_matcher_json_report, test/profiler/test_profiler.py::TestExperimentalUtils::test_profiler_synchronized_dataloader_pattern, test/profiler/test_profiler.py::TestExperimentalUtils::test_utils_compute_idle_time, test/profiler/test_profiler.py::TestExperimentalUtils::test_utils_compute_queue_depth, test/profiler/test_profiler.py::TestExperimentalUtils::test_utils_compute_queue_depth_when_no_cuda_events, test/profiler/test_profiler.py::TestExperimentalUtils::test_utils_compute_self_time, test/profiler/test_profiler.py::TestExperimentalUtils::test_utils_get_optimizable_events, test/profiler/test_profiler.py::TestExperimentalUtils::test_utils_intervals_overlap 2025-08-14T23:35:55.8198593Z 2025-08-14T23:35:56.0792543Z 2025-08-14T23:35:56.0793652Z nn/test_pruning 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_pruning_1.1_29483b9d99b7a72f_.log 2025-08-14T23:35:56.0803613Z Running 34 items in this shard: test/nn/test_pruning.py::TestPruningNN::test_compute_nparams_to_prune, test/nn/test_pruning.py::TestPruningNN::test_custom_from_mask_pruning, test/nn/test_pruning.py::TestPruningNN::test_global_pruning, test/nn/test_pruning.py::TestPruningNN::test_global_pruning_importance_scores, test/nn/test_pruning.py::TestPruningNN::test_identity_pruning, test/nn/test_pruning.py::TestPruningNN::test_l1_unstructured_pruning, test/nn/test_pruning.py::TestPruningNN::test_l1_unstructured_pruning_with_importance_scores, test/nn/test_pruning.py::TestPruningNN::test_ln_structured_pruning, test/nn/test_pruning.py::TestPruningNN::test_ln_structured_pruning_importance_scores, test/nn/test_pruning.py::TestPruningNN::test_multiple_pruning_calls, test/nn/test_pruning.py::TestPruningNN::test_prune, test/nn/test_pruning.py::TestPruningNN::test_prune_importance_scores, test/nn/test_pruning.py::TestPruningNN::test_prune_importance_scores_mimic_default, test/nn/test_pruning.py::TestPruningNN::test_pruning_container, test/nn/test_pruning.py::TestPruningNN::test_pruning_container_compute_mask, test/nn/test_pruning.py::TestPruningNN::test_pruning_id_consistency, test/nn/test_pruning.py::TestPruningNN::test_pruning_rollback, test/nn/test_pruning.py::TestPruningNN::test_pruning_serialization_model, test/nn/test_pruning.py::TestPruningNN::test_pruning_serialization_state_dict, test/nn/test_pruning.py::TestPruningNN::test_random_pruning, test/nn/test_pruning.py::TestPruningNN::test_random_pruning_0perc, test/nn/test_pruning.py::TestPruningNN::test_random_pruning_forward, test/nn/test_pruning.py::TestPruningNN::test_random_pruning_new_weight, test/nn/test_pruning.py::TestPruningNN::test_random_pruning_orig, test/nn/test_pruning.py::TestPruningNN::test_random_pruning_pickle, test/nn/test_pruning.py::TestPruningNN::test_random_pruning_sizes, test/nn/test_pruning.py::TestPruningNN::test_random_structured_pruning_amount, test/nn/test_pruning.py::TestPruningNN::test_remove_pruning, test/nn/test_pruning.py::TestPruningNN::test_remove_pruning_exception, test/nn/test_pruning.py::TestPruningNN::test_remove_pruning_forward, test/nn/test_pruning.py::TestPruningNN::test_rnn_pruning, test/nn/test_pruning.py::TestPruningNN::test_unstructured_pruning_same_magnitude, test/nn/test_pruning.py::TestPruningNN::test_validate_pruning_amount, test/nn/test_pruning.py::TestPruningNN::test_validate_pruning_amount_init 2025-08-14T23:35:56.0812709Z 2025-08-14T23:36:01.2855133Z Running test_itt 1/1 ... [2025-08-14 23:36:01.285340] 2025-08-14T23:36:01.2855576Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:36:01.2861701Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_itt.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-14 23:36:01.285378] 2025-08-14T23:36:01.4438833Z Running torch_np/numpy_tests/core/test_multiarray 1/1 ... [2025-08-14 23:36:01.433785] 2025-08-14T23:36:01.4439407Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:36:01.4446523Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/test_multiarray.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-14 23:36:01.444421] 2025-08-14T23:36:06.2143088Z 2025-08-14T23:36:06.2145101Z test_itt 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_itt_1.1_065766fe73c8c637_.log 2025-08-14T23:36:06.2145905Z Running 1 items in this shard: test/test_itt.py::TestItt::test_itt 2025-08-14T23:36:06.2146241Z 2025-08-14T23:36:11.3667729Z Running functorch/test_ops 2/8 ... [2025-08-14 23:36:11.366527] 2025-08-14T23:36:11.3668209Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:36:11.3674607Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ops.py', '-m', 'not serial', '--shard-id=2', '--num-shards=8', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:36:11.366527] 2025-08-14T23:36:40.4767825Z 2025-08-14T23:36:40.4769835Z torch_np/numpy_tests/core/test_multiarray 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_multiarray_1.1_5e640bd43cf3a876_.log 2025-08-14T23:36:40.5134270Z Running 864 items in this shard: test/torch_np/numpy_tests/core/test_multiarray.py::TestFlag::test_otherflags, test/torch_np/numpy_tests/core/test_multiarray.py::TestFlag::test_readonly_flag_protocols_flag__warn_on_write_flag_value_True_writeable_False, test/torch_np/numpy_tests/core/test_multiarray.py::TestFlag::test_readonly_flag_protocols_flag_writeable_flag_value_False_writeable_False, test/torch_np/numpy_tests/core/test_multiarray.py::TestFlag::test_readonly_flag_protocols_flag_writeable_flag_value_True_writeable_True, test/torch_np/numpy_tests/core/test_multiarray.py::TestFlag::test_string_align, test/torch_np/numpy_tests/core/test_multiarray.py::TestFlag::test_void_align, test/torch_np/numpy_tests/core/test_multiarray.py::TestFlag::test_warnonwrite, test/torch_np/numpy_tests/core/test_multiarray.py::TestFlag::test_writeable, test/torch_np/numpy_tests/core/test_multiarray.py::TestFlag::test_writeable_any_base, test/torch_np/numpy_tests/core/test_multiarray.py::TestFlag::test_writeable_from_buffer, test/torch_np/numpy_tests/core/test_multiarray.py::TestFlag::test_writeable_from_readonly, test/torch_np/numpy_tests/core/test_multiarray.py::TestFlag::test_writeable_pickle, test/torch_np/numpy_tests/core/test_multiarray.py::TestHash::test_int, test/torch_np/numpy_tests/core/test_multiarray.py::TestAttributes::test_attributes, test/torch_np/numpy_tests/core/test_multiarray.py::TestAttributes::test_attributes_2, test/torch_np/numpy_tests/core/test_multiarray.py::TestAttributes::test_dtypeattr, test/torch_np/numpy_tests/core/test_multiarray.py::TestAttributes::test_fill, test/torch_np/numpy_tests/core/test_multiarray.py::TestAttributes::test_fill_max_uint64, test/torch_np/numpy_tests/core/test_multiarray.py::TestAttributes::test_fill_readonly, test/torch_np/numpy_tests/core/test_multiarray.py::TestAttributes::test_fill_struct_array, test/torch_np/numpy_tests/core/test_multiarray.py::TestAttributes::test_set_stridesattr, test/torch_np/numpy_tests/core/test_multiarray.py::TestAttributes::test_stridesattr, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayConstruction::test_0d_array_shape, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayConstruction::test_array, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayConstruction::test_array_as_keyword_array, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayConstruction::test_array_as_keyword_asanyarray, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayConstruction::test_array_as_keyword_asarray, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayConstruction::test_array_as_keyword_ascontiguousarray, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayConstruction::test_array_as_keyword_asfortranarray, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayConstruction::test_array_cont, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayConstruction::test_array_copy_false, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayConstruction::test_array_copy_false_2, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayConstruction::test_array_copy_true, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayConstruction::test_array_copy_true_2, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayConstruction::test_array_empty, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayConstruction::test_array_object, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayConstruction::test_bad_arguments_error_array, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayConstruction::test_bad_arguments_error_asanyarray, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayConstruction::test_bad_arguments_error_asarray, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayConstruction::test_bad_arguments_error_ascontiguousarray, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayConstruction::test_bad_arguments_error_asfortranarray, test/torch_np/numpy_tests/core/test_multiarray.py::TestAssignment::test_assignment_broadcasting, test/torch_np/numpy_tests/core/test_multiarray.py::TestAssignment::test_assignment_errors, test/torch_np/numpy_tests/core/test_multiarray.py::TestAssignment::test_cast_to_string, test/torch_np/numpy_tests/core/test_multiarray.py::TestAssignment::test_longdouble_assignment, test/torch_np/numpy_tests/core/test_multiarray.py::TestAssignment::test_stringlike_empty_list, test/torch_np/numpy_tests/core/test_multiarray.py::TestAssignment::test_unicode_assignment, test/torch_np/numpy_tests/core/test_multiarray.py::TestDtypedescr::test_construction, test/torch_np/numpy_tests/core/test_multiarray.py::TestScalarIndexing::test_ellipsis_subscript, test/torch_np/numpy_tests/core/test_multiarray.py::TestScalarIndexing::test_empty_subscript, test/torch_np/numpy_tests/core/test_multiarray.py::TestScalarIndexing::test_invalid_newaxis, test/torch_np/numpy_tests/core/test_multiarray.py::TestScalarIndexing::test_invalid_subscript, test/torch_np/numpy_tests/core/test_multiarray.py::TestScalarIndexing::test_invalid_subscript_assignment, test/torch_np/numpy_tests/core/test_multiarray.py::TestScalarIndexing::test_newaxis, test/torch_np/numpy_tests/core/test_multiarray.py::TestScalarIndexing::test_overlapping_assignment, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_array_of_ragged_array, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_array_too_big, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_deep_nonragged_object, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_empty_unicode, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_failed_len_sequence, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_false_len_iterable, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_false_len_sequence, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_from_attribute, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_from_string, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_malloc_fails, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_no_len_object_type, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_non_sequence_sequence, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_object_initialized_to_None_dtype0_function0, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_object_initialized_to_None_dtype0_function1, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_object_initialized_to_None_dtype0_function2, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_object_initialized_to_None_dtype_(2,3)O_function0, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_object_initialized_to_None_dtype_(2,3)O_function1, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_object_initialized_to_None_dtype_(2,3)O_function2, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_object_initialized_to_None_dtype_O,(3)O_function0, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_object_initialized_to_None_dtype_O,(3)O_function1, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_object_initialized_to_None_dtype_O,(3)O_function2, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_object_initialized_to_None_dtype_O,O_function0, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_object_initialized_to_None_dtype_O,O_function1, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_object_initialized_to_None_dtype_O,O_function2, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_ragged_ndim_object, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_ragged_shape_object, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_sequence_non_homogeneous, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_structured_void_promotion_arr, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_structured_void_promotion_scalar, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_too_big_error, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_void, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_zeros, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_zeros_big, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_zeros_like_like_zeros, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_zeros_obj, test/torch_np/numpy_tests/core/test_multiarray.py::TestCreation::test_zeros_obj_obj, test/torch_np/numpy_tests/core/test_multiarray.py::TestBool::test_cast_from_bytes, test/torch_np/numpy_tests/core/test_multiarray.py::TestBool::test_cast_from_unicode, test/torch_np/numpy_tests/core/test_multiarray.py::TestBool::test_cast_from_void, test/torch_np/numpy_tests/core/test_multiarray.py::TestBool::test_count_nonzero, test/torch_np/numpy_tests/core/test_multiarray.py::TestBool::test_count_nonzero_all, test/torch_np/numpy_tests/core/test_multiarray.py::TestBool::test_count_nonzero_unaligned, test/torch_np/numpy_tests/core/test_multiarray.py::TestBool::test_sum, test/torch_np/numpy_tests/core/test_multiarray.py::TestBool::test_sum_2, test/torch_np/numpy_tests/core/test_multiarray.py::TestBool::test_test_interning, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test__complex__, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test__complex__should_not_work, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test__deepcopy___dtype0, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_all_where, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_any_where, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_argpartition_empty_array_kth_dtype_B, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_argpartition_empty_array_kth_dtype_b, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_argpartition_empty_array_kth_dtype_h, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_argpartition_empty_array_kth_dtype_i, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_argpartition_empty_array_kth_dtype_l, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_argpartition_gh5524_kth_dtype_B, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_argpartition_gh5524_kth_dtype_b, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_argpartition_gh5524_kth_dtype_h, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_argpartition_gh5524_kth_dtype_i, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_argpartition_gh5524_kth_dtype_l, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_argpartition_integer, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_argpartition_out_of_range_dtype_?, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_argpartition_out_of_range_dtype_B, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_argpartition_out_of_range_dtype_D, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_argpartition_out_of_range_dtype_F, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_argpartition_out_of_range_dtype_b, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_argpartition_out_of_range_dtype_d, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_argpartition_out_of_range_dtype_e, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_argpartition_out_of_range_dtype_f, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_argpartition_out_of_range_dtype_h, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_argpartition_out_of_range_dtype_i, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_argpartition_out_of_range_dtype_l, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_argsort, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_argsort_axis, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_argsort_complex, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_arr_mult_2_func0, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_arr_mult_2_func1, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_arr_mult_func0, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_arr_mult_func1, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_choose, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_choose_2, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_compress, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_conjugate, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_conjugate_out, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_copy, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_diagonal, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_diagonal_memleak, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_diagonal_view_notwriteable, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_dot, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_dot_out_mem_overlap, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_flatten, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_matmul_out, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_no_dgemv_2_func0_dtype_D, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_no_dgemv_2_func0_dtype_F, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_no_dgemv_2_func0_dtype_d, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_no_dgemv_2_func0_dtype_f, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_no_dgemv_2_func0_dtype_i, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_no_dgemv_2_func1_dtype_D, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_no_dgemv_2_func1_dtype_F, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_no_dgemv_2_func1_dtype_d, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_no_dgemv_2_func1_dtype_f, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_no_dgemv_2_func1_dtype_i, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_no_dgemv_func0_dtype_D, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_no_dgemv_func0_dtype_F, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_no_dgemv_func0_dtype_d, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_no_dgemv_func0_dtype_f, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_no_dgemv_func0_dtype_i, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_no_dgemv_func1_dtype_D, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_no_dgemv_func1_dtype_F, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_no_dgemv_func1_dtype_d, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_no_dgemv_func1_dtype_f, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_no_dgemv_func1_dtype_i, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_partition, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_partition_empty_array_kth_dtype_B, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_partition_empty_array_kth_dtype_b, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_partition_empty_array_kth_dtype_h, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_partition_empty_array_kth_dtype_i, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_partition_empty_array_kth_dtype_l, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_partition_fuzz, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_partition_integer, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_partition_iterative, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_partition_out_of_range_dtype_?, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_partition_out_of_range_dtype_B, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_partition_out_of_range_dtype_D, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_partition_out_of_range_dtype_F, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_partition_out_of_range_dtype_b, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_partition_out_of_range_dtype_d, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_partition_out_of_range_dtype_e, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_partition_out_of_range_dtype_f, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_partition_out_of_range_dtype_h, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_partition_out_of_range_dtype_i, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_partition_out_of_range_dtype_l, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_prod, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_put, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_ravel, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_repeat, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_reshape, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_round, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_searchsorted_complex, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_searchsorted_floats_default_dtype, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_searchsorted_floats_f16, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_searchsorted_floats_f32, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_searchsorted_n_elements, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_searchsorted_resetting, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_searchsorted_type_specific, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_searchsorted_type_specific_2, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_searchsorted_unaligned_array, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_searchsorted_with_invalid_sorter, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_searchsorted_with_sorter, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_size_zero_memleak, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_sort, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_sort_axis, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_sort_complex_dtype0_part_imag, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_sort_complex_dtype0_part_real, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_sort_complex_dtype1_part_imag, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_sort_complex_dtype1_part_real, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_sort_complex_nans, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_sort_degraded, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_sort_signed_dtype0, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_sort_signed_dtype1, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_sort_signed_dtype2, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_sort_signed_dtype3, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_sort_signed_dtype4, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_sort_signed_dtype5, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_sort_signed_dtype6, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_sort_size_0, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_sort_unsigned_dtype0, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_sort_unsigned_dtype1, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_sort_unsigned_dtype2, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_sort_unsigned_dtype3, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_squeeze, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_swapaxes, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_trace, test/torch_np/numpy_tests/core/test_multiarray.py::TestMethods::test_transpose, test/torch_np/numpy_tests/core/test_multiarray.py::TestCequenceMethods::test_array_contains, test/torch_np/numpy_tests/core/test_multiarray.py::TestBinop::test_inplace, test/torch_np/numpy_tests/core/test_multiarray.py::TestSubscripting::test_test_zero_rank, test/torch_np/numpy_tests/core/test_multiarray.py::TestFancyIndexing::test_assign_mask, test/torch_np/numpy_tests/core/test_multiarray.py::TestFancyIndexing::test_assign_mask2, test/torch_np/numpy_tests/core/test_multiarray.py::TestFancyIndexing::test_list, test/torch_np/numpy_tests/core/test_multiarray.py::TestFancyIndexing::test_mask, test/torch_np/numpy_tests/core/test_multiarray.py::TestFancyIndexing::test_mask2, test/torch_np/numpy_tests/core/test_multiarray.py::TestFancyIndexing::test_tuple, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_all_method_max, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_all_method_min, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size0_axis0_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size0_axis0_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size10_axis_-1_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size10_axis_-1_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size11_axis_0_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size11_axis_0_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size12_axis_1_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size12_axis_1_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size13_axis13_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size13_axis13_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size14_axis_-2_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size14_axis_-2_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size15_axis_-1_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size15_axis_-1_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size16_axis_0_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size16_axis_0_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size17_axis_1_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size17_axis_1_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size18_axis18_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size18_axis18_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size19_axis_-3_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size19_axis_-3_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size1_axis_-1_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size1_axis_-1_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size20_axis_-2_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size20_axis_-2_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size21_axis_-1_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size21_axis_-1_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size22_axis_0_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size22_axis_0_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size23_axis_1_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size23_axis_1_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size24_axis_2_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size24_axis_2_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size25_axis25_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size25_axis25_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size26_axis_-3_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size26_axis_-3_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size27_axis_-2_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size27_axis_-2_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size28_axis_-1_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size28_axis_-1_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size29_axis_0_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size29_axis_0_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size2_axis_0_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size2_axis_0_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size30_axis_1_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size30_axis_1_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size31_axis_2_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size31_axis_2_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size32_axis32_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size32_axis32_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size33_axis_-4_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size33_axis_-4_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size34_axis_-3_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size34_axis_-3_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size35_axis_-2_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size35_axis_-2_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size36_axis_-1_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size36_axis_-1_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size37_axis_0_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size37_axis_0_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size38_axis_1_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size38_axis_1_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size39_axis_2_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size39_axis_2_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size3_axis3_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size3_axis3_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size40_axis_3_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size40_axis_3_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size41_axis41_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size41_axis41_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size42_axis_-4_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size42_axis_-4_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size43_axis_-3_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size43_axis_-3_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size44_axis_-2_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size44_axis_-2_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size45_axis_-1_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size45_axis_-1_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size46_axis_0_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size46_axis_0_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size47_axis_1_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size47_axis_1_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size48_axis_2_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size48_axis_2_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size49_axis_3_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size49_axis_3_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size4_axis_-2_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size4_axis_-2_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size50_axis50_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size50_axis50_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size51_axis_-4_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size51_axis_-4_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size52_axis_-3_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size52_axis_-3_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size53_axis_-2_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size53_axis_-2_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size54_axis_-1_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size54_axis_-1_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size55_axis_0_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size55_axis_0_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size56_axis_1_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size56_axis_1_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size57_axis_2_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size57_axis_2_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size58_axis_3_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size58_axis_3_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size59_axis59_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size59_axis59_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size5_axis_-1_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size5_axis_-1_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size60_axis_-4_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size60_axis_-4_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size61_axis_-3_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size61_axis_-3_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size62_axis_-2_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size62_axis_-2_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size63_axis_-1_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size63_axis_-1_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size64_axis_0_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size64_axis_0_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size65_axis_1_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size65_axis_1_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size66_axis_2_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size66_axis_2_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size67_axis_3_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size67_axis_3_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size68_axis68_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size68_axis68_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size69_axis_-1_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size69_axis_-1_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size6_axis_0_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size6_axis_0_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size70_axis_0_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size70_axis_0_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size71_axis71_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size71_axis71_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size72_axis_-1_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size72_axis_-1_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size73_axis_0_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size73_axis_0_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size74_axis74_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size74_axis74_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size75_axis_-1_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size75_axis_-1_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size76_axis_0_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size76_axis_0_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size77_axis77_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size77_axis77_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size7_axis_1_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size7_axis_1_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size8_axis8_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size8_axis8_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size9_axis_-2_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size9_axis_-2_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_vs_ndarray_arr_method_argmax_np_method0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_np_vs_ndarray_arr_method_argmin_np_method1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_output_shape_method_argmax, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_output_shape_method_argmin, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_ret_is_out_ndim_0_method_argmax, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_ret_is_out_ndim_0_method_argmin, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_ret_is_out_ndim_1_method_argmax, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmaxArgminCommon::test_ret_is_out_ndim_1_method_argmin, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data10, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data11, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data12, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data13, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data14, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data15, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data16, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data17, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data18, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data19, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data2, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data20, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data21, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data22, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data23, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data24, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data25, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data26, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data27, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data28, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data29, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data3, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data30, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data31, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data32, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data33, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data34, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data35, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data36, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data37, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data38, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data39, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data4, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data40, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data41, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data42, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data43, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data44, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data45, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data46, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data47, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data48, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data49, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data5, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data50, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data51, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data52, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data53, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data54, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data55, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data56, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data57, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data58, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data59, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data6, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data60, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data61, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data7, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data8, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_combinations_data9, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmax::test_maximum_signed_integers, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data10, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data11, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data12, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data13, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data14, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data15, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data16, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data17, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data18, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data19, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data2, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data20, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data21, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data22, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data23, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data24, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data25, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data26, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data27, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data28, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data29, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data3, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data30, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data31, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data32, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data33, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data34, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data35, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data36, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data37, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data38, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data39, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data4, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data40, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data41, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data42, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data43, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data44, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data45, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data46, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data47, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data48, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data49, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data5, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data50, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data51, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data52, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data53, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data54, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data55, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data56, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data57, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data58, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data59, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data6, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data60, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data61, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data7, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data8, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_combinations_data9, test/torch_np/numpy_tests/core/test_multiarray.py::TestArgmin::test_minimum_signed_integers, test/torch_np/numpy_tests/core/test_multiarray.py::TestMinMax::test_axis, test/torch_np/numpy_tests/core/test_multiarray.py::TestMinMax::test_scalar, test/torch_np/numpy_tests/core/test_multiarray.py::TestNewaxis::test_basic, test/torch_np/numpy_tests/core/test_multiarray.py::TestClip::test_basic, test/torch_np/numpy_tests/core/test_multiarray.py::TestClip::test_max_or_min, test/torch_np/numpy_tests/core/test_multiarray.py::TestClip::test_nan, test/torch_np/numpy_tests/core/test_multiarray.py::TestCompress::test_axis, test/torch_np/numpy_tests/core/test_multiarray.py::TestCompress::test_flatten, test/torch_np/numpy_tests/core/test_multiarray.py::TestCompress::test_truncate, test/torch_np/numpy_tests/core/test_multiarray.py::TestPutmask::test_byteorder_greater_False, test/torch_np/numpy_tests/core/test_multiarray.py::TestPutmask::test_byteorder_greater_True, test/torch_np/numpy_tests/core/test_multiarray.py::TestPutmask::test_ip_types, test/torch_np/numpy_tests/core/test_multiarray.py::TestPutmask::test_kwargs, test/torch_np/numpy_tests/core/test_multiarray.py::TestPutmask::test_mask_size, test/torch_np/numpy_tests/core/test_multiarray.py::TestPutmask::test_overlaps, test/torch_np/numpy_tests/core/test_multiarray.py::TestPutmask::test_record_array, test/torch_np/numpy_tests/core/test_multiarray.py::TestPutmask::test_writeable, test/torch_np/numpy_tests/core/test_multiarray.py::TestTake::test_clip, test/torch_np/numpy_tests/core/test_multiarray.py::TestTake::test_ip_types, test/torch_np/numpy_tests/core/test_multiarray.py::TestTake::test_out_overlap, test/torch_np/numpy_tests/core/test_multiarray.py::TestTake::test_raise, test/torch_np/numpy_tests/core/test_multiarray.py::TestTake::test_ret_is_out_shape0, test/torch_np/numpy_tests/core/test_multiarray.py::TestTake::test_ret_is_out_shape1, test/torch_np/numpy_tests/core/test_multiarray.py::TestTake::test_ret_is_out_shape2, test/torch_np/numpy_tests/core/test_multiarray.py::TestTake::test_wrap, test/torch_np/numpy_tests/core/test_multiarray.py::TestLexsort::test_basic_dtype0, test/torch_np/numpy_tests/core/test_multiarray.py::TestLexsort::test_basic_dtype1, test/torch_np/numpy_tests/core/test_multiarray.py::TestLexsort::test_basic_dtype2, test/torch_np/numpy_tests/core/test_multiarray.py::TestLexsort::test_basic_dtype3, test/torch_np/numpy_tests/core/test_multiarray.py::TestLexsort::test_basic_dtype4, test/torch_np/numpy_tests/core/test_multiarray.py::TestLexsort::test_basic_dtype5, test/torch_np/numpy_tests/core/test_multiarray.py::TestLexsort::test_basic_dtype6, test/torch_np/numpy_tests/core/test_multiarray.py::TestLexsort::test_basic_dtype7, test/torch_np/numpy_tests/core/test_multiarray.py::TestLexsort::test_datetime, test/torch_np/numpy_tests/core/test_multiarray.py::TestLexsort::test_invalid_axis, test/torch_np/numpy_tests/core/test_multiarray.py::TestLexsort::test_mixed, test/torch_np/numpy_tests/core/test_multiarray.py::TestLexsort::test_object, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_ascii, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_big_binary, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_binary, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_bool_fromstring, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_counted_string, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_counted_string_with_ws, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_dtype, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_dtype_bool, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_empty_files_binary, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_empty_files_text, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_file_position_after_fromfile, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_file_position_after_tofile, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_fromfile_bad_dup, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_fromfile_offset, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_fromfile_subarray_binary, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_fromstring_count0, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_inf, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_int64_fromstring, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_io_open_buffered_fromfile, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_io_open_unbuffered_fromfile, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_largish_file, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_load_object_array_fromfile, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_long_sep, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_malformed, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_nan, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_nofile, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_numbers, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_parsing_subarray_unsupported, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_read_shorter_than_count_subarray, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_roundtrip, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_roundtrip_binary_str, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_roundtrip_dump_pathlib, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_roundtrip_file, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_roundtrip_repr, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_roundtrip_str, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_string, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_string_with_ws, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_tofile_cleanup, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_tofile_format, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_tofile_sep, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_uint64_fromstring, test/torch_np/numpy_tests/core/test_multiarray.py::TestIO::test_unseekable_fromfile, test/torch_np/numpy_tests/core/test_multiarray.py::TestFromBuffer::test_array_base_obj0, test/torch_np/numpy_tests/core/test_multiarray.py::TestFromBuffer::test_array_base_obj_12345678, test/torch_np/numpy_tests/core/test_multiarray.py::TestFromBuffer::test_basic_big_dtype0, test/torch_np/numpy_tests/core/test_multiarray.py::TestFromBuffer::test_basic_big_dtype1, test/torch_np/numpy_tests/core/test_multiarray.py::TestFromBuffer::test_basic_big_dtype2, test/torch_np/numpy_tests/core/test_multiarray.py::TestFromBuffer::test_basic_little_dtype0, test/torch_np/numpy_tests/core/test_multiarray.py::TestFromBuffer::test_basic_little_dtype1, test/torch_np/numpy_tests/core/test_multiarray.py::TestFromBuffer::test_basic_little_dtype2, test/torch_np/numpy_tests/core/test_multiarray.py::TestFromBuffer::test_empty, test/torch_np/numpy_tests/core/test_multiarray.py::TestFromBuffer::test_mmap_close, test/torch_np/numpy_tests/core/test_multiarray.py::TestResize::test_0d_shape, test/torch_np/numpy_tests/core/test_multiarray.py::TestResize::test_basic, test/torch_np/numpy_tests/core/test_multiarray.py::TestResize::test_check_reference, test/torch_np/numpy_tests/core/test_multiarray.py::TestResize::test_check_weakref, test/torch_np/numpy_tests/core/test_multiarray.py::TestResize::test_empty_view, test/torch_np/numpy_tests/core/test_multiarray.py::TestResize::test_freeform_shape, test/torch_np/numpy_tests/core/test_multiarray.py::TestResize::test_int_shape, test/torch_np/numpy_tests/core/test_multiarray.py::TestResize::test_invalid_arguments, test/torch_np/numpy_tests/core/test_multiarray.py::TestResize::test_none_shape, test/torch_np/numpy_tests/core/test_multiarray.py::TestResize::test_zeros_appended, test/torch_np/numpy_tests/core/test_multiarray.py::TestStats::test_ddof, test/torch_np/numpy_tests/core/test_multiarray.py::TestStats::test_ddof_too_big, test/torch_np/numpy_tests/core/test_multiarray.py::TestStats::test_dtype_from_dtype, test/torch_np/numpy_tests/core/test_multiarray.py::TestStats::test_dtype_from_input, test/torch_np/numpy_tests/core/test_multiarray.py::TestStats::test_empty, test/torch_np/numpy_tests/core/test_multiarray.py::TestStats::test_keepdims, test/torch_np/numpy_tests/core/test_multiarray.py::TestStats::test_mean_axis_error, test/torch_np/numpy_tests/core/test_multiarray.py::TestStats::test_mean_float16, test/torch_np/numpy_tests/core/test_multiarray.py::TestStats::test_mean_values, test/torch_np/numpy_tests/core/test_multiarray.py::TestStats::test_mean_where, test/torch_np/numpy_tests/core/test_multiarray.py::TestStats::test_out, test/torch_np/numpy_tests/core/test_multiarray.py::TestStats::test_python_type, test/torch_np/numpy_tests/core/test_multiarray.py::TestStats::test_std_values, test/torch_np/numpy_tests/core/test_multiarray.py::TestStats::test_std_where, test/torch_np/numpy_tests/core/test_multiarray.py::TestStats::test_var_axis_error, test/torch_np/numpy_tests/core/test_multiarray.py::TestStats::test_var_complex_byteorder, test/torch_np/numpy_tests/core/test_multiarray.py::TestStats::test_var_complex_values_complex_dtype_complex128_ndec_7, test/torch_np/numpy_tests/core/test_multiarray.py::TestStats::test_var_complex_values_complex_dtype_complex64_ndec_6, test/torch_np/numpy_tests/core/test_multiarray.py::TestStats::test_var_dimensions, test/torch_np/numpy_tests/core/test_multiarray.py::TestStats::test_var_values, test/torch_np/numpy_tests/core/test_multiarray.py::TestStats::test_var_where, test/torch_np/numpy_tests/core/test_multiarray.py::TestVdot::test_basic, test/torch_np/numpy_tests/core/test_multiarray.py::TestVdot::test_vdot_array_order, test/torch_np/numpy_tests/core/test_multiarray.py::TestVdot::test_vdot_uncontiguous, test/torch_np/numpy_tests/core/test_multiarray.py::TestVdot::test_vdot_uncontiguous_2, test/torch_np/numpy_tests/core/test_multiarray.py::TestDot::test_accelerate_framework_sgemv_fix, test/torch_np/numpy_tests/core/test_multiarray.py::TestDot::test_all, test/torch_np/numpy_tests/core/test_multiarray.py::TestDot::test_dot_2args, test/torch_np/numpy_tests/core/test_multiarray.py::TestDot::test_dot_3args, test/torch_np/numpy_tests/core/test_multiarray.py::TestDot::test_dot_3args_errors, test/torch_np/numpy_tests/core/test_multiarray.py::TestDot::test_dot_array_order, test/torch_np/numpy_tests/core/test_multiarray.py::TestDot::test_dotcolumnvect1, test/torch_np/numpy_tests/core/test_multiarray.py::TestDot::test_dotcolumnvect2, test/torch_np/numpy_tests/core/test_multiarray.py::TestDot::test_dotmatmat, test/torch_np/numpy_tests/core/test_multiarray.py::TestDot::test_dotmatvec, test/torch_np/numpy_tests/core/test_multiarray.py::TestDot::test_dotmatvec2, test/torch_np/numpy_tests/core/test_multiarray.py::TestDot::test_dotvecmat, test/torch_np/numpy_tests/core/test_multiarray.py::TestDot::test_dotvecmat2, test/torch_np/numpy_tests/core/test_multiarray.py::TestDot::test_dotvecmat3, test/torch_np/numpy_tests/core/test_multiarray.py::TestDot::test_dotvecscalar, test/torch_np/numpy_tests/core/test_multiarray.py::TestDot::test_dotvecscalar2, test/torch_np/numpy_tests/core/test_multiarray.py::TestDot::test_dotvecvecinner, test/torch_np/numpy_tests/core/test_multiarray.py::TestDot::test_dotvecvecouter, test/torch_np/numpy_tests/core/test_multiarray.py::TestDot::test_huge_vectordot_dtype0, test/torch_np/numpy_tests/core/test_multiarray.py::TestDot::test_huge_vectordot_dtype1, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_dot_equivalent_mm1, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_dot_equivalent_mm2, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_dot_equivalent_mm3, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_dot_equivalent_mm4, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_dot_equivalent_mmN1, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_dot_equivalent_mmN2, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_dot_equivalent_mmN3, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_dot_equivalent_mmT1, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_dot_equivalent_mmT2, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_dot_equivalent_mmT3, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_dot_equivalent_mmT4, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_dot_equivalent_mmT5, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_dot_equivalent_mmT6, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_dot_equivalent_mv11, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_dot_equivalent_mv12, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_dot_equivalent_mvN1, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_dot_equivalent_mvN2, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_dot_equivalent_mvN3, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_dot_equivalent_mvN4, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_dot_equivalent_mvN5, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_dot_equivalent_mvN6, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_dot_equivalent_mvN7, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_dot_equivalent_mvN8, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_dot_equivalent_mvN9, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_dot_equivalent_mvn10, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_dot_equivalent_s0_1, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_dot_equivalent_s0_2, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_dot_equivalent_s0_3, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_dot_equivalent_s0_4, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_dot_equivalent_vm1, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_dot_equivalent_vm2, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_dot_equivalent_vm3, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_dot_equivalent_vm4, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_empty_out, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_exceptions, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_matmul_bool, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_matmul_exception_add, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_matmul_exception_multiply, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_matrix_matrix_values, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_matrix_vector_values, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_out_arg, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_out_contiguous, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_out_contiguous_2, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_result_types, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_result_types_2, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_scalar_output, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_shapes, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_vector_matrix_values, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmul::test_vector_vector_values, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmulOperator::test_array_priority_override, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmulOperator::test_exceptions, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmulOperator::test_matmul_axes, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmulOperator::test_matmul_inplace, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmulOperator::test_matmul_inplace_2, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmulOperator::test_matmul_raises, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmulOperator::test_matrix_matrix_values, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmulOperator::test_matrix_vector_values, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmulOperator::test_result_types, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmulOperator::test_result_types_2, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmulOperator::test_scalar_output, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmulOperator::test_shapes, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmulOperator::test_vector_matrix_values, test/torch_np/numpy_tests/core/test_multiarray.py::TestMatmulOperator::test_vector_vector_values, test/torch_np/numpy_tests/core/test_multiarray.py::TestInner::test_3d_tensor, test/torch_np/numpy_tests/core/test_multiarray.py::TestInner::test_inner_product_reversed_view, test/torch_np/numpy_tests/core/test_multiarray.py::TestInner::test_inner_product_with_various_contiguities, test/torch_np/numpy_tests/core/test_multiarray.py::TestInner::test_inner_scalar_and_vector, test/torch_np/numpy_tests/core/test_multiarray.py::TestInner::test_vecself, test/torch_np/numpy_tests/core/test_multiarray.py::TestChoose::test_basic, test/torch_np/numpy_tests/core/test_multiarray.py::TestChoose::test_broadcast1, test/torch_np/numpy_tests/core/test_multiarray.py::TestChoose::test_broadcast2, test/torch_np/numpy_tests/core/test_multiarray.py::TestChoose::test_docstring_1, test/torch_np/numpy_tests/core/test_multiarray.py::TestChoose::test_docstring_2, test/torch_np/numpy_tests/core/test_multiarray.py::TestChoose::test_docstring_3, test/torch_np/numpy_tests/core/test_multiarray.py::TestChoose::test_output_dtype_ops0, test/torch_np/numpy_tests/core/test_multiarray.py::TestChoose::test_output_dtype_ops1, test/torch_np/numpy_tests/core/test_multiarray.py::TestChoose::test_output_dtype_ops2, test/torch_np/numpy_tests/core/test_multiarray.py::TestChoose::test_output_dtype_ops3, test/torch_np/numpy_tests/core/test_multiarray.py::TestRepeat::test_axis_spec, test/torch_np/numpy_tests/core/test_multiarray.py::TestRepeat::test_basic, test/torch_np/numpy_tests/core/test_multiarray.py::TestRepeat::test_broadcast1, test/torch_np/numpy_tests/core/test_multiarray.py::TestRepeat::test_broadcast2, test/torch_np/numpy_tests/core/test_multiarray.py::TestWarnings::test_complex_warning, test/torch_np/numpy_tests/core/test_multiarray.py::TestMinScalarType::test_complex, test/torch_np/numpy_tests/core/test_multiarray.py::TestMinScalarType::test_float, test/torch_np/numpy_tests/core/test_multiarray.py::TestMinScalarType::test_nonscalar, test/torch_np/numpy_tests/core/test_multiarray.py::TestMinScalarType::test_usigned_shortshort, test/torch_np/numpy_tests/core/test_multiarray.py::TestPEP3118Dtype::test_byteorder_inside_struct, test/torch_np/numpy_tests/core/test_multiarray.py::TestPEP3118Dtype::test_char_vs_string, test/torch_np/numpy_tests/core/test_multiarray.py::TestPEP3118Dtype::test_field_order, test/torch_np/numpy_tests/core/test_multiarray.py::TestPEP3118Dtype::test_intra_padding, test/torch_np/numpy_tests/core/test_multiarray.py::TestPEP3118Dtype::test_native_padding, test/torch_np/numpy_tests/core/test_multiarray.py::TestPEP3118Dtype::test_native_padding_2, test/torch_np/numpy_tests/core/test_multiarray.py::TestPEP3118Dtype::test_native_padding_3, test/torch_np/numpy_tests/core/test_multiarray.py::TestPEP3118Dtype::test_padding_with_array_inside_struct, test/torch_np/numpy_tests/core/test_multiarray.py::TestPEP3118Dtype::test_trailing_padding, test/torch_np/numpy_tests/core/test_multiarray.py::TestPEP3118Dtype::test_unnamed_fields, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayCreationCopyArgument::test___array__, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayCreationCopyArgument::test_array_interfaces, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayCreationCopyArgument::test_buffer_interface, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayCreationCopyArgument::test_compatible_cast, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayCreationCopyArgument::test_order_mismatch_arr0_order12_order2_A, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayCreationCopyArgument::test_order_mismatch_arr0_order12_order2_C, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayCreationCopyArgument::test_order_mismatch_arr0_order12_order2_F, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayCreationCopyArgument::test_order_mismatch_arr0_order12_order2_K, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayCreationCopyArgument::test_order_mismatch_arr0_order1_C_order2_A, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayCreationCopyArgument::test_order_mismatch_arr0_order1_C_order2_C, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayCreationCopyArgument::test_order_mismatch_arr0_order1_C_order2_F, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayCreationCopyArgument::test_order_mismatch_arr0_order1_C_order2_K, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayCreationCopyArgument::test_order_mismatch_arr0_order1_F_order2_A, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayCreationCopyArgument::test_order_mismatch_arr0_order1_F_order2_C, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayCreationCopyArgument::test_order_mismatch_arr0_order1_F_order2_F, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayCreationCopyArgument::test_order_mismatch_arr0_order1_F_order2_K, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayCreationCopyArgument::test_order_mismatch_arr1_order12_order2_A, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayCreationCopyArgument::test_order_mismatch_arr1_order12_order2_C, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayCreationCopyArgument::test_order_mismatch_arr1_order12_order2_F, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayCreationCopyArgument::test_order_mismatch_arr1_order12_order2_K, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayCreationCopyArgument::test_order_mismatch_arr1_order1_C_order2_A, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayCreationCopyArgument::test_order_mismatch_arr1_order1_C_order2_C, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayCreationCopyArgument::test_order_mismatch_arr1_order1_C_order2_F, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayCreationCopyArgument::test_order_mismatch_arr1_order1_C_order2_K, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayCreationCopyArgument::test_order_mismatch_arr1_order1_F_order2_A, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayCreationCopyArgument::test_order_mismatch_arr1_order1_F_order2_C, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayCreationCopyArgument::test_order_mismatch_arr1_order1_F_order2_F, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayCreationCopyArgument::test_order_mismatch_arr1_order1_F_order2_K, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayCreationCopyArgument::test_scalars, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayCreationCopyArgument::test_striding_not_ok, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayAttributeDeletion::test_multiarray_flags_not_writable_attribute_deletion, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayAttributeDeletion::test_multiarray_flags_writable_attribute_deletion, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayAttributeDeletion::test_multiarray_not_writable_attributes_deletion, test/torch_np/numpy_tests/core/test_multiarray.py::TestArrayAttributeDeletion::test_multiarray_writable_attributes_deletion, test/torch_np/numpy_tests/core/test_multiarray.py::TestDelMisc::test_flat_element_deletion, test/torch_np/numpy_tests/core/test_multiarray.py::TestConversion::test_array_scalar_relational_operation, test/torch_np/numpy_tests/core/test_multiarray.py::TestConversion::test_to_bool_scalar, test/torch_np/numpy_tests/core/test_multiarray.py::TestConversion::test_to_int_scalar, test/torch_np/numpy_tests/core/test_multiarray.py::TestConversion::test_to_int_scalar_2, test/torch_np/numpy_tests/core/test_multiarray.py::TestWhere::test_basic, test/torch_np/numpy_tests/core/test_multiarray.py::TestWhere::test_dtype_mix, test/torch_np/numpy_tests/core/test_multiarray.py::TestWhere::test_empty_result, test/torch_np/numpy_tests/core/test_multiarray.py::TestWhere::test_error, test/torch_np/numpy_tests/core/test_multiarray.py::TestWhere::test_exotic, test/torch_np/numpy_tests/core/test_multiarray.py::TestWhere::test_exotic_2, test/torch_np/numpy_tests/core/test_multiarray.py::TestWhere::test_foreign, test/torch_np/numpy_tests/core/test_multiarray.py::TestWhere::test_kwargs, test/torch_np/numpy_tests/core/test_multiarray.py::TestWhere::test_largedim, test/torch_np/numpy_tests/core/test_multiarray.py::TestWhere::test_ndim, test/torch_np/numpy_tests/core/test_multiarray.py::TestHashing::test_arrays_not_hashable, test/torch_np/numpy_tests/core/test_multiarray.py::TestHashing::test_collections_hashable, test/torch_np/numpy_tests/core/test_multiarray.py::TestFormat::test_0d, test/torch_np/numpy_tests/core/test_multiarray.py::TestFormat::test_1d_format, test/torch_np/numpy_tests/core/test_multiarray.py::TestFormat::test_1d_no_format, test/torch_np/numpy_tests/core/test_multiarray.py::TestWritebackIfCopy::test_argmax_with_out, test/torch_np/numpy_tests/core/test_multiarray.py::TestWritebackIfCopy::test_argmin_with_out, test/torch_np/numpy_tests/core/test_multiarray.py::TestWritebackIfCopy::test_choose_mod_raise, test/torch_np/numpy_tests/core/test_multiarray.py::TestWritebackIfCopy::test_dot_out, test/torch_np/numpy_tests/core/test_multiarray.py::TestWritebackIfCopy::test_flatiter__array__, test/torch_np/numpy_tests/core/test_multiarray.py::TestWritebackIfCopy::test_insert_noncontiguous, test/torch_np/numpy_tests/core/test_multiarray.py::TestWritebackIfCopy::test_put_noncontiguous, test/torch_np/numpy_tests/core/test_multiarray.py::TestWritebackIfCopy::test_putmask_noncontiguous, test/torch_np/numpy_tests/core/test_multiarray.py::TestWritebackIfCopy::test_take_mode_raise, test/torch_np/numpy_tests/core/test_multiarray.py::TestArange::test_arange_booleans, test/torch_np/numpy_tests/core/test_multiarray.py::TestArange::test_error_paths_and_promotion_which_0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArange::test_error_paths_and_promotion_which_1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArange::test_error_paths_and_promotion_which_2, test/torch_np/numpy_tests/core/test_multiarray.py::TestArange::test_explicit_dtype_dt0, test/torch_np/numpy_tests/core/test_multiarray.py::TestArange::test_explicit_dtype_dt1, test/torch_np/numpy_tests/core/test_multiarray.py::TestArange::test_explicit_dtype_dt2, test/torch_np/numpy_tests/core/test_multiarray.py::TestArange::test_infinite, test/torch_np/numpy_tests/core/test_multiarray.py::TestArange::test_nan_step, test/torch_np/numpy_tests/core/test_multiarray.py::TestArange::test_require_range, test/torch_np/numpy_tests/core/test_multiarray.py::TestArange::test_require_range_2, test/torch_np/numpy_tests/core/test_multiarray.py::TestArange::test_start_stop_kwarg, test/torch_np/numpy_tests/core/test_multiarray.py::TestArange::test_zero_step, test/torch_np/numpy_tests/core/test_multiarray.py::TestRichcompareScalar::test_richcompare_scalar_boolean_singleton_return, test/torch_np/numpy_tests/core/test_multiarray.py::TestSortFloatMisc::test_sort_float_N_1023, test/torch_np/numpy_tests/core/test_multiarray.py::TestSortFloatMisc::test_sort_float_N_128, test/torch_np/numpy_tests/core/test_multiarray.py::TestSortFloatMisc::test_sort_float_N_151, test/torch_np/numpy_tests/core/test_multiarray.py::TestSortFloatMisc::test_sort_float_N_16, test/torch_np/numpy_tests/core/test_multiarray.py::TestSortFloatMisc::test_sort_float_N_191, test/torch_np/numpy_tests/core/test_multiarray.py::TestSortFloatMisc::test_sort_float_N_2047, test/torch_np/numpy_tests/core/test_multiarray.py::TestSortFloatMisc::test_sort_float_N_24, test/torch_np/numpy_tests/core/test_multiarray.py::TestSortFloatMisc::test_sort_float_N_256, test/torch_np/numpy_tests/core/test_multiarray.py::TestSortFloatMisc::test_sort_float_N_32, test/torch_np/numpy_tests/core/test_multiarray.py::TestSortFloatMisc::test_sort_float_N_383, test/torch_np/numpy_tests/core/test_multiarray.py::TestSortFloatMisc::test_sort_float_N_48, test/torch_np/numpy_tests/core/test_multiarray.py::TestSortFloatMisc::test_sort_float_N_512, test/torch_np/numpy_tests/core/test_multiarray.py::TestSortFloatMisc::test_sort_float_N_64, test/torch_np/numpy_tests/core/test_multiarray.py::TestSortFloatMisc::test_sort_float_N_8, test/torch_np/numpy_tests/core/test_multiarray.py::TestSortFloatMisc::test_sort_float_N_96, test/torch_np/numpy_tests/core/test_multiarray.py::TestSortFloatMisc::test_sort_int 2025-08-14T23:36:40.5448795Z 2025-08-14T23:36:46.0512607Z Running functorch/test_ops 8/8 ... [2025-08-14 23:36:46.051008] 2025-08-14T23:36:46.0513363Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:36:46.0519489Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ops.py', '-m', 'not serial', '--shard-id=8', '--num-shards=8', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:36:46.051601] 2025-08-14T23:36:47.3349080Z 2025-08-14T23:36:47.3350816Z functorch/test_dims 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_dims_1.1_42d096bd1231300f_.log 2025-08-14T23:36:47.3376766Z Running 72 items in this shard: test/functorch/test_dims.py::TestMin::test_adapt, test/functorch/test_dims.py::TestMin::test_attn, test/functorch/test_dims.py::TestMin::test_attn_cuda, test/functorch/test_dims.py::TestMin::test_big_split, test/functorch/test_dims.py::TestMin::test_c, test/functorch/test_dims.py::TestMin::test_compare_dims, test/functorch/test_dims.py::TestMin::test_diag, test/functorch/test_dims.py::TestMin::test_dim_args, test/functorch/test_dims.py::TestMin::test_dims_with_size, test/functorch/test_dims.py::TestMin::test_dir, test/functorch/test_dims.py::TestMin::test_doc, test/functorch/test_dims.py::TestMin::test_embed, test/functorch/test_dims.py::TestMin::test_eq, test/functorch/test_dims.py::TestMin::test_expand, test/functorch/test_dims.py::TestMin::test_functorch, test/functorch/test_dims.py::TestMin::test_hello, test/functorch/test_dims.py::TestMin::test_index, test/functorch/test_dims.py::TestMin::test_index_placement, test/functorch/test_dims.py::TestMin::test_inplace, test/functorch/test_dims.py::TestMin::test_manual_stuff, test/functorch/test_dims.py::TestMin::test_mask, test/functorch/test_dims.py::TestMin::test_max, test/functorch/test_dims.py::TestMin::test_mm, test/functorch/test_dims.py::TestMin::test_mm_fuse, test/functorch/test_dims.py::TestMin::test_monkey, test/functorch/test_dims.py::TestMin::test_network, test/functorch/test_dims.py::TestMin::test_order, test/functorch/test_dims.py::TestMin::test_order_keyword, test/functorch/test_dims.py::TestMin::test_parse, test/functorch/test_dims.py::TestMin::test_permute_orig, test/functorch/test_dims.py::TestMin::test_seg, test/functorch/test_dims.py::TestMin::test_simple, test/functorch/test_dims.py::TestMin::test_softmax_split, test/functorch/test_dims.py::TestMin::test_stack, test/functorch/test_dims.py::TestMin::test_time_mm_fuse, test/functorch/test_dims.py::TestMin::test_with_dims_split, test/functorch/test_dims.py::TestMinFunctorchOnly::test_adapt, test/functorch/test_dims.py::TestMinFunctorchOnly::test_attn, test/functorch/test_dims.py::TestMinFunctorchOnly::test_attn_cuda, test/functorch/test_dims.py::TestMinFunctorchOnly::test_big_split, test/functorch/test_dims.py::TestMinFunctorchOnly::test_c, test/functorch/test_dims.py::TestMinFunctorchOnly::test_compare_dims, test/functorch/test_dims.py::TestMinFunctorchOnly::test_diag, test/functorch/test_dims.py::TestMinFunctorchOnly::test_dim_args, test/functorch/test_dims.py::TestMinFunctorchOnly::test_dims_with_size, test/functorch/test_dims.py::TestMinFunctorchOnly::test_dir, test/functorch/test_dims.py::TestMinFunctorchOnly::test_doc, test/functorch/test_dims.py::TestMinFunctorchOnly::test_embed, test/functorch/test_dims.py::TestMinFunctorchOnly::test_eq, test/functorch/test_dims.py::TestMinFunctorchOnly::test_expand, test/functorch/test_dims.py::TestMinFunctorchOnly::test_functorch, test/functorch/test_dims.py::TestMinFunctorchOnly::test_hello, test/functorch/test_dims.py::TestMinFunctorchOnly::test_index, test/functorch/test_dims.py::TestMinFunctorchOnly::test_index_placement, test/functorch/test_dims.py::TestMinFunctorchOnly::test_inplace, test/functorch/test_dims.py::TestMinFunctorchOnly::test_manual_stuff, test/functorch/test_dims.py::TestMinFunctorchOnly::test_mask, test/functorch/test_dims.py::TestMinFunctorchOnly::test_max, test/functorch/test_dims.py::TestMinFunctorchOnly::test_mm, test/functorch/test_dims.py::TestMinFunctorchOnly::test_mm_fuse, test/functorch/test_dims.py::TestMinFunctorchOnly::test_monkey, test/functorch/test_dims.py::TestMinFunctorchOnly::test_network, test/functorch/test_dims.py::TestMinFunctorchOnly::test_order, test/functorch/test_dims.py::TestMinFunctorchOnly::test_order_keyword, test/functorch/test_dims.py::TestMinFunctorchOnly::test_parse, test/functorch/test_dims.py::TestMinFunctorchOnly::test_permute_orig, test/functorch/test_dims.py::TestMinFunctorchOnly::test_seg, test/functorch/test_dims.py::TestMinFunctorchOnly::test_simple, test/functorch/test_dims.py::TestMinFunctorchOnly::test_softmax_split, test/functorch/test_dims.py::TestMinFunctorchOnly::test_stack, test/functorch/test_dims.py::TestMinFunctorchOnly::test_time_mm_fuse, test/functorch/test_dims.py::TestMinFunctorchOnly::test_with_dims_split 2025-08-14T23:36:47.3401112Z 2025-08-14T23:36:53.1199604Z Running functorch/test_aotdispatch 1/7 ... [2025-08-14 23:36:53.119525] 2025-08-14T23:36:53.1200490Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:36:53.1207376Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_aotdispatch.py', '-m', 'not serial', '--shard-id=1', '--num-shards=7', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:36:53.119525] 2025-08-14T23:43:37.1543422Z 2025-08-14T23:43:37.1544370Z functorch/test_ops 8/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_8.8_16d9857dd83fd27c_.log 2025-08-14T23:43:37.1988676Z Running 1247 items in this shard: test/functorch/test_ops.py::TestOperatorsCPU::test_grad_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_T_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad___rdiv___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_arange_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_argsort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_as_strided_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_atleast_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_bernoulli_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_cholesky_inverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_column_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_deg2rad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_diag_embed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_div_floor_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_double_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_einsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_empty_permuted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_erfc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_exp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fft_hfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_gt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_half_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_isclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_jiterator_binary_return_by_ref_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_lgamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_cholesky_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_eig_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_inv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_matrix_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_solve_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_log_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_logcumsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_logical_or_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_maximum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_min_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_min_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_new_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_channel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_conv2d_stride_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_conv2d_strided_padding_dilation_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_grid_sample_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_interpolate_bicubic_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_max_unpool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_max_unpool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_pad_circular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_pad_reflect_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_relu6_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_rrelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_scaled_dot_product_attention_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_softsign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_tanhshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_upsample_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_ops_aten__new_zeros_with_same_feature_meta_functorchonly_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_permute_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_polar_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_rad2deg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_renorm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_resolve_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_rsqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_scatter_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_scatter_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_signal_windows_blackman_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_sort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_legendre_polynomial_p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_log_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_modified_bessel_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_shifted_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_split_list_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_tanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_torch_ops_aten__safe_softmax_default_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_triangular_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_unsafe_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_vdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_xlogy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_zeros_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp___getitem___functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp___radd___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp___rsub___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp__native_batch_norm_legit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp__segment_reduce_lengths_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_abs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_addmm_decomposed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_alias_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_atleast_3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_bfloat16_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_bool_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_bucketize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_byte_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_cov_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_double_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_ifft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_irfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_heaviside_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_index_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_int_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_isinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_jiterator_binary_return_by_ref_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_cholesky_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_multi_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_pinv_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_pinv_singular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_solve_triangular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_tensorinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_log10_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_logical_or_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_lu_unpack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_mul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_mvlgamma_mvlgamma_p_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nanmean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_native_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_new_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_adaptive_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_conv2d_stride_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_dropout3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_hardshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_hardtanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_interpolate_nearest-exact_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_margin_ranking_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_multi_head_attention_forward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_pad_replicate_negative_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_rms_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_selu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_upsample_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nonzero_static_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_ones_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_ops_aten_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_outer_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_polygamma_polygamma_n_4_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_reshape_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_resize_as__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_rot90_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_scalar_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_scatter_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_scatter_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_scatter_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_sgn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_signal_windows_general_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_signal_windows_kaiser_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_sinc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_i0e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_polygamma_special_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_split_with_sizes_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_std_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_tanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_transpose_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_transpose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_tril_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_unique_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_unsafe_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpjvpvmap_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpjvpvmap_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpjvpvmap_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_H_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp___rdiv___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp___rmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp___rpow___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp___rsub___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp__segment_reduce_lengths_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_acosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_addr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_arange_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_atleast_3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_bfloat16_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_chalf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_column_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_combinations_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_count_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_deg2rad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_empty_permuted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_erfinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_expand_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_gt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_index_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_lstsq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_lstsq_grad_oriented_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_pinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_vander_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_logical_and_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_logical_or_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_logical_xor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_long_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_lu_unpack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_max_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_maximum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_mul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_narrow_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_narrow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_new_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_conv2d_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_conv2d_strided_padding_dilation_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_fractional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_hardtanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_hinge_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_kl_div_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_max_unpool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_pad_replicate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_softplus_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_tanhshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_threshold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_normal_number_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_ones_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_ormqr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_pca_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_polygamma_polygamma_n_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_pow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_quantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_reshape_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_rsqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_signal_windows_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_signal_windows_general_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_signal_windows_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_signbit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_entr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_laguerre_polynomial_l_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_shifted_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_shifted_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_squeeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_to_sparse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_transpose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjpvmap_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjpvmap_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjpvmap_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjpvmap_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmap_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmap_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmap_NumpyMulAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmap_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmap_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmapvmap_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmapvmap_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_amin_cpu_complex32, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_clamp_cpu_complex128, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_floor_cpu_complex32, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_gt_cpu_complex128, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_gt_cpu_complex32, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_gt_cpu_complex64, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_le_cpu_complex32, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_maximum_cpu_complex32, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_minimum_cpu_complex32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_broadcast_to_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_broadcast_to_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_contiguous_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_mH_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_movedim_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_narrow_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_positive_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_positive_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_real_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_resolve_conj_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_transpose_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_view_as_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_T_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp___rsub___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp__native_batch_norm_legit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_addbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_addcdiv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_alias_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_argsort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_as_strided_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_atan2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_cdouble_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_cummin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_empty_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_erfinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_expand_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fft_fftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fft_fftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fft_hfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fft_hfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fft_ihfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fft_ihfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_flatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_geqrf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_half_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_heaviside_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_hsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_int_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_isnan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_isposinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_jiterator_2inputs_2outputs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_inv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_ldl_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_log_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_lt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_max_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_max_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_minimum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nanmedian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nanquantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_native_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_celu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_conv2d_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_embedding_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_hardshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_interpolate_bicubic_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_interpolate_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_mse_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_rrelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_softsign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_outer_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_resize_as__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_round_decimals_neg_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_scalar_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_scatter_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_signal_windows_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_sin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_i0e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_i1e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_spherical_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_tensor_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_trace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_trapz_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_where_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_abs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_addr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_any_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_as_strided_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_asin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_asinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_broadcast_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_bucketize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_cauchy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_char_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_char_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_cummin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_diagflat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_eq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_erfinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_eye_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fft_fftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fft_irfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fliplr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_frexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_gt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_half_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_int_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_isfinite_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_isnan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_isneginf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_jiterator_binary_return_by_ref_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_householder_product_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_lstsq_grad_oriented_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_lu_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_lu_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_matrix_rank_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_pinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_tensorinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_logical_or_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_mT_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_min_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_movedim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_narrow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_native_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_adaptive_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_conv2d_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_cosine_similarity_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_gelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_group_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_leaky_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_max_unpool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_max_unpool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_pad_circular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_softplus_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_ormqr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_positive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_renorm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_repeat_interleave_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_resolve_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_round_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_round_decimals_neg_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_sigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_signal_windows_blackman_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_signal_windows_kaiser_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_sparse_mm_reduce_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_log_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_polygamma_special_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_split_with_sizes_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_square_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_std_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_stft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_to_sparse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_topk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_triu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_unflatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_unsqueeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjpvmap_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjpvmap_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap___getitem___functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap__native_batch_norm_legit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap__segment_reduce_lengths_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_asinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_atanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_cauchy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_column_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_diag_embed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_diagonal_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_div_floor_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_dstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_equal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_ifft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_gradient_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_half_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_heaviside_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_index_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_index_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_isin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_kthvalue_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_lu_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_matrix_rank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_multi_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_slogdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_tensorinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_vander_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_vector_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_log1p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_logical_or_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_long_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_lt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_meshgrid_variadic_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_min_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nanquantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_narrow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_native_dropout_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_new_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_adaptive_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_conv2d_stride_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_conv_transpose1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_embedding_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_hardswish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_hardtanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_interpolate_area_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_leaky_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_local_response_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_logsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_mish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_mse_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_pdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_prelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_softmin_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_norm_inf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_norm_nuc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_outer_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_polygamma_polygamma_n_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_rad2deg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_repeat_interleave_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_round_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_scatter_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_select_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_sgn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_signbit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_bessel_j1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_erfcx_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_shifted_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_shifted_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_xlog1py_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_zeta_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_split_list_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_t_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_tan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_tensor_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_trace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_uniform_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_view_as_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_view_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmapvmap_NumpyMulAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_NumpyMulAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_NumpySortAutogradFunction_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_SelectGenVmapAutogradFunction_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_T_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad___rdiv___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad___rsub___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad__native_batch_norm_legit_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad__softmax_backward_data_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad__unsafe_masked_index_put_accumulate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad__upsample_bilinear2d_aa_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_abs_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_addcmul_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_addmm_decomposed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_alias_copy_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_any_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_any_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_as_strided_copy_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_atan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cdist_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_chalf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_column_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_corrcoef_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_deg2rad_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_diag_embed_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_diff_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_div_no_rounding_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_dstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_equal_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_erfinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_exp_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_expand_copy_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_eye_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_fft_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_irfft_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_flatten_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_floor_divide_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_igammac_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_index_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_index_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_index_reduce_prod_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_index_select_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_jiterator_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_jiterator_binary_return_by_ref_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_inv_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_lstsq_grad_oriented_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_matrix_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_matrix_power_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_pinv_singular_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_slogdet_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_svdvals_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_log2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_log_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logaddexp2_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logcumsumexp_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logical_not_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logsumexp_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_lu_solve_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_lu_unpack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_lu_unpack_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_normalize_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_max_reduction_with_dim_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_min_reduction_with_dim_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_minimum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_multinomial_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mvlgamma_mvlgamma_p_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nansum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_new_empty_strided_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_alpha_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_avg_pool1d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_stride_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_strided_padding_dilation_no_bias_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_dropout2d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_dropout3d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_dropout_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_elu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_embedding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_feature_alpha_dropout_with_train_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_fractional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_gaussian_nll_loss_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_l1_loss_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_mse_loss_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_multilabel_margin_loss_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_normalize_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_pad_constant_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_pad_reflect_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_pixel_shuffle_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_poisson_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_poisson_nll_loss_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_relu6_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_triplet_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_upsample_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_norm_inf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_norm_inf_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_permute_copy_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_polygamma_polygamma_n_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_pow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_put_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_rand_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_reciprocal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_repeat_interleave_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_roll_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_rot90_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_rsqrt_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_scatter_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sgn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_short_functorch_no_channels_last_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sign_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_bartlett_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_kaiser_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signbit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_softmax_with_dtype_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sort_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_bessel_j1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_bessel_y0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_log_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_modified_bessel_i1_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_ndtri_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_scaled_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_scaled_modified_bessel_k1_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_square_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_squeeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_std_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_svd_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_t_copy_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_take_along_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_take_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_tile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_to_sparse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_topk_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_torch_ops_aten__safe_softmax_default_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_trapz_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_uniform_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unique_consecutive_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unsqueeze_copy_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_var_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_var_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_view_as_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_view_copy_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_where_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall___getitem___functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall___rpow___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall__chunk_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall__unsafe_masked_index_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_addcmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_addmv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_all_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_arange_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_asinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_bernoulli_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_bucketize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_cartesian_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_char_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_clamp_min_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_clone_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_column_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_expand_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_hfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_ihfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_floor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_geqrf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_gt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_half_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_NumpyMulAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_addcmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_all_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_char_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_clamp_min_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_cumulative_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_diagflat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_einsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_expand_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_irfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_histc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_hypot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_index_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_ldl_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_lu_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_matrix_rank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_slogdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_vecdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_logical_or_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_mH_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_min_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_msort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_narrow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_hardtanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_kl_div_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_max_unpool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_pad_constant_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_pdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_relu6_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_smooth_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_softshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_upsample_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_norm_inf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_norm_nuc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_polygamma_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_pow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_quantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_randn_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_reshape_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_rot90_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_round_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_round_decimals_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_round_decimals_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_signal_windows_kaiser_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_airy_ai_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_hermite_polynomial_h_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_shifted_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_shifted_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_shifted_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_std_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_t_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_tanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_trace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_true_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_uniform_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_unsqueeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_var_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_view_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_vstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_histogram_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_igammac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_index_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_isclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_inv_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_lu_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_matrix_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_multi_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_pinv_singular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_vecdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_long_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_matmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_movedim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_msort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_mvlgamma_mvlgamma_p_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nan_to_num_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_native_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_alpha_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_conv_transpose2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_hinge_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_interpolate_area_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_interpolate_nearest-exact_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_pairwise_distance_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_selu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_silu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_smooth_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_tanhshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_norm_inf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_polar_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_pow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_real_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_reshape_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_resolve_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_roll_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_scatter_reduce_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_short_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_sin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_sinc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_slice_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_bessel_j1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_bessel_y1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_entr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_erfcx_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_hermite_polynomial_he_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_log_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_xlog1py_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_svd_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_tile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_true_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_unsqueeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_var_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_view_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_H_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp___rdiv___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp___rpow___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_addbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_addr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_atleast_3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_bfloat16_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_cartesian_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_corrcoef_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_empty_permuted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_eq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_equal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fft_fft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fft_fftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fft_hfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_flip_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_floor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_floor_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_geometric_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_gt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_heaviside_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_index_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_index_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_isclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_item_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_ldl_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_matrix_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_log10_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_log_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_matmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_matrix_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_msort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nansum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_new_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_gaussian_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_hardshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_interpolate_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_interpolate_trilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_multi_head_attention_forward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_selu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_outer_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_permute_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_polygamma_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_polygamma_polygamma_n_2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_quantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_randint_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_resize_as__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_round_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_scatter_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_scatter_reduce_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_short_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_signal_windows_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_sin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_sinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_sort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_airy_ai_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_entr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_erfcx_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_hermite_polynomial_h_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_scaled_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_shifted_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_xlog1py_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_zeta_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_tile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_unbind_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_unique_consecutive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_vdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_view_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvmap_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvmap_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp___rmatmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp__segment_reduce_offsets_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_acosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_any_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_as_strided_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_as_strided_partial_views_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_atleast_3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_block_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_cdouble_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_char_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_clamp_min_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_contiguous_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_empty_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_eq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fft_fft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fft_ifftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fft_ihfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fft_rfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_floor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_frexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_geometric_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_grid_sampler_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule___getitem___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule___rmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule__segment_reduce_offsets_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule__unsafe_masked_index_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_addr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_all_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_bucketize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_cfloat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_clone_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_copysign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_cumulative_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_deg2rad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_diagonal_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_digamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_dsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_empty_permuted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fft_ifftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fft_rfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_full_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_half_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_igammac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_isinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_isnan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_jiterator_unary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_ldexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_cond_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_ldl_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_solve_triangular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_log_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_logspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_lt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_max_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_meshgrid_variadic_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nan_to_num_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_narrow_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_adaptive_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_adaptive_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_adaptive_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_conv2d_stride_depthwise_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_conv2d_stride_padding_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_conv2d_strided_padding_dilation_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_fractional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_hinge_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_interpolate_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_leaky_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_max_unpool1d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_max_unpool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_mse_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_mse_loss_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_multi_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_prelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_relu6_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_smooth_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_norm_fro_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_permute_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_polygamma_polygamma_n_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_positive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_quantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_rad2deg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_randint_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_randn_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_repeat_interleave_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_scatter_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_searchsorted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_sgn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_signal_windows_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_signal_windows_gaussian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_sort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_i1e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_laguerre_polynomial_l_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_log_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_spherical_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_std_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_std_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_take_along_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_transpose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_trapz_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_unbind_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_unfold_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_unique_consecutive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_xlogy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_zeros_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_histogram_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_item_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_jiterator_unary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_matrix_rank_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_norm_subgradients_at_zero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_pinv_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_slogdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_tensorinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_long_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_mH_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_mvlgamma_mvlgamma_p_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_native_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_new_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_alpha_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_conv2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_conv_transpose2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_conv_transpose3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_interpolate_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_interpolate_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_max_unpool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_max_unpool2d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_mish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_mse_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_pixel_unshuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_relu6_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_selu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_silu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nonzero_static_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_outer_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_polygamma_polygamma_n_2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_ravel_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_repeat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_resolve_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_roll_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_rot90_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_scatter_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_signal_windows_bartlett_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_signal_windows_blackman_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_sinc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_bessel_y1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_hermite_polynomial_he_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_xlog1py_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_t_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_tanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_to_sparse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_transpose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_triangular_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_unsafe_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_var_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_T_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp___getitem___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp___getitem___functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp___rmatmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp__chunk_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_addbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_atleast_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_broadcast_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_char_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_constant_pad_nd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_contiguous_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_cov_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_double_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_dsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_einsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_eq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_expand_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_eye_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fft_ifftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fft_ihfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fft_irfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fft_irfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_flip_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_hsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_isclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_isfinite_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_isin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_isposinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_isreal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_jiterator_unary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_lstsq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_matrix_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_tensorsolve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_vecdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_log10_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_lt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_maximum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_ne_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_new_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_new_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_conv2d_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_conv_transpose3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_hardsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_hinge_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_rrelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_silu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nonzero_static_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_normal_number_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_ones_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_permute_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_polygamma_polygamma_n_2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_remainder_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_reshape_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_resize__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_round_decimals_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_scatter_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_scatter_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_searchsorted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_signal_windows_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_signal_windows_hann_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_sparse_mm_reduce_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_airy_ai_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_erfcx_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_square_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_std_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_stft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_sub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_t_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_take_along_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_tril_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvmap_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvmap_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvmap_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvmap_ZeroGradientsGenVmapAutogradFunction_cpu_float32 2025-08-14T23:43:37.2405319Z 2025-08-14T23:43:42.5334109Z Running functorch/test_aotdispatch 3/7 ... [2025-08-14 23:43:42.532800] 2025-08-14T23:43:42.5334632Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:43:42.5341076Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_aotdispatch.py', '-m', 'not serial', '--shard-id=3', '--num-shards=7', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:43:42.533901] 2025-08-14T23:46:28.8065551Z 2025-08-14T23:46:28.8068405Z functorch/test_ops 2/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_2.8_2d94048c2953ea8c_.log 2025-08-14T23:46:28.8588242Z Running 1303 items in this shard: test/functorch/test_ops.py::TestOperatorsCPU::test_extremal_numerics_binary_cross_entropy_cpu, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad__batch_norm_with_update_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad__unsafe_masked_index_put_accumulate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad__upsample_bilinear2d_aa_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_abs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_addcdiv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_addmm_decomposed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_alias_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_aminmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_argwhere_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_asin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_asinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_bfloat16_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_broadcast_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_cartesian_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_char_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_clone_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_cosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_cummax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_cummin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_cumulative_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_double_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fft_fft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fft_ihfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fft_rfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_gather_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_histogram_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_hypot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_index_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_inner_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_isreal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_cond_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_lstsq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_matrix_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_vecdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_logical_not_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_logit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_max_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_mvlgamma_mvlgamma_p_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_mvlgamma_mvlgamma_p_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nansum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_conv2d_stride_groups_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_conv2d_stride_padding_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_conv2d_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_conv3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_dropout3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_embedding_bag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_gelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_hardsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_instance_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_interpolate_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_leaky_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_logsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_max_unpool3d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_smooth_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_threshold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_norm_inf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_normal_number_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_ops_aten_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_ormqr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_outer_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_polygamma_polygamma_n_2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_positive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_round_decimals_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_scatter_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_sigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_sparse_sampled_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_airy_ai_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_bessel_y0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_entr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_modified_bessel_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_scaled_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_sqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_sum_to_size_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_t_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_take_along_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_trace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_unbind_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_unflatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_unique_consecutive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_unsqueeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_where_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp___getitem___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp___rmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp__unsafe_masked_index_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_acosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_addcmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_any_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_as_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_asinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_atleast_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_broadcast_shapes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_cartesian_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_cdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_cosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_cumulative_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_diag_embed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_diagflat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_ifft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_irfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_floor_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_index_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_int_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_jiterator_unary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_lstsq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_lu_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_lu_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_log1p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_log2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_logaddexp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_mH_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_matmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_maximum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_min_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_mvlgamma_mvlgamma_p_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nanquantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_native_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_new_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_adaptive_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_alpha_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_conv2d_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_conv3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_embedding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_fractional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_group_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_max_unpool2d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_multilabel_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_ormqr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_randn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_renorm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_round_decimals_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_rsqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_scatter_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_short_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_signal_windows_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_signbit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_erfcx_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_modified_bessel_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_squeeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_sum_to_size_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_triangular_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_unsqueeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_var_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_zeros_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp___getitem___functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp__segment_reduce_offsets_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_aminmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_asinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_atan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_atleast_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_broadcast_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_clamp_min_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_clone_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_double_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_eye_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_fft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_fftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_ifftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_rfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_float_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_float_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_frac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_ge_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_hash_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_histogramdd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_hsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_index_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_index_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_isclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_isinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_isneginf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_isposinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_item_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_jiterator_unary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_le_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_det_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_eigh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_ldl_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_matrix_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_svdvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_tensorinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_tensorsolve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_vector_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_log_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_logcumsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_min_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_mm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_mv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_mvlgamma_mvlgamma_p_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_adaptive_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_binary_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_conv2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_conv3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_conv_transpose3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_cosine_similarity_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_dropout2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_dropout3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_elu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_fractional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_interpolate_bicubic_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_interpolate_trilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_leaky_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_pdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_prelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_rrelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_scaled_dot_product_attention_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_softmin_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_randn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_repeat_interleave_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_resize__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_resolve_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_rsub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_sign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_sin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_scaled_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_std_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_tan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_tanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_topk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_triangular_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_unsafe_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjpvmap_NumpyMulAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmap_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmapvmap_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmapvmap_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_bool_raises_floor_cpu_bool, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_argmax_cpu_complex32, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_argmin_cpu_complex64, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_ceil_cpu_complex32, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_clamp_cpu_complex64, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_ge_cpu_complex32, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_ge_cpu_complex64, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_le_cpu_complex128, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_topk_cpu_complex64, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_T_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_conj_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_list_return_dsplit_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_list_return_hsplit_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_list_return_split_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_list_return_vsplit_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_movedim_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_reshape_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_unfold_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_view_as_complex_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_acos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_addcmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_addmv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_all_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_arange_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_byte_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_ceil_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_cholesky_inverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_constant_pad_nd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_corrcoef_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_count_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_dist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_equal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fft_ifftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fft_irfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fft_rfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_flipud_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_histogram_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_igamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_index_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_index_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_isfinite_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_isneginf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_cholesky_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_cond_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_eig_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_lstsq_grad_oriented_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_lu_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_pinv_singular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_svdvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_tensorinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_logical_not_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_logspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_long_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_meshgrid_variadic_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_mm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_mvlgamma_mvlgamma_p_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nan_to_num_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_adaptive_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_conv2d_strided_padding_dilation_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_conv3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_dropout3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_embedding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_hardsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_local_response_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_max_unpool1d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_max_unpool3d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_pad_replicate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_poisson_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_threshold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_upsample_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_norm_fro_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_permute_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_polygamma_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_randn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_renorm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_repeat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_scatter_reduce_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_searchsorted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_short_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_sigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_signal_windows_general_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_bessel_y0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_bessel_y1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_log_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_modified_bessel_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_scaled_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_tan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_trunc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_unsafe_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_unsqueeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_var_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_vdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_view_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_NumpyMulAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp___rmatmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp__softmax_backward_data_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_arange_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_atleast_1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_bernoulli_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_cholesky_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_clamp_max_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_dist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_double_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_dstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_einsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_empty_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_empty_permuted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_equal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fft_fftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fft_hfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fft_irfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fft_rfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_flipud_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_gather_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_ge_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_grid_sampler_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_histogram_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_index_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_index_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_inner_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_int_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_isreal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_jiterator_4inputs_with_extra_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_ldexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_lerp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_det_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_eigvalsh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_norm_subgradients_at_zero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_svdvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_vander_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_log_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_logical_and_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_logical_not_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_long_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_mH_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_fill_functorch_Scalar_only_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_max_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_mul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_conv2d_stride_padding_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_conv2d_strided_padding_dilation_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_dropout3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_huber_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_instance_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_interpolate_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_interpolate_trilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_relu6_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_triplet_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_upsample_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_norm_fro_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_norm_inf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_norm_nuc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_polygamma_polygamma_n_2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_pow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_rad2deg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_rsqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_rsub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_searchsorted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_short_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_signal_windows_general_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_sin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_airy_ai_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_bessel_y0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_modified_bessel_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_squeeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_squeeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_transpose_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_unfold_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_unique_consecutive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_vdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_zeros_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_H_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_T_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap___rmatmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap___rmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_addcmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_addmv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_argwhere_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_bool_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_byte_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_byte_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_chalf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_clamp_max_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_hfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_ihfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_irfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_rfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_flipud_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_float_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_float_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_floor_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fmod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_histogram_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_histogramdd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_hsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_index_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_jiterator_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_jiterator_unary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_eigh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_inv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_matrix_rank_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_solve_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_logcumsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_logdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_fill_functorch_Scalar_only_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_multinomial_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_mv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_ne_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_adaptive_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_channel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_conv1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_conv2d_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_conv2d_stride_groups_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_conv2d_strided_padding_dilation_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_fractional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_group_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_huber_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_interpolate_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_margin_ranking_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_max_unpool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_max_unpool3d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_multi_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_pad_constant_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_pad_reflect_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_pixel_unshuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_smooth_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_softplus_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_ormqr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_polygamma_polygamma_n_2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_positive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_resize__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_resize_as__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_short_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_signal_windows_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_signal_windows_kaiser_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_signal_windows_nuttall_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_sin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_airy_ai_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_hermite_polynomial_h_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_i1e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_modified_bessel_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_scaled_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_shifted_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_spherical_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_square_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_squeeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_squeeze_multiple_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_tril_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_vdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_where_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_xlogy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ForwardHasDefaultArgsAutogradFunction_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_MulGenVmapAutogradFunction_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_NumpyCubeNotComposableAutogradFunction_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_SelectAutogradFunction_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad___rmod___cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad__segment_reduce_offsets_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad__unsafe_masked_index_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad__unsafe_masked_index_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_add_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_addbmm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_addcdiv_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_amax_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_aminmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_arange_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_arange_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_argmin_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_argwhere_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_argwhere_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_as_strided_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_atan2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_atleast_2d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_block_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cat_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cfloat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cfloat_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_char_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_clone_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_conj_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_contiguous_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_copysign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_copysign_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_count_nonzero_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cummax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_diagonal_scatter_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_double_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_einsum_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_empty_strided_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_eq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_expand_as_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_expm1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_fft2_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_rfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_rfftn_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_flip_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_flipud_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_floor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_frexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_full_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_full_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_gather_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_index_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_index_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_isclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_isfinite_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_isinf_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_isneginf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_item_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_kron_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_kthvalue_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ldexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_le_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_det_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_eig_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_eigh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_inv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_ldl_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_lu_factor_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_multi_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_pinv_singular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_solve_ex_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_log10_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_log_normal_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logical_or_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logical_xor_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logit_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logspace_tensor_overload_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_long_functorch_no_channels_last_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mH_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mH_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mT_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_fill_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_matrix_exp_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_max_pool2d_with_indices_backward_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_max_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mean_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mul_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mvlgamma_mvlgamma_p_5_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nan_to_num_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_narrow_copy_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_native_batch_norm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_native_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_adaptive_max_pool1d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_adaptive_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_stride_groups_with_bias_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_with_bias_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv_transpose2d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_cosine_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_gelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_hardtanh_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_interpolate_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_interpolate_nearest-exact_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_interpolate_nearest_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_layer_norm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_local_response_norm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_margin_ranking_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_max_pool1d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_max_unpool1d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_max_unpool1d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_mse_loss_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_prelu_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_rms_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_rrelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_rrelu_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_softmin_with_dtype_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_softplus_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_softshrink_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_softsign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_upsample_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nonzero_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_normal_in_place_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_normal_number_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ones_like_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_polygamma_polygamma_n_4_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_polygamma_polygamma_n_4_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_rad2deg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_randint_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_reshape_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_round_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_round_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_hann_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sinc_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sinh_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_softmax_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_bessel_j1_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_erfcx_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_i0e_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_modified_bessel_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_ndtri_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_scaled_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_shifted_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_shifted_chebyshev_polynomial_v_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_spherical_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_xlog1py_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_split_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_squeeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_squeeze_multiple_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sum_to_size_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_tensor_split_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_to_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_trapezoid_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_true_divide_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unsqueeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_view_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_vstack_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_xlogy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_T_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall___rmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall__segment_reduce_lengths_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_addmm_decomposed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_aminmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_as_strided_partial_views_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_contiguous_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_diagonal_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_div_trunc_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_einsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_exp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_eye_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_fft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_fftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_ihfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_rfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_full_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_geometric_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_half_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule___getitem___functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule___radd___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule___rmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule__native_batch_norm_legit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule__upsample_bilinear2d_aa_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_alias_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_any_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_as_strided_partial_views_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_asinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_atleast_1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_broadcast_shapes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_cfloat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_clamp_max_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_combinations_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_conj_physical_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_digamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_div_no_rounding_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_expand_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_expand_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_hfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fmod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_histogram_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_igamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_isreal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_jiterator_2inputs_2outputs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_lerp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_cond_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_eig_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_matrix_rank_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_logdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_logical_xor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_matmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_meshgrid_list_of_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_mm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nanquantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_narrow_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_ne_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_conv2d_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_conv2d_stride_padding_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_conv2d_strided_padding_dilation_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_fractional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_max_unpool1d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_multi_head_attention_forward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_pairwise_distance_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_pixel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_rrelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_triplet_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_ones_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_pca_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_permute_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_pinverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_randint_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_ravel_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_scalar_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_scatter_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_select_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_sgn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_short_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_sign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_signal_windows_hann_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_sort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_hermite_polynomial_he_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_split_list_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_split_with_sizes_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_split_with_sizes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_squeeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_std_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_sum_to_size_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_topk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_transpose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_unbind_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_histc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_index_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_inner_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_isneginf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_kthvalue_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_lerp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_eig_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_eigh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_householder_product_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_ldl_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_lstsq_grad_oriented_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_pinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_logcumsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_logical_xor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_logspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_logspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_fill_functorch_Scalar_only_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_narrow_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_new_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_adaptive_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_adaptive_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_adaptive_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_adaptive_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_conv1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_conv_transpose3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_embedding_bag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_gelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_huber_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_interpolate_trilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_kl_div_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_max_unpool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_max_unpool2d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_poisson_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_upsample_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_ones_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_quantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_rand_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_randn_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_reciprocal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_renorm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_round_decimals_neg_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_rsqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_signal_windows_nuttall_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_sparse_sampled_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_airy_ai_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_ndtri_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_zeta_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_squeeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_sub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_t_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_to_sparse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_unbind_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_unflatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_unique_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_unsqueeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp___getitem___functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp__unsafe_masked_index_put_accumulate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_addmm_decomposed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_alias_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_allclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_angle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_argsort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_as_strided_partial_views_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_atleast_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_bmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_broadcast_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_cdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_char_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_conj_physical_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_cosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_cummax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_div_floor_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_double_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_dstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_erfinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_expand_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_eye_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fft_hfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_frac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_ge_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_half_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_hash_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_igamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_index_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_index_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_isposinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_jiterator_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_kron_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_kthvalue_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_lerp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_cholesky_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_det_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_eigh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_lu_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_lu_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_vander_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_logspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_mH_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_fill_functorch_Scalar_only_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_max_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_max_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_min_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nanquantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_ne_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_new_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_new_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_adaptive_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_conv1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_conv2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_conv2d_stride_padding_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_conv2d_strided_padding_dilation_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_conv_transpose3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_cosine_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_embedding_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_gelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_max_unpool2d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_multi_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_pad_replicate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_pairwise_distance_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_pixel_unshuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_softsign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nonzero_static_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_norm_fro_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_ops_aten__new_zeros_with_same_feature_meta_functorchonly_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_polar_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_positive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_remainder_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_signal_windows_general_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_signal_windows_hann_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_signal_windows_kaiser_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_slice_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_i0e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_i1e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_legendre_polynomial_p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_ndtri_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_shifted_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_squeeze_multiple_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_std_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_sum_to_size_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_tensordot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_topk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_tril_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_unflatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_unsqueeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_view_as_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvmap_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvmap_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvmap_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp__native_batch_norm_legit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp__segment_reduce_lengths_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp__softmax_backward_data_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_addmm_decomposed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_atleast_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_bfloat16_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_bool_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_byte_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_cfloat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_cholesky_inverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_clone_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_conj_physical_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_cov_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_cumulative_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_equal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_exp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fft_ifft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fft_irfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_flip_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_float_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_gather_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_ge_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_geqrf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_half_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule___radd___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule___rpow___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_acosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_allclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_angle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_argwhere_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_atleast_3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_byte_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_cholesky_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_clamp_min_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_cummin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_diag_embed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_div_floor_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_div_trunc_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fft_ifft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fft_ifftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fft_rfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_hsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_index_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_int_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_isin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_lerp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_eigvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_matrix_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_matrix_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_pinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_tensorinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_log_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_logaddexp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_mH_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_maximum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_mvlgamma_mvlgamma_p_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nanquantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nansum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_new_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_alpha_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_binary_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_celu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_embedding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_gelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_hardswish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_local_response_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_max_unpool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_normal_in_place_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_ormqr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_real_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_resize__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_scatter_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_signal_windows_general_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_signal_windows_hann_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_sparse_sampled_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_stft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_unflatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_var_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_index_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_index_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_isclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_isfinite_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_isin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_isinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_ldexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_eigvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_householder_product_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_inv_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_lu_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_tensorsolve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_log_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_mm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_movedim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_multinomial_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_mv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nanquantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_adaptive_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_binary_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_channel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_embedding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_fractional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_interpolate_nearest-exact_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_kl_div_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_max_unpool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_smooth_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_tanhshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_triplet_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_upsample_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_normal_in_place_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_ormqr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_permute_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_polygamma_polygamma_n_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_polygamma_polygamma_n_4_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_reshape_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_resize__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_short_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_signal_windows_general_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_sort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_bessel_y0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_entr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_squeeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_transpose_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_trapz_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_unbind_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_unique_consecutive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_unique_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_unsqueeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_var_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_xlogy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp__native_batch_norm_legit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp__upsample_bilinear2d_aa_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_aminmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_as_strided_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_as_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_asinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_bfloat16_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_bfloat16_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_bool_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_cauchy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_char_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_clamp_max_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_cummax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_cummin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_diag_embed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_diff_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_empty_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fft_ihfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fft_rfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_flatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_floor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_floor_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fmod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_histc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_igamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_index_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_index_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_int_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_isinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_jiterator_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_jiterator_binary_return_by_ref_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_kron_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_kthvalue_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_lgamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_eigh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_matrix_rank_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_pinv_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_vector_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_log1p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_logaddexp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_logit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_long_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_max_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nansum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_narrow_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_channel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_conv2d_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_gaussian_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_gelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_hardswish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_instance_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_interpolate_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_max_unpool1d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_pairwise_distance_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_pixel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_rms_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_softmin_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_softsign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_threshold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_upsample_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_norm_nuc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_pow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_quantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_rad2deg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_rand_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_randint_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_round_decimals_neg_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_rsqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_rsub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_scatter_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_slice_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_sparse_sampled_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_i1e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_ndtri_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_shifted_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_tan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_tile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_torch_ops_aten__safe_softmax_default_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_unsafe_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_view_as_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvmap_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvmap_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvmap_NumpyMulAutogradFunction_cpu_float32 2025-08-14T23:46:28.9131457Z 2025-08-14T23:46:34.2058451Z Running optim/test_swa_utils 1/1 ... [2025-08-14 23:46:34.205490] 2025-08-14T23:46:34.2059075Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:46:34.2064912Z 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-14 23:46:34.206072] 2025-08-14T23:46:35.4527546Z 2025-08-14T23:46:35.4528749Z functorch/test_aotdispatch 1/7 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_aotdispatch_1.7_57c47a5eacb20bc7_.log 2025-08-14T23:46:35.4675258Z Running 292 items in this shard: test/functorch/test_aotdispatch.py::TestAOTAutograd::test_default_partitioner_saves_symints_not_tensors_for_bw, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_inference_mode, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_hidden_from_autograd_aliasing, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_is_output, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_requires_grad_no_grad_detach_mixed, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_invalid_dupe, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_mark_outputs_dynamic_use_autograd_False, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_mark_outputs_dynamic_use_autograd_True, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_module, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_nonidempotent_amp, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_output_aliases_intermediate_and_returned_different_grad, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_output_aliases_intermediate_inplace_view_and_view, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_real_weights_in_symbolic_mode, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_view_and_inplace_view, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_input_dupes_banned, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_input_mutation, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_predispatch_reshape, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_predispatch_with_autograd_op, test/functorch/test_aotdispatch.py::TestPartitioning::test_min_cut_partitioner, test/functorch/test_aotdispatch.py::TestAOTDispatch::test_aot_dispatch_inference, test/functorch/test_aotdispatch.py::TestAOTDispatch::test_aot_dispatch_input_mutation_and_output_alias, test/functorch/test_aotdispatch.py::TestAOTDispatch::test_aot_dispatch_output_requires_grad_in_no_grad, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_aot_module_simplified_fake_tensor_gm_raises, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_grads_no_force_contiguous_subclass, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_lift_fresh_copy_in_graph, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_noncontig_nonmemformat_tangents_dynamic_shapes_False_test_subclasses_True_device_cpu, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_rrelu, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_saved_tensors_hooks_recompile, test/functorch/test_aotdispatch.py::TestPythonKeyCPU::test_make_fx_cpu, test/functorch/test_aotdispatch.py::TestPythonKeyCPU::test_resnet18_backward_trace_cpu, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive___radd___cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive___rmod___cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive__chunk_cat_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_addr_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_argmin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_block_diag_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_broadcast_to_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_cdouble_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_ceil_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_cholesky_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_cholesky_inverse_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_clamp_max_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_conj_physical_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_cosh_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_cummax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_diff_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_exp2_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fft_fftn_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fft_ifft2_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fft_ifftshift_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fft_irfftn_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fft_rfft2_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fft_rfft_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fill_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_float_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_gt_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_histogramdd_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_hstack_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_i0_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_invoke_quant_simple_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_isposinf_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_kron_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_eigvalsh_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_lu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_lu_solve_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_norm_subgradients_at_zero_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_pinv_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_svdvals_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linspace_tensor_overload_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_mT_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_map_simple_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_masked_prod_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_masked_softmin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_masked_sum_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_matmul_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_minimum_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_mul_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nan_to_num_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nanquantile_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_narrow_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_new_ones_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_adaptive_avg_pool2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_adaptive_avg_pool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_alpha_dropout_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_channel_shuffle_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_cosine_embedding_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_cross_entropy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_hardshrink_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_hinge_embedding_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_interpolate_bicubic_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_kl_div_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_linear_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_margin_ranking_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_max_unpool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_multilabel_margin_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_normalize_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_silu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_softmin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_softmin_with_dtype_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_tanhshrink_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_unfold_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nonzero_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nonzero_static_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_norm_fro_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_normal_in_place_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_permute_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_randint_like_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_repeat_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_reshape_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_resize__cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_round_decimals_3_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_rsub_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_slice_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_softmax_with_dtype_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_legendre_polynomial_p_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_shifted_chebyshev_polynomial_v_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_split_with_sizes_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_split_with_sizes_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_std_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_std_mean_unbiased_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_stft_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_sum_to_size_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_tensor_split_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_tile_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_to_sparse_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_torch_ops_aten__safe_softmax_default_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_unbind_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_unsafe_split_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive___rmod___cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive___rmul___cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive___rsub___cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_addcdiv_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_addmv_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_arange_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_as_strided_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_block_diag_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_broadcast_tensors_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_byte_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_cholesky_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_column_stack_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_complex_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_conj_physical_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_constant_pad_nd_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_div_floor_rounding_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_div_trunc_rounding_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_dstack_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_eq_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_exp_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_fft_fftn_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_float_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_geqrf_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_i0_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_index_reduce_mean_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_isclose_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_isin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_isposinf_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_item_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_lstsq_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_lu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_lu_factor_ex_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_lu_solve_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_multi_dot_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_solve_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_solve_triangular_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_svdvals_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_tensorinv_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_log_softmax_with_dtype_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_logaddexp2_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_lt_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_lu_unpack_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_masked_sum_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_matrix_exp_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_max_pool2d_with_indices_backward_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_meshgrid_variadic_tensors_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_mm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_mv_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_mvlgamma_mvlgamma_p_5_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_new_full_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_alpha_dropout_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_bilinear_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_conv_transpose2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_hardshrink_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_hardtanh_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_interpolate_area_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_interpolate_linear_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_interpolate_trilinear_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_leaky_relu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_max_pool1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_max_unpool2d_grad_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_pairwise_distance_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_relu6_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_selu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_triplet_margin_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_unfold_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_upsample_nearest_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_normal_number_mean_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_outer_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_permute_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_pow_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_rand_like_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_round_decimals_neg_3_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_searchsorted_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_sign_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_sin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_sinc_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_bessel_j1_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_scaled_modified_bessel_k0_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_split_list_args_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_std_mean_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_std_mean_unbiased_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_take_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_tile_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_to_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_torch_ops_aten__safe_softmax_default_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_unbind_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_unsqueeze_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_xlogy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_AvgPool2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_CosineEmbeddingLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_CrossEntropyLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_GELU_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_GLU_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_GRUCell_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_InstanceNorm2d_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_InstanceNorm3d_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_LPPool2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_ReLU_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_ReflectionPad2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_Tanhshrink_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_ZeroPad1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_ZeroPad3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_AdaptiveMaxPool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_BCEWithLogitsLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_BatchNorm1d_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_BatchNorm2d_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_CELU_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_CircularPad2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_ConvTranspose2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_GRU_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_Hardtanh_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_LPPool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_LazyConvTranspose1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_LazyConvTranspose2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_Linear_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_LogSoftmax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_NLLLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_PReLU_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_ReplicationPad1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_ReplicationPad3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_TransformerEncoderLayer_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_TransformerEncoder_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_alias_of_intermediate_detach_backend_aot_eager_view_replay_for_aliased_outputs_True_dynamic_shapes_True, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_alias_of_intermediate_detach_backend_inductor_view_replay_for_aliased_outputs_False_dynamic_shapes_True, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_alias_of_intermediate_detach_backend_inductor_view_replay_for_aliased_outputs_True_dynamic_shapes_False, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_backward_pass_autocast_on, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_buffer_copied_in_graph_with_different_shapes, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_dupe_arg, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_duplicated_arguments_on_tensor_overlap, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_grad_context, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_metadata_mutation_aliases, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_requires_grad_no_grad, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_requires_grad_no_grad_detach_mixed, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_multi_output_list, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_aliases_intermediate_multi_output_view, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_aliases_intermediate_returned_multiple_times, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_aliases_output_view_meta_replay, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_dict, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_real_weights_in_symbolic_mode_with_inplace_ops, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_set__and_data_mutation_good, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_set__steals_view_chain, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_some_outputs_dont_require_grad_non_view, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_subclass_metadata_mutation_req_grad_True, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_alias_of_intermediate_detach_backend_aot_eager_view_replay_for_aliased_outputs_True_dynamic_shapes_False, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_alias_of_intermediate_detach_backend_inductor_view_replay_for_aliased_outputs_True_dynamic_shapes_False, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_custom_tensor_metadata, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_dupe_arg_torture, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_grad_context, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_alias_everything, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_aliases_other_input2, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_metadata, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_storage_resize_up, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_output_view_metadata_mutate_multiple, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_list_codegen, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_mark_outputs_dynamic_use_autograd_False, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_mem_leak_from_save_for_bw, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_nested_subclasses_non_homogenous, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_nested_subclasses_non_nested_grad, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_output_op_depending_on_symint, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_set__and_data_mutation_bad, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_some_outputs_dont_require_grad_non_view, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_subclass_metadata_mutation_req_grad_False 2025-08-14T23:46:35.4811002Z 2025-08-14T23:46:38.6312480Z 2025-08-14T23:46:38.6313587Z 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_16ed6e2f1cfa6bfb_.log 2025-08-14T23:46:38.6314229Z 2025-08-14T23:46:40.6849216Z Running functorch/test_vmap 2/2 ... [2025-08-14 23:46:40.684369] 2025-08-14T23:46:40.6849712Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:46:40.6855988Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_vmap.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-14 23:46:40.684956] 2025-08-14T23:46:43.6884453Z Running nn/test_load_state_dict 1/1 ... [2025-08-14 23:46:43.688253] 2025-08-14T23:46:43.6885051Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:46:43.6892273Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'nn/test_load_state_dict.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-14 23:46:43.689030] 2025-08-14T23:46:50.1623466Z 2025-08-14T23:46:50.1624655Z nn/test_load_state_dict 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_load_state_dict_1.1_ec350fe9ab239cec_.log 2025-08-14T23:46:50.1636319Z Running 27 items in this shard: test/nn/test_load_state_dict.py::TestLoadStateDict::test_load_state_dict_BC_swap_False, test/nn/test_load_state_dict.py::TestLoadStateDict::test_load_state_dict_BC_swap_True, test/nn/test_load_state_dict.py::TestLoadStateDict::test_load_state_dict_assign_meta_swap_False_keep_vars_False, test/nn/test_load_state_dict.py::TestLoadStateDict::test_load_state_dict_assign_meta_swap_False_keep_vars_True, test/nn/test_load_state_dict.py::TestLoadStateDict::test_load_state_dict_assign_meta_swap_True_keep_vars_False, test/nn/test_load_state_dict.py::TestLoadStateDict::test_load_state_dict_assign_meta_swap_True_keep_vars_True, test/nn/test_load_state_dict.py::TestLoadStateDict::test_load_state_dict_assign_shape_stride_swap_False, test/nn/test_load_state_dict.py::TestLoadStateDict::test_load_state_dict_assign_shape_stride_swap_True, test/nn/test_load_state_dict.py::TestLoadStateDict::test_load_state_dict_assign_with_optimizer_swap_False, test/nn/test_load_state_dict.py::TestLoadStateDict::test_load_state_dict_assign_with_optimizer_swap_True, test/nn/test_load_state_dict.py::TestLoadStateDict::test_load_state_dict_child_swap_False, test/nn/test_load_state_dict.py::TestLoadStateDict::test_load_state_dict_child_swap_True, test/nn/test_load_state_dict.py::TestLoadStateDict::test_load_state_dict_custom_swap_False, test/nn/test_load_state_dict.py::TestLoadStateDict::test_load_state_dict_custom_swap_True, test/nn/test_load_state_dict.py::TestLoadStateDict::test_load_state_dict_invalid_swap_False, test/nn/test_load_state_dict.py::TestLoadStateDict::test_load_state_dict_invalid_swap_True, test/nn/test_load_state_dict.py::TestLoadStateDict::test_load_state_dict_ref_cycle_swap_False, test/nn/test_load_state_dict.py::TestLoadStateDict::test_load_state_dict_swap_False, test/nn/test_load_state_dict.py::TestLoadStateDict::test_load_state_dict_swap_True, test/nn/test_load_state_dict.py::TestLoadStateDict::test_load_state_dict_type_swap_False, test/nn/test_load_state_dict.py::TestLoadStateDict::test_load_state_dict_type_swap_True, test/nn/test_load_state_dict.py::TestLoadStateDict::test_load_state_dict_warn_assign_swap_False, test/nn/test_load_state_dict.py::TestLoadStateDict::test_load_state_dict_warn_assign_swap_True, test/nn/test_load_state_dict.py::TestLoadStateDict::test_load_state_dict_with_unexpected_key_swap_False, test/nn/test_load_state_dict.py::TestLoadStateDict::test_load_state_dict_with_unexpected_key_swap_True, test/nn/test_load_state_dict.py::TestLoadStateDictSwap::test_swap_subclass_swap_True_assign_False, test/nn/test_load_state_dict.py::TestLoadStateDictSwap::test_swap_subclass_swap_True_assign_True 2025-08-14T23:46:50.1646059Z 2025-08-14T23:46:56.8358584Z Running test_shape_ops 1/1 ... [2025-08-14 23:46:56.834109] 2025-08-14T23:46:56.8359323Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:46:56.8369005Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_shape_ops.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-14 23:46:56.834109] 2025-08-14T23:47:04.6670813Z 2025-08-14T23:47:04.6672081Z test_shape_ops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_shape_ops_1.1_f9439a923c719e31_.log 2025-08-14T23:47:04.6723740Z Running 97 items in this shard: test/test_shape_ops.py::TestShapeOpsCPU::test_clamp_cpu_float32, test/test_shape_ops.py::TestShapeOpsCPU::test_clamp_cpu_int64, test/test_shape_ops.py::TestShapeOpsCPU::test_clamp_propagates_nans_cpu, test/test_shape_ops.py::TestShapeOpsCPU::test_clamp_raises_arg_errors_cpu, test/test_shape_ops.py::TestShapeOpsCPU::test_complex_rot90_cpu_complex128, test/test_shape_ops.py::TestShapeOpsCPU::test_complex_rot90_cpu_complex64, test/test_shape_ops.py::TestShapeOpsCPU::test_diag_cpu_bool, test/test_shape_ops.py::TestShapeOpsCPU::test_diag_cpu_float32, test/test_shape_ops.py::TestShapeOpsCPU::test_diagonal_cpu, test/test_shape_ops.py::TestShapeOpsCPU::test_diagonal_multidim_cpu_float32, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_cpu_bfloat16, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_cpu_bool, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_cpu_complex128, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_cpu_complex64, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_cpu_float16, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_cpu_float32, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_cpu_float64, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_cpu_int16, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_cpu_int32, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_cpu_int64, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_cpu_int8, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_cpu_uint8, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_errors_cpu_bfloat16, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_errors_cpu_bool, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_errors_cpu_complex128, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_errors_cpu_complex64, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_errors_cpu_float16, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_errors_cpu_float32, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_errors_cpu_float64, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_errors_cpu_int16, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_errors_cpu_int32, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_errors_cpu_int64, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_errors_cpu_int8, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_errors_cpu_uint8, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_large_tensor_cpu, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_numpy_cpu_bfloat16, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_numpy_cpu_bool, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_numpy_cpu_complex128, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_numpy_cpu_complex64, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_numpy_cpu_float16, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_numpy_cpu_float32, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_numpy_cpu_float64, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_numpy_cpu_int16, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_numpy_cpu_int32, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_numpy_cpu_int64, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_numpy_cpu_int8, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_numpy_cpu_uint8, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_unsupported_dtype_cpu_quint2x4, test/test_shape_ops.py::TestShapeOpsCPU::test_flip_unsupported_dtype_cpu_quint4x2, test/test_shape_ops.py::TestShapeOpsCPU::test_fliplr_cpu_complex128, test/test_shape_ops.py::TestShapeOpsCPU::test_fliplr_cpu_float64, test/test_shape_ops.py::TestShapeOpsCPU::test_fliplr_cpu_int64, test/test_shape_ops.py::TestShapeOpsCPU::test_fliplr_invalid_cpu_complex128, test/test_shape_ops.py::TestShapeOpsCPU::test_fliplr_invalid_cpu_float64, test/test_shape_ops.py::TestShapeOpsCPU::test_fliplr_invalid_cpu_int64, test/test_shape_ops.py::TestShapeOpsCPU::test_flipud_cpu_complex128, test/test_shape_ops.py::TestShapeOpsCPU::test_flipud_cpu_float64, test/test_shape_ops.py::TestShapeOpsCPU::test_flipud_cpu_int64, test/test_shape_ops.py::TestShapeOpsCPU::test_flipud_invalid_cpu_complex128, test/test_shape_ops.py::TestShapeOpsCPU::test_flipud_invalid_cpu_float64, test/test_shape_ops.py::TestShapeOpsCPU::test_flipud_invalid_cpu_int64, test/test_shape_ops.py::TestShapeOpsCPU::test_movedim_cpu_complex128, test/test_shape_ops.py::TestShapeOpsCPU::test_movedim_cpu_float32, test/test_shape_ops.py::TestShapeOpsCPU::test_movedim_cpu_int64, test/test_shape_ops.py::TestShapeOpsCPU::test_movedim_invalid_cpu_complex128, test/test_shape_ops.py::TestShapeOpsCPU::test_movedim_invalid_cpu_float32, test/test_shape_ops.py::TestShapeOpsCPU::test_movedim_invalid_cpu_int64, test/test_shape_ops.py::TestShapeOpsCPU::test_nonzero_astuple_out_cpu, test/test_shape_ops.py::TestShapeOpsCPU::test_nonzero_cpu_bfloat16, test/test_shape_ops.py::TestShapeOpsCPU::test_nonzero_cpu_bool, test/test_shape_ops.py::TestShapeOpsCPU::test_nonzero_cpu_float16, test/test_shape_ops.py::TestShapeOpsCPU::test_nonzero_cpu_float32, test/test_shape_ops.py::TestShapeOpsCPU::test_nonzero_cpu_float64, test/test_shape_ops.py::TestShapeOpsCPU::test_nonzero_cpu_int16, test/test_shape_ops.py::TestShapeOpsCPU::test_nonzero_cpu_int32, test/test_shape_ops.py::TestShapeOpsCPU::test_nonzero_cpu_int64, test/test_shape_ops.py::TestShapeOpsCPU::test_nonzero_cpu_int8, test/test_shape_ops.py::TestShapeOpsCPU::test_nonzero_cpu_uint8, test/test_shape_ops.py::TestShapeOpsCPU::test_nonzero_discontiguous_cpu, test/test_shape_ops.py::TestShapeOpsCPU::test_nonzero_no_warning_cpu, test/test_shape_ops.py::TestShapeOpsCPU::test_nonzero_non_diff_cpu, test/test_shape_ops.py::TestShapeOpsCPU::test_rot90_cpu, test/test_shape_ops.py::TestShapeOpsCPU::test_sparse_dense_dim_cpu_complex128, test/test_shape_ops.py::TestShapeOpsCPU::test_sparse_dense_dim_cpu_float32, test/test_shape_ops.py::TestShapeOpsCPU::test_sparse_dense_dim_cpu_int64, test/test_shape_ops.py::TestShapeOpsCPU::test_tolist_cpu, test/test_shape_ops.py::TestShapeOpsCPU::test_trace_cpu_float32, test/test_shape_ops.py::TestShapeOpsCPU::test_trace_cpu_float64, test/test_shape_ops.py::TestShapeOpsCPU::test_trace_cpu_int16, test/test_shape_ops.py::TestShapeOpsCPU::test_trace_cpu_int32, test/test_shape_ops.py::TestShapeOpsCPU::test_trace_cpu_int64, test/test_shape_ops.py::TestShapeOpsCPU::test_trace_cpu_int8, test/test_shape_ops.py::TestShapeOpsCPU::test_trace_cpu_uint8, test/test_shape_ops.py::TestShapeOpsCPU::test_unbind_cpu, test/test_shape_ops.py::TestShapeOpsCPU::test_unfold_all_devices_and_dtypes_cpu, test/test_shape_ops.py::TestShapeOpsCPU::test_unfold_errors_cpu, test/test_shape_ops.py::TestShapeOpsCPU::test_unfold_scalars_cpu 2025-08-14T23:47:04.6772866Z 2025-08-14T23:47:11.2325703Z Running torch_np/numpy_tests/core/test_dtype 1/1 ... [2025-08-14 23:47:11.227928] 2025-08-14T23:47:11.2326575Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:47:11.2334847Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/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-14 23:47:11.232974] 2025-08-14T23:47:17.2912965Z 2025-08-14T23:47:17.2914443Z torch_np/numpy_tests/core/test_dtype 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_dtype_1.1_17710401dc7bad18_.log 2025-08-14T23:47:17.2957184Z Running 102 items in this shard: test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_equivalent_dtype_hashing, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_invalid_types, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Bool, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Bytes0, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Complex128, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Complex32, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Complex64, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Datetime64, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Float128, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Float16, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Float32, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Float64, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Int16, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Int32, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Int64, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Int8, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Object0, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Str0, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Timedelta64, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_UInt16, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_UInt32, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_UInt64, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_UInt8, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Uint32, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Uint64, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Void0, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_richcompare_invalid_dtype_comparison_operation0, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_richcompare_invalid_dtype_comparison_operation1, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_richcompare_invalid_dtype_comparison_operation2, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_richcompare_invalid_dtype_comparison_operation3, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_richcompare_invalid_dtype_equality, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_run_t0, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_run_t1, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_run_t2, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_run_t3, test/torch_np/numpy_tests/core/test_dtype.py::TestDtypeAttributeDeletion::test_dtype_non_writable_attributes_deletion, test/torch_np/numpy_tests/core/test_dtype.py::TestDtypeAttributeDeletion::test_dtype_writable_attributes_deletion, test/torch_np/numpy_tests/core/test_dtype.py::TestPickling::test_builtin_t0, test/torch_np/numpy_tests/core/test_dtype.py::TestPickling::test_builtin_t1, test/torch_np/numpy_tests/core/test_dtype.py::TestPickling::test_builtin_t2, test/torch_np/numpy_tests/core/test_dtype.py::TestPickling::test_builtin_t3, test/torch_np/numpy_tests/core/test_dtype.py::TestPickling::test_builtin_t4, test/torch_np/numpy_tests/core/test_dtype.py::TestPickling::test_pickle_types_DType11, test/torch_np/numpy_tests/core/test_dtype.py::TestPickling::test_pickle_types_bool__10, test/torch_np/numpy_tests/core/test_dtype.py::TestPickling::test_pickle_types_complex128_4, test/torch_np/numpy_tests/core/test_dtype.py::TestPickling::test_pickle_types_complex64_3, test/torch_np/numpy_tests/core/test_dtype.py::TestPickling::test_pickle_types_float16_0, test/torch_np/numpy_tests/core/test_dtype.py::TestPickling::test_pickle_types_float32_1, test/torch_np/numpy_tests/core/test_dtype.py::TestPickling::test_pickle_types_float64_2, test/torch_np/numpy_tests/core/test_dtype.py::TestPickling::test_pickle_types_int16_7, test/torch_np/numpy_tests/core/test_dtype.py::TestPickling::test_pickle_types_int32_8, test/torch_np/numpy_tests/core/test_dtype.py::TestPickling::test_pickle_types_int64_9, test/torch_np/numpy_tests/core/test_dtype.py::TestPickling::test_pickle_types_int8_6, test/torch_np/numpy_tests/core/test_dtype.py::TestPickling::test_pickle_types_uint8_5, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_complex_other_value_based_complex64_complex64_None, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_complex_other_value_based_float16_complex64_None, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_complex_other_value_based_float32_complex64_None, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_complex_other_value_based_other_4294967295_expected1_expected_weak1, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_complex_other_value_based_other_65535_expected0_expected_weak0, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_complex_scalar_value_based_other0_expected0, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_complex_scalar_value_based_other1_expected1, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_complex_scalar_value_based_other2_expected2, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_complex_scalar_value_based_other3_expected3, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_complex_scalar_value_based_other4_expected4, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_complex_scalar_value_based_other5_expected5, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_complex_scalar_value_based_other6_expected6, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_permutations_do_not_influence_result_dtypes0_expected0, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_permutations_do_not_influence_result_dtypes1_expected1, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_permutations_do_not_influence_result_dtypes2_expected2, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_permutations_do_not_influence_result_dtypes3_expected3, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_permutations_do_not_influence_result_dtypes4_expected4, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_permutations_do_not_influence_result_dtypes5_expected5, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_permutations_do_not_influence_result_dtypes6_expected6, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_permutations_do_not_influence_result_dtypes7_expected7, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_permutations_do_not_influence_result_dtypes8_expected8, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_permutations_do_not_influence_result_dtypes9_expected9, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_python_integer_promotion_val_18446744073709551616, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_python_integer_promotion_val_2, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_python_integer_promotion_val_200, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_python_integer_promotion_val_4294967296, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_python_integer_promotion_val_9223372036854775808, test/torch_np/numpy_tests/core/test_dtype.py::TestMisc::test_dtypes_are_true, test/torch_np/numpy_tests/core/test_dtype.py::TestMisc::test_keyword_argument, test/torch_np/numpy_tests/core/test_dtype.py::TestFromDTypeAttribute::test_recursion, test/torch_np/numpy_tests/core/test_dtype.py::TestFromDTypeAttribute::test_simple, test/torch_np/numpy_tests/core/test_dtype.py::TestClassGetItem::test_dtype, test/torch_np/numpy_tests/core/test_dtype.py::TestClassGetItem::test_dtype_subclass_code_?, test/torch_np/numpy_tests/core/test_dtype.py::TestClassGetItem::test_dtype_subclass_code_B, test/torch_np/numpy_tests/core/test_dtype.py::TestClassGetItem::test_dtype_subclass_code_D, test/torch_np/numpy_tests/core/test_dtype.py::TestClassGetItem::test_dtype_subclass_code_F, test/torch_np/numpy_tests/core/test_dtype.py::TestClassGetItem::test_dtype_subclass_code_b, test/torch_np/numpy_tests/core/test_dtype.py::TestClassGetItem::test_dtype_subclass_code_d, test/torch_np/numpy_tests/core/test_dtype.py::TestClassGetItem::test_dtype_subclass_code_e, test/torch_np/numpy_tests/core/test_dtype.py::TestClassGetItem::test_dtype_subclass_code_f, test/torch_np/numpy_tests/core/test_dtype.py::TestClassGetItem::test_dtype_subclass_code_h, test/torch_np/numpy_tests/core/test_dtype.py::TestClassGetItem::test_dtype_subclass_code_i, test/torch_np/numpy_tests/core/test_dtype.py::TestClassGetItem::test_dtype_subclass_code_l, test/torch_np/numpy_tests/core/test_dtype.py::TestClassGetItem::test_subscript_scalar, test/torch_np/numpy_tests/core/test_dtype.py::TestClassGetItem::test_subscript_tuple_arg_len_0, test/torch_np/numpy_tests/core/test_dtype.py::TestClassGetItem::test_subscript_tuple_arg_len_1, test/torch_np/numpy_tests/core/test_dtype.py::TestClassGetItem::test_subscript_tuple_arg_len_2, test/torch_np/numpy_tests/core/test_dtype.py::TestClassGetItem::test_subscript_tuple_arg_len_3 2025-08-14T23:47:17.2995436Z 2025-08-14T23:47:23.3319333Z Running torch_np/numpy_tests/core/test_shape_base 1/1 ... [2025-08-14 23:47:23.329330] 2025-08-14T23:47:23.3320301Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:47:23.3326980Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/test_shape_base.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-14 23:47:23.332445] 2025-08-14T23:47:29.9308933Z 2025-08-14T23:47:29.9310855Z torch_np/numpy_tests/core/test_shape_base 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_shape_base_1.1_e205f819f0fd190d_.log 2025-08-14T23:47:29.9394209Z Running 119 items in this shard: test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast1d::test_0D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast1d::test_1D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast1d::test_2D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast1d::test_3D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast1d::test_r1array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast2d::test_0D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast2d::test_1D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast2d::test_2D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast2d::test_3D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast2d::test_r2array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast3d::test_0D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast3d::test_1D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast3d::test_2D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast3d::test_3D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestHstack::test_0D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestHstack::test_1D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestHstack::test_2D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestHstack::test_casting_and_dtype, test/torch_np/numpy_tests/core/test_shape_base.py::TestHstack::test_casting_and_dtype_type_error, test/torch_np/numpy_tests/core/test_shape_base.py::TestHstack::test_empty_input, test/torch_np/numpy_tests/core/test_shape_base.py::TestHstack::test_generator, test/torch_np/numpy_tests/core/test_shape_base.py::TestHstack::test_non_iterable, test/torch_np/numpy_tests/core/test_shape_base.py::TestVstack::test_0D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestVstack::test_1D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestVstack::test_2D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestVstack::test_2D_array2, test/torch_np/numpy_tests/core/test_shape_base.py::TestVstack::test_casting_and_dtype, test/torch_np/numpy_tests/core/test_shape_base.py::TestVstack::test_casting_and_dtype_type_error, test/torch_np/numpy_tests/core/test_shape_base.py::TestVstack::test_empty_input, test/torch_np/numpy_tests/core/test_shape_base.py::TestVstack::test_generator, test/torch_np/numpy_tests/core/test_shape_base.py::TestVstack::test_non_iterable, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_bad_out_shape, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_concatenate, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_concatenate_axis_None, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_exceptions, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_large_concatenate_axis_None, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_operator_concat, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_c8_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_c8_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_c8_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_c8_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_c8_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_f4_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_f4_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_f4_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_f4_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_f4_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_f8_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_f8_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_f8_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_f8_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_f8_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_i8_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_i8_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_i8_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_i8_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_i8_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_c8_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_c8_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_c8_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_c8_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_c8_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_f4_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_f4_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_f4_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_f4_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_f4_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_f8_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_f8_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_f8_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_f8_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_f8_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_i8_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_i8_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_i8_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_i8_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_i8_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_simple, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_returns_copy, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_c8_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_c8_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_c8_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_c8_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_c8_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_f4_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_f4_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_f4_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_f4_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_f4_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_f8_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_f8_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_f8_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_f8_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_f8_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_i8_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_i8_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_i8_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_i8_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_i8_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_3d, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_block_complicated, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_block_memory_order, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_block_mixed_1d_and_2d, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_block_simple_column_wise, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_block_simple_row_wise, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_block_total_size_estimate, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_block_with_1d_arrays_column_wise, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_block_with_1d_arrays_multiple_rows, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_block_with_1d_arrays_row_wise, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_block_with_mismatched_shape, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_different_ndims, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_different_ndims_depths, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_empty_lists, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_invalid_nesting, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_nested, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_no_lists, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_returns_copy, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_tuple 2025-08-14T23:47:29.9476410Z 2025-08-14T23:47:35.4584846Z Running test_type_info 1/1 ... [2025-08-14 23:47:35.456300] 2025-08-14T23:47:35.4585286Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:47:35.4591386Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_type_info.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-14 23:47:35.456300] 2025-08-14T23:47:40.7090623Z 2025-08-14T23:47:40.7091662Z test_type_info 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_type_info_1.1_4141fba7952c8169_.log 2025-08-14T23:47:40.7093813Z Running 5 items in this shard: test/test_type_info.py::TestDTypeInfo::test_finfo, test/test_type_info.py::TestDTypeInfo::test_iinfo, test/test_type_info.py::TestDTypeInfo::test_invalid_input, test/test_type_info.py::TestDTypeInfo::test_to_complex, test/test_type_info.py::TestDTypeInfo::test_to_real 2025-08-14T23:47:40.7094988Z 2025-08-14T23:47:46.0153939Z Running test_jit_llga_fuser 1/1 ... [2025-08-14 23:47:46.013099] 2025-08-14T23:47:46.0154779Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:47:46.0163438Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_jit_llga_fuser.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-14 23:47:46.013099] 2025-08-14T23:47:51.8463937Z 2025-08-14T23:47:51.8464955Z test_jit_llga_fuser 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_jit_llga_fuser_1.1_40092d63bc180c7e_.log 2025-08-14T23:47:51.8494472Z Running 107 items in this shard: test/test_jit_llga_fuser.py::TestEnableDisableLlgaFuser::test_context_manager, test/test_jit_llga_fuser.py::TestDynamoAOT::test_dynamo_aot_ts_onednn, test/test_jit_llga_fuser.py::TestModel::test_vision_alexnet_bfloat16, test/test_jit_llga_fuser.py::TestModel::test_vision_alexnet_float32, test/test_jit_llga_fuser.py::TestModel::test_vision_densenet121_bfloat16, test/test_jit_llga_fuser.py::TestModel::test_vision_densenet121_float32, test/test_jit_llga_fuser.py::TestModel::test_vision_densenet161_bfloat16, test/test_jit_llga_fuser.py::TestModel::test_vision_densenet161_float32, test/test_jit_llga_fuser.py::TestModel::test_vision_densenet169_bfloat16, test/test_jit_llga_fuser.py::TestModel::test_vision_densenet169_float32, test/test_jit_llga_fuser.py::TestModel::test_vision_densenet201_bfloat16, test/test_jit_llga_fuser.py::TestModel::test_vision_densenet201_float32, test/test_jit_llga_fuser.py::TestModel::test_vision_efficientnet_b0_bfloat16, test/test_jit_llga_fuser.py::TestModel::test_vision_efficientnet_b0_float32, test/test_jit_llga_fuser.py::TestModel::test_vision_efficientnet_b1_bfloat16, test/test_jit_llga_fuser.py::TestModel::test_vision_efficientnet_b1_float32, test/test_jit_llga_fuser.py::TestModel::test_vision_efficientnet_b2_bfloat16, test/test_jit_llga_fuser.py::TestModel::test_vision_efficientnet_b2_float32, test/test_jit_llga_fuser.py::TestModel::test_vision_efficientnet_b3_bfloat16, test/test_jit_llga_fuser.py::TestModel::test_vision_efficientnet_b3_float32, test/test_jit_llga_fuser.py::TestModel::test_vision_efficientnet_b4_bfloat16, test/test_jit_llga_fuser.py::TestModel::test_vision_efficientnet_b4_float32, test/test_jit_llga_fuser.py::TestModel::test_vision_efficientnet_b5_bfloat16, test/test_jit_llga_fuser.py::TestModel::test_vision_efficientnet_b5_float32, test/test_jit_llga_fuser.py::TestModel::test_vision_efficientnet_b6_bfloat16, test/test_jit_llga_fuser.py::TestModel::test_vision_efficientnet_b6_float32, test/test_jit_llga_fuser.py::TestModel::test_vision_efficientnet_b7_bfloat16, test/test_jit_llga_fuser.py::TestModel::test_vision_efficientnet_b7_float32, test/test_jit_llga_fuser.py::TestModel::test_vision_googlenet_bfloat16, test/test_jit_llga_fuser.py::TestModel::test_vision_googlenet_float32, test/test_jit_llga_fuser.py::TestModel::test_vision_mnasnet1_0_bfloat16, test/test_jit_llga_fuser.py::TestModel::test_vision_mnasnet1_0_float32, test/test_jit_llga_fuser.py::TestModel::test_vision_mobilenet_v2_bfloat16, test/test_jit_llga_fuser.py::TestModel::test_vision_mobilenet_v2_float32, test/test_jit_llga_fuser.py::TestModel::test_vision_mobilenet_v3_large_bfloat16, test/test_jit_llga_fuser.py::TestModel::test_vision_mobilenet_v3_large_float32, test/test_jit_llga_fuser.py::TestModel::test_vision_regnet_y_400mf_bfloat16, test/test_jit_llga_fuser.py::TestModel::test_vision_regnet_y_400mf_float32, test/test_jit_llga_fuser.py::TestModel::test_vision_resnet50_bfloat16, test/test_jit_llga_fuser.py::TestModel::test_vision_resnet50_float32, test/test_jit_llga_fuser.py::TestModel::test_vision_resnext101_32x8d_bfloat16, test/test_jit_llga_fuser.py::TestModel::test_vision_resnext101_32x8d_float32, test/test_jit_llga_fuser.py::TestModel::test_vision_resnext50_32x4d_bfloat16, test/test_jit_llga_fuser.py::TestModel::test_vision_resnext50_32x4d_float32, test/test_jit_llga_fuser.py::TestModel::test_vision_shufflenet_v2_x1_0_bfloat16, test/test_jit_llga_fuser.py::TestModel::test_vision_shufflenet_v2_x1_0_float32, test/test_jit_llga_fuser.py::TestModel::test_vision_squeezenet1_0_bfloat16, test/test_jit_llga_fuser.py::TestModel::test_vision_squeezenet1_0_float32, test/test_jit_llga_fuser.py::TestModel::test_vision_vgg16_bfloat16, test/test_jit_llga_fuser.py::TestModel::test_vision_vgg16_float32, test/test_jit_llga_fuser.py::TestModel::test_vision_wide_resnet50_2_bfloat16, test/test_jit_llga_fuser.py::TestModel::test_vision_wide_resnet50_2_float32, test/test_jit_llga_fuser.py::TestFusionPatternCPU::test_bn2d_eltwise_cpu_bfloat16, test/test_jit_llga_fuser.py::TestFusionPatternCPU::test_bn2d_eltwise_cpu_float32, test/test_jit_llga_fuser.py::TestFusionPatternCPU::test_conv2d_bn_cpu_bfloat16, test/test_jit_llga_fuser.py::TestFusionPatternCPU::test_conv2d_bn_cpu_float32, test/test_jit_llga_fuser.py::TestFusionPatternCPU::test_conv2d_bn_relu_cpu_bfloat16, test/test_jit_llga_fuser.py::TestFusionPatternCPU::test_conv2d_bn_relu_cpu_float32, test/test_jit_llga_fuser.py::TestFusionPatternCPU::test_conv2d_clamp_cpu_bfloat16, test/test_jit_llga_fuser.py::TestFusionPatternCPU::test_conv2d_clamp_cpu_float32, test/test_jit_llga_fuser.py::TestFusionPatternCPU::test_conv2d_eltwise_cpu_bfloat16, test/test_jit_llga_fuser.py::TestFusionPatternCPU::test_conv2d_eltwise_cpu_float32, test/test_jit_llga_fuser.py::TestFusionPatternCPU::test_conv2d_silu_cpu_bfloat16, test/test_jit_llga_fuser.py::TestFusionPatternCPU::test_conv2d_silu_cpu_float32, test/test_jit_llga_fuser.py::TestFusionPatternCPU::test_conv2d_sum_cpu_bfloat16, test/test_jit_llga_fuser.py::TestFusionPatternCPU::test_conv2d_sum_cpu_float32, test/test_jit_llga_fuser.py::TestFusionPatternCPU::test_ensure_tensor_is_rewrapped_cpu_bfloat16, test/test_jit_llga_fuser.py::TestFusionPatternCPU::test_ensure_tensor_is_rewrapped_cpu_float32, test/test_jit_llga_fuser.py::TestFusionPatternCPU::test_linear_eltwise_cpu_bfloat16, test/test_jit_llga_fuser.py::TestFusionPatternCPU::test_linear_eltwise_cpu_float32, test/test_jit_llga_fuser.py::TestFusionPatternCPU::test_rewrap_tensor_input_to_pytorch_cpu_bfloat16, test/test_jit_llga_fuser.py::TestFusionPatternCPU::test_rewrap_tensor_input_to_pytorch_cpu_float32, test/test_jit_llga_fuser.py::TestFusionPatternCPU::test_wildcard_cpu_bfloat16, test/test_jit_llga_fuser.py::TestFusionPatternCPU::test_wildcard_cpu_float32, test/test_jit_llga_fuser.py::TestFusionPatternCPU::test_wildcard_unsupported_dtype_cpu_int32, test/test_jit_llga_fuser.py::TestOpCPU::test_add_cpu_bfloat16, test/test_jit_llga_fuser.py::TestOpCPU::test_add_cpu_float32, test/test_jit_llga_fuser.py::TestOpCPU::test_add_scalar_cpu_bfloat16, test/test_jit_llga_fuser.py::TestOpCPU::test_add_scalar_cpu_float32, test/test_jit_llga_fuser.py::TestOpCPU::test_addmm_cpu_bfloat16, test/test_jit_llga_fuser.py::TestOpCPU::test_addmm_cpu_float32, test/test_jit_llga_fuser.py::TestOpCPU::test_avg_pool2d_cpu_bfloat16, test/test_jit_llga_fuser.py::TestOpCPU::test_avg_pool2d_cpu_float32, test/test_jit_llga_fuser.py::TestOpCPU::test_bn2d_cpu_bfloat16, test/test_jit_llga_fuser.py::TestOpCPU::test_bn2d_cpu_float32, test/test_jit_llga_fuser.py::TestOpCPU::test_cat_cpu_bfloat16, test/test_jit_llga_fuser.py::TestOpCPU::test_cat_cpu_float32, test/test_jit_llga_fuser.py::TestOpCPU::test_conv2d_cpu_bfloat16, test/test_jit_llga_fuser.py::TestOpCPU::test_conv2d_cpu_float32, test/test_jit_llga_fuser.py::TestOpCPU::test_eltwise_cpu_bfloat16, test/test_jit_llga_fuser.py::TestOpCPU::test_eltwise_cpu_float32, test/test_jit_llga_fuser.py::TestOpCPU::test_identity_binary_cpu_bfloat16, test/test_jit_llga_fuser.py::TestOpCPU::test_identity_binary_cpu_float32, test/test_jit_llga_fuser.py::TestOpCPU::test_layer_norm_cpu_bfloat16, test/test_jit_llga_fuser.py::TestOpCPU::test_layer_norm_cpu_float32, test/test_jit_llga_fuser.py::TestOpCPU::test_linear_cpu_bfloat16, test/test_jit_llga_fuser.py::TestOpCPU::test_linear_cpu_float32, test/test_jit_llga_fuser.py::TestOpCPU::test_max_pool2d_cpu_bfloat16, test/test_jit_llga_fuser.py::TestOpCPU::test_max_pool2d_cpu_float32, test/test_jit_llga_fuser.py::TestOpCPU::test_mul_cpu_bfloat16, test/test_jit_llga_fuser.py::TestOpCPU::test_mul_cpu_float32, test/test_jit_llga_fuser.py::TestOpCPU::test_softmax_cpu_bfloat16, test/test_jit_llga_fuser.py::TestOpCPU::test_softmax_cpu_float32, test/test_jit_llga_fuser.py::TestOpCPU::test_typecheck_cpu_bfloat16, test/test_jit_llga_fuser.py::TestOpCPU::test_typecheck_cpu_float32, test/test_jit_llga_fuser.py::TestOpCPU::test_variable_kernel_avg_pool2d_cpu_bfloat16, test/test_jit_llga_fuser.py::TestOpCPU::test_variable_kernel_avg_pool2d_cpu_float32 2025-08-14T23:47:51.8522218Z 2025-08-14T23:47:58.0569907Z Running test_indexing 1/1 ... [2025-08-14 23:47:58.042407] 2025-08-14T23:47:58.0570361Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:47:58.0576771Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', '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-14 23:47:58.042407] 2025-08-14T23:48:06.1038322Z 2025-08-14T23:48:06.1039239Z test_indexing 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_indexing_1.1_9537f196ea132035_.log 2025-08-14T23:48:06.1067095Z Running 92 items in this shard: test/test_indexing.py::TestIndexingCPU::test_advancedindex_big_cpu, test/test_indexing.py::TestIndexingCPU::test_advancedindex_cpu_float16, test/test_indexing.py::TestIndexingCPU::test_advancedindex_cpu_float64, test/test_indexing.py::TestIndexingCPU::test_basic_advanced_combined_cpu, test/test_indexing.py::TestIndexingCPU::test_bool_indices_accumulate_cpu, test/test_indexing.py::TestIndexingCPU::test_bool_indices_cpu, test/test_indexing.py::TestIndexingCPU::test_bool_mask_assignment_cpu, test/test_indexing.py::TestIndexingCPU::test_byte_mask2d_cpu, test/test_indexing.py::TestIndexingCPU::test_byte_mask_accumulate_cpu, test/test_indexing.py::TestIndexingCPU::test_byte_mask_cpu, test/test_indexing.py::TestIndexingCPU::test_byte_tensor_assignment_cpu, test/test_indexing.py::TestIndexingCPU::test_cpu_indices_cpu, test/test_indexing.py::TestIndexingCPU::test_cuda_broadcast_index_use_deterministic_algorithms_cpu, test/test_indexing.py::TestIndexingCPU::test_ellipsis_tensor_cpu, test/test_indexing.py::TestIndexingCPU::test_empty_index_cpu, test/test_indexing.py::TestIndexingCPU::test_empty_ndim_index_bool_cpu, test/test_indexing.py::TestIndexingCPU::test_empty_ndim_index_cpu, test/test_indexing.py::TestIndexingCPU::test_empty_slice_cpu, test/test_indexing.py::TestIndexingCPU::test_gather_take_along_dim_cross_device_cpu_float32, test/test_indexing.py::TestIndexingCPU::test_getitem_scalars_cpu, test/test_indexing.py::TestIndexingCPU::test_index_cpu, test/test_indexing.py::TestIndexingCPU::test_index_getitem_copy_bools_slices_cpu, test/test_indexing.py::TestIndexingCPU::test_index_ind_dtype_cpu, test/test_indexing.py::TestIndexingCPU::test_index_limits_cpu, test/test_indexing.py::TestIndexingCPU::test_index_put_accumulate_duplicate_indices_cpu, test/test_indexing.py::TestIndexingCPU::test_index_put_accumulate_empty_cpu, test/test_indexing.py::TestIndexingCPU::test_index_put_accumulate_expanded_values_cpu, test/test_indexing.py::TestIndexingCPU::test_index_put_accumulate_large_tensor_cpu, test/test_indexing.py::TestIndexingCPU::test_index_put_accumulate_non_contiguous_cpu, test/test_indexing.py::TestIndexingCPU::test_index_put_deterministic_with_optional_tensors_cpu, test/test_indexing.py::TestIndexingCPU::test_index_put_large_indices_cpu, test/test_indexing.py::TestIndexingCPU::test_index_put_src_datatype_cpu_bfloat16, test/test_indexing.py::TestIndexingCPU::test_index_put_src_datatype_cpu_bool, test/test_indexing.py::TestIndexingCPU::test_index_put_src_datatype_cpu_complex128, test/test_indexing.py::TestIndexingCPU::test_index_put_src_datatype_cpu_complex64, test/test_indexing.py::TestIndexingCPU::test_index_put_src_datatype_cpu_float32, test/test_indexing.py::TestIndexingCPU::test_index_put_src_datatype_cpu_int64, test/test_indexing.py::TestIndexingCPU::test_index_scalar_with_bool_mask_cpu, test/test_indexing.py::TestIndexingCPU::test_index_setitem_bools_slices_cpu, test/test_indexing.py::TestIndexingCPU::test_index_src_datatype_cpu_bfloat16, test/test_indexing.py::TestIndexingCPU::test_index_src_datatype_cpu_bool, test/test_indexing.py::TestIndexingCPU::test_index_src_datatype_cpu_float32, test/test_indexing.py::TestIndexingCPU::test_index_src_datatype_cpu_int64, test/test_indexing.py::TestIndexingCPU::test_int_assignment_cpu, test/test_indexing.py::TestIndexingCPU::test_int_indices2d_cpu, test/test_indexing.py::TestIndexingCPU::test_int_indices_broadcast_cpu, test/test_indexing.py::TestIndexingCPU::test_int_indices_cpu, test/test_indexing.py::TestIndexingCPU::test_invalid_device_cpu, test/test_indexing.py::TestIndexingCPU::test_invalid_index_cpu, test/test_indexing.py::TestIndexingCPU::test_jit_indexing_cpu, test/test_indexing.py::TestIndexingCPU::test_list_indices_cpu, test/test_indexing.py::TestIndexingCPU::test_multi_dimensional_bool_mask_assignment_cpu, test/test_indexing.py::TestIndexingCPU::test_multi_dimensional_bool_mask_cpu, test/test_indexing.py::TestIndexingCPU::test_multiple_bool_indices_cpu, test/test_indexing.py::TestIndexingCPU::test_multiple_byte_mask_cpu, test/test_indexing.py::TestIndexingCPU::test_multiple_int_cpu, test/test_indexing.py::TestIndexingCPU::test_none_cpu, test/test_indexing.py::TestIndexingCPU::test_out_of_bound_index_cpu, test/test_indexing.py::TestIndexingCPU::test_set_item_to_scalar_tensor_cpu, test/test_indexing.py::TestIndexingCPU::test_setitem_expansion_error_cpu, test/test_indexing.py::TestIndexingCPU::test_setitem_scalars_cpu, test/test_indexing.py::TestIndexingCPU::test_single_int_cpu, test/test_indexing.py::TestIndexingCPU::test_step_assignment_cpu, test/test_indexing.py::TestIndexingCPU::test_step_cpu, test/test_indexing.py::TestIndexingCPU::test_take_along_dim_cpu_float32, test/test_indexing.py::TestIndexingCPU::test_take_along_dim_cpu_int64, test/test_indexing.py::TestIndexingCPU::test_take_along_dim_invalid_cpu_float32, test/test_indexing.py::TestIndexingCPU::test_take_along_dim_invalid_cpu_int64, test/test_indexing.py::TestIndexingCPU::test_unravel_index_errors_cpu, test/test_indexing.py::TestIndexingCPU::test_variable_slicing_cpu, test/test_indexing.py::TestIndexingCPU::test_zero_dim_index_cpu, test/test_indexing.py::NumpyTestsCPU::test_boolean_assignment_value_mismatch_cpu, test/test_indexing.py::NumpyTestsCPU::test_boolean_indexing_alldims_cpu, test/test_indexing.py::NumpyTestsCPU::test_boolean_indexing_onedim_cpu, test/test_indexing.py::NumpyTestsCPU::test_boolean_indexing_twodim_cpu, test/test_indexing.py::NumpyTestsCPU::test_boolean_indexing_weirdness_cpu, test/test_indexing.py::NumpyTestsCPU::test_boolean_indexing_weirdness_tensors_cpu, test/test_indexing.py::NumpyTestsCPU::test_boolean_list_indexing_cpu, test/test_indexing.py::NumpyTestsCPU::test_boolean_shape_mismatch_cpu, test/test_indexing.py::NumpyTestsCPU::test_broadcast_subspace_cpu, test/test_indexing.py::NumpyTestsCPU::test_broaderrors_indexing_cpu, test/test_indexing.py::NumpyTestsCPU::test_ellipsis_index_cpu, test/test_indexing.py::NumpyTestsCPU::test_empty_fancy_index_cpu, test/test_indexing.py::NumpyTestsCPU::test_empty_tuple_index_cpu, test/test_indexing.py::NumpyTestsCPU::test_everything_returns_views_cpu, test/test_indexing.py::NumpyTestsCPU::test_index_is_larger_cpu, test/test_indexing.py::NumpyTestsCPU::test_index_no_floats_cpu, test/test_indexing.py::NumpyTestsCPU::test_none_index_cpu, test/test_indexing.py::NumpyTestsCPU::test_single_bool_index_cpu, test/test_indexing.py::NumpyTestsCPU::test_single_int_index_cpu, test/test_indexing.py::NumpyTestsCPU::test_trivial_fancy_out_of_bounds_cpu, test/test_indexing.py::NumpyTestsCPU::test_truncate_leading_1s_cpu 2025-08-14T23:48:06.1092054Z 2025-08-14T23:48:12.3311817Z Running torch_np/test_function_base 1/1 ... [2025-08-14 23:48:12.330707] 2025-08-14T23:48:12.3312685Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:48:12.3321686Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_function_base.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-14 23:48:12.331890] 2025-08-14T23:48:18.5700211Z 2025-08-14T23:48:18.5701655Z torch_np/test_function_base 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_function_base_1.1_477c23adb52b4c35_.log 2025-08-14T23:48:18.5703587Z Running 1 items in this shard: test/torch_np/test_function_base.py::TestAppend::test_basic 2025-08-14T23:48:18.5704267Z 2025-08-14T23:48:24.9686627Z Running torch_np/numpy_tests/lib/test_twodim_base 1/1 ... [2025-08-14 23:48:24.958195] 2025-08-14T23:48:24.9687522Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:48:24.9697426Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/lib/test_twodim_base.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-14 23:48:24.958195] 2025-08-14T23:48:31.1749308Z 2025-08-14T23:48:31.1750931Z torch_np/numpy_tests/lib/test_twodim_base 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.lib.test_twodim_base_1.1_a41dda5581f30a47_.log 2025-08-14T23:48:31.1767234Z Running 34 items in this shard: test/torch_np/numpy_tests/lib/test_twodim_base.py::TestEye::test_2d, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestEye::test_basic, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestEye::test_bool, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestEye::test_diag, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestEye::test_diag2d, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestEye::test_eye_bounds, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestEye::test_order, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestDiag::test_diag_bounds, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestDiag::test_failure, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestDiag::test_fortran_order, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestDiag::test_matrix, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestDiag::test_vector, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestFliplr::test_basic, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestFlipud::test_basic, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestHistogram2d::test_all_outliers, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestHistogram2d::test_asym, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestHistogram2d::test_bad_length_x_len_10_y_len_11, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestHistogram2d::test_bad_length_x_len_20_y_len_19, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestHistogram2d::test_binparameter_combination, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestHistogram2d::test_density, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestHistogram2d::test_empty, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestHistogram2d::test_simple, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestTri::test_dtype, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestTri::test_mask_indices, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestTri::test_tril_indices, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestTri::test_tril_triu_dtype, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestTri::test_tril_triu_ndim2, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestTri::test_tril_triu_ndim3, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestTri::test_tril_triu_with_inf, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestTriuIndices::test_triu_indices, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestTrilIndicesFrom::test_exceptions, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestTriuIndicesFrom::test_exceptions, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestVander::test_basic, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestVander::test_dtypes 2025-08-14T23:48:31.1782660Z 2025-08-14T23:48:37.1420797Z Running torch_np/test_scalars_0D_arrays 1/1 ... [2025-08-14 23:48:37.141397] 2025-08-14T23:48:37.1421682Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:48:37.1431642Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_scalars_0D_arrays.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-14 23:48:37.141397] 2025-08-14T23:48:43.4253876Z 2025-08-14T23:48:43.4255748Z torch_np/test_scalars_0D_arrays 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_scalars_0D_arrays_1.1_ce2b73775e939613_.log 2025-08-14T23:48:43.4275106Z Running 33 items in this shard: test/torch_np/test_scalars_0D_arrays.py::TestArrayScalars::test_array_scalar_basic_array, test/torch_np/test_scalars_0D_arrays.py::TestArrayScalars::test_array_scalar_basic_asarray, test/torch_np/test_scalars_0D_arrays.py::TestArrayScalars::test_array_scalar_basic_asarray_int, test/torch_np/test_scalars_0D_arrays.py::TestArrayScalars::test_array_scalar_basic_int64, test/torch_np/test_scalars_0D_arrays.py::TestArrayScalars::test_conversion_to_int_array, test/torch_np/test_scalars_0D_arrays.py::TestArrayScalars::test_conversion_to_int_asarray, test/torch_np/test_scalars_0D_arrays.py::TestArrayScalars::test_conversion_to_int_asarray_int, test/torch_np/test_scalars_0D_arrays.py::TestArrayScalars::test_conversion_to_int_int64, test/torch_np/test_scalars_0D_arrays.py::TestArrayScalars::test_decay_to_py_scalar_array, test/torch_np/test_scalars_0D_arrays.py::TestArrayScalars::test_decay_to_py_scalar_asarray, test/torch_np/test_scalars_0D_arrays.py::TestArrayScalars::test_decay_to_py_scalar_asarray_int, test/torch_np/test_scalars_0D_arrays.py::TestArrayScalars::test_decay_to_py_scalar_int64, test/torch_np/test_scalars_0D_arrays.py::TestArrayScalars::test_scalar_comparisons, test/torch_np/test_scalars_0D_arrays.py::TestIsScalar::test_is_not_scalar_value0, test/torch_np/test_scalars_0D_arrays.py::TestIsScalar::test_is_not_scalar_value1, test/torch_np/test_scalars_0D_arrays.py::TestIsScalar::test_is_not_scalar_value10, test/torch_np/test_scalars_0D_arrays.py::TestIsScalar::test_is_not_scalar_value11, test/torch_np/test_scalars_0D_arrays.py::TestIsScalar::test_is_not_scalar_value4, test/torch_np/test_scalars_0D_arrays.py::TestIsScalar::test_is_not_scalar_value5, test/torch_np/test_scalars_0D_arrays.py::TestIsScalar::test_is_not_scalar_value6, test/torch_np/test_scalars_0D_arrays.py::TestIsScalar::test_is_not_scalar_value7, test/torch_np/test_scalars_0D_arrays.py::TestIsScalar::test_is_not_scalar_value8, test/torch_np/test_scalars_0D_arrays.py::TestIsScalar::test_is_not_scalar_value9, test/torch_np/test_scalars_0D_arrays.py::TestIsScalar::test_is_not_scalar_value_s, test/torch_np/test_scalars_0D_arrays.py::TestIsScalar::test_is_not_scalar_value_string, test/torch_np/test_scalars_0D_arrays.py::TestIsScalar::test_is_scalar_array_0D, test/torch_np/test_scalars_0D_arrays.py::TestIsScalar::test_is_scalar_array_1D, test/torch_np/test_scalars_0D_arrays.py::TestIsScalar::test_is_scalar_array_2D, test/torch_np/test_scalars_0D_arrays.py::TestIsScalar::test_is_scalar_float32, test/torch_np/test_scalars_0D_arrays.py::TestIsScalar::test_is_scalar_int, test/torch_np/test_scalars_0D_arrays.py::TestIsScalar::test_is_scalar_list, test/torch_np/test_scalars_0D_arrays.py::TestIsScalar::test_is_scalar_list-list, test/torch_np/test_scalars_0D_arrays.py::TestIsScalar::test_is_scalar_literal 2025-08-14T23:48:43.4297103Z 2025-08-14T23:48:49.6716825Z Running nn/test_module_hooks 1/1 ... [2025-08-14 23:48:49.667500] 2025-08-14T23:48:49.6723209Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:48:49.6725055Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'nn/test_module_hooks.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-14 23:48:49.667500] 2025-08-14T23:48:56.1996200Z 2025-08-14T23:48:56.1997542Z nn/test_module_hooks 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_module_hooks_1.1_5a60d41060f27432_.log 2025-08-14T23:48:56.2032129Z Running 53 items in this shard: test/nn/test_module_hooks.py::TestModuleHooks::test_always_called_forward_hooks, test/nn/test_module_hooks.py::TestModuleHooks::test_bw_hook_warning_for_non_tensor_or_tuple, test/nn/test_module_hooks.py::TestModuleHooks::test_forward_hooks_named_tuple_False, test/nn/test_module_hooks.py::TestModuleHooks::test_forward_hooks_named_tuple_True, test/nn/test_module_hooks.py::TestModuleHooks::test_forward_pre_hooks_named_tuple_False, test/nn/test_module_hooks.py::TestModuleHooks::test_forward_pre_hooks_named_tuple_True, test/nn/test_module_hooks.py::TestModuleHooks::test_full_backward_hooks_named_tuple_False, test/nn/test_module_hooks.py::TestModuleHooks::test_full_backward_hooks_named_tuple_True, test/nn/test_module_hooks.py::TestModuleHooks::test_full_backward_pre_hooks_named_tuple_False, test/nn/test_module_hooks.py::TestModuleHooks::test_full_backward_pre_hooks_named_tuple_True, test/nn/test_module_hooks.py::TestModuleHooks::test_kwarg_hooks, test/nn/test_module_hooks.py::TestModuleHooks::test_mixed_hooks_named_tuple_False, test/nn/test_module_hooks.py::TestModuleHooks::test_mixed_hooks_named_tuple_True, test/nn/test_module_hooks.py::TestModuleHooks::test_remove_kwarg_hooks, test/nn/test_module_hooks.py::TestStateDictHooks::test_load_state_dict_module_pre_hook_swap_False, test/nn/test_module_hooks.py::TestStateDictHooks::test_load_state_dict_module_pre_hook_swap_True, test/nn/test_module_hooks.py::TestStateDictHooks::test_load_state_dict_post_hook_backward_compatibility_swap_False, test/nn/test_module_hooks.py::TestStateDictHooks::test_load_state_dict_post_hook_backward_compatibility_swap_True, test/nn/test_module_hooks.py::TestStateDictHooks::test_load_state_dict_post_hook_swap_False, test/nn/test_module_hooks.py::TestStateDictHooks::test_load_state_dict_post_hook_swap_True, test/nn/test_module_hooks.py::TestStateDictHooks::test_load_state_dict_pre_hook_swap_False, test/nn/test_module_hooks.py::TestStateDictHooks::test_load_state_dict_pre_hook_swap_True, test/nn/test_module_hooks.py::TestStateDictHooks::test_no_extra_ref_to_module, test/nn/test_module_hooks.py::TestStateDictHooks::test_pickled_hook, test/nn/test_module_hooks.py::TestStateDictHooks::test_register_state_dict_post_hook_private_False, test/nn/test_module_hooks.py::TestStateDictHooks::test_register_state_dict_post_hook_private_True, test/nn/test_module_hooks.py::TestStateDictHooks::test_register_state_dict_pre_hook, test/nn/test_module_hooks.py::TestStateDictHooks::test_register_state_dict_pre_hook_backward_compat, test/nn/test_module_hooks.py::TestStateDictHooks::test_register_state_dict_pre_hook_lazy_module, test/nn/test_module_hooks.py::TestModuleGlobalHooks::test_global_and_local_hooks_order, test/nn/test_module_hooks.py::TestModuleGlobalHooks::test_module_backward_global_hook_writeable, test/nn/test_module_hooks.py::TestModuleGlobalHooks::test_module_forward_forward_hook_removable, test/nn/test_module_hooks.py::TestModuleGlobalHooks::test_module_forward_preforward_hook_removable, test/nn/test_module_hooks.py::TestModuleGlobalHooks::test_module_global_forward_preforward_hook_writeable, test/nn/test_module_hooks.py::TestModuleGlobalHooks::test_module_global_hook_invalid_outputs, test/nn/test_module_hooks.py::TestModuleGlobalHooks::test_module_global_hooks, test/nn/test_module_hooks.py::TestModuleGlobalHooks::test_module_global_hooks_with_kwargs, test/nn/test_module_hooks.py::TestModuleHookNN::test_backward_hooks_interaction, test/nn/test_module_hooks.py::TestModuleHookNN::test_hook_backward_size, test/nn/test_module_hooks.py::TestModuleHookNN::test_hook_backward_writeable, test/nn/test_module_hooks.py::TestModuleHookNN::test_hook_buffer_registration, test/nn/test_module_hooks.py::TestModuleHookNN::test_hook_cpp, test/nn/test_module_hooks.py::TestModuleHookNN::test_hook_extra_input, test/nn/test_module_hooks.py::TestModuleHookNN::test_hook_forward_preforward_writable, test/nn/test_module_hooks.py::TestModuleHookNN::test_hook_inplace, test/nn/test_module_hooks.py::TestModuleHookNN::test_hook_invalid_outputs, test/nn/test_module_hooks.py::TestModuleHookNN::test_hook_last_arg_requires_grad, test/nn/test_module_hooks.py::TestModuleHookNN::test_hook_no_requires_grad, test/nn/test_module_hooks.py::TestModuleHookNN::test_hook_non_full_warning, test/nn/test_module_hooks.py::TestModuleHookNN::test_hook_parameter_registration, test/nn/test_module_hooks.py::TestModuleHookNN::test_hook_requires_grad, test/nn/test_module_hooks.py::TestModuleHookNN::test_hook_submodule_registration, test/nn/test_module_hooks.py::TestModuleHookNN::test_hooks 2025-08-14T23:48:56.2063730Z 2025-08-14T23:49:02.1391968Z Running test_numa_binding 1/1 ... [2025-08-14 23:49:02.138964] 2025-08-14T23:49:02.1392689Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:49:02.1399683Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_numa_binding.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-14 23:49:02.139572] 2025-08-14T23:49:07.5529815Z 2025-08-14T23:49:07.5531356Z test_numa_binding 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_numa_binding_1.1_3999227bf816864a_.log 2025-08-14T23:49:07.5544002Z Running 19 items in this shard: test/test_numa_binding.py::NumaBindingTest::test_binds_to_node_0_if_node_stored_as_minus_one, test/test_numa_binding.py::NumaBindingTest::test_callable_entrypoint_basic, test/test_numa_binding.py::NumaBindingTest::test_core_complex_numa_binding_with_extra_l3, test/test_numa_binding.py::NumaBindingTest::test_core_complex_numa_binding_with_fewer_l3_than_gpu, test/test_numa_binding.py::NumaBindingTest::test_core_complex_prefers_caches_with_more_cpus, test/test_numa_binding.py::NumaBindingTest::test_core_complex_tiebreak_prefers_lower_cache_key, test/test_numa_binding.py::NumaBindingTest::test_default_numa_binding, test/test_numa_binding.py::NumaBindingTest::test_exclusive_numa_binding, test/test_numa_binding.py::NumaBindingTest::test_exclusive_raises_if_too_few_physical_cores, test/test_numa_binding.py::NumaBindingTest::test_explicit_numa_options_overrides_default, test/test_numa_binding.py::NumaBindingTest::test_fallback, test/test_numa_binding.py::NumaBindingTest::test_fork_start_method_does_not_call_get_default_numa_options, test/test_numa_binding.py::NumaBindingTest::test_get_range_str_from_ints, test/test_numa_binding.py::NumaBindingTest::test_get_set_of_int_from_ranges_str, test/test_numa_binding.py::NumaBindingTest::test_no_numa_binding_if_numa_options_not_provided, test/test_numa_binding.py::NumaBindingTest::test_node_numa_binding, test/test_numa_binding.py::NumaBindingTest::test_raises_error_if_numactl_unavailable, test/test_numa_binding.py::NumaBindingTest::test_socket_numa_binding_with_multiple_numa_per_socket, test/test_numa_binding.py::NumaBindingTest::test_socket_numa_binding_with_single_numa_per_socket 2025-08-14T23:49:07.5556544Z 2025-08-14T23:49:13.7554790Z Running torch_np/numpy_tests/core/test_getlimits 1/1 ... [2025-08-14 23:49:13.755241] 2025-08-14T23:49:13.7555781Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:49:13.7563676Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/test_getlimits.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-14 23:49:13.755845] 2025-08-14T23:49:19.1131979Z 2025-08-14T23:49:19.1133826Z torch_np/numpy_tests/core/test_getlimits 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_getlimits_1.1_636623ef2cf9aa86_.log 2025-08-14T23:49:19.1145640Z Running 17 items in this shard: test/torch_np/numpy_tests/core/test_getlimits.py::TestPythonFloat::test_singleton, test/torch_np/numpy_tests/core/test_getlimits.py::TestHalf::test_singleton, test/torch_np/numpy_tests/core/test_getlimits.py::TestSingle::test_singleton, test/torch_np/numpy_tests/core/test_getlimits.py::TestDouble::test_singleton, test/torch_np/numpy_tests/core/test_getlimits.py::TestFinfo::test_basic, test/torch_np/numpy_tests/core/test_getlimits.py::TestFinfo::test_basic_missing, test/torch_np/numpy_tests/core/test_getlimits.py::TestIinfo::test_basic, test/torch_np/numpy_tests/core/test_getlimits.py::TestIinfo::test_unsigned_max_T0, test/torch_np/numpy_tests/core/test_getlimits.py::TestIinfo::test_unsigned_max_T1, test/torch_np/numpy_tests/core/test_getlimits.py::TestIinfo::test_unsigned_max_T2, test/torch_np/numpy_tests/core/test_getlimits.py::TestIinfo::test_unsigned_max_T3, test/torch_np/numpy_tests/core/test_getlimits.py::TestRepr::test_finfo_repr, test/torch_np/numpy_tests/core/test_getlimits.py::TestRepr::test_iinfo_repr, test/torch_np/numpy_tests/core/test_getlimits.py::TestMisc::test_instances, test/torch_np/numpy_tests/core/test_getlimits.py::TestMisc::test_known_types, test/torch_np/numpy_tests/core/test_getlimits.py::TestMisc::test_plausible_finfo, test/torch_np/numpy_tests/core/test_getlimits.py::TestMisc::test_subnormal_warning 2025-08-14T23:49:19.1156246Z 2025-08-14T23:49:25.2943247Z Running torch_np/test_ndarray_methods 1/1 ... [2025-08-14 23:49:25.291811] 2025-08-14T23:49:25.2943788Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:49:25.2949868Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_ndarray_methods.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-14 23:49:25.291811] 2025-08-14T23:49:37.2848314Z 2025-08-14T23:49:37.2849892Z torch_np/test_ndarray_methods 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_ndarray_methods_1.1_3eb04823b301d07a_.log 2025-08-14T23:49:37.3080891Z Running 342 items in this shard: test/torch_np/test_ndarray_methods.py::TestIndexing::test_indexing_simple, test/torch_np/test_ndarray_methods.py::TestIndexing::test_setitem, test/torch_np/test_ndarray_methods.py::TestReshape::test_reshape_function, test/torch_np/test_ndarray_methods.py::TestReshape::test_reshape_method, test/torch_np/test_ndarray_methods.py::TestTranspose::test_transpose_function, test/torch_np/test_ndarray_methods.py::TestTranspose::test_transpose_method, test/torch_np/test_ndarray_methods.py::TestRavel::test_ravel_function, test/torch_np/test_ndarray_methods.py::TestRavel::test_ravel_method, test/torch_np/test_ndarray_methods.py::TestNonzero::test_array_method, test/torch_np/test_ndarray_methods.py::TestNonzero::test_nonzero_onedim, test/torch_np/test_ndarray_methods.py::TestNonzero::test_nonzero_trivial, test/torch_np/test_ndarray_methods.py::TestNonzero::test_nonzero_twodim, test/torch_np/test_ndarray_methods.py::TestNonzero::test_sparse, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_all_method_max, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_all_method_min, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size0_axis0_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size0_axis0_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size10_axis_-1_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size10_axis_-1_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size11_axis_0_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size11_axis_0_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size12_axis_1_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size12_axis_1_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size13_axis13_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size13_axis13_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size14_axis_-2_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size14_axis_-2_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size15_axis_-1_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size15_axis_-1_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size16_axis_0_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size16_axis_0_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size17_axis_1_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size17_axis_1_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size18_axis18_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size18_axis18_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size19_axis_-3_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size19_axis_-3_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size1_axis_-1_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size1_axis_-1_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size20_axis_-2_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size20_axis_-2_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size21_axis_-1_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size21_axis_-1_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size22_axis_0_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size22_axis_0_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size23_axis_1_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size23_axis_1_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size24_axis_2_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size24_axis_2_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size25_axis25_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size25_axis25_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size26_axis_-3_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size26_axis_-3_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size27_axis_-2_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size27_axis_-2_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size28_axis_-1_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size28_axis_-1_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size29_axis_0_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size29_axis_0_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size2_axis_0_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size2_axis_0_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size30_axis_1_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size30_axis_1_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size31_axis_2_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size31_axis_2_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size32_axis32_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size32_axis32_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size33_axis_-4_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size33_axis_-4_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size34_axis_-3_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size34_axis_-3_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size35_axis_-2_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size35_axis_-2_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size36_axis_-1_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size36_axis_-1_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size37_axis_0_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size37_axis_0_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size38_axis_1_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size38_axis_1_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size39_axis_2_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size39_axis_2_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size3_axis3_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size3_axis3_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size40_axis_3_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size40_axis_3_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size41_axis41_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size41_axis41_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size42_axis_-4_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size42_axis_-4_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size43_axis_-3_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size43_axis_-3_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size44_axis_-2_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size44_axis_-2_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size45_axis_-1_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size45_axis_-1_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size46_axis_0_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size46_axis_0_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size47_axis_1_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size47_axis_1_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size48_axis_2_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size48_axis_2_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size49_axis_3_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size49_axis_3_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size4_axis_-2_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size4_axis_-2_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size50_axis50_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size50_axis50_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size51_axis_-4_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size51_axis_-4_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size52_axis_-3_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size52_axis_-3_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size53_axis_-2_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size53_axis_-2_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size54_axis_-1_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size54_axis_-1_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size55_axis_0_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size55_axis_0_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size56_axis_1_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size56_axis_1_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size57_axis_2_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size57_axis_2_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size58_axis_3_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size58_axis_3_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size59_axis59_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size59_axis59_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size5_axis_-1_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size5_axis_-1_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size60_axis_-4_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size60_axis_-4_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size61_axis_-3_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size61_axis_-3_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size62_axis_-2_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size62_axis_-2_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size63_axis_-1_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size63_axis_-1_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size64_axis_0_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size64_axis_0_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size65_axis_1_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size65_axis_1_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size66_axis_2_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size66_axis_2_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size67_axis_3_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size67_axis_3_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size68_axis68_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size68_axis68_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size69_axis_-1_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size69_axis_-1_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size6_axis_0_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size6_axis_0_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size70_axis_0_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size70_axis_0_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size71_axis71_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size71_axis71_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size72_axis_-1_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size72_axis_-1_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size73_axis_0_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size73_axis_0_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size74_axis74_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size74_axis74_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size75_axis_-1_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size75_axis_-1_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size76_axis_0_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size76_axis_0_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size77_axis77_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size77_axis77_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size7_axis_1_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size7_axis_1_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size8_axis8_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size8_axis8_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size9_axis_-2_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_argmin_argmax_keepdims_size9_axis_-2_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_vs_ndarray_arr_method_argmax_np_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_vs_ndarray_arr_method_argmin_np_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_vs_ndarray_positional_arr_method_argmax_np_method0, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_np_vs_ndarray_positional_arr_method_argmin_np_method1, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_output_shape_method_argmax, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_output_shape_method_argmin, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_ret_is_out_ndim_0_method_argmax, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_ret_is_out_ndim_0_method_argmin, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_ret_is_out_ndim_1_method_argmax, test/torch_np/test_ndarray_methods.py::TestArgmaxArgminCommon::test_ret_is_out_ndim_1_method_argmin, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data0, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data1, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data10, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data11, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data12, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data13, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data14, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data15, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data16, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data17, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data18, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data19, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data2, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data20, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data21, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data22, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data23, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data24, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data25, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data26, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data27, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data28, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data29, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data3, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data30, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data31, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data32, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data33, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data34, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data35, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data36, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data37, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data38, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data39, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data4, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data40, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data41, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data42, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data43, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data44, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data45, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data46, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data47, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data48, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data49, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data5, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data50, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data51, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data52, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data53, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data54, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data55, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data56, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data57, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data58, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data59, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data6, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data60, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data61, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data62, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data63, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data64, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data65, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data66, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data67, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data68, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data69, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data7, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data70, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data71, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data72, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data73, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data8, test/torch_np/test_ndarray_methods.py::TestArgmax::test_combinations_data9, test/torch_np/test_ndarray_methods.py::TestArgmax::test_maximum_signed_integers, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data0, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data1, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data10, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data11, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data12, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data13, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data14, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data15, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data16, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data17, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data18, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data19, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data2, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data20, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data21, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data22, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data23, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data24, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data25, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data26, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data27, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data28, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data29, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data3, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data30, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data31, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data32, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data33, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data34, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data35, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data36, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data37, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data38, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data39, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data4, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data40, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data41, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data42, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data43, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data44, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data45, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data46, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data47, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data48, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data49, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data5, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data50, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data51, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data52, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data53, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data54, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data55, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data56, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data57, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data58, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data59, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data6, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data60, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data61, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data62, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data63, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data64, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data65, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data66, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data67, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data68, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data69, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data7, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data70, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data71, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data72, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data73, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data8, test/torch_np/test_ndarray_methods.py::TestArgmin::test_combinations_data9, test/torch_np/test_ndarray_methods.py::TestArgmin::test_minimum_signed_integers, test/torch_np/test_ndarray_methods.py::TestAmax::test_basic, test/torch_np/test_ndarray_methods.py::TestAmin::test_basic, test/torch_np/test_ndarray_methods.py::TestContains::test_contains, test/torch_np/test_ndarray_methods.py::TestNoExtraMethods::test_extra_methods_name_fn, test/torch_np/test_ndarray_methods.py::TestNoExtraMethods::test_extra_methods_name_ivar, test/torch_np/test_ndarray_methods.py::TestNoExtraMethods::test_extra_methods_name_method, test/torch_np/test_ndarray_methods.py::TestNoExtraMethods::test_extra_methods_name_name, test/torch_np/test_ndarray_methods.py::TestNoExtraMethods::test_extra_methods_name_plain, test/torch_np/test_ndarray_methods.py::TestNoExtraMethods::test_extra_methods_name_rvar, test/torch_np/test_ndarray_methods.py::TestIter::test_iter_1d, test/torch_np/test_ndarray_methods.py::TestIter::test_iter_2d 2025-08-14T23:49:37.3282181Z 2025-08-14T23:49:43.9579382Z Running lazy/test_debug_util 1/1 ... [2025-08-14 23:49:43.956350] 2025-08-14T23:49:43.9580211Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:49:43.9582198Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'lazy/test_debug_util.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-14 23:49:43.957528] 2025-08-14T23:49:50.0055465Z 2025-08-14T23:49:50.0057488Z lazy/test_debug_util 1/1 was successful, full logs can be found in artifacts with path test/test-reports/lazy.test_debug_util_1.1_5599930cddcc483a_.log 2025-08-14T23:49:50.0059042Z Running 1 items in this shard: test/lazy/test_debug_util.py::DebugUtilTest::test_get_python_frames 2025-08-14T23:49:50.0059653Z 2025-08-14T23:49:56.1957854Z Running torch_np/numpy_tests/lib/test_shape_base_ 1/1 ... [2025-08-14 23:49:56.195223] 2025-08-14T23:49:56.1958818Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:49:56.1966388Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/lib/test_shape_base_.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-14 23:49:56.195835] 2025-08-14T23:50:03.7337411Z 2025-08-14T23:50:03.7338507Z torch_np/numpy_tests/lib/test_shape_base_ 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.lib.test_shape_base__1.1_a2c212abf53ec3d8_.log 2025-08-14T23:50:03.7362418Z Running 73 items in this shard: test/torch_np/numpy_tests/lib/test_shape_base_.py::TestTakeAlongAxis::test_argequivalent, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestTakeAlongAxis::test_broadcast, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestTakeAlongAxis::test_empty, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestTakeAlongAxis::test_invalid, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestPutAlongAxis::test_broadcast, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestPutAlongAxis::test_replace_max, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestApplyAlongAxis::test_0d_array, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestApplyAlongAxis::test_3d, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestApplyAlongAxis::test_axis_insertion, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestApplyAlongAxis::test_axis_insertion_ma, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestApplyAlongAxis::test_empty, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestApplyAlongAxis::test_scalar_array, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestApplyAlongAxis::test_simple, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestApplyAlongAxis::test_simple101, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestApplyAlongAxis::test_tuple_func1d, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestApplyAlongAxis::test_with_iterable_object, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestApplyOverAxes::test_simple, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestExpandDims::test_axis_out_of_range, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestExpandDims::test_axis_tuple, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestExpandDims::test_functionality, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestExpandDims::test_repeated_axis, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestArraySplit::test_index_split_high_bound, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestArraySplit::test_index_split_low_bound, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestArraySplit::test_index_split_simple, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestArraySplit::test_integer_0_split, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestArraySplit::test_integer_split, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestArraySplit::test_integer_split_2D_cols, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestArraySplit::test_integer_split_2D_default, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestArraySplit::test_integer_split_2D_rows, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestArraySplit::test_integer_split_2D_rows_greater_max_int32, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestSplit::test_equal_split, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestSplit::test_unequal_split, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestColumnStack::test_1D_arrays, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestColumnStack::test_2D_arrays, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestColumnStack::test_generator, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestColumnStack::test_non_iterable, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestDstack::test_0D_array, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestDstack::test_1D_array, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestDstack::test_2D_array, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestDstack::test_2D_array2, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestDstack::test_generator, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestDstack::test_non_iterable, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestHsplit::test_0D_array, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestHsplit::test_1D_array, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestHsplit::test_2D_array, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestHsplit::test_non_iterable, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestVsplit::test_0D_array, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestVsplit::test_1D_array, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestVsplit::test_2D_array, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestVsplit::test_non_iterable, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestDsplit::test_0D_array, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestDsplit::test_1D_array, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestDsplit::test_2D_array, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestDsplit::test_3D_array, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestDsplit::test_non_iterable, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestSqueeze::test_basic, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestSqueeze::test_basic_2, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestSqueeze::test_squeeze_axis, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestSqueeze::test_squeeze_axis_handling, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestSqueeze::test_squeeze_contiguous, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestSqueeze::test_squeeze_type, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestKron::test_basic, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestKron::test_kron_shape_shape_a0_shape_b0, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestKron::test_kron_shape_shape_a1_shape_b1, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestKron::test_kron_shape_shape_a2_shape_b2, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestKron::test_kron_shape_shape_a3_shape_b3, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestKron::test_kron_shape_shape_a4_shape_b4, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestKron::test_kron_shape_shape_a5_shape_b5, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestTile::test_basic, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestTile::test_empty, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestTile::test_kroncompare, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestTile::test_tile_one_repetition_on_array_gh4679, test/torch_np/numpy_tests/lib/test_shape_base_.py::TestMayShareMemory::test_basic 2025-08-14T23:50:03.7384982Z 2025-08-14T23:50:10.0171463Z Running torch_np/numpy_tests/linalg/test_linalg 1/1 ... [2025-08-14 23:50:10.013206] 2025-08-14T23:50:10.0172162Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:50:10.0178091Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/linalg/test_linalg.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-14 23:50:10.013206] 2025-08-14T23:50:28.1025384Z 2025-08-14T23:50:28.1026565Z torch_np/numpy_tests/linalg/test_linalg 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.linalg.test_linalg_1.1_8978f69e367cde16_.log 2025-08-14T23:50:28.1122475Z Running 268 items in this shard: test/torch_np/numpy_tests/linalg/test_linalg.py::TestSolve::test_0_size, test/torch_np/numpy_tests/linalg/test_linalg.py::TestSolve::test_0_size_k, test/torch_np/numpy_tests/linalg/test_linalg.py::TestSolve::test_empty_sq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestSolve::test_generalized_empty_sq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestSolve::test_generalized_sq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestSolve::test_sq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestSolve::test_types_dtype0, test/torch_np/numpy_tests/linalg/test_linalg.py::TestSolve::test_types_dtype1, test/torch_np/numpy_tests/linalg/test_linalg.py::TestSolve::test_types_dtype2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestSolve::test_types_dtype3, test/torch_np/numpy_tests/linalg/test_linalg.py::TestInv::test_0_size, test/torch_np/numpy_tests/linalg/test_linalg.py::TestInv::test_empty_sq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestInv::test_generalized_empty_sq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestInv::test_generalized_sq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestInv::test_sq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestInv::test_types_dtype0, test/torch_np/numpy_tests/linalg/test_linalg.py::TestInv::test_types_dtype1, test/torch_np/numpy_tests/linalg/test_linalg.py::TestInv::test_types_dtype2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestInv::test_types_dtype3, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEigvals::test_0_size, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEigvals::test_empty_sq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEigvals::test_generalized_empty_sq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEigvals::test_generalized_sq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEigvals::test_sq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEigvals::test_types_dtype0, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEigvals::test_types_dtype1, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEigvals::test_types_dtype2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEigvals::test_types_dtype3, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEig::test_0_size, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEig::test_empty_sq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEig::test_generalized_empty_sq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEig::test_generalized_sq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEig::test_sq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEig::test_types_dtype0, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEig::test_types_dtype1, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEig::test_types_dtype2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEig::test_types_dtype3, test/torch_np/numpy_tests/linalg/test_linalg.py::TestSVD::test_empty_identity, test/torch_np/numpy_tests/linalg/test_linalg.py::TestSVD::test_empty_sq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestSVD::test_generalized_empty_sq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestSVD::test_generalized_sq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestSVD::test_sq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestSVD::test_types_dtype0, test/torch_np/numpy_tests/linalg/test_linalg.py::TestSVD::test_types_dtype1, test/torch_np/numpy_tests/linalg/test_linalg.py::TestSVD::test_types_dtype2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestSVD::test_types_dtype3, test/torch_np/numpy_tests/linalg/test_linalg.py::TestSVDHermitian::test_empty_herm_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestSVDHermitian::test_generalized_empty_herm_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestSVDHermitian::test_generalized_herm_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestSVDHermitian::test_herm_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestSVDHermitian::test_types_dtype0, test/torch_np/numpy_tests/linalg/test_linalg.py::TestSVDHermitian::test_types_dtype1, test/torch_np/numpy_tests/linalg/test_linalg.py::TestSVDHermitian::test_types_dtype2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestSVDHermitian::test_types_dtype3, test/torch_np/numpy_tests/linalg/test_linalg.py::TestCond::test_basic_nonsvd, test/torch_np/numpy_tests/linalg/test_linalg.py::TestCond::test_empty_sq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestCond::test_generalized_empty_sq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestCond::test_generalized_sq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestCond::test_nan, test/torch_np/numpy_tests/linalg/test_linalg.py::TestCond::test_singular, test/torch_np/numpy_tests/linalg/test_linalg.py::TestCond::test_sq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestCond::test_stacked_singular, test/torch_np/numpy_tests/linalg/test_linalg.py::TestPinv::test_empty_nonsq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestPinv::test_empty_sq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestPinv::test_generalized_empty_nonsq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestPinv::test_generalized_empty_sq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestPinv::test_generalized_nonsq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestPinv::test_generalized_sq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestPinv::test_nonsq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestPinv::test_sq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestPinvHermitian::test_empty_herm_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestPinvHermitian::test_generalized_empty_herm_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestPinvHermitian::test_generalized_herm_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestPinvHermitian::test_herm_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestDet::test_0_size, test/torch_np/numpy_tests/linalg/test_linalg.py::TestDet::test_empty_sq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestDet::test_generalized_empty_sq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestDet::test_generalized_sq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestDet::test_sq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestDet::test_types_dtype0, test/torch_np/numpy_tests/linalg/test_linalg.py::TestDet::test_types_dtype1, test/torch_np/numpy_tests/linalg/test_linalg.py::TestDet::test_types_dtype2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestDet::test_types_dtype3, test/torch_np/numpy_tests/linalg/test_linalg.py::TestDet::test_zero, test/torch_np/numpy_tests/linalg/test_linalg.py::TestLstsq::test_empty_a_b_m_0_n_0_n_rhs_0, test/torch_np/numpy_tests/linalg/test_linalg.py::TestLstsq::test_empty_a_b_m_0_n_4_n_rhs_1, test/torch_np/numpy_tests/linalg/test_linalg.py::TestLstsq::test_empty_a_b_m_0_n_4_n_rhs_2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestLstsq::test_empty_a_b_m_4_n_0_n_rhs_1, test/torch_np/numpy_tests/linalg/test_linalg.py::TestLstsq::test_empty_a_b_m_4_n_0_n_rhs_2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestLstsq::test_empty_a_b_m_4_n_2_n_rhs_2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestLstsq::test_empty_nonsq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestLstsq::test_empty_sq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestLstsq::test_future_rcond, test/torch_np/numpy_tests/linalg/test_linalg.py::TestLstsq::test_incompatible_dims, test/torch_np/numpy_tests/linalg/test_linalg.py::TestLstsq::test_nonsq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestLstsq::test_sq_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEigvalshCases::test_generalized_herm_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEigvalshCases::test_generalized_empty_herm_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEigvalshCases::test_herm_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEigvalshCases::test_empty_herm_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEigvalsh::test_0_size, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEigvalsh::test_UPLO, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEigvalsh::test_invalid, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEigvalsh::test_types_dtype0, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEigvalsh::test_types_dtype1, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEigvalsh::test_types_dtype2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEigvalsh::test_types_dtype3, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEighCases::test_generalized_herm_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEighCases::test_generalized_empty_herm_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEighCases::test_herm_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEighCases::test_empty_herm_cases, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEigh::test_0_size, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEigh::test_UPLO, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEigh::test_invalid, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEigh::test_types_dtype0, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEigh::test_types_dtype1, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEigh::test_types_dtype2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestEigh::test_types_dtype3, test/torch_np/numpy_tests/linalg/test_linalg.py::TestNorm_NonSystematic::test_intmin, test/torch_np/numpy_tests/linalg/test_linalg.py::TestNormDouble::test_axis, test/torch_np/numpy_tests/linalg/test_linalg.py::TestNormDouble::test_bad_args, test/torch_np/numpy_tests/linalg/test_linalg.py::TestNormDouble::test_empty, test/torch_np/numpy_tests/linalg/test_linalg.py::TestNormDouble::test_keepdims, test/torch_np/numpy_tests/linalg/test_linalg.py::TestNormDouble::test_matrix_2x2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestNormDouble::test_matrix_3x3, test/torch_np/numpy_tests/linalg/test_linalg.py::TestNormDouble::test_matrix_empty, test/torch_np/numpy_tests/linalg/test_linalg.py::TestNormDouble::test_matrix_return_type, test/torch_np/numpy_tests/linalg/test_linalg.py::TestNormDouble::test_vector, test/torch_np/numpy_tests/linalg/test_linalg.py::TestNormDouble::test_vector_return_type, test/torch_np/numpy_tests/linalg/test_linalg.py::TestNormSingle::test_axis, test/torch_np/numpy_tests/linalg/test_linalg.py::TestNormSingle::test_bad_args, test/torch_np/numpy_tests/linalg/test_linalg.py::TestNormSingle::test_empty, test/torch_np/numpy_tests/linalg/test_linalg.py::TestNormSingle::test_keepdims, test/torch_np/numpy_tests/linalg/test_linalg.py::TestNormSingle::test_matrix_2x2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestNormSingle::test_matrix_3x3, test/torch_np/numpy_tests/linalg/test_linalg.py::TestNormSingle::test_matrix_empty, test/torch_np/numpy_tests/linalg/test_linalg.py::TestNormSingle::test_matrix_return_type, test/torch_np/numpy_tests/linalg/test_linalg.py::TestNormSingle::test_vector, test/torch_np/numpy_tests/linalg/test_linalg.py::TestNormSingle::test_vector_return_type, test/torch_np/numpy_tests/linalg/test_linalg.py::TestNormInt64::test_axis, test/torch_np/numpy_tests/linalg/test_linalg.py::TestNormInt64::test_bad_args, test/torch_np/numpy_tests/linalg/test_linalg.py::TestNormInt64::test_empty, test/torch_np/numpy_tests/linalg/test_linalg.py::TestNormInt64::test_keepdims, test/torch_np/numpy_tests/linalg/test_linalg.py::TestNormInt64::test_matrix_2x2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestNormInt64::test_matrix_3x3, test/torch_np/numpy_tests/linalg/test_linalg.py::TestNormInt64::test_matrix_empty, test/torch_np/numpy_tests/linalg/test_linalg.py::TestNormInt64::test_matrix_return_type, test/torch_np/numpy_tests/linalg/test_linalg.py::TestNormInt64::test_vector, test/torch_np/numpy_tests/linalg/test_linalg.py::TestNormInt64::test_vector_return_type, test/torch_np/numpy_tests/linalg/test_linalg.py::TestMatrixRank::test_matrix_rank, test/torch_np/numpy_tests/linalg/test_linalg.py::TestMatrixRank::test_reduced_rank, test/torch_np/numpy_tests/linalg/test_linalg.py::TestMatrixRank::test_symmetric_rank, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_mode_all_but_economic, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_mode_raw, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_qr_empty_m_0_n_0, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_qr_empty_m_0_n_3, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_qr_empty_m_3_n_0, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size0_outer_size0_dt0, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size0_outer_size0_dt1, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size0_outer_size0_dt2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size0_outer_size0_dt3, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size0_outer_size1_dt0, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size0_outer_size1_dt1, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size0_outer_size1_dt2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size0_outer_size1_dt3, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size0_outer_size2_dt0, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size0_outer_size2_dt1, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size0_outer_size2_dt2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size0_outer_size2_dt3, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size1_outer_size0_dt0, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size1_outer_size0_dt1, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size1_outer_size0_dt2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size1_outer_size0_dt3, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size1_outer_size1_dt0, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size1_outer_size1_dt1, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size1_outer_size1_dt2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size1_outer_size1_dt3, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size1_outer_size2_dt0, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size1_outer_size2_dt1, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size1_outer_size2_dt2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size1_outer_size2_dt3, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size2_outer_size0_dt0, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size2_outer_size0_dt1, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size2_outer_size0_dt2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size2_outer_size0_dt3, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size2_outer_size1_dt0, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size2_outer_size1_dt1, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size2_outer_size1_dt2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size2_outer_size1_dt3, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size2_outer_size2_dt0, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size2_outer_size2_dt1, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size2_outer_size2_dt2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size2_outer_size2_dt3, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size3_outer_size0_dt0, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size3_outer_size0_dt1, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size3_outer_size0_dt2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size3_outer_size0_dt3, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size3_outer_size1_dt0, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size3_outer_size1_dt1, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size3_outer_size1_dt2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size3_outer_size1_dt3, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size3_outer_size2_dt0, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size3_outer_size2_dt1, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size3_outer_size2_dt2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size3_outer_size2_dt3, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size4_outer_size0_dt0, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size4_outer_size0_dt1, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size4_outer_size0_dt2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size4_outer_size0_dt3, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size4_outer_size1_dt0, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size4_outer_size1_dt1, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size4_outer_size1_dt2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size4_outer_size1_dt3, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size4_outer_size2_dt0, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size4_outer_size2_dt1, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size4_outer_size2_dt2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestQR::test_stacked_inputs_size4_outer_size2_dt3, test/torch_np/numpy_tests/linalg/test_linalg.py::TestCholesky::test_0_size, test/torch_np/numpy_tests/linalg/test_linalg.py::TestCholesky::test_basic_property_shape0_dtype0, test/torch_np/numpy_tests/linalg/test_linalg.py::TestCholesky::test_basic_property_shape0_dtype1, test/torch_np/numpy_tests/linalg/test_linalg.py::TestCholesky::test_basic_property_shape0_dtype2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestCholesky::test_basic_property_shape0_dtype3, test/torch_np/numpy_tests/linalg/test_linalg.py::TestCholesky::test_basic_property_shape1_dtype0, test/torch_np/numpy_tests/linalg/test_linalg.py::TestCholesky::test_basic_property_shape1_dtype1, test/torch_np/numpy_tests/linalg/test_linalg.py::TestCholesky::test_basic_property_shape1_dtype2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestCholesky::test_basic_property_shape1_dtype3, test/torch_np/numpy_tests/linalg/test_linalg.py::TestCholesky::test_basic_property_shape2_dtype0, test/torch_np/numpy_tests/linalg/test_linalg.py::TestCholesky::test_basic_property_shape2_dtype1, test/torch_np/numpy_tests/linalg/test_linalg.py::TestCholesky::test_basic_property_shape2_dtype2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestCholesky::test_basic_property_shape2_dtype3, test/torch_np/numpy_tests/linalg/test_linalg.py::TestCholesky::test_basic_property_shape3_dtype0, test/torch_np/numpy_tests/linalg/test_linalg.py::TestCholesky::test_basic_property_shape3_dtype1, test/torch_np/numpy_tests/linalg/test_linalg.py::TestCholesky::test_basic_property_shape3_dtype2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestCholesky::test_basic_property_shape3_dtype3, test/torch_np/numpy_tests/linalg/test_linalg.py::TestCholesky::test_basic_property_shape4_dtype0, test/torch_np/numpy_tests/linalg/test_linalg.py::TestCholesky::test_basic_property_shape4_dtype1, test/torch_np/numpy_tests/linalg/test_linalg.py::TestCholesky::test_basic_property_shape4_dtype2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestCholesky::test_basic_property_shape4_dtype3, test/torch_np/numpy_tests/linalg/test_linalg.py::TestMisc::test_byteorder_check, test/torch_np/numpy_tests/linalg/test_linalg.py::TestMisc::test_generalized_raise_multiloop, test/torch_np/numpy_tests/linalg/test_linalg.py::TestMisc::test_sdot_bug_8577, test/torch_np/numpy_tests/linalg/test_linalg.py::TestMisc::test_xerbla_override, test/torch_np/numpy_tests/linalg/test_linalg.py::TestMultiDot::test_basic_function_with_dynamic_programming_optimization, test/torch_np/numpy_tests/linalg/test_linalg.py::TestMultiDot::test_basic_function_with_three_arguments, test/torch_np/numpy_tests/linalg/test_linalg.py::TestMultiDot::test_basic_function_with_two_arguments, test/torch_np/numpy_tests/linalg/test_linalg.py::TestMultiDot::test_dynamic_programming_logic, test/torch_np/numpy_tests/linalg/test_linalg.py::TestMultiDot::test_dynamic_programming_optimization_and_out, test/torch_np/numpy_tests/linalg/test_linalg.py::TestMultiDot::test_three_arguments_and_out, test/torch_np/numpy_tests/linalg/test_linalg.py::TestMultiDot::test_too_few_input_arrays, test/torch_np/numpy_tests/linalg/test_linalg.py::TestMultiDot::test_two_arguments_and_out, test/torch_np/numpy_tests/linalg/test_linalg.py::TestMultiDot::test_vector_as_first_and_last_argument, test/torch_np/numpy_tests/linalg/test_linalg.py::TestMultiDot::test_vector_as_first_argument, test/torch_np/numpy_tests/linalg/test_linalg.py::TestMultiDot::test_vector_as_last_argument, test/torch_np/numpy_tests/linalg/test_linalg.py::TestTensorinv::test_non_square_handling_arr0_ind_2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestTensorinv::test_non_square_handling_arr1_ind_1, test/torch_np/numpy_tests/linalg/test_linalg.py::TestTensorinv::test_tensorinv_ind_limit_ind_-2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestTensorinv::test_tensorinv_ind_limit_ind_0, test/torch_np/numpy_tests/linalg/test_linalg.py::TestTensorinv::test_tensorinv_result, test/torch_np/numpy_tests/linalg/test_linalg.py::TestTensorinv::test_tensorinv_shape_shape0_ind_2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestTensorinv::test_tensorinv_shape_shape1_ind_1, test/torch_np/numpy_tests/linalg/test_linalg.py::TestTensorsolve::test_non_square_handling_a0_axes0, test/torch_np/numpy_tests/linalg/test_linalg.py::TestTensorsolve::test_non_square_handling_a1_axes1, test/torch_np/numpy_tests/linalg/test_linalg.py::TestTensorsolve::test_tensorsolve_result_shape0, test/torch_np/numpy_tests/linalg/test_linalg.py::TestTensorsolve::test_tensorsolve_result_shape1, test/torch_np/numpy_tests/linalg/test_linalg.py::TestTensorsolve::test_tensorsolve_result_shape2, test/torch_np/numpy_tests/linalg/test_linalg.py::TestMisc2::test_blas64_dot, test/torch_np/numpy_tests/linalg/test_linalg.py::TestMisc2::test_blas64_geqrf_lwork_smoketest, test/torch_np/numpy_tests/linalg/test_linalg.py::TestMisc2::test_unsupported_commontype 2025-08-14T23:50:28.1218089Z 2025-08-14T23:50:34.0569521Z Running test_sparse_csr 1/1 ... [2025-08-14 23:50:34.056038] 2025-08-14T23:50:34.0569951Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:50:34.0576023Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_sparse_csr.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-14 23:50:34.056038] 2025-08-14T23:52:24.2562597Z 2025-08-14T23:52:24.2563498Z functorch/test_vmap 2/2 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_vmap_2.2_fc96008a075637eb_.log 2025-08-14T23:52:24.3027971Z Running 1069 items in this shard: test/functorch/test_vmap.py::TestVmapAPI::test_backward_unsupported_interaction, test/functorch/test_vmap.py::TestVmapAPI::test_batched_gradient_basic, test/functorch/test_vmap.py::TestVmapAPI::test_checkpoint, test/functorch/test_vmap.py::TestVmapAPI::test_different_map_dim_size_raises, test/functorch/test_vmap.py::TestVmapAPI::test_fallback_does_not_warn_by_default, test/functorch/test_vmap.py::TestVmapAPI::test_fallback_multiple_returns, test/functorch/test_vmap.py::TestVmapAPI::test_fallback_warns_when_warnings_are_enabled, test/functorch/test_vmap.py::TestVmapAPI::test_fallback_zero_dim, test/functorch/test_vmap.py::TestVmapAPI::test_func_with_no_inputs, test/functorch/test_vmap.py::TestVmapAPI::test_func_with_no_tensors, test/functorch/test_vmap.py::TestVmapAPI::test_functools_partial, test/functorch/test_vmap.py::TestVmapAPI::test_in_dims_wrong_type_err_msg, test/functorch/test_vmap.py::TestVmapAPI::test_inplace_fallback_nary_same_levels, test/functorch/test_vmap.py::TestVmapAPI::test_integer_in_dim_but_not_tensor_input_err_msg, test/functorch/test_vmap.py::TestVmapAPI::test_multiple_outputs, test/functorch/test_vmap.py::TestVmapAPI::test_multiple_outputs2, test/functorch/test_vmap.py::TestVmapAPI::test_nested_out_dims, test/functorch/test_vmap.py::TestVmapAPI::test_nested_with_different_map_dim, test/functorch/test_vmap.py::TestVmapAPI::test_nn_module, test/functorch/test_vmap.py::TestVmapAPI::test_non_default_in_dims_out_dims, test/functorch/test_vmap.py::TestVmapAPI::test_non_tensor_output_raises, test/functorch/test_vmap.py::TestVmapAPI::test_nonzero_out_dims, test/functorch/test_vmap.py::TestVmapAPI::test_out_dims_must_be_int_or_collection_of_int_err_msg, test/functorch/test_vmap.py::TestVmapAPI::test_out_dims_none, test/functorch/test_vmap.py::TestVmapAPI::test_pytree_returns, test/functorch/test_vmap.py::TestVmapAPI::test_pytree_returns_broadcast_nested, test/functorch/test_vmap.py::TestVmapAPI::test_reshape_dim_into, test/functorch/test_vmap.py::TestVmapAPI::test_restore_vmap_pytree_input_output, test/functorch/test_vmap.py::TestVmapAPI::test_restore_vmap_unexpanded_outputs, test/functorch/test_vmap.py::TestVmapOperators::test_arithmetic_add, test/functorch/test_vmap.py::TestVmapOperators::test_arithmetic_add_dunder, test/functorch/test_vmap.py::TestVmapOperators::test_arithmetic_mul, test/functorch/test_vmap.py::TestVmapOperators::test_arithmetic_mul_dunder, test/functorch/test_vmap.py::TestVmapOperators::test_arithmetic_pow, test/functorch/test_vmap.py::TestVmapOperators::test_arithmetic_pow_dunder, test/functorch/test_vmap.py::TestVmapOperators::test_arithmetic_sub, test/functorch/test_vmap.py::TestVmapOperators::test_as_strided, test/functorch/test_vmap.py::TestVmapOperators::test_bmm, test/functorch/test_vmap.py::TestVmapOperators::test_chunk_vmap_in_dim_0_out_dim_1_randomness_error, test/functorch/test_vmap.py::TestVmapOperators::test_chunk_vmap_in_dim_0_out_dim_2_randomness_same, test/functorch/test_vmap.py::TestVmapOperators::test_chunk_vmap_in_dim_1_out_dim_0_randomness_error, test/functorch/test_vmap.py::TestVmapOperators::test_chunk_vmap_in_dim_1_out_dim_0_randomness_same, test/functorch/test_vmap.py::TestVmapOperators::test_chunk_vmap_in_dim_1_out_dim_1_randomness_error, test/functorch/test_vmap.py::TestVmapOperators::test_chunk_vmap_in_dim_1_out_dim_1_randomness_same, test/functorch/test_vmap.py::TestVmapOperators::test_chunk_vmap_in_dim_1_out_dim_2_randomness_same, test/functorch/test_vmap.py::TestVmapOperators::test_clamp, test/functorch/test_vmap.py::TestVmapOperators::test_clamp_inplace_variant_clamp_max_, test/functorch/test_vmap.py::TestVmapOperators::test_clamp_inplace_variant_clamp_min_, test/functorch/test_vmap.py::TestVmapOperators::test_clamp_variant_clamp_min, test/functorch/test_vmap.py::TestVmapOperators::test_conj, test/functorch/test_vmap.py::TestVmapOperators::test_conj_bit, test/functorch/test_vmap.py::TestVmapOperators::test_contiguous, test/functorch/test_vmap.py::TestVmapOperators::test_conv2d, test/functorch/test_vmap.py::TestVmapOperators::test_copy_, test/functorch/test_vmap.py::TestVmapOperators::test_diagonal, test/functorch/test_vmap.py::TestVmapOperators::test_imag, test/functorch/test_vmap.py::TestVmapOperators::test_is_contiguous, test/functorch/test_vmap.py::TestVmapOperators::test_mean_dim, test/functorch/test_vmap.py::TestVmapOperators::test_mm, test/functorch/test_vmap.py::TestVmapOperators::test_mv, test/functorch/test_vmap.py::TestVmapOperators::test_narrow, test/functorch/test_vmap.py::TestVmapOperators::test_real, test/functorch/test_vmap.py::TestVmapOperators::test_repeat, test/functorch/test_vmap.py::TestVmapOperators::test_reshape_as, test/functorch/test_vmap.py::TestVmapOperators::test_roll_no_dims, test/functorch/test_vmap.py::TestVmapOperators::test_slogdet, test/functorch/test_vmap.py::TestVmapOperators::test_squeeze, test/functorch/test_vmap.py::TestVmapOperators::test_sum, test/functorch/test_vmap.py::TestVmapOperators::test_sum_dim, test/functorch/test_vmap.py::TestVmapOperators::test_trace, test/functorch/test_vmap.py::TestVmapOperators::test_transpose, test/functorch/test_vmap.py::TestVmapOperators::test_unary_pointwise_acos, test/functorch/test_vmap.py::TestVmapOperators::test_unary_pointwise_asin, test/functorch/test_vmap.py::TestVmapOperators::test_unary_pointwise_ceil, test/functorch/test_vmap.py::TestVmapOperators::test_unary_pointwise_cosh, test/functorch/test_vmap.py::TestVmapOperators::test_unary_pointwise_digamma, test/functorch/test_vmap.py::TestVmapOperators::test_unary_pointwise_exp, test/functorch/test_vmap.py::TestVmapOperators::test_unary_pointwise_expm1, test/functorch/test_vmap.py::TestVmapOperators::test_unary_pointwise_frac, test/functorch/test_vmap.py::TestVmapOperators::test_unary_pointwise_lgamma, test/functorch/test_vmap.py::TestVmapOperators::test_unary_pointwise_log1p, test/functorch/test_vmap.py::TestVmapOperators::test_unary_pointwise_relu, test/functorch/test_vmap.py::TestVmapOperators::test_unary_pointwise_round, test/functorch/test_vmap.py::TestVmapOperators::test_unary_pointwise_rsqrt, test/functorch/test_vmap.py::TestVmapOperators::test_unary_pointwise_sign, test/functorch/test_vmap.py::TestVmapOperators::test_unary_pointwise_sinh, test/functorch/test_vmap.py::TestVmapOperators::test_unary_pointwise_tanh, test/functorch/test_vmap.py::TestVmapOperators::test_unary_pointwise_trunc, test/functorch/test_vmap.py::TestVmapOperators::test_unbind, test/functorch/test_vmap.py::TestVmapOperators::test_unsafe_view, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_chunksize_composition_in_dim_0_out_dim_0_randomness_error, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_chunksize_composition_in_dim_0_out_dim_1_randomness_error, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_chunksize_composition_in_dim_0_out_dim_1_randomness_same, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_chunksize_composition_in_dim_1_out_dim_0_randomness_same, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_chunksize_composition_in_dim_1_out_dim_1_randomness_error, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_chunksize_composition_in_dim_1_out_dim_1_randomness_same, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_chunksize_error_in_dim_0_out_dim_0_randomness_error, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_chunksize_error_in_dim_0_out_dim_0_randomness_same, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_chunksize_error_in_dim_0_out_dim_1_randomness_error, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_chunksize_error_in_dim_0_out_dim_1_randomness_same, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_chunksize_error_in_dim_1_out_dim_0_randomness_same, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_chunksize_error_in_dim_1_out_dim_1_randomness_error, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_chunksize_error_in_dim_1_out_dim_1_randomness_same, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_chunksize_in_dim_0_out_dim_0_randomness_same, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_chunksize_in_dim_0_out_dim_1_randomness_same, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_chunksize_in_dim_0_out_dim_2_randomness_same, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_chunksize_in_dim_1_out_dim_1_randomness_error, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_chunksize_in_dim_1_out_dim_1_randomness_same, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_chunksize_in_dim_1_out_dim_2_randomness_same, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_chunksize_in_dim_2_out_dim_0_randomness_same, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_chunksize_in_dim_2_out_dim_1_randomness_error, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_chunksize_in_dim_2_out_dim_1_randomness_same, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_chunksize_in_dim_2_out_dim_2_randomness_error, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_0d_tensor_index_put_inplace_False_cpu, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_0d_tensor_index_put_inplace_True_cpu, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_batch_norm_training_False_track_running_stats_False_affine_True_cpu, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_batch_norm_training_False_track_running_stats_True_affine_False_cpu, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_batch_norm_training_False_track_running_stats_True_affine_True_cpu, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_batch_norm_training_True_track_running_stats_False_affine_True_cpu, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_batch_norm_training_True_track_running_stats_True_affine_True_cpu, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_flatten_cpu, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_foo_like_cpu, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_group_norm_cpu, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_linalg_svd_cpu, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_nested_advanced_indexing_cpu, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_NumpyCatCustomOp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_NumpyCubeCustomOp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_NumpyMulAutogradFunction_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_NumpyNMSCustomOp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_NumpyNonzeroCustomOp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_NumpySortAutogradFunction_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_NumpySplitCopyCustomOp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_NumpySplitCopyWithIntCustomOp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_NumpyViewCopyCustomOp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule___getitem___functorch_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule___radd___cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule___rand___cpu_int64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule___rdiv___cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule___rmul___cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule___rpow___cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule___rsub___cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule___rxor___cpu_int64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule__batch_norm_with_update_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule__chunk_cat_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule__native_batch_norm_legit_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule__segment_reduce_lengths_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule__segment_reduce_offsets_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule__unsafe_masked_index_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_abs_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_acosh_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_addmm_decomposed_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_alias_copy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_all_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_allclose_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_angle_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_any_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_argmin_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_argwhere_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_as_strided_copy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_as_strided_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_as_strided_scatter_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_asin_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_asinh_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_atan_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_atanh_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_atleast_2d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_atleast_3d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_bfloat16_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_bfloat16_functorch_no_channels_last_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_bitwise_left_shift_cpu_int64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_bitwise_or_cpu_int64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_block_diag_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_bmm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_bool_functorch_no_channels_last_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_broadcast_shapes_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_broadcast_tensors_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_byte_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_cartesian_prod_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_cdouble_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_cfloat_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_chalf_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_cholesky_solve_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_chunk_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_clamp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_clamp_max_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_clone_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_complex_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_conj_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_contiguous_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_copysign_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_cos_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_cosh_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_cummin_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_cumsum_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_diag_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_diagonal_copy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_diagonal_scatter_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_diff_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_dist_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_div_trunc_rounding_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_double_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_dstack_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_einsum_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_empty_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_empty_like_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_empty_permuted_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_erf_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_exp2_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_exp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_expand_copy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_eye_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_fft_fftshift_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_fft_hfft2_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_fft_hfftn_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_fft_ifft2_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_fft_ifft_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_fft_ifftn_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_fft_ifftshift_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_fft_ihfft_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_fft_ihfftn_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_fft_irfft2_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_fft_irfft_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_fft_rfftn_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_fill_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_flatten_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_flip_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_flipud_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_float_functorch_no_channels_last_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_fmax_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_fmin_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_full_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_full_like_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_ge_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_geometric_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_geqrf_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_gradient_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_grid_sampler_2d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_hash_tensor_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_histc_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_histogramdd_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_hypot_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_igamma_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_igammac_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_imag_cpu_complex64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_index_add_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_index_copy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_index_put_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_index_reduce_mean_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_index_reduce_prod_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_index_select_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_int_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_isclose_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_istft_cpu_complex64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_jiterator_2inputs_2outputs_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_jiterator_4inputs_with_extra_args_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_jiterator_unary_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_kron_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_kthvalue_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_lcm_cpu_int64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_le_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_cond_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_cross_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_diagonal_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_eig_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_ldl_factor_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_ldl_factor_ex_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_ldl_solve_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_lstsq_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_lstsq_grad_oriented_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_lu_factor_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_lu_solve_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_matrix_norm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_matrix_power_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_matrix_rank_hermitian_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_multi_dot_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_pinv_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_pinv_singular_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_solve_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_svdvals_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_tensorinv_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_vander_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_vecdot_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_log10_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_log1p_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_log2_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_log_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_log_normal_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_log_softmax_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_log_softmax_with_dtype_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_logaddexp2_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_logaddexp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_logical_and_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_logical_not_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_logspace_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_logsumexp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_long_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_mH_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_masked_amax_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_masked_amin_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_masked_argmin_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_masked_cumsum_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_masked_fill_functorch_Scalar_only_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_masked_logaddexp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_masked_logsumexp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_masked_select_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_matmul_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_max_pool2d_with_indices_backward_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_max_reduction_no_dim_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_meshgrid_list_of_tensors_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_min_binary_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_min_reduction_with_dim_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_minimum_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_msort_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_mul_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_mvlgamma_mvlgamma_p_1_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_mvlgamma_mvlgamma_p_3_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_mvlgamma_mvlgamma_p_5_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nan_to_num_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nanmean_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nanquantile_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_narrow_copy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_native_layer_norm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_new_empty_strided_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_new_zeros_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_adaptive_avg_pool1d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_adaptive_avg_pool2d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_adaptive_max_pool1d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_adaptive_max_pool3d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_alpha_dropout_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_batch_norm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_channel_shuffle_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_conv1d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_conv2d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_conv2d_stride_no_bias_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_conv2d_strided_padding_dilation_with_bias_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_conv3d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_conv_transpose1d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_cross_entropy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_ctc_loss_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_dropout2d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_dropout3d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_fractional_max_pool2d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_gaussian_nll_loss_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_gelu_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_hardshrink_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_hardsigmoid_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_hinge_embedding_loss_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_huber_loss_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_instance_norm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_interpolate_area_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_interpolate_bilinear_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_layer_norm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_leaky_relu_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_linear_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_local_response_norm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_max_pool1d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_max_unpool2d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_max_unpool2d_grad_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_max_unpool3d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_max_unpool3d_grad_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_mish_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_mse_loss_functorch_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_multi_head_attention_forward_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_nll_loss_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_pad_constant_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_pad_reflect_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_pdist_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_pixel_unshuffle_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_prelu_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_relu_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_rms_norm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_rrelu_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_scaled_dot_product_attention_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_silu_complex_cpu_complex64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_smooth_l1_loss_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_softmin_with_dtype_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_softplus_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_softshrink_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_softsign_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_threshold_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_triplet_margin_loss_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_upsample_nearest_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_norm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_norm_fro_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_norm_inf_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_normal_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_normal_in_place_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_ones_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_ops_aten_index_put_functorch_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_ormqr_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_pca_lowrank_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_permute_copy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_pinverse_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_polygamma_polygamma_n_1_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_polygamma_polygamma_n_2_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_positive_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_put_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_qr_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_rand_like_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_randint_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_randint_like_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_randn_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_reciprocal_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_repeat_interleave_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_reshape_as_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_resize_as__cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_resolve_conj_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_resolve_neg_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_roll_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_round_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_round_decimals_0_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_round_decimals_3_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_round_decimals_neg_3_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_rsqrt_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_scatter_reduce_mean_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_searchsorted_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_select_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_select_scatter_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_short_functorch_no_channels_last_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_sign_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_signal_windows_blackman_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_signal_windows_gaussian_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_signal_windows_general_hamming_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_signal_windows_hann_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_sin_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_sinc_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_softmax_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_softmax_with_dtype_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_sparse_mm_reduce_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_sparse_sampled_addmm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_special_airy_ai_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_special_bessel_j1_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_special_bessel_y0_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_special_hermite_polynomial_h_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_special_hermite_polynomial_he_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_special_i0e_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_special_i1_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_special_laguerre_polynomial_l_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_special_ndtri_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_special_polygamma_special_polygamma_n_0_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_special_shifted_chebyshev_polynomial_t_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_special_xlog1py_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_split_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_split_with_sizes_copy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_square_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_squeeze_copy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_squeeze_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_squeeze_multiple_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_stack_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_std_mean_unbiased_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_stft_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_sub_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_sum_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_sum_to_size_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_svd_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_svd_lowrank_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_t_copy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_take_along_dim_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_tanh_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_to_sparse_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_torch__scaled_mm_cpu_float8_e4m3fn, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_transpose_copy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_triangular_solve_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_tril_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_triu_indices_cpu_int64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_true_divide_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_trunc_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_unbind_copy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_unflatten_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_unfold_copy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_unfold_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_uniform_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_unique_consecutive_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_unravel_index_cpu_int64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_unsafe_chunk_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_unsqueeze_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_var_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_var_mean_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_view_as_complex_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_view_as_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_view_as_real_cpu_complex64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_view_copy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_view_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_vstack_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_xlogy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_zeros_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_slogdet_cpu, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_sum_scalar_cpu, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_torch_return_types_returns_cpu, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_escaped_error_cpu, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_NumpyCatCustomOp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_NumpyMulCustomOp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_NumpyNMSCustomOp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_NumpyNonzeroCustomOp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_NumpySortAutogradFunction_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_NumpySortCustomOp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_NumpySplitCopyCustomOp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_NumpyTakeCustomOp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_NumpyViewCopyCustomOp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_T_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive___getitem___cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive___radd___cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive___rand___cpu_int64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive___rmul___cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive___ror___cpu_int64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive___rsub___cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive__native_batch_norm_legit_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive__segment_reduce_lengths_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive__softmax_backward_data_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive__unsafe_masked_index_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive__unsafe_masked_index_put_accumulate_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive__upsample_bilinear2d_aa_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_abs_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_acos_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_acosh_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_add_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_aminmax_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_arange_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_argmax_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_argmin_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_as_strided_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_asin_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_atanh_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_baddbmm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_bfloat16_functorch_no_channels_last_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_bitwise_or_cpu_int64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_bitwise_right_shift_cpu_int64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_bmm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_bool_functorch_no_channels_last_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_broadcast_shapes_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_bucketize_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_byte_functorch_no_channels_last_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_cartesian_prod_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_cauchy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_cdist_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_cdouble_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_ceil_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_char_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_cholesky_inverse_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_cholesky_solve_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_clamp_min_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_clone_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_column_stack_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_combinations_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_contiguous_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_cos_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_count_nonzero_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_cov_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_cummax_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_cumulative_trapezoid_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_diag_embed_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_diagflat_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_diagonal_copy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_div_floor_rounding_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_div_no_rounding_mode_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_dot_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_double_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_double_functorch_no_channels_last_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_dsplit_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_empty_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_empty_like_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_empty_strided_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_equal_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_erfc_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_erfinv_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_expm1_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_fft_fftn_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_fft_hfft2_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_fft_ifft2_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_fft_ifft_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_fft_ifftshift_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_fft_ihfftn_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_fft_irfft_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_fft_irfftn_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_fft_rfft2_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_fill_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_flipud_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_float_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_float_functorch_no_channels_last_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_float_power_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_floor_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_floor_divide_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_fmax_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_fmin_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_fmod_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_frac_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_frexp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_full_like_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_gather_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_ge_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_gt_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_half_functorch_no_channels_last_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_hash_tensor_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_histc_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_hsplit_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_hypot_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_i0_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_imag_cpu_complex64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_index_add_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_index_fill_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_index_reduce_amax_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_index_reduce_amin_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_index_reduce_mean_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_inner_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_isclose_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_isin_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_isnan_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_isneginf_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_isposinf_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_istft_cpu_complex64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_item_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_jiterator_4inputs_with_extra_args_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_jiterator_binary_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_jiterator_binary_return_by_ref_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_jiterator_unary_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_kron_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_ldexp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_le_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_lerp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_lgamma_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_cholesky_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_det_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_diagonal_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_eigh_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_eigvals_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_eigvalsh_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_inv_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_inv_ex_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_ldl_factor_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_ldl_factor_ex_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_ldl_solve_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_lstsq_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_lstsq_grad_oriented_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_lu_solve_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_matrix_rank_hermitian_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_multi_dot_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_norm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_pinv_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_pinv_singular_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_qr_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_solve_triangular_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_svd_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_svdvals_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_tensorinv_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_vector_norm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linspace_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linspace_tensor_overload_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_log2_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_log_softmax_with_dtype_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_logical_and_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_logical_not_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_logical_or_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_logspace_tensor_overload_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_logsumexp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_long_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_lt_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_lu_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_masked_amax_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_masked_amin_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_masked_argmax_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_masked_argmin_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_masked_cumprod_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_masked_cumsum_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_masked_fill_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_masked_logsumexp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_masked_median_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_masked_select_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_masked_softmax_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_mean_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_meshgrid_variadic_tensors_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_min_reduction_no_dim_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_mode_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_movedim_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_mul_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_mv_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_mvlgamma_mvlgamma_p_1_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nan_to_num_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nanmean_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nanmedian_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nanquantile_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nansum_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_narrow_copy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_narrow_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_native_batch_norm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_native_dropout_backward_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_native_layer_norm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_neg_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_new_empty_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_new_full_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_new_zeros_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_adaptive_avg_pool1d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_adaptive_avg_pool2d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_alpha_dropout_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_avg_pool1d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_bilinear_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_binary_cross_entropy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_conv2d_stride_depthwise_with_bias_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_conv2d_stride_padding_with_bias_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_conv2d_stride_with_bias_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_conv2d_with_bias_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_conv_transpose1d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_conv_transpose3d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_cosine_embedding_loss_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_cosine_similarity_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_cross_entropy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_dropout3d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_dropout_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_embedding_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_fractional_max_pool3d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_glu_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_grid_sample_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_group_norm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_hardshrink_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_instance_norm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_interpolate_area_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_interpolate_bilinear_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_interpolate_linear_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_interpolate_nearest_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_interpolate_trilinear_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_kl_div_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_l1_loss_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_leaky_relu_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_linear_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_margin_ranking_loss_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_max_pool1d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_max_unpool1d_grad_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_max_unpool3d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_max_unpool3d_grad_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_multi_head_attention_forward_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_normalize_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_pad_circular_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_pad_reflect_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_pad_replicate_negative_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_pdist_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_pixel_unshuffle_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_poisson_nll_loss_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_prelu_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_relu6_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_rrelu_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_smooth_l1_loss_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_soft_margin_loss_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_softmin_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_softmin_with_dtype_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_softplus_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_softsign_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_tanhshrink_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_threshold_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_triplet_margin_loss_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_unfold_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nonzero_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_norm_fro_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_norm_nuc_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_normal_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_normal_number_mean_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_ones_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_ops_aten__new_zeros_with_same_feature_meta_functorchonly_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_ops_aten_index_put_functorch_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_outer_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_permute_copy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_permute_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_polar_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_polygamma_polygamma_n_1_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_polygamma_polygamma_n_2_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_polygamma_polygamma_n_3_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_prod_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_qr_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_quantile_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_rad2deg_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_randint_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_real_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_reciprocal_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_renorm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_repeat_interleave_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_reshape_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_resize_as__cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_roll_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_rot90_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_round_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_round_decimals_0_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_round_decimals_3_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_rsqrt_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_rsub_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_scatter_reduce_amax_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_scatter_reduce_amin_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_searchsorted_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_sgn_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_sigmoid_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_signal_windows_bartlett_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_signal_windows_blackman_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_signal_windows_cosine_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_signal_windows_hamming_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_signal_windows_hann_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_signbit_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_sinc_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_sinh_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_slice_scatter_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_softmax_with_dtype_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_sort_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_sparse_mm_reduce_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_sparse_sampled_addmm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_special_airy_ai_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_special_bessel_y1_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_special_chebyshev_polynomial_t_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_special_chebyshev_polynomial_u_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_special_chebyshev_polynomial_v_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_special_entr_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_special_hermite_polynomial_he_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_special_legendre_polynomial_p_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_special_log_ndtr_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_special_ndtr_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_special_ndtri_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_special_polygamma_special_polygamma_n_0_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_special_scaled_modified_bessel_k0_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_special_scaled_modified_bessel_k1_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_special_shifted_chebyshev_polynomial_t_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_special_shifted_chebyshev_polynomial_u_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_special_shifted_chebyshev_polynomial_v_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_special_shifted_chebyshev_polynomial_w_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_special_spherical_bessel_j0_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_special_zeta_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_split_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_split_with_sizes_copy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_split_with_sizes_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_sqrt_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_square_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_squeeze_copy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_squeeze_multiple_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_std_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_std_mean_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_stft_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_sum_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_sum_to_size_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_t_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_take_along_dim_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_take_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_tan_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_tanh_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_tensordot_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_to_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_topk_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_trapezoid_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_trapz_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_tril_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_tril_indices_cpu_int64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_triu_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_unbind_copy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_uniform_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_unique_consecutive_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_unsafe_chunk_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_unsqueeze_copy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_unsqueeze_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_var_unbiased_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_view_as_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_view_as_real_cpu_complex64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_view_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_vsplit_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_vstack_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_zeros_like_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_cholesky_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_cholesky_ex_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_det_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_diagonal_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_eigvalsh_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_householder_product_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_inv_ex_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_ldl_solve_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_lstsq_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_lu_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_lu_factor_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_lu_factor_ex_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_matrix_norm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_matrix_rank_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_matrix_rank_hermitian_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_norm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_pinv_hermitian_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_pinv_singular_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_qr_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_slogdet_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_solve_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_solve_ex_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_solve_triangular_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_vecdot_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_vector_norm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_multi_dot_failure_1D_input_cpu, test/functorch/test_vmap.py::TestVmapBatchedGradientCPU::test_add_cpu, test/functorch/test_vmap.py::TestVmapBatchedGradientCPU::test_binary_cross_entropy_cpu, test/functorch/test_vmap.py::TestVmapBatchedGradientCPU::test_diagonal_cpu, test/functorch/test_vmap.py::TestVmapBatchedGradientCPU::test_expand_cpu, test/functorch/test_vmap.py::TestVmapBatchedGradientCPU::test_index_cpu, test/functorch/test_vmap.py::TestVmapBatchedGradientCPU::test_inplace_view_cpu, test/functorch/test_vmap.py::TestVmapBatchedGradientCPU::test_log_softmax_cpu, test/functorch/test_vmap.py::TestVmapBatchedGradientCPU::test_logsumexp_cpu, test/functorch/test_vmap.py::TestVmapBatchedGradientCPU::test_permute_cpu, test/functorch/test_vmap.py::TestVmapBatchedGradientCPU::test_randomness_backend0_randomness_error_cpu, test/functorch/test_vmap.py::TestVmapBatchedGradientCPU::test_reshape_cpu, test/functorch/test_vmap.py::TestVmapBatchedGradientCPU::test_sdpa_backend0_cpu, test/functorch/test_vmap.py::TestVmapBatchedGradientCPU::test_sigmoid_cpu, test/functorch/test_vmap.py::TestVmapBatchedGradientCPU::test_slice_cpu, test/functorch/test_vmap.py::TestVmapBatchedGradientCPU::test_threshold_cpu, test/functorch/test_vmap.py::TestVmapBatchedGradientCPU::test_unrelated_output_cpu, test/functorch/test_vmap.py::TestVmapBatchedGradientCPU::test_unrelated_output_multiple_grad_cpu, test/functorch/test_vmap.py::TestVmapBatchedGradientCPU::test_vmap_fallback_check, test/functorch/test_vmap.py::TestTransformFailureCPU::test_fails_with_autograd_function_transform_grad_cpu, test/functorch/test_vmap.py::TestTransformFailureCPU::test_fails_with_autograd_function_transform_jacrev_cpu, test/functorch/test_vmap.py::TestTransformFailureCPU::test_fails_with_autograd_function_transform_vjp_cpu, test/functorch/test_vmap.py::TestTransformFailureCPU::test_fails_with_autograd_function_transform_vmap_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_alpha_dropout_randomness_different_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_alpha_dropout_randomness_different_batched_input_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_alpha_dropout_randomness_error_batched_input_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_alpha_dropout_randomness_same_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_alpha_dropout_randomness_same_batched_input_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_False_randomness_different_batched_input_first_batched_probability_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_False_randomness_different_batched_input_last_batched_probability_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_False_randomness_different_batched_input_last_batched_probability_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_False_randomness_different_batched_input_last_batched_probability_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_False_randomness_different_batched_input_none_batched_probability_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_False_randomness_different_batched_input_none_batched_probability_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_False_randomness_different_batched_input_none_batched_probability_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_False_randomness_error_batched_input_first_batched_probability_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_False_randomness_error_batched_input_last_batched_probability_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_False_randomness_error_batched_input_last_batched_probability_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_False_randomness_error_batched_input_none_batched_probability_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_False_randomness_error_batched_input_none_batched_probability_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_False_randomness_same_batched_input_first_batched_probability_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_False_randomness_same_batched_input_first_batched_probability_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_False_randomness_same_batched_input_none_batched_probability_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_True_randomness_different_batched_input_first_batched_probability_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_True_randomness_different_batched_input_first_batched_probability_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_True_randomness_different_batched_input_last_batched_probability_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_True_randomness_different_batched_input_last_batched_probability_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_True_randomness_different_batched_input_none_batched_probability_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_True_randomness_error_batched_input_first_batched_probability_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_True_randomness_error_batched_input_first_batched_probability_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_True_randomness_error_batched_input_last_batched_probability_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_True_randomness_error_batched_input_none_batched_probability_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_True_randomness_error_batched_input_none_batched_probability_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_True_randomness_same_batched_input_first_batched_probability_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_True_randomness_same_batched_input_last_batched_probability_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_True_randomness_same_batched_input_last_batched_probability_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_True_randomness_same_batched_input_none_batched_probability_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_True_randomness_same_batched_input_none_batched_probability_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_chunk_vmap_in_dim_0_out_dim_1_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_chunk_vmap_in_dim_1_out_dim_0_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_chunk_vmap_in_dim_1_out_dim_1_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_chunk_vmap_in_dim_1_out_dim_2_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_chunk_vmap_in_dim_2_out_dim_0_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_chunk_vmap_in_dim_2_out_dim_1_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_dropout_randomness_different_batched_input_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_dropout_randomness_different_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_dropout_randomness_different_batched_input_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_dropout_randomness_same_batched_input_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_dropout_unbatched_randomness_different_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_dropout_unbatched_randomness_same_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_factory_ops_randomness_different_use_generator_False_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_factory_ops_randomness_error_use_generator_False_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_factory_ops_randomness_error_use_generator_True_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_factory_ops_randomness_same_use_generator_True_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_feature_alpha_dropout_randomness_different_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_feature_alpha_dropout_randomness_different_batched_input_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_feature_alpha_dropout_randomness_error_batched_input_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_feature_alpha_dropout_randomness_error_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_feature_alpha_dropout_randomness_same_batched_input_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_feature_dropout_randomness_different_batched_input_first_dim_2_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_feature_dropout_randomness_different_batched_input_last_dim_2_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_feature_dropout_randomness_different_batched_input_last_dim_3_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_feature_dropout_randomness_different_batched_input_none_dim_2_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_feature_dropout_randomness_error_batched_input_last_dim_2_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_feature_dropout_randomness_error_batched_input_last_dim_3_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_feature_dropout_randomness_error_batched_input_none_dim_2_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_feature_dropout_randomness_error_batched_input_none_dim_3_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_feature_dropout_randomness_same_batched_input_first_dim_2_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_feature_dropout_randomness_same_batched_input_last_dim_3_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_feature_dropout_randomness_same_batched_input_none_dim_3_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_jacfwd_with_random_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_like_functions_randomness_different_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_like_functions_randomness_different_batched_input_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_like_functions_randomness_error_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_like_functions_randomness_same_batched_input_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_multinomial_use_generator_False_randomness_different_batched_call_False_batched_input_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_multinomial_use_generator_False_randomness_different_batched_call_False_batched_input_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_multinomial_use_generator_False_randomness_error_batched_call_True_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_multinomial_use_generator_False_randomness_error_batched_call_True_batched_input_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_multinomial_use_generator_False_randomness_same_batched_call_False_batched_input_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_multinomial_use_generator_False_randomness_same_batched_call_False_batched_input_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_multinomial_use_generator_False_randomness_same_batched_call_True_batched_input_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_multinomial_use_generator_False_randomness_same_batched_call_True_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_multinomial_use_generator_True_randomness_different_batched_call_False_batched_input_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_multinomial_use_generator_True_randomness_different_batched_call_False_batched_input_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_multinomial_use_generator_True_randomness_different_batched_call_True_batched_input_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_multinomial_use_generator_True_randomness_error_batched_call_False_batched_input_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_multinomial_use_generator_True_randomness_error_batched_call_True_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_multinomial_use_generator_True_randomness_same_batched_call_False_batched_input_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_multinomial_use_generator_True_randomness_same_batched_call_True_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_multinomial_use_generator_True_randomness_same_batched_call_True_batched_input_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_False_randomness_different_batched_input_first_batched_other_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_False_randomness_different_batched_input_last_batched_other_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_False_randomness_different_batched_input_none_batched_other_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_False_randomness_different_batched_input_none_batched_other_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_False_randomness_error_batched_input_first_batched_other_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_False_randomness_error_batched_input_first_batched_other_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_False_randomness_error_batched_input_first_batched_other_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_False_randomness_error_batched_input_last_batched_other_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_False_randomness_error_batched_input_last_batched_other_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_False_randomness_error_batched_input_none_batched_other_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_False_randomness_error_batched_input_none_batched_other_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_False_randomness_same_batched_input_first_batched_other_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_False_randomness_same_batched_input_last_batched_other_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_False_randomness_same_batched_input_last_batched_other_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_False_randomness_same_batched_input_none_batched_other_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_False_randomness_same_batched_input_none_batched_other_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_True_randomness_different_batched_input_first_batched_other_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_True_randomness_different_batched_input_last_batched_other_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_True_randomness_different_batched_input_none_batched_other_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_True_randomness_error_batched_input_first_batched_other_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_True_randomness_error_batched_input_last_batched_other_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_True_randomness_error_batched_input_last_batched_other_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_True_randomness_same_batched_input_first_batched_other_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_True_randomness_same_batched_input_first_batched_other_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_True_randomness_same_batched_input_first_batched_other_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_True_randomness_same_batched_input_last_batched_other_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_True_randomness_same_batched_input_none_batched_other_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_True_randomness_same_batched_input_none_batched_other_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_inplace_use_generator_False_randomness_error_batched_input_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_inplace_use_generator_False_randomness_error_batched_input_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_inplace_use_generator_False_randomness_same_batched_input_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_inplace_use_generator_False_randomness_same_batched_input_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_inplace_use_generator_True_randomness_error_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_inplace_use_generator_True_randomness_same_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_inplace_use_generator_True_randomness_same_batched_input_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_out_of_place_use_generator_False_randomness_same_batched_input_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_out_of_place_use_generator_True_randomness_error_batched_input_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_out_of_place_use_generator_True_randomness_error_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_out_of_place_use_generator_True_randomness_error_batched_input_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_out_of_place_use_generator_True_randomness_same_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_out_of_place_use_generator_True_randomness_same_batched_input_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_randperm_randomness_error_use_generator_False_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_randperm_randomness_error_use_generator_True_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_randperm_randomness_same_use_generator_True_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_vmap_chunksize_in_dim_0_out_dim_1_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_vmap_chunksize_in_dim_0_out_dim_2_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_vmap_chunksize_in_dim_1_out_dim_1_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_vmap_chunksize_in_dim_2_out_dim_1_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_vmap_chunksize_in_dim_2_out_dim_2_cpu, test/functorch/test_vmap.py::TestVmapDeviceTypeCPU::test__is_all_true_cpu, test/functorch/test_vmap.py::TestVmapDeviceTypeCPU::test__is_any_true_cpu, test/functorch/test_vmap.py::TestVmapDeviceTypeCPU::test_vmap_fallback_check_ok, test/functorch/test_vmap.py::TestVmapNestedTensorCPU::test_cat_batching_rule_cpu, test/functorch/test_vmap.py::TestVmapNestedTensorCPU::test_fallback_binary_nt_and_unbatched_dense_cpu, test/functorch/test_vmap.py::TestVmapNestedTensorCPU::test_vmap_fallback_check 2025-08-14T23:52:24.3466102Z 2025-08-14T23:52:29.7406910Z Running test_view_ops 1/1 ... [2025-08-14 23:52:29.740475] 2025-08-14T23:52:29.7407715Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:52:29.7414629Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_view_ops.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-14 23:52:29.741191] 2025-08-14T23:52:51.9865164Z 2025-08-14T23:52:51.9866179Z test_view_ops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_view_ops_1.1_e65c4e9f7eaa0c23_.log 2025-08-14T23:52:51.9986044Z Running 442 items in this shard: test/test_view_ops.py::TestViewOpsCPU::test_T_view_cpu, test/test_view_ops.py::TestViewOpsCPU::test_advanced_indexing_assignment_cpu, test/test_view_ops.py::TestViewOpsCPU::test_advanced_indexing_nonview_cpu, test/test_view_ops.py::TestViewOpsCPU::test_as_strided_gradients_cpu, test/test_view_ops.py::TestViewOpsCPU::test_as_strided_inplace_view_cpu, test/test_view_ops.py::TestViewOpsCPU::test_as_strided_view_cpu, test/test_view_ops.py::TestViewOpsCPU::test_basic_indexing_ellipses_view_cpu, test/test_view_ops.py::TestViewOpsCPU::test_basic_indexing_newaxis_view_cpu, test/test_view_ops.py::TestViewOpsCPU::test_basic_indexing_slice_view_cpu, test/test_view_ops.py::TestViewOpsCPU::test_chunk_view_cpu, test/test_view_ops.py::TestViewOpsCPU::test_conj_imag_view_cpu_complex128, test/test_view_ops.py::TestViewOpsCPU::test_conj_imag_view_cpu_complex64, test/test_view_ops.py::TestViewOpsCPU::test_conj_self_cpu_bfloat16, test/test_view_ops.py::TestViewOpsCPU::test_conj_self_cpu_float16, test/test_view_ops.py::TestViewOpsCPU::test_conj_self_cpu_float32, test/test_view_ops.py::TestViewOpsCPU::test_conj_self_cpu_float64, test/test_view_ops.py::TestViewOpsCPU::test_conj_self_cpu_int16, test/test_view_ops.py::TestViewOpsCPU::test_conj_self_cpu_int32, test/test_view_ops.py::TestViewOpsCPU::test_conj_self_cpu_int64, test/test_view_ops.py::TestViewOpsCPU::test_conj_self_cpu_int8, test/test_view_ops.py::TestViewOpsCPU::test_conj_self_cpu_uint8, test/test_view_ops.py::TestViewOpsCPU::test_conj_view_with_shared_memory_cpu, test/test_view_ops.py::TestViewOpsCPU::test_contiguous_nonview_cpu, test/test_view_ops.py::TestViewOpsCPU::test_contiguous_self_cpu, test/test_view_ops.py::TestViewOpsCPU::test_diagonal_view_cpu, test/test_view_ops.py::TestViewOpsCPU::test_expand_as_view_cpu, test/test_view_ops.py::TestViewOpsCPU::test_expand_view_cpu, test/test_view_ops.py::TestViewOpsCPU::test_flatten_nonview_cpu, test/test_view_ops.py::TestViewOpsCPU::test_flatten_view_cpu, test/test_view_ops.py::TestViewOpsCPU::test_imag_noncomplex_cpu_bfloat16, test/test_view_ops.py::TestViewOpsCPU::test_imag_noncomplex_cpu_float16, test/test_view_ops.py::TestViewOpsCPU::test_imag_noncomplex_cpu_float32, test/test_view_ops.py::TestViewOpsCPU::test_imag_noncomplex_cpu_float64, test/test_view_ops.py::TestViewOpsCPU::test_imag_noncomplex_cpu_int16, test/test_view_ops.py::TestViewOpsCPU::test_imag_noncomplex_cpu_int32, test/test_view_ops.py::TestViewOpsCPU::test_imag_noncomplex_cpu_int64, test/test_view_ops.py::TestViewOpsCPU::test_imag_noncomplex_cpu_int8, test/test_view_ops.py::TestViewOpsCPU::test_imag_noncomplex_cpu_uint8, test/test_view_ops.py::TestViewOpsCPU::test_movedim_view_cpu, test/test_view_ops.py::TestViewOpsCPU::test_narrow_view_cpu, test/test_view_ops.py::TestViewOpsCPU::test_permute_view_cpu, test/test_view_ops.py::TestViewOpsCPU::test_real_imag_view_cpu_complex128, test/test_view_ops.py::TestViewOpsCPU::test_real_imag_view_cpu_complex64, test/test_view_ops.py::TestViewOpsCPU::test_reshape_as_view_cpu, test/test_view_ops.py::TestViewOpsCPU::test_reshape_nonview_cpu, test/test_view_ops.py::TestViewOpsCPU::test_reshape_view_cpu, test/test_view_ops.py::TestViewOpsCPU::test_select_view_cpu, test/test_view_ops.py::TestViewOpsCPU::test_set_real_imag_cpu_complex128_bfloat16, test/test_view_ops.py::TestViewOpsCPU::test_set_real_imag_cpu_complex128_bool, test/test_view_ops.py::TestViewOpsCPU::test_set_real_imag_cpu_complex128_complex128, test/test_view_ops.py::TestViewOpsCPU::test_set_real_imag_cpu_complex128_complex64, test/test_view_ops.py::TestViewOpsCPU::test_set_real_imag_cpu_complex128_float16, test/test_view_ops.py::TestViewOpsCPU::test_set_real_imag_cpu_complex128_float32, test/test_view_ops.py::TestViewOpsCPU::test_set_real_imag_cpu_complex128_float64, test/test_view_ops.py::TestViewOpsCPU::test_set_real_imag_cpu_complex128_int16, test/test_view_ops.py::TestViewOpsCPU::test_set_real_imag_cpu_complex128_int32, test/test_view_ops.py::TestViewOpsCPU::test_set_real_imag_cpu_complex128_int64, test/test_view_ops.py::TestViewOpsCPU::test_set_real_imag_cpu_complex128_int8, test/test_view_ops.py::TestViewOpsCPU::test_set_real_imag_cpu_complex128_uint8, test/test_view_ops.py::TestViewOpsCPU::test_set_real_imag_cpu_complex64_bfloat16, test/test_view_ops.py::TestViewOpsCPU::test_set_real_imag_cpu_complex64_bool, test/test_view_ops.py::TestViewOpsCPU::test_set_real_imag_cpu_complex64_complex128, test/test_view_ops.py::TestViewOpsCPU::test_set_real_imag_cpu_complex64_complex64, test/test_view_ops.py::TestViewOpsCPU::test_set_real_imag_cpu_complex64_float16, test/test_view_ops.py::TestViewOpsCPU::test_set_real_imag_cpu_complex64_float32, test/test_view_ops.py::TestViewOpsCPU::test_set_real_imag_cpu_complex64_float64, test/test_view_ops.py::TestViewOpsCPU::test_set_real_imag_cpu_complex64_int16, test/test_view_ops.py::TestViewOpsCPU::test_set_real_imag_cpu_complex64_int32, test/test_view_ops.py::TestViewOpsCPU::test_set_real_imag_cpu_complex64_int64, test/test_view_ops.py::TestViewOpsCPU::test_set_real_imag_cpu_complex64_int8, test/test_view_ops.py::TestViewOpsCPU::test_set_real_imag_cpu_complex64_uint8, test/test_view_ops.py::TestViewOpsCPU::test_split_view_cpu, test/test_view_ops.py::TestViewOpsCPU::test_squeeze_inplace_view_cpu, test/test_view_ops.py::TestViewOpsCPU::test_squeeze_view_cpu, test/test_view_ops.py::TestViewOpsCPU::test_t_inplace_view_cpu, test/test_view_ops.py::TestViewOpsCPU::test_t_view_cpu, test/test_view_ops.py::TestViewOpsCPU::test_transpose_inplace_view_cpu, test/test_view_ops.py::TestViewOpsCPU::test_transpose_view_cpu, test/test_view_ops.py::TestViewOpsCPU::test_unbind_cpu, test/test_view_ops.py::TestViewOpsCPU::test_unbind_view_cpu, test/test_view_ops.py::TestViewOpsCPU::test_unfold_view_cpu, test/test_view_ops.py::TestViewOpsCPU::test_unsqueeze_inplace_view_cpu, test/test_view_ops.py::TestViewOpsCPU::test_unsqueeze_view_cpu, test/test_view_ops.py::TestViewOpsCPU::test_view_as_complex_cpu, test/test_view_ops.py::TestViewOpsCPU::test_view_as_real_cpu_complex128, test/test_view_ops.py::TestViewOpsCPU::test_view_as_real_cpu_complex32, test/test_view_ops.py::TestViewOpsCPU::test_view_as_real_cpu_complex64, test/test_view_ops.py::TestViewOpsCPU::test_view_as_view_cpu, test/test_view_ops.py::TestViewOpsCPU::test_view_copy_cpu, test/test_view_ops.py::TestViewOpsCPU::test_view_copy_out_cpu, test/test_view_ops.py::TestViewOpsCPU::test_view_copy_output_contiguous_cpu, test/test_view_ops.py::TestViewOpsCPU::test_view_dtype_new_cpu_bool, test/test_view_ops.py::TestViewOpsCPU::test_view_dtype_new_cpu_complex128, test/test_view_ops.py::TestViewOpsCPU::test_view_dtype_new_cpu_complex64, test/test_view_ops.py::TestViewOpsCPU::test_view_dtype_new_cpu_float16, test/test_view_ops.py::TestViewOpsCPU::test_view_dtype_new_cpu_float32, test/test_view_ops.py::TestViewOpsCPU::test_view_dtype_new_cpu_float64, test/test_view_ops.py::TestViewOpsCPU::test_view_dtype_new_cpu_int16, test/test_view_ops.py::TestViewOpsCPU::test_view_dtype_new_cpu_int32, test/test_view_ops.py::TestViewOpsCPU::test_view_dtype_new_cpu_int64, test/test_view_ops.py::TestViewOpsCPU::test_view_dtype_new_cpu_int8, test/test_view_ops.py::TestViewOpsCPU::test_view_dtype_new_cpu_uint8, test/test_view_ops.py::TestViewOpsCPU::test_view_dtype_upsize_errors_cpu_bfloat16, test/test_view_ops.py::TestViewOpsCPU::test_view_dtype_upsize_errors_cpu_bool, test/test_view_ops.py::TestViewOpsCPU::test_view_dtype_upsize_errors_cpu_complex128, test/test_view_ops.py::TestViewOpsCPU::test_view_dtype_upsize_errors_cpu_complex64, test/test_view_ops.py::TestViewOpsCPU::test_view_dtype_upsize_errors_cpu_float16, test/test_view_ops.py::TestViewOpsCPU::test_view_dtype_upsize_errors_cpu_float32, test/test_view_ops.py::TestViewOpsCPU::test_view_dtype_upsize_errors_cpu_float64, test/test_view_ops.py::TestViewOpsCPU::test_view_dtype_upsize_errors_cpu_int16, test/test_view_ops.py::TestViewOpsCPU::test_view_dtype_upsize_errors_cpu_int32, test/test_view_ops.py::TestViewOpsCPU::test_view_dtype_upsize_errors_cpu_int64, test/test_view_ops.py::TestViewOpsCPU::test_view_dtype_upsize_errors_cpu_int8, test/test_view_ops.py::TestViewOpsCPU::test_view_dtype_upsize_errors_cpu_uint8, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_dsplit_cpu_bfloat16, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_dsplit_cpu_bool, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_dsplit_cpu_complex128, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_dsplit_cpu_complex64, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_dsplit_cpu_float16, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_dsplit_cpu_float32, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_dsplit_cpu_float64, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_dsplit_cpu_int16, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_dsplit_cpu_int32, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_dsplit_cpu_int64, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_dsplit_cpu_int8, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_dsplit_cpu_uint8, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_hsplit_cpu_bfloat16, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_hsplit_cpu_bool, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_hsplit_cpu_complex128, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_hsplit_cpu_complex64, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_hsplit_cpu_float16, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_hsplit_cpu_float32, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_hsplit_cpu_float64, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_hsplit_cpu_int16, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_hsplit_cpu_int32, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_hsplit_cpu_int64, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_hsplit_cpu_int8, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_hsplit_cpu_uint8, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_split_cpu_bfloat16, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_split_cpu_bool, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_split_cpu_complex128, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_split_cpu_complex64, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_split_cpu_float16, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_split_cpu_float32, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_split_cpu_float64, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_split_cpu_int16, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_split_cpu_int32, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_split_cpu_int64, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_split_cpu_int8, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_split_cpu_uint8, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_vsplit_cpu_bfloat16, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_vsplit_cpu_bool, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_vsplit_cpu_complex128, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_vsplit_cpu_complex64, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_vsplit_cpu_float16, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_vsplit_cpu_float32, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_vsplit_cpu_float64, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_vsplit_cpu_int16, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_vsplit_cpu_int32, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_vsplit_cpu_int64, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_vsplit_cpu_int8, test/test_view_ops.py::TestViewOpsCPU::test_view_tensor_vsplit_cpu_uint8, test/test_view_ops.py::TestViewOpsCPU::test_view_view_cpu, test/test_view_ops.py::TestViewOpsLAZY::test_T_view_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_advanced_indexing_assignment_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_advanced_indexing_nonview_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_as_strided_gradients_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_as_strided_inplace_view_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_as_strided_view_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_basic_indexing_ellipses_view_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_basic_indexing_newaxis_view_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_basic_indexing_slice_view_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_chunk_view_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_conj_imag_view_lazy_complex128, test/test_view_ops.py::TestViewOpsLAZY::test_conj_imag_view_lazy_complex64, test/test_view_ops.py::TestViewOpsLAZY::test_conj_self_lazy_bfloat16, test/test_view_ops.py::TestViewOpsLAZY::test_conj_self_lazy_float16, test/test_view_ops.py::TestViewOpsLAZY::test_conj_self_lazy_float32, test/test_view_ops.py::TestViewOpsLAZY::test_conj_self_lazy_float64, test/test_view_ops.py::TestViewOpsLAZY::test_conj_self_lazy_int16, test/test_view_ops.py::TestViewOpsLAZY::test_conj_self_lazy_int32, test/test_view_ops.py::TestViewOpsLAZY::test_conj_self_lazy_int64, test/test_view_ops.py::TestViewOpsLAZY::test_conj_self_lazy_int8, test/test_view_ops.py::TestViewOpsLAZY::test_conj_self_lazy_uint8, test/test_view_ops.py::TestViewOpsLAZY::test_conj_view_with_shared_memory_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_contiguous_nonview_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_contiguous_self_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_diagonal_view_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_expand_as_view_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_expand_view_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_flatten_nonview_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_flatten_view_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_imag_noncomplex_lazy_bfloat16, test/test_view_ops.py::TestViewOpsLAZY::test_imag_noncomplex_lazy_float16, test/test_view_ops.py::TestViewOpsLAZY::test_imag_noncomplex_lazy_float32, test/test_view_ops.py::TestViewOpsLAZY::test_imag_noncomplex_lazy_float64, test/test_view_ops.py::TestViewOpsLAZY::test_imag_noncomplex_lazy_int16, test/test_view_ops.py::TestViewOpsLAZY::test_imag_noncomplex_lazy_int32, test/test_view_ops.py::TestViewOpsLAZY::test_imag_noncomplex_lazy_int64, test/test_view_ops.py::TestViewOpsLAZY::test_imag_noncomplex_lazy_int8, test/test_view_ops.py::TestViewOpsLAZY::test_imag_noncomplex_lazy_uint8, test/test_view_ops.py::TestViewOpsLAZY::test_movedim_view_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_narrow_view_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_permute_view_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_real_imag_view_lazy_complex128, test/test_view_ops.py::TestViewOpsLAZY::test_real_imag_view_lazy_complex64, test/test_view_ops.py::TestViewOpsLAZY::test_reshape_as_view_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_reshape_nonview_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_reshape_view_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_select_view_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_set_real_imag_lazy_complex128_bfloat16, test/test_view_ops.py::TestViewOpsLAZY::test_set_real_imag_lazy_complex128_bool, test/test_view_ops.py::TestViewOpsLAZY::test_set_real_imag_lazy_complex128_complex128, test/test_view_ops.py::TestViewOpsLAZY::test_set_real_imag_lazy_complex128_complex64, test/test_view_ops.py::TestViewOpsLAZY::test_set_real_imag_lazy_complex128_float16, test/test_view_ops.py::TestViewOpsLAZY::test_set_real_imag_lazy_complex128_float32, test/test_view_ops.py::TestViewOpsLAZY::test_set_real_imag_lazy_complex128_float64, test/test_view_ops.py::TestViewOpsLAZY::test_set_real_imag_lazy_complex128_int16, test/test_view_ops.py::TestViewOpsLAZY::test_set_real_imag_lazy_complex128_int32, test/test_view_ops.py::TestViewOpsLAZY::test_set_real_imag_lazy_complex128_int64, test/test_view_ops.py::TestViewOpsLAZY::test_set_real_imag_lazy_complex128_int8, test/test_view_ops.py::TestViewOpsLAZY::test_set_real_imag_lazy_complex128_uint8, test/test_view_ops.py::TestViewOpsLAZY::test_set_real_imag_lazy_complex64_bfloat16, test/test_view_ops.py::TestViewOpsLAZY::test_set_real_imag_lazy_complex64_bool, test/test_view_ops.py::TestViewOpsLAZY::test_set_real_imag_lazy_complex64_complex128, test/test_view_ops.py::TestViewOpsLAZY::test_set_real_imag_lazy_complex64_complex64, test/test_view_ops.py::TestViewOpsLAZY::test_set_real_imag_lazy_complex64_float16, test/test_view_ops.py::TestViewOpsLAZY::test_set_real_imag_lazy_complex64_float32, test/test_view_ops.py::TestViewOpsLAZY::test_set_real_imag_lazy_complex64_float64, test/test_view_ops.py::TestViewOpsLAZY::test_set_real_imag_lazy_complex64_int16, test/test_view_ops.py::TestViewOpsLAZY::test_set_real_imag_lazy_complex64_int32, test/test_view_ops.py::TestViewOpsLAZY::test_set_real_imag_lazy_complex64_int64, test/test_view_ops.py::TestViewOpsLAZY::test_set_real_imag_lazy_complex64_int8, test/test_view_ops.py::TestViewOpsLAZY::test_set_real_imag_lazy_complex64_uint8, test/test_view_ops.py::TestViewOpsLAZY::test_split_view_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_squeeze_inplace_view_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_squeeze_view_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_t_inplace_view_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_t_view_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_transpose_inplace_view_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_transpose_view_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_unbind_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_unbind_view_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_unfold_view_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_unsqueeze_inplace_view_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_unsqueeze_view_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_view_as_complex_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_view_as_real_lazy_complex128, test/test_view_ops.py::TestViewOpsLAZY::test_view_as_real_lazy_complex32, test/test_view_ops.py::TestViewOpsLAZY::test_view_as_real_lazy_complex64, test/test_view_ops.py::TestViewOpsLAZY::test_view_as_view_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_view_copy_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_view_copy_out_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_view_copy_output_contiguous_lazy, test/test_view_ops.py::TestViewOpsLAZY::test_view_dtype_new_lazy_bool, test/test_view_ops.py::TestViewOpsLAZY::test_view_dtype_new_lazy_complex128, test/test_view_ops.py::TestViewOpsLAZY::test_view_dtype_new_lazy_complex64, test/test_view_ops.py::TestViewOpsLAZY::test_view_dtype_new_lazy_float16, test/test_view_ops.py::TestViewOpsLAZY::test_view_dtype_new_lazy_float32, test/test_view_ops.py::TestViewOpsLAZY::test_view_dtype_new_lazy_float64, test/test_view_ops.py::TestViewOpsLAZY::test_view_dtype_new_lazy_int16, test/test_view_ops.py::TestViewOpsLAZY::test_view_dtype_new_lazy_int32, test/test_view_ops.py::TestViewOpsLAZY::test_view_dtype_new_lazy_int64, test/test_view_ops.py::TestViewOpsLAZY::test_view_dtype_new_lazy_int8, test/test_view_ops.py::TestViewOpsLAZY::test_view_dtype_new_lazy_uint8, test/test_view_ops.py::TestViewOpsLAZY::test_view_dtype_upsize_errors_lazy_bfloat16, test/test_view_ops.py::TestViewOpsLAZY::test_view_dtype_upsize_errors_lazy_bool, test/test_view_ops.py::TestViewOpsLAZY::test_view_dtype_upsize_errors_lazy_complex128, test/test_view_ops.py::TestViewOpsLAZY::test_view_dtype_upsize_errors_lazy_complex64, test/test_view_ops.py::TestViewOpsLAZY::test_view_dtype_upsize_errors_lazy_float16, test/test_view_ops.py::TestViewOpsLAZY::test_view_dtype_upsize_errors_lazy_float32, test/test_view_ops.py::TestViewOpsLAZY::test_view_dtype_upsize_errors_lazy_float64, test/test_view_ops.py::TestViewOpsLAZY::test_view_dtype_upsize_errors_lazy_int16, test/test_view_ops.py::TestViewOpsLAZY::test_view_dtype_upsize_errors_lazy_int32, test/test_view_ops.py::TestViewOpsLAZY::test_view_dtype_upsize_errors_lazy_int64, test/test_view_ops.py::TestViewOpsLAZY::test_view_dtype_upsize_errors_lazy_int8, test/test_view_ops.py::TestViewOpsLAZY::test_view_dtype_upsize_errors_lazy_uint8, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_dsplit_lazy_bfloat16, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_dsplit_lazy_bool, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_dsplit_lazy_complex128, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_dsplit_lazy_complex64, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_dsplit_lazy_float16, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_dsplit_lazy_float32, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_dsplit_lazy_float64, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_dsplit_lazy_int16, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_dsplit_lazy_int32, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_dsplit_lazy_int64, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_dsplit_lazy_int8, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_dsplit_lazy_uint8, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_hsplit_lazy_bfloat16, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_hsplit_lazy_bool, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_hsplit_lazy_complex128, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_hsplit_lazy_complex64, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_hsplit_lazy_float16, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_hsplit_lazy_float32, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_hsplit_lazy_float64, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_hsplit_lazy_int16, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_hsplit_lazy_int32, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_hsplit_lazy_int64, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_hsplit_lazy_int8, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_hsplit_lazy_uint8, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_split_lazy_bfloat16, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_split_lazy_bool, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_split_lazy_complex128, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_split_lazy_complex64, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_split_lazy_float16, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_split_lazy_float32, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_split_lazy_float64, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_split_lazy_int16, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_split_lazy_int32, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_split_lazy_int64, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_split_lazy_int8, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_split_lazy_uint8, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_vsplit_lazy_bfloat16, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_vsplit_lazy_bool, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_vsplit_lazy_complex128, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_vsplit_lazy_complex64, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_vsplit_lazy_float16, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_vsplit_lazy_float32, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_vsplit_lazy_float64, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_vsplit_lazy_int16, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_vsplit_lazy_int32, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_vsplit_lazy_int64, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_vsplit_lazy_int8, test/test_view_ops.py::TestViewOpsLAZY::test_view_tensor_vsplit_lazy_uint8, test/test_view_ops.py::TestViewOpsLAZY::test_view_view_lazy, test/test_view_ops.py::TestOldViewOpsCPU::test_T_cpu, test/test_view_ops.py::TestOldViewOpsCPU::test_as_strided_overflow_storage_offset_cpu, test/test_view_ops.py::TestOldViewOpsCPU::test_atleast_cpu_complex128, test/test_view_ops.py::TestOldViewOpsCPU::test_atleast_cpu_complex64, test/test_view_ops.py::TestOldViewOpsCPU::test_atleast_cpu_float16, test/test_view_ops.py::TestOldViewOpsCPU::test_atleast_cpu_float32, test/test_view_ops.py::TestOldViewOpsCPU::test_atleast_cpu_float64, test/test_view_ops.py::TestOldViewOpsCPU::test_atleast_cpu_int16, test/test_view_ops.py::TestOldViewOpsCPU::test_atleast_cpu_int32, test/test_view_ops.py::TestOldViewOpsCPU::test_atleast_cpu_int64, test/test_view_ops.py::TestOldViewOpsCPU::test_atleast_cpu_int8, test/test_view_ops.py::TestOldViewOpsCPU::test_atleast_cpu_uint8, test/test_view_ops.py::TestOldViewOpsCPU::test_atleast_gradient_cpu, test/test_view_ops.py::TestOldViewOpsCPU::test_big_transpose_cpu, test/test_view_ops.py::TestOldViewOpsCPU::test_broadcast_shapes_cpu, test/test_view_ops.py::TestOldViewOpsCPU::test_broadcast_tensors_cpu_float32, test/test_view_ops.py::TestOldViewOpsCPU::test_broadcast_to_cpu_bool, test/test_view_ops.py::TestOldViewOpsCPU::test_broadcast_to_cpu_complex128, test/test_view_ops.py::TestOldViewOpsCPU::test_broadcast_to_cpu_complex64, test/test_view_ops.py::TestOldViewOpsCPU::test_broadcast_to_cpu_float16, test/test_view_ops.py::TestOldViewOpsCPU::test_broadcast_to_cpu_float32, test/test_view_ops.py::TestOldViewOpsCPU::test_broadcast_to_cpu_float64, test/test_view_ops.py::TestOldViewOpsCPU::test_broadcast_to_cpu_int16, test/test_view_ops.py::TestOldViewOpsCPU::test_broadcast_to_cpu_int32, test/test_view_ops.py::TestOldViewOpsCPU::test_broadcast_to_cpu_int64, test/test_view_ops.py::TestOldViewOpsCPU::test_broadcast_to_cpu_int8, test/test_view_ops.py::TestOldViewOpsCPU::test_broadcast_to_cpu_uint8, test/test_view_ops.py::TestOldViewOpsCPU::test_chunk_cpu, test/test_view_ops.py::TestOldViewOpsCPU::test_conj_neg_view_numpy_error_cpu, test/test_view_ops.py::TestOldViewOpsCPU::test_contiguous_cpu, test/test_view_ops.py::TestOldViewOpsCPU::test_crow_col_indices_cpu, test/test_view_ops.py::TestOldViewOpsCPU::test_empty_reshape_cpu, test/test_view_ops.py::TestOldViewOpsCPU::test_expand_cpu, test/test_view_ops.py::TestOldViewOpsCPU::test_flatten_cpu, test/test_view_ops.py::TestOldViewOpsCPU::test_memory_format_resize__cpu, test/test_view_ops.py::TestOldViewOpsCPU::test_memory_format_resize_as_cpu, test/test_view_ops.py::TestOldViewOpsCPU::test_narrow_cpu, test/test_view_ops.py::TestOldViewOpsCPU::test_narrow_tensor_cpu, test/test_view_ops.py::TestOldViewOpsCPU::test_python_types_cpu, test/test_view_ops.py::TestOldViewOpsCPU::test_ravel_cpu, test/test_view_ops.py::TestOldViewOpsCPU::test_reshape_cpu, test/test_view_ops.py::TestOldViewOpsCPU::test_reshape_view_semantics_cpu_bfloat16, test/test_view_ops.py::TestOldViewOpsCPU::test_reshape_view_semantics_cpu_bool, test/test_view_ops.py::TestOldViewOpsCPU::test_reshape_view_semantics_cpu_complex128, test/test_view_ops.py::TestOldViewOpsCPU::test_reshape_view_semantics_cpu_complex64, test/test_view_ops.py::TestOldViewOpsCPU::test_reshape_view_semantics_cpu_float16, test/test_view_ops.py::TestOldViewOpsCPU::test_reshape_view_semantics_cpu_float32, test/test_view_ops.py::TestOldViewOpsCPU::test_reshape_view_semantics_cpu_float64, test/test_view_ops.py::TestOldViewOpsCPU::test_reshape_view_semantics_cpu_int16, test/test_view_ops.py::TestOldViewOpsCPU::test_reshape_view_semantics_cpu_int32, test/test_view_ops.py::TestOldViewOpsCPU::test_reshape_view_semantics_cpu_int64, test/test_view_ops.py::TestOldViewOpsCPU::test_reshape_view_semantics_cpu_int8, test/test_view_ops.py::TestOldViewOpsCPU::test_reshape_view_semantics_cpu_uint8, test/test_view_ops.py::TestOldViewOpsCPU::test_resize_all_dtypes_and_devices_cpu, test/test_view_ops.py::TestOldViewOpsCPU::test_resize_as_all_dtypes_and_devices_cpu, test/test_view_ops.py::TestOldViewOpsCPU::test_resize_as_preserves_strides_cpu, test/test_view_ops.py::TestOldViewOpsCPU::test_resize_overflow_cpu, test/test_view_ops.py::TestOldViewOpsCPU::test_split_cpu, test/test_view_ops.py::TestOldViewOpsCPU::test_t_cpu, test/test_view_ops.py::TestOldViewOpsCPU::test_tensor_split_errors_cpu, test/test_view_ops.py::TestOldViewOpsCPU::test_tensor_split_indices_cpu_bool, test/test_view_ops.py::TestOldViewOpsCPU::test_tensor_split_indices_cpu_complex128, test/test_view_ops.py::TestOldViewOpsCPU::test_tensor_split_indices_cpu_complex64, test/test_view_ops.py::TestOldViewOpsCPU::test_tensor_split_indices_cpu_float16, test/test_view_ops.py::TestOldViewOpsCPU::test_tensor_split_indices_cpu_float32, test/test_view_ops.py::TestOldViewOpsCPU::test_tensor_split_indices_cpu_float64, test/test_view_ops.py::TestOldViewOpsCPU::test_tensor_split_indices_cpu_int16, test/test_view_ops.py::TestOldViewOpsCPU::test_tensor_split_indices_cpu_int32, test/test_view_ops.py::TestOldViewOpsCPU::test_tensor_split_indices_cpu_int64, test/test_view_ops.py::TestOldViewOpsCPU::test_tensor_split_indices_cpu_int8, test/test_view_ops.py::TestOldViewOpsCPU::test_tensor_split_indices_cpu_uint8, test/test_view_ops.py::TestOldViewOpsCPU::test_tensor_split_sections_cpu_bool, test/test_view_ops.py::TestOldViewOpsCPU::test_tensor_split_sections_cpu_complex128, test/test_view_ops.py::TestOldViewOpsCPU::test_tensor_split_sections_cpu_complex64, test/test_view_ops.py::TestOldViewOpsCPU::test_tensor_split_sections_cpu_float16, test/test_view_ops.py::TestOldViewOpsCPU::test_tensor_split_sections_cpu_float32, test/test_view_ops.py::TestOldViewOpsCPU::test_tensor_split_sections_cpu_float64, test/test_view_ops.py::TestOldViewOpsCPU::test_tensor_split_sections_cpu_int16, test/test_view_ops.py::TestOldViewOpsCPU::test_tensor_split_sections_cpu_int32, test/test_view_ops.py::TestOldViewOpsCPU::test_tensor_split_sections_cpu_int64, test/test_view_ops.py::TestOldViewOpsCPU::test_tensor_split_sections_cpu_int8, test/test_view_ops.py::TestOldViewOpsCPU::test_tensor_split_sections_cpu_uint8, test/test_view_ops.py::TestOldViewOpsCPU::test_transpose_invalid_cpu_complex128, test/test_view_ops.py::TestOldViewOpsCPU::test_transpose_invalid_cpu_float32, test/test_view_ops.py::TestOldViewOpsCPU::test_transpose_invalid_cpu_int64, test/test_view_ops.py::TestOldViewOpsCPU::test_transpose_vs_numpy_cpu_complex128, test/test_view_ops.py::TestOldViewOpsCPU::test_transpose_vs_numpy_cpu_float32, test/test_view_ops.py::TestOldViewOpsCPU::test_transpose_vs_numpy_cpu_int64, test/test_view_ops.py::TestOldViewOpsCPU::test_transposes_cpu_bfloat16, test/test_view_ops.py::TestOldViewOpsCPU::test_transposes_cpu_bool, test/test_view_ops.py::TestOldViewOpsCPU::test_transposes_cpu_complex128, test/test_view_ops.py::TestOldViewOpsCPU::test_transposes_cpu_complex64, test/test_view_ops.py::TestOldViewOpsCPU::test_transposes_cpu_float16, test/test_view_ops.py::TestOldViewOpsCPU::test_transposes_cpu_float32, test/test_view_ops.py::TestOldViewOpsCPU::test_transposes_cpu_float64, test/test_view_ops.py::TestOldViewOpsCPU::test_transposes_cpu_int16, test/test_view_ops.py::TestOldViewOpsCPU::test_transposes_cpu_int32, test/test_view_ops.py::TestOldViewOpsCPU::test_transposes_cpu_int64, test/test_view_ops.py::TestOldViewOpsCPU::test_transposes_cpu_int8, test/test_view_ops.py::TestOldViewOpsCPU::test_transposes_cpu_uint8, test/test_view_ops.py::TestOldViewOpsCPU::test_transposes_errors_cpu_bfloat16, test/test_view_ops.py::TestOldViewOpsCPU::test_transposes_errors_cpu_bool, test/test_view_ops.py::TestOldViewOpsCPU::test_transposes_errors_cpu_complex128, test/test_view_ops.py::TestOldViewOpsCPU::test_transposes_errors_cpu_complex64, test/test_view_ops.py::TestOldViewOpsCPU::test_transposes_errors_cpu_float16, test/test_view_ops.py::TestOldViewOpsCPU::test_transposes_errors_cpu_float32, test/test_view_ops.py::TestOldViewOpsCPU::test_transposes_errors_cpu_float64, test/test_view_ops.py::TestOldViewOpsCPU::test_transposes_errors_cpu_int16, test/test_view_ops.py::TestOldViewOpsCPU::test_transposes_errors_cpu_int32, test/test_view_ops.py::TestOldViewOpsCPU::test_transposes_errors_cpu_int64, test/test_view_ops.py::TestOldViewOpsCPU::test_transposes_errors_cpu_int8, test/test_view_ops.py::TestOldViewOpsCPU::test_transposes_errors_cpu_uint8, test/test_view_ops.py::TestOldViewOpsCPU::test_unsqueeze_cpu, test/test_view_ops.py::TestOldViewOpsCPU::test_view_all_dtypes_and_devices_cpu, test/test_view_ops.py::TestOldViewOpsCPU::test_view_cpu, test/test_view_ops.py::TestOldViewOpsCPU::test_view_empty_cpu 2025-08-14T23:52:52.0100509Z 2025-08-14T23:52:57.4373471Z Running profiler/test_memory_profiler 1/1 ... [2025-08-14 23:52:57.437039] 2025-08-14T23:52:57.4374323Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:52:57.4383556Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'profiler/test_memory_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-14 23:52:57.437627] 2025-08-14T23:53:09.4659287Z 2025-08-14T23:53:09.4661067Z profiler/test_memory_profiler 1/1 was successful, full logs can be found in artifacts with path test/test-reports/profiler.test_memory_profiler_1.1_e4abd7cbfd47642e_.log 2025-08-14T23:53:09.4684359Z Running 33 items in this shard: test/profiler/test_memory_profiler.py::TestMemoryProfiler::test_config_check, test/profiler/test_memory_profiler.py::TestIdentifyGradients::test_extract_gradients_from_module, test/profiler/test_memory_profiler.py::TestIdentifyGradients::test_extract_gradients_from_module_and_optimizer, test/profiler/test_memory_profiler.py::TestIdentifyGradients::test_extract_gradients_from_optimizer, test/profiler/test_memory_profiler.py::TestIdentifyGradients::test_extract_gradients_from_optimizer_set_to_none, test/profiler/test_memory_profiler.py::TestIdentifyGradients::test_extract_gradients_low_level, test/profiler/test_memory_profiler.py::TestDataFlow::test_data_flow_graph_complicated, test/profiler/test_memory_profiler.py::TestDataFlow::test_data_flow_graph_non_op_allocations, test/profiler/test_memory_profiler.py::TestDataFlow::test_data_flow_graph_simple, test/profiler/test_memory_profiler.py::TestDataFlow::test_data_flow_graph_simple_backward, test/profiler/test_memory_profiler.py::TestDataFlow::test_data_flow_graph_simple_inplace, test/profiler/test_memory_profiler.py::TestDataFlow::test_data_flow_graph_stacked, test/profiler/test_memory_profiler.py::TestDataFlow::test_data_flow_graph_with_annotations, test/profiler/test_memory_profiler.py::TestDataFlow::test_match_schemas, test/profiler/test_memory_profiler.py::TestDataFlow::test_match_schemas_backward, test/profiler/test_memory_profiler.py::TestDataFlow::test_match_schemas_tensorlist, test/profiler/test_memory_profiler.py::TestMemoryProfilerE2E::test_categories_e2e_sequential_fwd, test/profiler/test_memory_profiler.py::TestMemoryProfilerE2E::test_categories_e2e_sequential_fwd_bwd, test/profiler/test_memory_profiler.py::TestMemoryProfilerE2E::test_categories_e2e_simple_fwd, test/profiler/test_memory_profiler.py::TestMemoryProfilerE2E::test_categories_e2e_simple_fwd_bwd, test/profiler/test_memory_profiler.py::TestMemoryProfilerE2E::test_categories_e2e_simple_fwd_bwd_step, test/profiler/test_memory_profiler.py::TestMemoryProfilerE2E::test_categories_e2e_simple_module_fwd, test/profiler/test_memory_profiler.py::TestMemoryProfilerE2E::test_categories_e2e_simple_module_fwd_bwd, test/profiler/test_memory_profiler.py::TestMemoryProfilerE2E::test_categories_e2e_simple_module_fwd_bwd_step, test/profiler/test_memory_profiler.py::TestMemoryProfilerE2E::test_inputs_fwd, test/profiler/test_memory_profiler.py::TestMemoryProfilerE2E::test_inputs_fwd_bwd, test/profiler/test_memory_profiler.py::TestMemoryProfilerE2E::test_inputs_fwd_lazy, test/profiler/test_memory_profiler.py::TestMemoryProfilerE2E::test_lazily_initialized, test/profiler/test_memory_profiler.py::TestMemoryProfilerE2E::test_manual_optimizer_step, test/profiler/test_memory_profiler.py::TestMemoryProfilerE2E::test_memory_timeline, test/profiler/test_memory_profiler.py::TestMemoryProfilerE2E::test_parameters_and_gradients, test/profiler/test_memory_profiler.py::TestMemoryProfilerE2E::test_parameters_and_gradients_set_to_none, test/profiler/test_memory_profiler.py::TestMemoryProfilerTimelineCPU::test_memory_timeline_no_id_cpu 2025-08-14T23:53:09.4707002Z 2025-08-14T23:53:14.6980460Z Running torch_np/numpy_tests/fft/test_pocketfft 1/1 ... [2025-08-14 23:53:14.693810] 2025-08-14T23:53:14.6981038Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:53:14.6987004Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/fft/test_pocketfft.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-14 23:53:14.693810] 2025-08-14T23:53:20.3340877Z 2025-08-14T23:53:20.3342239Z functorch/test_aotdispatch 3/7 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_aotdispatch_3.7_fe2dc6977c882a29_.log 2025-08-14T23:53:20.3622342Z Running 309 items in this shard: test/functorch/test_aotdispatch.py::TestAOTAutograd::test_alias_of_intermediate_detach_backend_aot_eager_view_replay_for_aliased_outputs_False_dynamic_shapes_True, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_alias_of_intermediate_detach_backend_aot_eager_view_replay_for_aliased_outputs_True_dynamic_shapes_True, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_alias_of_intermediate_detach_backend_inductor_view_replay_for_aliased_outputs_False_dynamic_shapes_True, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_backward_mutation_forward_inputs_create_graph, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_backward_mutation_metadata, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_batchnorm_inference, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_buffer_batch_norm, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_dupe_arg_returned_as_output, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_dynamic_shape_output_not_in_bw_graph, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_aliases_and_none_require_gradients, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_aliases_other_input2, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_and_output_view, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_requires_grad_no_grad, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_storage_resize_down, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_output_view_simple, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_invalid_dupe_fake, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_invalid_dupe_left_bias, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_mark_activations_dynamic_with_nested, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_multi_output, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_nested_subclasses_complicated_inps, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_nested_subclasses_complicated_inps_mixed, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_nested_subclasses_non_nested_grad, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_new_inp_requires_grad_now, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_non_tensor_and_none_inputs, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_output_aliases_input_multi_output_view, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_output_aliases_intermediate_mutation_linear, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_output_aliases_output_view_meta_replay, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_output_all_alias_types, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_output_dict, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_set__and_data_mutation_good, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_set__not_allowed, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_subclasses_mixed_mode, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_forward_mutation_multiple_mut, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_functionalized_rng_banned, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_predispatch_composite_implicit_inplace, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_predispatch_conv_and_bn, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_predispatch_func_composite_implicit, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_predispatch_func_simple, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_predispatch_map_2, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_predispatch_with_cond, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_synthetic_bases_banned, test/functorch/test_aotdispatch.py::TestPartitioning::test_autocast, test/functorch/test_aotdispatch.py::TestPartitioning::test_recompute_partitioning, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_aot_module_simplified_preserves_stack_trace_from_mutation, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_flex_attn_noncontiguous_tangents, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_noncontig_nonmemformat_tangents_dynamic_shapes_True_test_subclasses_True_device_cpu, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_noncontig_nonmemformat_tangents_dynamic_shapes_True_test_subclasses_True_device_cuda, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_wrong_guess_tangent_type, test/functorch/test_aotdispatch.py::TestPythonKeyCPU::test_make_fx_vjp_cpu, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_T_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive___rdiv___cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_acos_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_amin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_as_strided_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_asinh_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_bfloat16_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_cat_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_cfloat_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_chunk_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_column_stack_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_copysign_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_corrcoef_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_cov_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_deg2rad_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_diag_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_diag_embed_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_diagonal_scatter_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_empty_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_expand_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fft_fft2_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fft_hfft2_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fft_irfft2_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_full_like_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_gradient_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_grid_sampler_2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_heaviside_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_index_put_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_index_reduce_prod_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_isnan_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_isreal_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_jiterator_binary_return_by_ref_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_lerp_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_eigvals_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_matrix_rank_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_qr_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_slogdet_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_solve_ex_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_svd_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_log2_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_log_softmax_with_dtype_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_logaddexp_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_logical_or_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_logical_xor_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_logspace_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_map_triple_nested_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_masked_cumprod_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_masked_log_softmax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_masked_logaddexp_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_masked_logsumexp_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_masked_select_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_msort_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_mvlgamma_mvlgamma_p_3_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_mvlgamma_mvlgamma_p_5_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_adaptive_avg_pool1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_avg_pool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_batch_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_bilinear_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_binary_cross_entropy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_conv1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_embedding_bag_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_fractional_max_pool2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_interpolate_area_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_interpolate_bilinear_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_l1_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_mish_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_pad_replicate_negative_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_softplus_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_softsign_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_threshold_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_upsample_bilinear_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_ormqr_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_polygamma_polygamma_n_2_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_positive_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_prod_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_reshape_as_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_resize_as__cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_roll_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_select_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_signal_windows_gaussian_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_signal_windows_hamming_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_bessel_y0_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_chebyshev_polynomial_w_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_entr_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_scaled_modified_bessel_k0_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_shifted_chebyshev_polynomial_w_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_t_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_transpose_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_unsqueeze_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_view_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_xlogy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_zero__cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_zeros_like_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_H_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive___radd___cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive__unsafe_masked_index_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_add_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_alias_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_all_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_amax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_amin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_angle_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_auto_functionalize_simple_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_bucketize_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_clamp_max_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_dist_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_fft_fft_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_fft_fftshift_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_fft_hfft_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_fft_ifft2_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_fft_ifftshift_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_fft_rfft_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_fill_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_float_power_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_floor_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_full_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_gather_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_gradient_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_igamma_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_igammac_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_isreal_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_jiterator_2inputs_2outputs_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_jiterator_binary_return_by_ref_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_kron_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_lgamma_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_cholesky_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_det_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_lu_factor_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_log10_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_log1p_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_log_normal_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_log_softmax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_logaddexp_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_logical_and_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_logsumexp_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_masked_amin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_masked_mean_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_masked_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_max_binary_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_maximum_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_median_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nan_to_num_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_narrow_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_ne_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_neg_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nextafter_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_adaptive_avg_pool2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_avg_pool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_conv_transpose1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_fractional_max_pool2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_linear_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_mish_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_pad_reflect_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_pad_replicate_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_pixel_shuffle_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_scaled_dot_product_attention_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_soft_margin_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_softmin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nonzero_static_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_polygamma_polygamma_n_3_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_put_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_qr_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_rad2deg_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_randint_like_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_reshape_as_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_resize_as__cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_roll_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_scatter_add_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_scatter_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_select_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_sigmoid_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_signal_windows_general_hamming_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_chebyshev_polynomial_v_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_modified_bessel_i0_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_ndtr_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_spherical_bessel_j0_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_squeeze_multiple_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_t_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_take_along_dim_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_trace_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_triangular_solve_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_unfold_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_unique_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_view_as_complex_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_zeros_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_AdaptiveAvgPool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_AdaptiveMaxPool1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_CircularPad2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_CircularPad3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_Conv1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_Conv3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_GRU_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_HingeEmbeddingLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_LPPool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_MSELoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_Mish_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_MultiLabelSoftMarginLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_RNN_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_Sigmoid_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_SoftMarginLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_Softshrink_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_ZeroPad2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_AdaptiveAvgPool1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_AdaptiveMaxPool1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_CrossEntropyLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_GLU_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_KLDivLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_LazyConv3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_RNN_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_ReLU_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_ReflectionPad1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_ReflectionPad2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_TransformerDecoderLayer_cpu_float32, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_backward_mutation_data, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_batch_norm_amp, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_batchnorm_inference, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_custom_autograd, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_default_partitioner_saves_symints_not_tensors_for_bw, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_dynamic_shape_output_not_in_bw_graph, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_aliased_with_mutation_output_alias, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_alias_everything, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_aliases_and_output_alias, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_false_aliasing, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_is_output, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_set__input_mutation, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_output_view_metadata_mutate_multiple, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_invalid_dupe_left_bias, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_list_codegen, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_module, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_multi_output, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_nested_subclasses, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_aliases_input_multi_output_view_should_raise_autograd_error, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_all_alias_types, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_outputs_are_aliased, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_single_output, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_squeeze_mutation, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_view_detach, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_backward_pass_autocast_custom, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_backward_pass_autocast_off, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_buffer_copied_in_graph, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_dupe_arg_returned_as_output, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_inplace_requires_grad_true, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_aliases_other_input, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_set__nop, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_storage_resize_down, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_output_aliase_custom_autograd_function, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_invalid_requires_grad, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_mark_outputs_dynamic_use_autograd_True, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_multi_output_list, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_nested_subclasses_complicated_inps, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_output_aliases_input_view_meta_replay, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_output_aliases_output_view_meta_replay, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_set__steals_view_chain, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_subclass_metadata_mutation_req_grad_True, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_synthetic_base_base_attribute_is_none 2025-08-14T23:53:20.3882225Z 2025-08-14T23:53:24.4197187Z 2025-08-14T23:53:24.4198823Z torch_np/numpy_tests/fft/test_pocketfft 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.fft.test_pocketfft_1.1_23508db55c89e1f3_.log 2025-08-14T23:53:24.4284991Z Running 79 items in this shard: test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFTShift::test_fft_n, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_all_1d_norm_preserving, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_axes_op0, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_axes_op1, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_axes_op2, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_axes_op3, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_dtypes_dtype0, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_dtypes_dtype1, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_dtypes_dtype2, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft2, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype0_order_F_fft0, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype0_order_F_fft1, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype0_order_F_fft2, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype0_order_F_fft3, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype0_order_F_fft4, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype0_order_F_fft5, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype0_order_non-contiguous_fft0, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype0_order_non-contiguous_fft1, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype0_order_non-contiguous_fft2, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype0_order_non-contiguous_fft3, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype0_order_non-contiguous_fft4, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype0_order_non-contiguous_fft5, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype1_order_F_fft0, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype1_order_F_fft1, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype1_order_F_fft2, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype1_order_F_fft3, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype1_order_F_fft4, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype1_order_F_fft5, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype1_order_non-contiguous_fft0, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype1_order_non-contiguous_fft1, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype1_order_non-contiguous_fft2, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype1_order_non-contiguous_fft3, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype1_order_non-contiguous_fft4, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype1_order_non-contiguous_fft5, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype2_order_F_fft0, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype2_order_F_fft1, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype2_order_F_fft2, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype2_order_F_fft3, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype2_order_F_fft4, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype2_order_F_fft5, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype2_order_non-contiguous_fft0, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype2_order_non-contiguous_fft1, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype2_order_non-contiguous_fft2, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype2_order_non-contiguous_fft3, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype2_order_non-contiguous_fft4, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype2_order_non-contiguous_fft5, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype3_order_F_fft0, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype3_order_F_fft1, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype3_order_F_fft2, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype3_order_F_fft3, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype3_order_F_fft4, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype3_order_F_fft5, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype3_order_non-contiguous_fft0, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype3_order_non-contiguous_fft1, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype3_order_non-contiguous_fft2, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype3_order_non-contiguous_fft3, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype3_order_non-contiguous_fft4, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fft_with_order_dtype3_order_non-contiguous_fft5, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_fftn, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_hfft, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_identity, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_ifft2, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_ifft_norm0, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_ifft_norm_backward, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_ifft_norm_forward, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_ifft_norm_ortho, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_ifftn, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_ihfft, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_irfft, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_irfft2, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_irfftn, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_rfft, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_rfft2, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFT1D::test_rfftn, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFTThreadSafe::test_fft, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFTThreadSafe::test_ifft, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFTThreadSafe::test_irfft, test/torch_np/numpy_tests/fft/test_pocketfft.py::TestFFTThreadSafe::test_rfft 2025-08-14T23:53:24.4341592Z 2025-08-14T23:53:26.7814282Z Running test_function_schema 1/1 ... [2025-08-14 23:53:26.780823] 2025-08-14T23:53:26.7815057Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:53:26.7824794Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_function_schema.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-14 23:53:26.781970] 2025-08-14T23:53:30.3940657Z Running torch_np/numpy_tests/lib/test_index_tricks 1/1 ... [2025-08-14 23:53:30.393379] 2025-08-14T23:53:30.3941603Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:53:30.3952961Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/lib/test_index_tricks.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-14 23:53:30.394592] 2025-08-14T23:53:33.2333821Z 2025-08-14T23:53:33.2334799Z test_function_schema 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_function_schema_1.1_17cca5f1f87bc799_.log 2025-08-14T23:53:33.2356441Z Running 15 items in this shard: test/test_function_schema.py::TestFunctionSchema::test_backward_compatible_arguments, test/test_function_schema.py::TestFunctionSchema::test_backward_compatible_outputs, test/test_function_schema.py::TestFunctionSchema::test_backward_compatible_structure, test/test_function_schema.py::TestFunctionSchema::test_backward_compatible_with_smart_serialization, test/test_function_schema.py::TestFunctionSchema::test_forward_compatible_arguments_real_use_case, test/test_function_schema.py::TestFunctionSchema::test_forward_compatible_arguments_with_out, test/test_function_schema.py::TestFunctionSchema::test_forward_compatible_arguments_without_out, test/test_function_schema.py::TestFunctionSchema::test_hash_schema, test/test_function_schema.py::TestFunctionSchema::test_out_schema, test/test_function_schema.py::TestFunctionSchema::test_schema_error, test/test_function_schema.py::TestFunctionSchema::test_serialize_and_deserialize, test/test_function_schema.py::TestFunctionSchema::test_string_optional_parameter_default_value, test/test_function_schema.py::TestFunctionSchema::test_sym_int_argument_properly_parsed, test/test_function_schema.py::TestFunctionSchema::test_tensor_list_alias_annotation_properly_parsed, test/test_function_schema.py::TestFunctionSchema::test_tensor_option_arguments_properly_parsed 2025-08-14T23:53:33.2361984Z 2025-08-14T23:53:36.0253084Z 2025-08-14T23:53:36.0254259Z torch_np/numpy_tests/lib/test_index_tricks 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.lib.test_index_tricks_1.1_d680891499eb092f_.log 2025-08-14T23:53:36.0270983Z Running 47 items in this shard: test/torch_np/numpy_tests/lib/test_index_tricks.py::TestRavelUnravelIndex::test_0d, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestRavelUnravelIndex::test_basic, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestRavelUnravelIndex::test_big_indices, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestRavelUnravelIndex::test_clipmodes, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestRavelUnravelIndex::test_dtypes, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestRavelUnravelIndex::test_empty_array_ravel_mode_clip, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestRavelUnravelIndex::test_empty_array_ravel_mode_raise, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestRavelUnravelIndex::test_empty_array_ravel_mode_wrap, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestRavelUnravelIndex::test_empty_array_unravel, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestRavelUnravelIndex::test_empty_indices, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestRavelUnravelIndex::test_writeability, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestGrid::test_accepts_longdouble, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestGrid::test_accepts_npcomplexfloating, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestGrid::test_accepts_npfloating, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestGrid::test_basic, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestGrid::test_linspace_equivalence, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestGrid::test_mgrid_size_none_handling_start0_stop_10_step0_expected0, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestGrid::test_mgrid_size_none_handling_start_-10_stop_20_step1_expected1, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestGrid::test_nd, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestGrid::test_sparse, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestConcatenator::test_0d, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestConcatenator::test_1d, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestConcatenator::test_2d, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestConcatenator::test_complex_step, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestConcatenator::test_mixed_type, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestConcatenator::test_more_mixed_type, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestNdenumerate::test_basic, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestIndexExpression::test_regression_1, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestIndexExpression::test_simple_1, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestIx_::test_1d_only, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestIx_::test_bool, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestIx_::test_regression_1, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestIx_::test_repeated_input, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestIx_::test_shape_and_dtype, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestC::test_c_, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestFillDiagonal::test_basic, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestFillDiagonal::test_hetero_shape_handling, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestFillDiagonal::test_low_dim_handling, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestFillDiagonal::test_operate_4d_array, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestFillDiagonal::test_tall_matrix, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestFillDiagonal::test_tall_matrix_wrap, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestFillDiagonal::test_wide_matrix, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestDiagIndices::test_diag_indices, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestDiagIndicesFrom::test_diag_indices_from, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestDiagIndicesFrom::test_error_shape_mismatch, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestDiagIndicesFrom::test_error_small_input, test/torch_np/numpy_tests/lib/test_index_tricks.py::TestNdIndex::test_ndindex 2025-08-14T23:53:36.0286722Z 2025-08-14T23:53:38.4773448Z Running test_scatter_gather_ops 1/1 ... [2025-08-14 23:53:38.463476] 2025-08-14T23:53:38.4773988Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:53:38.4780752Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_scatter_gather_ops.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-14 23:53:38.463476] 2025-08-14T23:53:41.1040058Z Running test_serialization 1/1 ... [2025-08-14 23:53:41.100157] 2025-08-14T23:53:41.1040545Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:53:41.1046877Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_serialization.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-14 23:53:41.100157] 2025-08-14T23:53:53.6349693Z 2025-08-14T23:53:53.6350917Z test_scatter_gather_ops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_scatter_gather_ops_1.1_06e52e1de61aec15_.log 2025-08-14T23:53:53.6381033Z Running 84 items in this shard: test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_gather_backward_with_empty_index_tensor_sparse_grad_False_cpu_float32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_gather_backward_with_empty_index_tensor_sparse_grad_False_cpu_float64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_gather_backward_with_empty_index_tensor_sparse_grad_True_cpu_float32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_gather_backward_with_empty_index_tensor_sparse_grad_True_cpu_float64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_gather_bool_cpu_bool, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_gather_cpu_complex64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_gather_cpu_float32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_gather_expanded_index_cpu_bfloat16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_gather_expanded_index_cpu_float32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_gather_expanded_index_cpu_float64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_gather_large_cpu_bfloat16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_gather_large_cpu_int8, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter__cpu_complex64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter__cpu_float16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter__cpu_float32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter__reductions_cpu_complex64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter__reductions_cpu_float16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter__reductions_cpu_float32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter__scalar_cpu_complex64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter__scalar_cpu_float16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter__scalar_cpu_float32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_add__cpu_complex64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_add__cpu_float16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_add__cpu_float32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_add_broadcasted_index_deterministic_cpu_float32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_add_mult_index_base_cpu_float32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_expanded_index_cpu_bfloat16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_expanded_index_cpu_float16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_expanded_index_cpu_float32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_expanded_index_cpu_float64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amax_cpu_bfloat16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amax_cpu_bool, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amax_cpu_float16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amax_cpu_float32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amax_cpu_float64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amax_cpu_int16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amax_cpu_int32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amax_cpu_int64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amax_cpu_int8, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amax_cpu_uint8, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amin_cpu_bfloat16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amin_cpu_bool, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amin_cpu_float16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amin_cpu_float32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amin_cpu_float64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amin_cpu_int16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amin_cpu_int32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amin_cpu_int64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amin_cpu_int8, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amin_cpu_uint8, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_mean_cpu_bfloat16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_mean_cpu_complex128, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_mean_cpu_complex64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_mean_cpu_float16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_mean_cpu_float32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_mean_cpu_float64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_mean_cpu_int16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_mean_cpu_int32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_mean_cpu_int64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_mean_cpu_int8, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_mean_cpu_uint8, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_prod_cpu_bfloat16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_prod_cpu_bool, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_prod_cpu_complex128, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_prod_cpu_complex64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_prod_cpu_float16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_prod_cpu_float32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_prod_cpu_float64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_prod_cpu_int16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_prod_cpu_int32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_prod_cpu_int64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_prod_cpu_int8, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_prod_cpu_uint8, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_sum_cpu_bfloat16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_sum_cpu_complex128, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_sum_cpu_complex64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_sum_cpu_float16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_sum_cpu_float32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_sum_cpu_float64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_sum_cpu_int16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_sum_cpu_int32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_sum_cpu_int64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_sum_cpu_int8, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_sum_cpu_uint8 2025-08-14T23:53:53.6410037Z 2025-08-14T23:53:58.4145484Z Running torch_np/numpy_tests/core/test_dlpack 1/1 ... [2025-08-14 23:53:58.403531] 2025-08-14T23:53:58.4146009Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:53:58.4152260Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/test_dlpack.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-14 23:53:58.403531] 2025-08-14T23:54:03.3972454Z 2025-08-14T23:54:03.3973732Z torch_np/numpy_tests/core/test_dlpack 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_dlpack_1.1_6de0807557879871_.log 2025-08-14T23:54:03.3991136Z Running 53 items in this shard: test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_dlpack_destructor_exception, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_dlpack_device, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_dtype_passthrough_dtype0, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_dtype_passthrough_dtype1, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_dtype_passthrough_dtype2, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_dtype_passthrough_dtype3, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_dtype_passthrough_dtype4, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_dtype_passthrough_dtype5, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_dtype_passthrough_dtype6, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_dtype_passthrough_dtype7, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_dtype_passthrough_dtype8, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_dtype_passthrough_dtype9, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_dunder_dlpack_refcount, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_dunder_dlpack_stream, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_from_dlpack_refcount, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_from_torch, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_higher_dims_ndim_0, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_higher_dims_ndim_1, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_higher_dims_ndim_10, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_higher_dims_ndim_11, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_higher_dims_ndim_12, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_higher_dims_ndim_13, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_higher_dims_ndim_14, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_higher_dims_ndim_15, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_higher_dims_ndim_16, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_higher_dims_ndim_17, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_higher_dims_ndim_18, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_higher_dims_ndim_19, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_higher_dims_ndim_2, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_higher_dims_ndim_20, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_higher_dims_ndim_21, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_higher_dims_ndim_22, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_higher_dims_ndim_23, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_higher_dims_ndim_24, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_higher_dims_ndim_25, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_higher_dims_ndim_26, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_higher_dims_ndim_27, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_higher_dims_ndim_28, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_higher_dims_ndim_29, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_higher_dims_ndim_3, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_higher_dims_ndim_30, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_higher_dims_ndim_31, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_higher_dims_ndim_32, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_higher_dims_ndim_4, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_higher_dims_ndim_5, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_higher_dims_ndim_6, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_higher_dims_ndim_7, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_higher_dims_ndim_8, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_higher_dims_ndim_9, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_ndim0, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_non_contiguous, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_readonly, test/torch_np/numpy_tests/core/test_dlpack.py::TestDLPack::test_to_torch 2025-08-14T23:54:03.4007259Z 2025-08-14T23:54:08.4535181Z Running test_xnnpack_integration 1/1 ... [2025-08-14 23:54:08.452526] 2025-08-14T23:54:08.4535703Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:54:08.4541655Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_xnnpack_integration.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-14 23:54:08.452526] 2025-08-14T23:54:22.1817431Z 2025-08-14T23:54:22.1818621Z test_xnnpack_integration 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_xnnpack_integration_1.1_4a9871fb77ec3f23_.log 2025-08-14T23:54:22.1824168Z Running 12 items in this shard: test/test_xnnpack_integration.py::TestXNNPACKOps::test_conv2d, test/test_xnnpack_integration.py::TestXNNPACKOps::test_conv2d_transpose, test/test_xnnpack_integration.py::TestXNNPACKOps::test_linear, test/test_xnnpack_integration.py::TestXNNPACKOps::test_linear_1d_input, test/test_xnnpack_integration.py::TestXNNPACKSerDes::test_combined_model, test/test_xnnpack_integration.py::TestXNNPACKSerDes::test_conv2d, test/test_xnnpack_integration.py::TestXNNPACKSerDes::test_conv2d_transpose, test/test_xnnpack_integration.py::TestXNNPACKSerDes::test_linear, test/test_xnnpack_integration.py::TestXNNPACKRewritePass::test_decomposed_linear, test/test_xnnpack_integration.py::TestXNNPACKRewritePass::test_linear, test/test_xnnpack_integration.py::TestXNNPACKConv1dTransformPass::test_conv1d_basic, test/test_xnnpack_integration.py::TestXNNPACKConv1dTransformPass::test_conv1d_with_relu_fc 2025-08-14T23:54:22.1827960Z 2025-08-14T23:54:26.9493531Z 2025-08-14T23:54:26.9494464Z test_sparse_csr 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_sparse_csr_1.1_8a76ba78e4f1583c_.log 2025-08-14T23:54:27.1260021Z Running 4709 items in this shard: test/test_sparse_csr.py::TestSparseCSRSampler::test_make_crow_indices, test/test_sparse_csr.py::TestSparseCSRCPU::test_add_SparseCSC_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_add_SparseCSC_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_add_SparseCSR_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_add_SparseCSR_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_all_sparse_csr_SparseCSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_all_sparse_csr_SparseCSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_all_sparse_csr_SparseCSC_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_all_sparse_csr_SparseCSC_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_all_sparse_csr_SparseCSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_all_sparse_csr_SparseCSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_all_sparse_csr_SparseCSR_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_all_sparse_csr_SparseCSR_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_dense_result_SparseCSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_dense_result_SparseCSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_dense_result_SparseCSC_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_dense_result_SparseCSC_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_dense_result_SparseCSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_dense_result_SparseCSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_dense_result_SparseCSR_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_dense_result_SparseCSR_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_errors_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_0_m_0_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_0_m_0_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_0_m_0_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_0_m_0_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_0_m_1_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_0_m_1_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_0_m_1_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_0_m_1_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_0_m_25_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_0_m_25_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_0_m_25_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_0_m_25_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_10_m_0_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_10_m_0_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_10_m_0_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_10_m_0_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_10_m_1_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_10_m_1_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_10_m_1_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_10_m_1_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_10_m_25_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_10_m_25_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_10_m_25_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_10_m_25_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_1_m_0_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_1_m_0_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_1_m_0_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_1_m_0_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_1_m_1_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_1_m_1_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_1_m_1_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_1_m_1_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_1_m_25_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_1_m_25_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_1_m_25_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_0_n_1_m_25_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_0_m_0_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_0_m_0_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_0_m_0_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_0_m_0_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_0_m_1_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_0_m_1_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_0_m_1_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_0_m_1_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_0_m_25_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_0_m_25_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_0_m_25_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_0_m_25_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_10_m_0_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_10_m_0_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_10_m_0_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_10_m_0_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_10_m_1_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_10_m_1_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_10_m_1_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_10_m_1_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_10_m_25_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_10_m_25_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_10_m_25_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_10_m_25_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_1_m_0_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_1_m_0_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_1_m_0_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_1_m_0_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_1_m_1_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_1_m_1_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_1_m_1_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_1_m_1_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_1_m_25_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_1_m_25_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_1_m_25_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_1_n_1_m_25_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_0_m_0_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_0_m_0_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_0_m_0_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_0_m_0_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_0_m_1_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_0_m_1_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_0_m_1_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_0_m_1_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_0_m_25_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_0_m_25_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_0_m_25_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_0_m_25_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_10_m_0_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_10_m_0_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_10_m_0_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_10_m_0_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_10_m_1_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_10_m_1_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_10_m_1_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_10_m_1_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_10_m_25_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_10_m_25_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_10_m_25_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_10_m_25_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_1_m_0_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_1_m_0_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_1_m_0_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_1_m_0_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_1_m_1_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_1_m_1_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_1_m_1_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_1_m_1_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_1_m_25_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_1_m_25_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_1_m_25_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmm_sizes_all_sparse_csr_k_8_n_1_m_25_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmv_shape_11x9_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmv_shape_11x9_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmv_shape_11x9_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmv_shape_11x9_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmv_shape_3x3_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmv_shape_3x3_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmv_shape_3x3_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmv_shape_3x3_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmv_shape_5x7_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmv_shape_5x7_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmv_shape_5x7_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_addmv_shape_5x7_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_dense_output_addmm_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_dense_output_addmv_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_dense_output_mm_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_dense_output_mv_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_abs_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_abs_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_angle_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_angle_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_asin_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_asin_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_asinh_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_asinh_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_atan_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_atan_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_atanh_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_atanh_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_ceil_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_conj_physical_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_conj_physical_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_deg2rad_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_erf_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_erfinv_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_expm1_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_expm1_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_floor_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_frac_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_isinf_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_isinf_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_isnan_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_isnan_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_isneginf_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_isposinf_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_log1p_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_log1p_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_neg_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_neg_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_nn_functional_relu_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_positive_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_positive_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_rad2deg_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_round_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_sgn_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_sgn_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_sign_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_signbit_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_sin_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_sin_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_sinh_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_sinh_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_sqrt_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_sqrt_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_tan_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_tan_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_tanh_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_tanh_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_autograd_sparse_csr_unary_trunc_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_baddbmm_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_baddbmm_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_baddbmm_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_baddbmm_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmm_block_size_2_int32_noncontiguous_False_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmm_block_size_2_int32_noncontiguous_False_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmm_block_size_2_int32_noncontiguous_False_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmm_block_size_2_int32_noncontiguous_False_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmm_block_size_2_int32_noncontiguous_True_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmm_block_size_2_int32_noncontiguous_True_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmm_block_size_2_int32_noncontiguous_True_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmm_block_size_2_int32_noncontiguous_True_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmm_block_size_2_int64_noncontiguous_False_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmm_block_size_2_int64_noncontiguous_False_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmm_block_size_2_int64_noncontiguous_False_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmm_block_size_2_int64_noncontiguous_False_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmm_block_size_2_int64_noncontiguous_True_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmm_block_size_2_int64_noncontiguous_True_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmm_block_size_2_int64_noncontiguous_True_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmm_block_size_2_int64_noncontiguous_True_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmm_block_size_3_int32_noncontiguous_False_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmm_block_size_3_int32_noncontiguous_False_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmm_block_size_3_int32_noncontiguous_False_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmm_block_size_3_int32_noncontiguous_False_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmm_block_size_3_int32_noncontiguous_True_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmm_block_size_3_int32_noncontiguous_True_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmm_block_size_3_int32_noncontiguous_True_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmm_block_size_3_int32_noncontiguous_True_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmm_block_size_3_int64_noncontiguous_False_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmm_block_size_3_int64_noncontiguous_False_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmm_block_size_3_int64_noncontiguous_False_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmm_block_size_3_int64_noncontiguous_False_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmm_block_size_3_int64_noncontiguous_True_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmm_block_size_3_int64_noncontiguous_True_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmm_block_size_3_int64_noncontiguous_True_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmm_block_size_3_int64_noncontiguous_True_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmv_block_size_2_int32_noncontiguous_False_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmv_block_size_2_int32_noncontiguous_False_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmv_block_size_2_int32_noncontiguous_False_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmv_block_size_2_int32_noncontiguous_False_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmv_block_size_2_int32_noncontiguous_True_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmv_block_size_2_int32_noncontiguous_True_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmv_block_size_2_int32_noncontiguous_True_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmv_block_size_2_int32_noncontiguous_True_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmv_block_size_2_int64_noncontiguous_False_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmv_block_size_2_int64_noncontiguous_False_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmv_block_size_2_int64_noncontiguous_False_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmv_block_size_2_int64_noncontiguous_False_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmv_block_size_2_int64_noncontiguous_True_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmv_block_size_2_int64_noncontiguous_True_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmv_block_size_2_int64_noncontiguous_True_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmv_block_size_2_int64_noncontiguous_True_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmv_block_size_3_int32_noncontiguous_False_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmv_block_size_3_int32_noncontiguous_False_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmv_block_size_3_int32_noncontiguous_False_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmv_block_size_3_int32_noncontiguous_False_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmv_block_size_3_int32_noncontiguous_True_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmv_block_size_3_int32_noncontiguous_True_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmv_block_size_3_int32_noncontiguous_True_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmv_block_size_3_int32_noncontiguous_True_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmv_block_size_3_int64_noncontiguous_False_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmv_block_size_3_int64_noncontiguous_False_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmv_block_size_3_int64_noncontiguous_False_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmv_block_size_3_int64_noncontiguous_False_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmv_block_size_3_int64_noncontiguous_True_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmv_block_size_3_int64_noncontiguous_True_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmv_block_size_3_int64_noncontiguous_True_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_addmv_block_size_3_int64_noncontiguous_True_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_triangular_solve_block_size_2_int32_noncontiguous_False_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_triangular_solve_block_size_2_int32_noncontiguous_False_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_triangular_solve_block_size_2_int32_noncontiguous_False_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_triangular_solve_block_size_2_int32_noncontiguous_False_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_triangular_solve_block_size_2_int32_noncontiguous_True_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_triangular_solve_block_size_2_int32_noncontiguous_True_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_triangular_solve_block_size_2_int32_noncontiguous_True_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_triangular_solve_block_size_2_int32_noncontiguous_True_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_triangular_solve_block_size_2_int64_noncontiguous_False_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_triangular_solve_block_size_2_int64_noncontiguous_False_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_triangular_solve_block_size_2_int64_noncontiguous_False_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_triangular_solve_block_size_2_int64_noncontiguous_False_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_triangular_solve_block_size_2_int64_noncontiguous_True_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_triangular_solve_block_size_2_int64_noncontiguous_True_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_triangular_solve_block_size_2_int64_noncontiguous_True_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_triangular_solve_block_size_2_int64_noncontiguous_True_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_triangular_solve_block_size_3_int32_noncontiguous_False_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_triangular_solve_block_size_3_int32_noncontiguous_False_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_triangular_solve_block_size_3_int32_noncontiguous_False_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_triangular_solve_block_size_3_int32_noncontiguous_False_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_triangular_solve_block_size_3_int32_noncontiguous_True_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_triangular_solve_block_size_3_int32_noncontiguous_True_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_triangular_solve_block_size_3_int32_noncontiguous_True_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_triangular_solve_block_size_3_int32_noncontiguous_True_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_triangular_solve_block_size_3_int64_noncontiguous_False_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_triangular_solve_block_size_3_int64_noncontiguous_False_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_triangular_solve_block_size_3_int64_noncontiguous_False_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_triangular_solve_block_size_3_int64_noncontiguous_False_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_triangular_solve_block_size_3_int64_noncontiguous_True_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_triangular_solve_block_size_3_int64_noncontiguous_True_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_triangular_solve_block_size_3_int64_noncontiguous_True_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_block_triangular_solve_block_size_3_int64_noncontiguous_True_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_bmm_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_bmm_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_bmm_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_bmm_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_compressed_layout_conversions_coverage_SparseBSC_SparseBSC_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_compressed_layout_conversions_coverage_SparseBSC_SparseBSR_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_compressed_layout_conversions_coverage_SparseBSC_SparseCSC_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_compressed_layout_conversions_coverage_SparseBSC_SparseCSR_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_compressed_layout_conversions_coverage_SparseBSR_SparseBSC_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_compressed_layout_conversions_coverage_SparseBSR_SparseBSR_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_compressed_layout_conversions_coverage_SparseBSR_SparseCSC_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_compressed_layout_conversions_coverage_SparseBSR_SparseCSR_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_compressed_layout_conversions_coverage_SparseCSC_SparseBSC_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_compressed_layout_conversions_coverage_SparseCSC_SparseBSR_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_compressed_layout_conversions_coverage_SparseCSC_SparseCSC_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_compressed_layout_conversions_coverage_SparseCSC_SparseCSR_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_compressed_layout_conversions_coverage_SparseCSR_SparseBSC_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_compressed_layout_conversions_coverage_SparseCSR_SparseBSR_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_compressed_layout_conversions_coverage_SparseCSR_SparseCSC_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_compressed_layout_conversions_coverage_SparseCSR_SparseCSR_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_coo_csr_conversion_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_coo_csr_conversion_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_coo_csr_conversion_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_coo_csr_conversion_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_coo_csr_conversion_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_coo_csr_conversion_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_coo_csr_conversion_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_coo_csr_conversion_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_coo_csr_conversion_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_coo_csr_conversion_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_coo_csr_conversion_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_coo_csr_conversion_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_coo_to_csr_convert_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_csr_coo_conversion_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_csr_coo_conversion_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_csr_coo_conversion_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_csr_coo_conversion_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_csr_coo_conversion_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_csr_coo_conversion_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_csr_coo_conversion_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_csr_coo_conversion_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_csr_coo_conversion_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_csr_coo_conversion_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_csr_coo_conversion_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_csr_coo_conversion_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_csr_double_to_sparse_csr_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_csr_is_contiguous_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_csr_matvec_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_csr_matvec_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_csr_matvec_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_csr_matvec_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_csr_nnz_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_csr_storage_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_csr_stride_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_csr_to_block_csr_blocksize_2_cpu_float64_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_csr_to_block_csr_blocksize_2_cpu_float64_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_csr_to_block_csr_blocksize_4_cpu_float64_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_csr_to_block_csr_blocksize_4_cpu_float64_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_csr_to_block_csr_errors_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_dense_to_from_sparse_compressed_SparseBSC_Batched_Hybrid_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_dense_to_from_sparse_compressed_SparseBSC_Batched_NonHybrid_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_dense_to_from_sparse_compressed_SparseBSC_NonBatched_Hybrid_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_dense_to_from_sparse_compressed_SparseBSC_NonBatched_NonHybrid_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_dense_to_from_sparse_compressed_SparseBSR_Batched_Hybrid_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_dense_to_from_sparse_compressed_SparseBSR_Batched_NonHybrid_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_dense_to_from_sparse_compressed_SparseBSR_NonBatched_Hybrid_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_dense_to_from_sparse_compressed_SparseBSR_NonBatched_NonHybrid_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_dense_to_from_sparse_compressed_SparseCSC_Batched_Hybrid_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_dense_to_from_sparse_compressed_SparseCSC_Batched_NonHybrid_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_dense_to_from_sparse_compressed_SparseCSC_NonBatched_Hybrid_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_dense_to_from_sparse_compressed_SparseCSC_NonBatched_NonHybrid_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_dense_to_from_sparse_compressed_SparseCSR_Batched_Hybrid_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_dense_to_from_sparse_compressed_SparseCSR_Batched_NonHybrid_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_dense_to_from_sparse_compressed_SparseCSR_NonBatched_Hybrid_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_dense_to_from_sparse_compressed_SparseCSR_NonBatched_NonHybrid_cpu, test/test_sparse_csr.py::TestSparseCSRCPU::test_direct_coo_csr_conversion_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_direct_coo_csr_conversion_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_direct_coo_csr_conversion_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_direct_coo_csr_conversion_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_direct_coo_csr_conversion_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_direct_coo_csr_conversion_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_direct_coo_csr_conversion_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_direct_coo_csr_conversion_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_direct_coo_csr_conversion_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_exercise_detach_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_exercise_detach_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_exercise_detach_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_exercise_detach_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_exercise_detach_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_exercise_detach_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_exercise_detach_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_exercise_detach_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_exercise_detach_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_exercise_detach_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_exercise_detach_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_exercise_detach_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_linalg_solve_sparse_csr_cusolver_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_linalg_solve_sparse_csr_cusolver_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_matmul_device_mismatch_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_mm_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_mm_errors_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseBSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseBSC_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseBSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseBSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseBSC_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseBSC_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseBSC_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseBSC_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseBSC_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseBSC_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseBSC_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseBSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseBSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseBSR_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseBSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseBSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseBSR_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseBSR_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseBSR_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseBSR_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseBSR_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseBSR_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseBSR_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseBSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseCSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseCSC_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseCSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseCSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseCSC_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseCSC_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseCSC_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseCSC_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseCSC_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseCSC_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseCSC_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseCSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseCSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseCSR_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseCSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseCSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseCSR_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseCSR_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseCSR_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseCSR_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseCSR_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseCSR_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseCSR_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_mul_scalar_enable_hybrid_False_SparseCSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_resize_as_sparse_compressed_SparseBSC_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_resize_as_sparse_compressed_SparseBSC_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_resize_as_sparse_compressed_SparseBSR_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_resize_as_sparse_compressed_SparseBSR_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_resize_as_sparse_compressed_SparseCSC_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_resize_as_sparse_compressed_SparseCSC_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_resize_as_sparse_compressed_SparseCSR_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_resize_as_sparse_compressed_SparseCSR_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_resize_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_resize_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_resize_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_resize_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_resize_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_resize_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_resize_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_resize_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_resize_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_resize_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_resize_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_resize_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_resize_errors_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_resize_errors_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_resize_errors_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_resize_errors_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_resize_errors_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_resize_errors_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_resize_errors_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_resize_errors_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_resize_errors_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_resize_errors_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_resize_errors_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_resize_errors_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sampled_addmm_autograd_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sampled_addmm_autograd_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sampled_addmm_autograd_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sampled_addmm_autograd_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sampled_addmm_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sampled_addmm_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sampled_addmm_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sampled_addmm_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sampled_addmm_errors_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sampled_addmm_errors_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sampled_addmm_errors_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sampled_addmm_errors_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sampled_addmm_zero_sized_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sampled_addmm_zero_sized_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sampled_addmm_zero_sized_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sampled_addmm_zero_sized_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSC_int32_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSC_int32_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSC_int32_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSC_int32_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSC_int32_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSC_int32_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSC_int32_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSC_int32_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSC_int32_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSC_int32_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSC_int32_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSC_int32_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSC_int64_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSC_int64_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSC_int64_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSC_int64_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSC_int64_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSC_int64_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSC_int64_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSC_int64_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSC_int64_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSC_int64_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSC_int64_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSC_int64_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSR_int32_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSR_int32_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSR_int32_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSR_int32_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSR_int32_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSR_int32_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSR_int32_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSR_int32_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSR_int32_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSR_int32_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSR_int32_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSR_int32_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSR_int64_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSR_int64_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSR_int64_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSR_int64_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSR_int64_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSR_int64_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSR_int64_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSR_int64_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSR_int64_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSR_int64_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSR_int64_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseBSR_int64_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSC_int32_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSC_int32_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSC_int32_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSC_int32_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSC_int32_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSC_int32_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSC_int32_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSC_int32_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSC_int32_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSC_int32_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSC_int32_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSC_int32_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSC_int64_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSC_int64_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSC_int64_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSC_int64_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSC_int64_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSC_int64_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSC_int64_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSC_int64_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSC_int64_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSC_int64_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSC_int64_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSC_int64_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSR_int32_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSR_int32_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSR_int32_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSR_int32_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSR_int32_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSR_int32_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSR_int32_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSR_int32_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSR_int32_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSR_int32_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSR_int32_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSR_int32_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSR_int64_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSR_int64_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSR_int64_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSR_int64_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSR_int64_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSR_int64_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSR_int64_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSR_int64_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSR_int64_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSR_int64_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSR_int64_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_select_SparseCSR_int64_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_add_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_add_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_add_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_add_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_add_errors_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_add_errors_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_add_errors_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_add_errors_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_addmm_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_addmm_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_addmm_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_addmm_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csc_to_dense_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csc_to_dense_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csc_to_dense_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csc_to_dense_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csc_to_dense_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csc_to_dense_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csc_to_dense_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csc_to_dense_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csc_to_dense_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csc_to_dense_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csc_to_dense_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csc_to_dense_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_from_dense_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_from_dense_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_from_dense_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_from_dense_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_from_dense_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_from_dense_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_from_dense_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_from_dense_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_from_dense_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_from_dense_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_from_dense_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_from_dense_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_to_dense_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_to_dense_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_to_dense_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_to_dense_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_to_dense_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_to_dense_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_to_dense_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_to_dense_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_to_dense_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_to_dense_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_to_dense_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_to_dense_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_abs_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_abs_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_abs_cpu_complex32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_abs_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_abs_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_abs_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_abs_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_abs_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_abs_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_abs_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_abs_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_abs_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_angle_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_angle_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_angle_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_angle_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_angle_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_angle_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_angle_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_angle_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_angle_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_angle_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_angle_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_angle_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_asin_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_asin_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_asin_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_asin_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_asin_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_asin_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_asin_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_asin_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_asin_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_asin_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_asin_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_asin_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_asinh_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_asinh_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_asinh_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_asinh_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_asinh_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_asinh_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_asinh_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_asinh_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_asinh_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_asinh_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_asinh_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_asinh_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_atan_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_atan_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_atan_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_atan_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_atan_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_atan_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_atan_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_atan_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_atan_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_atan_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_atan_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_atan_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_atanh_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_atanh_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_atanh_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_atanh_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_atanh_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_atanh_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_atanh_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_atanh_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_atanh_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_atanh_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_atanh_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_atanh_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_ceil_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_ceil_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_ceil_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_ceil_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_ceil_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_ceil_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_ceil_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_ceil_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_ceil_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_conj_physical_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_conj_physical_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_conj_physical_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_conj_physical_cpu_complex32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_conj_physical_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_conj_physical_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_conj_physical_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_conj_physical_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_conj_physical_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_conj_physical_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_conj_physical_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_conj_physical_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_conj_physical_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_deg2rad_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_deg2rad_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_deg2rad_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_deg2rad_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_deg2rad_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_deg2rad_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_deg2rad_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_deg2rad_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_deg2rad_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_deg2rad_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_erf_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_erf_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_erf_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_erf_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_erf_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_erf_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_erf_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_erf_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_erf_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_erf_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_erfinv_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_erfinv_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_erfinv_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_erfinv_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_erfinv_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_erfinv_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_erfinv_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_erfinv_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_erfinv_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_erfinv_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_expm1_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_expm1_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_expm1_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_expm1_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_expm1_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_expm1_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_expm1_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_expm1_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_expm1_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_expm1_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_expm1_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_expm1_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_floor_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_floor_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_floor_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_floor_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_floor_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_floor_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_floor_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_floor_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_floor_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_frac_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_frac_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_frac_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_frac_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isinf_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isinf_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isinf_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isinf_cpu_complex32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isinf_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isinf_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isinf_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isinf_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isinf_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isinf_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isinf_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isinf_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isinf_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isnan_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isnan_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isnan_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isnan_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isnan_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isnan_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isnan_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isnan_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isnan_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isnan_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isnan_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isnan_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isneginf_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isneginf_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isneginf_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isneginf_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isneginf_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isneginf_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isneginf_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isneginf_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isneginf_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isneginf_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isposinf_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isposinf_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isposinf_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isposinf_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isposinf_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isposinf_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isposinf_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isposinf_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isposinf_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_isposinf_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_log1p_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_log1p_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_log1p_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_log1p_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_log1p_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_log1p_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_log1p_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_log1p_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_log1p_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_log1p_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_log1p_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_log1p_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_neg_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_neg_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_neg_cpu_complex32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_neg_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_neg_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_neg_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_neg_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_neg_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_neg_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_neg_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_neg_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_neg_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_nn_functional_relu_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_nn_functional_relu_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_nn_functional_relu_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_nn_functional_relu_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_nn_functional_relu_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_nn_functional_relu_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_nn_functional_relu_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_nn_functional_relu_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_nn_functional_relu_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_positive_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_positive_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_positive_cpu_complex32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_positive_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_positive_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_positive_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_positive_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_positive_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_positive_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_positive_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_positive_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_positive_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_rad2deg_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_rad2deg_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_rad2deg_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_rad2deg_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_rad2deg_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_rad2deg_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_rad2deg_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_rad2deg_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_rad2deg_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_rad2deg_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_round_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_round_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_round_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_round_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_round_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_round_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_round_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_round_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_round_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sgn_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sgn_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sgn_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sgn_cpu_complex32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sgn_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sgn_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sgn_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sgn_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sgn_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sgn_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sgn_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sgn_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sgn_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sign_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sign_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sign_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sign_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sign_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sign_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sign_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sign_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sign_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sign_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_signbit_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_signbit_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_signbit_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_signbit_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_signbit_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_signbit_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_signbit_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_signbit_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_signbit_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_signbit_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sin_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sin_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sin_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sin_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sin_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sin_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sin_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sin_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sin_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sin_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sin_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sin_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sinh_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sinh_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sinh_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sinh_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sinh_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sinh_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sinh_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sinh_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sinh_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sinh_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sinh_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sinh_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sqrt_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sqrt_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sqrt_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sqrt_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sqrt_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sqrt_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sqrt_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sqrt_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sqrt_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sqrt_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sqrt_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_sqrt_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_tan_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_tan_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_tan_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_tan_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_tan_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_tan_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_tan_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_tan_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_tan_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_tan_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_tan_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_tan_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_tanh_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_tanh_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_tanh_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_tanh_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_tanh_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_tanh_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_tanh_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_tanh_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_tanh_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_tanh_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_tanh_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_tanh_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_trunc_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_trunc_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_trunc_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_trunc_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_trunc_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_trunc_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_trunc_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_trunc_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_inplace_trunc_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_abs_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_abs_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_abs_cpu_complex32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_abs_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_abs_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_abs_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_abs_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_abs_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_abs_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_abs_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_abs_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_abs_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_angle_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_angle_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_angle_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_angle_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_angle_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_angle_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_angle_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_angle_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_angle_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_angle_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_angle_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_angle_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_asin_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_asin_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_asin_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_asin_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_asin_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_asin_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_asin_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_asin_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_asin_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_asin_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_asin_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_asin_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_asinh_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_asinh_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_asinh_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_asinh_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_asinh_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_asinh_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_asinh_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_asinh_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_asinh_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_asinh_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_asinh_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_asinh_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_atan_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_atan_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_atan_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_atan_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_atan_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_atan_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_atan_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_atan_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_atan_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_atan_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_atan_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_atan_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_atanh_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_atanh_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_atanh_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_atanh_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_atanh_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_atanh_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_atanh_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_atanh_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_atanh_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_atanh_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_atanh_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_atanh_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_ceil_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_ceil_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_ceil_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_ceil_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_ceil_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_ceil_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_ceil_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_ceil_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_ceil_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_conj_physical_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_conj_physical_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_conj_physical_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_conj_physical_cpu_complex32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_conj_physical_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_conj_physical_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_conj_physical_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_conj_physical_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_conj_physical_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_conj_physical_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_conj_physical_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_conj_physical_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_conj_physical_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_deg2rad_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_deg2rad_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_deg2rad_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_deg2rad_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_deg2rad_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_deg2rad_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_deg2rad_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_deg2rad_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_deg2rad_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_deg2rad_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_erf_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_erf_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_erf_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_erf_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_erf_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_erf_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_erf_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_erf_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_erf_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_erf_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_erfinv_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_erfinv_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_erfinv_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_erfinv_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_erfinv_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_erfinv_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_erfinv_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_erfinv_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_erfinv_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_erfinv_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_expm1_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_expm1_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_expm1_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_expm1_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_expm1_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_expm1_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_expm1_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_expm1_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_expm1_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_expm1_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_expm1_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_expm1_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_floor_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_floor_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_floor_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_floor_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_floor_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_floor_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_floor_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_floor_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_floor_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_frac_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_frac_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_frac_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_frac_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isinf_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isinf_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isinf_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isinf_cpu_complex32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isinf_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isinf_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isinf_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isinf_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isinf_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isinf_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isinf_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isinf_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isinf_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isnan_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isnan_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isnan_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isnan_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isnan_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isnan_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isnan_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isnan_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isnan_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isnan_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isnan_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isnan_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isneginf_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isneginf_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isneginf_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isneginf_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isneginf_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isneginf_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isneginf_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isneginf_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isneginf_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isneginf_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isposinf_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isposinf_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isposinf_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isposinf_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isposinf_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isposinf_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isposinf_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isposinf_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isposinf_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_isposinf_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_log1p_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_log1p_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_log1p_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_log1p_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_log1p_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_log1p_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_log1p_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_log1p_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_log1p_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_log1p_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_log1p_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_log1p_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_neg_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_neg_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_neg_cpu_complex32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_neg_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_neg_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_neg_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_neg_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_neg_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_neg_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_neg_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_neg_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_neg_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_nn_functional_relu_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_nn_functional_relu_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_nn_functional_relu_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_nn_functional_relu_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_nn_functional_relu_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_nn_functional_relu_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_nn_functional_relu_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_nn_functional_relu_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_nn_functional_relu_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_positive_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_positive_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_positive_cpu_complex32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_positive_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_positive_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_positive_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_positive_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_positive_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_positive_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_positive_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_positive_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_positive_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_rad2deg_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_rad2deg_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_rad2deg_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_rad2deg_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_rad2deg_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_rad2deg_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_rad2deg_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_rad2deg_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_rad2deg_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_rad2deg_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_round_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_round_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_round_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_round_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_round_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_round_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_round_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_round_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_round_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sgn_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sgn_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sgn_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sgn_cpu_complex32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sgn_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sgn_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sgn_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sgn_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sgn_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sgn_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sgn_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sgn_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sgn_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sign_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sign_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sign_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sign_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sign_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sign_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sign_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sign_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sign_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sign_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_signbit_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_signbit_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_signbit_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_signbit_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_signbit_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_signbit_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_signbit_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_signbit_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_signbit_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_signbit_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sin_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sin_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sin_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sin_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sin_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sin_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sin_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sin_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sin_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sin_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sin_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sin_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sinh_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sinh_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sinh_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sinh_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sinh_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sinh_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sinh_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sinh_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sinh_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sinh_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sinh_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sinh_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sqrt_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sqrt_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sqrt_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sqrt_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sqrt_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sqrt_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sqrt_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sqrt_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sqrt_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sqrt_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sqrt_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_sqrt_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_tan_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_tan_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_tan_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_tan_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_tan_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_tan_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_tan_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_tan_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_tan_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_tan_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_tan_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_tan_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_tanh_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_tanh_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_tanh_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_tanh_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_tanh_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_tanh_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_tanh_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_tanh_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_tanh_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_tanh_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_tanh_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_tanh_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_trunc_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_trunc_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_trunc_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_trunc_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_trunc_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_trunc_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_trunc_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_trunc_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_csr_unary_out_trunc_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_mm_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_mm_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_mm_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_mm_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_mm_reduce_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_mm_reduce_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_mm_reduce_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_mm_reduce_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_mm_reduce_sum_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_mm_reduce_sum_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_mm_reduce_sum_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_mm_reduce_sum_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_to_sparse_compressed_SparseBSC_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_to_sparse_compressed_SparseBSR_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_to_sparse_compressed_SparseCSC_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_to_sparse_compressed_SparseCSR_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_triangular_solve_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_triangular_solve_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_triangular_solve_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sparse_triangular_solve_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sum_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sum_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_sum_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_sum_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sum_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sum_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sum_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sum_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_sum_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_sum_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_sum_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_sum_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseBSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseBSC_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseBSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseBSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseBSC_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseBSC_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseBSC_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseBSC_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseBSC_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseBSC_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseBSC_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseBSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseBSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseBSR_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseBSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseBSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseBSR_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseBSR_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseBSR_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseBSR_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseBSR_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseBSR_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseBSR_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseBSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseCSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseCSC_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseCSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseCSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseCSC_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseCSC_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseCSC_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseCSC_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseCSC_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseCSC_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseCSC_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseCSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseCSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseCSR_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseCSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseCSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseCSR_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseCSR_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseCSR_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseCSR_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseCSR_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseCSR_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseCSR_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_transpose_SparseCSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_abs_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_abs_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_abs_cpu_complex32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_abs_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_abs_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_abs_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_abs_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_abs_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_abs_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_abs_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_abs_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_abs_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_angle_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_angle_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_angle_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_angle_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_angle_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_angle_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_angle_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_angle_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_angle_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_angle_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_angle_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_angle_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_asin_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_asin_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_asin_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_asin_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_asin_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_asin_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_asin_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_asin_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_asin_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_asin_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_asin_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_asin_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_asinh_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_asinh_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_asinh_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_asinh_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_asinh_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_asinh_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_asinh_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_asinh_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_asinh_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_asinh_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_asinh_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_asinh_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_atan_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_atan_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_atan_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_atan_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_atan_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_atan_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_atan_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_atan_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_atan_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_atan_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_atan_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_atan_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_atanh_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_atanh_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_atanh_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_atanh_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_atanh_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_atanh_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_atanh_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_atanh_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_atanh_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_atanh_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_atanh_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_atanh_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_ceil_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_ceil_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_ceil_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_ceil_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_ceil_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_ceil_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_ceil_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_ceil_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_ceil_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_conj_physical_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_conj_physical_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_conj_physical_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_conj_physical_cpu_complex32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_conj_physical_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_conj_physical_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_conj_physical_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_conj_physical_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_conj_physical_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_conj_physical_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_conj_physical_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_conj_physical_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_conj_physical_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_deg2rad_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_deg2rad_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_deg2rad_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_deg2rad_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_deg2rad_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_deg2rad_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_deg2rad_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_deg2rad_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_deg2rad_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_deg2rad_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_erf_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_erf_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_erf_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_erf_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_erf_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_erf_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_erf_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_erf_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_erf_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_erf_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_erfinv_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_erfinv_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_erfinv_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_erfinv_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_erfinv_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_erfinv_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_erfinv_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_erfinv_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_erfinv_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_erfinv_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_expm1_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_expm1_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_expm1_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_expm1_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_expm1_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_expm1_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_expm1_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_expm1_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_expm1_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_expm1_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_expm1_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_expm1_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_floor_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_floor_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_floor_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_floor_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_floor_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_floor_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_floor_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_floor_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_floor_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_frac_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_frac_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_frac_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_frac_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isinf_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isinf_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isinf_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isinf_cpu_complex32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isinf_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isinf_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isinf_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isinf_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isinf_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isinf_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isinf_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isinf_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isinf_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isnan_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isnan_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isnan_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isnan_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isnan_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isnan_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isnan_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isnan_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isnan_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isnan_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isnan_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isnan_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isneginf_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isneginf_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isneginf_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isneginf_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isneginf_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isneginf_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isneginf_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isneginf_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isneginf_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isneginf_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isposinf_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isposinf_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isposinf_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isposinf_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isposinf_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isposinf_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isposinf_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isposinf_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isposinf_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_isposinf_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_log1p_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_log1p_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_log1p_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_log1p_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_log1p_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_log1p_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_log1p_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_log1p_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_log1p_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_log1p_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_log1p_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_log1p_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_neg_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_neg_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_neg_cpu_complex32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_neg_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_neg_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_neg_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_neg_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_neg_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_neg_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_neg_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_neg_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_neg_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_nn_functional_relu_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_nn_functional_relu_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_nn_functional_relu_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_nn_functional_relu_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_nn_functional_relu_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_nn_functional_relu_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_nn_functional_relu_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_nn_functional_relu_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_nn_functional_relu_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_positive_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_positive_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_positive_cpu_complex32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_positive_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_positive_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_positive_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_positive_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_positive_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_positive_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_positive_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_positive_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_positive_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_rad2deg_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_rad2deg_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_rad2deg_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_rad2deg_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_rad2deg_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_rad2deg_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_rad2deg_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_rad2deg_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_rad2deg_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_rad2deg_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_round_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_round_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_round_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_round_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_round_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_round_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_round_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_round_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_round_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sgn_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sgn_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sgn_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sgn_cpu_complex32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sgn_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sgn_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sgn_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sgn_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sgn_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sgn_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sgn_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sgn_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sgn_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sign_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sign_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sign_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sign_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sign_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sign_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sign_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sign_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sign_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sign_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_signbit_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_signbit_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_signbit_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_signbit_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_signbit_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_signbit_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_signbit_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_signbit_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_signbit_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_signbit_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sin_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sin_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sin_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sin_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sin_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sin_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sin_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sin_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sin_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sin_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sin_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sin_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sinh_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sinh_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sinh_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sinh_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sinh_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sinh_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sinh_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sinh_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sinh_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sinh_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sinh_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sinh_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sqrt_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sqrt_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sqrt_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sqrt_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sqrt_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sqrt_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sqrt_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sqrt_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sqrt_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sqrt_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sqrt_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_sqrt_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_tan_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_tan_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_tan_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_tan_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_tan_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_tan_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_tan_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_tan_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_tan_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_tan_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_tan_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_tan_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_tanh_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_tanh_cpu_bool, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_tanh_cpu_complex128, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_tanh_cpu_complex64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_tanh_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_tanh_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_tanh_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_tanh_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_tanh_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_tanh_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_tanh_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_tanh_cpu_uint8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_trunc_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_trunc_cpu_float16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_trunc_cpu_float32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_trunc_cpu_float64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_trunc_cpu_int16, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_trunc_cpu_int32, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_trunc_cpu_int64, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_trunc_cpu_int8, test/test_sparse_csr.py::TestSparseCSRCPU::test_zero_to_zero_correspondence_unary_trunc_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseBSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseBSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseBSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseBSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseBSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseBSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseBSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseBSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseBSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseBSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseBSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseBSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseBSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseBSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseBSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseBSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseBSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseBSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseBSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseBSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseBSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseBSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseBSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseBSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseCSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseCSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseCSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseCSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseCSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseCSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseCSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseCSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseCSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseCSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseCSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseCSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseCSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseCSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseCSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseCSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseCSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseCSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseCSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseCSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseCSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseCSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseCSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_clone_SparseCSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_abs_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_abs_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_abs_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_abs_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_abs_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_abs_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_abs_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_abs_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_abs_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_abs_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_abs_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_abs_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_angle_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_angle_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_angle_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_angle_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_angle_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_angle_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_angle_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_angle_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_angle_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_angle_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_angle_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_angle_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_asin_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_asin_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_asin_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_asin_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_asin_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_asin_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_asin_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_asin_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_asin_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_asin_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_asin_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_asin_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_asinh_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_asinh_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_asinh_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_asinh_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_asinh_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_asinh_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_asinh_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_asinh_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_asinh_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_asinh_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_asinh_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_asinh_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_atan_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_atan_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_atan_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_atan_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_atan_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_atan_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_atan_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_atan_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_atan_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_atan_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_atan_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_atan_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_atanh_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_atanh_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_atanh_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_atanh_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_atanh_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_atanh_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_atanh_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_atanh_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_atanh_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_atanh_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_atanh_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_atanh_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_ceil_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_ceil_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_ceil_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_ceil_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_ceil_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_ceil_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_ceil_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_ceil_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_ceil_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_conj_physical_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_conj_physical_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_conj_physical_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_conj_physical_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_conj_physical_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_conj_physical_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_conj_physical_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_conj_physical_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_conj_physical_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_conj_physical_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_conj_physical_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_conj_physical_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_conj_physical_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_deg2rad_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_deg2rad_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_deg2rad_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_deg2rad_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_deg2rad_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_deg2rad_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_deg2rad_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_deg2rad_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_deg2rad_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_deg2rad_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_erf_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_erf_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_erf_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_erf_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_erf_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_erf_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_erf_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_erf_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_erf_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_erf_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_erfinv_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_erfinv_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_erfinv_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_erfinv_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_erfinv_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_erfinv_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_erfinv_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_erfinv_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_erfinv_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_erfinv_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_expm1_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_expm1_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_expm1_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_expm1_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_expm1_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_expm1_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_expm1_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_expm1_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_expm1_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_expm1_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_expm1_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_expm1_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_floor_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_floor_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_floor_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_floor_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_floor_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_floor_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_floor_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_floor_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_floor_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_frac_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_frac_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_frac_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_frac_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isinf_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isinf_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isinf_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isinf_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isinf_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isinf_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isinf_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isinf_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isinf_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isinf_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isinf_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isinf_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isinf_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isnan_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isnan_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isnan_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isnan_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isnan_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isnan_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isnan_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isnan_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isnan_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isnan_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isnan_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isnan_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isneginf_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isneginf_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isneginf_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isneginf_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isneginf_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isneginf_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isneginf_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isneginf_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isneginf_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isneginf_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isposinf_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isposinf_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isposinf_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isposinf_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isposinf_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isposinf_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isposinf_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isposinf_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isposinf_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_isposinf_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_log1p_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_log1p_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_log1p_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_log1p_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_log1p_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_log1p_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_log1p_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_log1p_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_log1p_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_log1p_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_log1p_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_log1p_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_amax_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_amax_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_amax_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_amax_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_amax_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_amax_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_amax_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_amax_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_amax_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_amin_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_amin_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_amin_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_amin_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_amin_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_amin_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_amin_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_amin_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_amin_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_mean_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_mean_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_mean_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_mean_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_mean_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_mean_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_prod_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_prod_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_prod_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_prod_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_prod_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_prod_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_prod_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_prod_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_prod_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_prod_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_prod_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_prod_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_sum_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_sum_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_sum_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_sum_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_sum_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_sum_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_sum_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_sum_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_sum_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_sum_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_sum_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_masked_sum_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_mul_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_mul_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_mul_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_mul_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_mul_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_mul_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_mul_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_mul_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_mul_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_mul_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_mul_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_mul_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_mul_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_neg_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_neg_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_neg_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_neg_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_neg_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_neg_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_neg_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_neg_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_neg_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_neg_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_neg_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_neg_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_nn_functional_relu_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_nn_functional_relu_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_nn_functional_relu_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_nn_functional_relu_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_nn_functional_relu_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_nn_functional_relu_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_nn_functional_relu_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_nn_functional_relu_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_nn_functional_relu_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_positive_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_positive_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_positive_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_positive_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_positive_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_positive_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_positive_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_positive_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_positive_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_positive_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_positive_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_positive_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_rad2deg_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_rad2deg_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_rad2deg_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_rad2deg_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_rad2deg_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_rad2deg_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_rad2deg_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_rad2deg_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_rad2deg_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_rad2deg_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_randn_like_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_randn_like_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_randn_like_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_randn_like_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_randn_like_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_randn_like_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_randn_like_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_round_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_round_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_round_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_round_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_round_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_round_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_round_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_round_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_round_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sgn_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sgn_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sgn_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sgn_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sgn_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sgn_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sgn_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sgn_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sgn_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sgn_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sgn_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sgn_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sgn_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sign_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sign_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sign_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sign_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sign_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sign_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sign_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sign_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sign_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sign_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_signbit_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_signbit_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_signbit_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_signbit_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_signbit_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_signbit_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_signbit_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_signbit_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_signbit_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_signbit_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sin_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sin_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sin_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sin_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sin_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sin_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sin_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sin_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sin_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sin_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sin_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sin_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sinh_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sinh_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sinh_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sinh_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sinh_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sinh_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sinh_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sinh_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sinh_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sinh_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sinh_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sinh_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sqrt_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sqrt_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sqrt_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sqrt_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sqrt_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sqrt_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sqrt_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sqrt_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sqrt_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sqrt_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sqrt_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sqrt_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sum_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sum_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sum_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sum_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sum_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sum_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sum_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sum_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sum_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sum_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sum_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_sum_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_tan_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_tan_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_tan_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_tan_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_tan_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_tan_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_tan_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_tan_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_tan_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_tan_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_tan_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_tan_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_tanh_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_tanh_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_tanh_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_tanh_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_tanh_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_tanh_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_tanh_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_tanh_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_tanh_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_tanh_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_tanh_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_tanh_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_to_sparse_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_to_sparse_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_to_sparse_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_to_sparse_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_to_sparse_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_to_sparse_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_to_sparse_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_to_sparse_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_to_sparse_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_to_sparse_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_to_sparse_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_to_sparse_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_trunc_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_trunc_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_trunc_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_trunc_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_trunc_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_trunc_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_trunc_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_trunc_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_trunc_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_zeros_like_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_zeros_like_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_zeros_like_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_zeros_like_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_zeros_like_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_zeros_like_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_zeros_like_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_zeros_like_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_zeros_like_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_zeros_like_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_zeros_like_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_zeros_like_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSC_zeros_like_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_abs_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_abs_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_abs_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_abs_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_abs_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_abs_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_abs_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_abs_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_abs_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_abs_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_abs_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_abs_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_angle_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_angle_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_angle_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_angle_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_angle_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_angle_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_angle_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_angle_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_angle_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_angle_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_angle_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_angle_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_asin_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_asin_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_asin_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_asin_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_asin_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_asin_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_asin_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_asin_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_asin_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_asin_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_asin_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_asin_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_asinh_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_asinh_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_asinh_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_asinh_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_asinh_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_asinh_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_asinh_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_asinh_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_asinh_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_asinh_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_asinh_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_asinh_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_atan_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_atan_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_atan_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_atan_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_atan_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_atan_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_atan_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_atan_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_atan_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_atan_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_atan_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_atan_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_atanh_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_atanh_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_atanh_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_atanh_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_atanh_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_atanh_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_atanh_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_atanh_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_atanh_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_atanh_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_atanh_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_atanh_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_ceil_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_ceil_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_ceil_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_ceil_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_ceil_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_ceil_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_ceil_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_ceil_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_ceil_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_conj_physical_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_conj_physical_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_conj_physical_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_conj_physical_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_conj_physical_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_conj_physical_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_conj_physical_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_conj_physical_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_conj_physical_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_conj_physical_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_conj_physical_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_conj_physical_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_conj_physical_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_deg2rad_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_deg2rad_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_deg2rad_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_deg2rad_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_deg2rad_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_deg2rad_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_deg2rad_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_deg2rad_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_deg2rad_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_deg2rad_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_erf_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_erf_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_erf_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_erf_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_erf_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_erf_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_erf_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_erf_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_erf_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_erf_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_erfinv_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_erfinv_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_erfinv_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_erfinv_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_erfinv_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_erfinv_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_erfinv_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_erfinv_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_erfinv_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_erfinv_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_expm1_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_expm1_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_expm1_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_expm1_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_expm1_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_expm1_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_expm1_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_expm1_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_expm1_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_expm1_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_expm1_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_expm1_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_floor_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_floor_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_floor_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_floor_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_floor_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_floor_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_floor_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_floor_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_floor_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_frac_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_frac_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_frac_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_frac_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isinf_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isinf_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isinf_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isinf_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isinf_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isinf_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isinf_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isinf_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isinf_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isinf_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isinf_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isinf_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isinf_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isnan_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isnan_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isnan_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isnan_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isnan_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isnan_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isnan_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isnan_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isnan_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isnan_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isnan_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isnan_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isneginf_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isneginf_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isneginf_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isneginf_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isneginf_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isneginf_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isneginf_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isneginf_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isneginf_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isneginf_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isposinf_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isposinf_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isposinf_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isposinf_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isposinf_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isposinf_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isposinf_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isposinf_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isposinf_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_isposinf_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_log1p_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_log1p_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_log1p_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_log1p_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_log1p_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_log1p_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_log1p_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_log1p_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_log1p_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_log1p_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_log1p_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_log1p_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_amax_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_amax_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_amax_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_amax_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_amax_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_amax_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_amax_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_amax_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_amax_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_amin_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_amin_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_amin_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_amin_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_amin_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_amin_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_amin_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_amin_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_amin_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_mean_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_mean_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_mean_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_mean_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_mean_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_mean_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_prod_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_prod_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_prod_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_prod_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_prod_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_prod_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_prod_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_prod_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_prod_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_prod_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_prod_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_prod_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_sum_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_sum_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_sum_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_sum_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_sum_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_sum_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_sum_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_sum_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_sum_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_sum_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_sum_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_masked_sum_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_mul_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_mul_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_mul_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_mul_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_mul_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_mul_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_mul_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_mul_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_mul_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_mul_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_mul_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_mul_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_mul_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_neg_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_neg_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_neg_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_neg_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_neg_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_neg_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_neg_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_neg_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_neg_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_neg_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_neg_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_neg_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_nn_functional_relu_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_nn_functional_relu_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_nn_functional_relu_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_nn_functional_relu_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_nn_functional_relu_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_nn_functional_relu_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_nn_functional_relu_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_nn_functional_relu_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_nn_functional_relu_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_positive_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_positive_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_positive_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_positive_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_positive_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_positive_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_positive_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_positive_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_positive_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_positive_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_positive_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_positive_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_rad2deg_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_rad2deg_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_rad2deg_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_rad2deg_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_rad2deg_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_rad2deg_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_rad2deg_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_rad2deg_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_rad2deg_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_rad2deg_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_randn_like_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_randn_like_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_randn_like_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_randn_like_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_randn_like_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_randn_like_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_randn_like_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_round_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_round_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_round_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_round_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_round_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_round_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_round_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_round_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_round_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sgn_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sgn_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sgn_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sgn_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sgn_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sgn_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sgn_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sgn_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sgn_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sgn_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sgn_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sgn_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sgn_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sign_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sign_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sign_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sign_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sign_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sign_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sign_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sign_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sign_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sign_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_signbit_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_signbit_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_signbit_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_signbit_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_signbit_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_signbit_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_signbit_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_signbit_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_signbit_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_signbit_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sin_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sin_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sin_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sin_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sin_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sin_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sin_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sin_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sin_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sin_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sin_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sin_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sinh_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sinh_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sinh_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sinh_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sinh_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sinh_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sinh_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sinh_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sinh_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sinh_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sinh_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sinh_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sqrt_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sqrt_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sqrt_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sqrt_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sqrt_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sqrt_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sqrt_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sqrt_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sqrt_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sqrt_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sqrt_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sqrt_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sum_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sum_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sum_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sum_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sum_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sum_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sum_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sum_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sum_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sum_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sum_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_sum_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_tan_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_tan_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_tan_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_tan_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_tan_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_tan_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_tan_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_tan_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_tan_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_tan_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_tan_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_tan_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_tanh_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_tanh_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_tanh_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_tanh_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_tanh_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_tanh_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_tanh_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_tanh_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_tanh_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_tanh_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_tanh_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_tanh_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_to_sparse_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_to_sparse_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_to_sparse_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_to_sparse_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_to_sparse_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_to_sparse_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_to_sparse_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_to_sparse_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_to_sparse_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_to_sparse_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_to_sparse_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_to_sparse_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_trunc_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_trunc_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_trunc_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_trunc_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_trunc_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_trunc_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_trunc_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_trunc_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_trunc_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_zeros_like_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_zeros_like_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_zeros_like_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_zeros_like_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_zeros_like_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_zeros_like_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_zeros_like_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_zeros_like_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_zeros_like_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_zeros_like_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_zeros_like_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_zeros_like_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseBSR_zeros_like_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_abs_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_abs_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_abs_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_abs_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_abs_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_abs_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_abs_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_abs_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_abs_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_abs_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_abs_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_abs_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_angle_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_angle_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_angle_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_angle_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_angle_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_angle_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_angle_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_angle_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_angle_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_angle_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_angle_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_angle_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_asin_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_asin_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_asin_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_asin_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_asin_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_asin_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_asin_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_asin_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_asin_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_asin_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_asin_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_asin_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_asinh_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_asinh_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_asinh_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_asinh_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_asinh_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_asinh_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_asinh_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_asinh_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_asinh_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_asinh_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_asinh_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_asinh_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_atan_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_atan_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_atan_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_atan_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_atan_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_atan_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_atan_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_atan_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_atan_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_atan_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_atan_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_atan_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_atanh_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_atanh_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_atanh_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_atanh_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_atanh_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_atanh_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_atanh_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_atanh_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_atanh_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_atanh_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_atanh_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_atanh_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_ceil_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_ceil_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_ceil_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_ceil_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_ceil_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_ceil_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_ceil_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_ceil_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_ceil_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_conj_physical_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_conj_physical_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_conj_physical_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_conj_physical_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_conj_physical_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_conj_physical_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_conj_physical_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_conj_physical_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_conj_physical_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_conj_physical_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_conj_physical_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_conj_physical_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_conj_physical_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_deg2rad_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_deg2rad_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_deg2rad_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_deg2rad_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_deg2rad_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_deg2rad_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_deg2rad_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_deg2rad_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_deg2rad_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_deg2rad_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_erf_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_erf_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_erf_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_erf_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_erf_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_erf_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_erf_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_erf_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_erf_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_erf_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_erfinv_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_erfinv_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_erfinv_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_erfinv_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_erfinv_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_erfinv_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_erfinv_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_erfinv_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_erfinv_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_erfinv_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_expm1_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_expm1_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_expm1_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_expm1_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_expm1_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_expm1_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_expm1_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_expm1_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_expm1_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_expm1_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_expm1_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_expm1_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_floor_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_floor_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_floor_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_floor_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_floor_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_floor_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_floor_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_floor_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_floor_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_frac_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_frac_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_frac_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_frac_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isinf_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isinf_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isinf_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isinf_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isinf_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isinf_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isinf_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isinf_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isinf_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isinf_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isinf_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isinf_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isinf_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isnan_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isnan_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isnan_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isnan_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isnan_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isnan_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isnan_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isnan_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isnan_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isnan_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isnan_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isnan_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isneginf_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isneginf_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isneginf_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isneginf_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isneginf_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isneginf_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isneginf_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isneginf_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isneginf_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isneginf_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isposinf_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isposinf_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isposinf_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isposinf_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isposinf_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isposinf_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isposinf_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isposinf_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isposinf_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_isposinf_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_log1p_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_log1p_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_log1p_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_log1p_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_log1p_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_log1p_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_log1p_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_log1p_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_log1p_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_log1p_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_log1p_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_log1p_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_amax_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_amax_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_amax_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_amax_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_amax_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_amax_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_amax_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_amax_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_amax_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_amin_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_amin_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_amin_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_amin_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_amin_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_amin_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_amin_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_amin_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_amin_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_mean_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_mean_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_mean_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_mean_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_mean_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_mean_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_prod_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_prod_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_prod_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_prod_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_prod_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_prod_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_prod_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_prod_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_prod_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_prod_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_prod_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_prod_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_sum_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_sum_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_sum_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_sum_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_sum_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_sum_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_sum_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_sum_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_sum_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_sum_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_sum_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_masked_sum_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_mul_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_mul_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_mul_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_mul_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_mul_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_mul_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_mul_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_mul_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_mul_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_mul_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_mul_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_mul_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_mul_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_neg_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_neg_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_neg_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_neg_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_neg_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_neg_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_neg_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_neg_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_neg_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_neg_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_neg_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_neg_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_nn_functional_relu_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_nn_functional_relu_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_nn_functional_relu_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_nn_functional_relu_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_nn_functional_relu_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_nn_functional_relu_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_nn_functional_relu_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_nn_functional_relu_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_nn_functional_relu_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_positive_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_positive_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_positive_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_positive_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_positive_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_positive_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_positive_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_positive_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_positive_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_positive_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_positive_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_positive_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_rad2deg_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_rad2deg_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_rad2deg_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_rad2deg_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_rad2deg_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_rad2deg_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_rad2deg_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_rad2deg_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_rad2deg_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_rad2deg_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_randn_like_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_randn_like_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_randn_like_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_randn_like_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_randn_like_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_randn_like_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_randn_like_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_round_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_round_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_round_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_round_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_round_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_round_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_round_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_round_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_round_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sgn_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sgn_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sgn_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sgn_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sgn_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sgn_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sgn_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sgn_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sgn_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sgn_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sgn_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sgn_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sgn_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sign_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sign_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sign_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sign_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sign_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sign_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sign_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sign_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sign_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sign_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_signbit_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_signbit_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_signbit_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_signbit_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_signbit_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_signbit_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_signbit_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_signbit_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_signbit_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_signbit_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sin_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sin_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sin_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sin_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sin_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sin_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sin_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sin_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sin_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sin_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sin_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sin_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sinh_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sinh_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sinh_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sinh_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sinh_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sinh_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sinh_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sinh_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sinh_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sinh_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sinh_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sinh_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sqrt_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sqrt_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sqrt_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sqrt_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sqrt_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sqrt_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sqrt_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sqrt_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sqrt_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sqrt_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sqrt_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sqrt_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sum_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sum_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sum_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sum_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sum_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sum_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sum_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sum_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sum_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sum_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sum_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_sum_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_tan_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_tan_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_tan_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_tan_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_tan_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_tan_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_tan_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_tan_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_tan_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_tan_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_tan_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_tan_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_tanh_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_tanh_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_tanh_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_tanh_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_tanh_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_tanh_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_tanh_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_tanh_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_tanh_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_tanh_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_tanh_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_tanh_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_to_sparse_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_to_sparse_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_to_sparse_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_to_sparse_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_to_sparse_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_to_sparse_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_to_sparse_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_to_sparse_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_to_sparse_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_to_sparse_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_to_sparse_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_to_sparse_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_trunc_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_trunc_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_trunc_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_trunc_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_trunc_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_trunc_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_trunc_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_trunc_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_trunc_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_zeros_like_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_zeros_like_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_zeros_like_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_zeros_like_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_zeros_like_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_zeros_like_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_zeros_like_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_zeros_like_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_zeros_like_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_zeros_like_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_zeros_like_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_zeros_like_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSC_zeros_like_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_abs_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_abs_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_abs_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_abs_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_abs_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_abs_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_abs_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_abs_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_abs_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_abs_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_abs_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_abs_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_angle_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_angle_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_angle_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_angle_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_angle_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_angle_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_angle_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_angle_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_angle_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_angle_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_angle_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_angle_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_asin_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_asin_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_asin_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_asin_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_asin_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_asin_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_asin_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_asin_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_asin_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_asin_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_asin_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_asin_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_asinh_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_asinh_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_asinh_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_asinh_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_asinh_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_asinh_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_asinh_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_asinh_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_asinh_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_asinh_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_asinh_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_asinh_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_atan_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_atan_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_atan_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_atan_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_atan_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_atan_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_atan_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_atan_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_atan_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_atan_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_atan_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_atan_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_atanh_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_atanh_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_atanh_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_atanh_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_atanh_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_atanh_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_atanh_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_atanh_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_atanh_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_atanh_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_atanh_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_atanh_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_ceil_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_ceil_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_ceil_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_ceil_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_ceil_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_ceil_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_ceil_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_ceil_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_ceil_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_conj_physical_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_conj_physical_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_conj_physical_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_conj_physical_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_conj_physical_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_conj_physical_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_conj_physical_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_conj_physical_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_conj_physical_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_conj_physical_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_conj_physical_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_conj_physical_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_conj_physical_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_deg2rad_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_deg2rad_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_deg2rad_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_deg2rad_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_deg2rad_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_deg2rad_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_deg2rad_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_deg2rad_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_deg2rad_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_deg2rad_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_erf_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_erf_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_erf_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_erf_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_erf_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_erf_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_erf_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_erf_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_erf_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_erf_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_erfinv_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_erfinv_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_erfinv_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_erfinv_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_erfinv_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_erfinv_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_erfinv_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_erfinv_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_erfinv_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_erfinv_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_expm1_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_expm1_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_expm1_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_expm1_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_expm1_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_expm1_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_expm1_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_expm1_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_expm1_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_expm1_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_expm1_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_expm1_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_floor_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_floor_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_floor_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_floor_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_floor_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_floor_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_floor_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_floor_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_floor_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_frac_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_frac_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_frac_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_frac_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isinf_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isinf_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isinf_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isinf_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isinf_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isinf_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isinf_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isinf_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isinf_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isinf_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isinf_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isinf_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isinf_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isnan_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isnan_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isnan_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isnan_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isnan_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isnan_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isnan_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isnan_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isnan_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isnan_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isnan_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isnan_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isneginf_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isneginf_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isneginf_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isneginf_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isneginf_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isneginf_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isneginf_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isneginf_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isneginf_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isneginf_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isposinf_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isposinf_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isposinf_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isposinf_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isposinf_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isposinf_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isposinf_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isposinf_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isposinf_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_isposinf_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_log1p_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_log1p_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_log1p_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_log1p_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_log1p_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_log1p_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_log1p_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_log1p_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_log1p_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_log1p_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_log1p_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_log1p_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_amax_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_amax_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_amax_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_amax_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_amax_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_amax_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_amax_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_amax_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_amax_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_amin_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_amin_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_amin_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_amin_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_amin_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_amin_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_amin_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_amin_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_amin_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_mean_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_mean_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_mean_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_mean_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_mean_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_mean_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_prod_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_prod_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_prod_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_prod_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_prod_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_prod_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_prod_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_prod_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_prod_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_prod_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_prod_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_prod_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_sum_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_sum_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_sum_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_sum_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_sum_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_sum_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_sum_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_sum_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_sum_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_sum_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_sum_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_masked_sum_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_mul_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_mul_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_mul_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_mul_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_mul_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_mul_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_mul_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_mul_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_mul_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_mul_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_mul_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_mul_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_mul_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_neg_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_neg_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_neg_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_neg_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_neg_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_neg_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_neg_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_neg_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_neg_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_neg_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_neg_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_neg_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_nn_functional_relu_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_nn_functional_relu_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_nn_functional_relu_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_nn_functional_relu_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_nn_functional_relu_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_nn_functional_relu_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_nn_functional_relu_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_nn_functional_relu_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_nn_functional_relu_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_positive_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_positive_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_positive_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_positive_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_positive_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_positive_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_positive_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_positive_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_positive_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_positive_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_positive_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_positive_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_rad2deg_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_rad2deg_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_rad2deg_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_rad2deg_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_rad2deg_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_rad2deg_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_rad2deg_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_rad2deg_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_rad2deg_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_rad2deg_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_randn_like_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_randn_like_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_randn_like_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_randn_like_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_randn_like_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_randn_like_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_randn_like_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_round_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_round_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_round_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_round_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_round_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_round_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_round_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_round_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_round_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sgn_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sgn_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sgn_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sgn_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sgn_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sgn_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sgn_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sgn_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sgn_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sgn_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sgn_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sgn_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sgn_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sign_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sign_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sign_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sign_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sign_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sign_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sign_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sign_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sign_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sign_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_signbit_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_signbit_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_signbit_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_signbit_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_signbit_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_signbit_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_signbit_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_signbit_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_signbit_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_signbit_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sin_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sin_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sin_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sin_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sin_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sin_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sin_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sin_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sin_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sin_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sin_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sin_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sinh_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sinh_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sinh_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sinh_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sinh_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sinh_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sinh_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sinh_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sinh_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sinh_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sinh_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sinh_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sqrt_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sqrt_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sqrt_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sqrt_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sqrt_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sqrt_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sqrt_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sqrt_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sqrt_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sqrt_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sqrt_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sqrt_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sum_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sum_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sum_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sum_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sum_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sum_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sum_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sum_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sum_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sum_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sum_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_sum_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_tan_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_tan_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_tan_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_tan_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_tan_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_tan_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_tan_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_tan_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_tan_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_tan_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_tan_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_tan_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_tanh_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_tanh_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_tanh_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_tanh_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_tanh_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_tanh_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_tanh_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_tanh_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_tanh_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_tanh_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_tanh_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_tanh_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_to_sparse_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_to_sparse_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_to_sparse_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_to_sparse_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_to_sparse_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_to_sparse_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_to_sparse_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_to_sparse_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_to_sparse_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_to_sparse_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_to_sparse_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_to_sparse_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_trunc_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_trunc_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_trunc_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_trunc_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_trunc_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_trunc_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_trunc_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_trunc_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_trunc_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_zeros_like_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_zeros_like_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_zeros_like_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_zeros_like_cpu_complex32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_zeros_like_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_zeros_like_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_zeros_like_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_zeros_like_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_zeros_like_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_zeros_like_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_zeros_like_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_zeros_like_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_consistency_SparseCSR_zeros_like_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseBSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseBSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseBSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseBSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseBSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseBSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseBSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseBSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseBSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseBSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseBSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseBSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseBSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseBSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseBSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseBSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseBSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseBSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseBSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseBSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseBSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseBSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseBSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseBSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseCSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseCSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseCSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseCSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseCSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseCSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseCSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseCSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseCSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseCSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseCSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseCSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseCSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseCSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseCSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseCSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseCSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseCSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseCSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseCSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseCSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseCSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseCSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_SparseCSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseBSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseBSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseBSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseBSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseBSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseBSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseBSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseBSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseBSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseBSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseBSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseBSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseBSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseBSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseBSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseBSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseBSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseBSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseBSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseBSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseBSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseBSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseBSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseBSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseCSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseCSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseCSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseCSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseCSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseCSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseCSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseCSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseCSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseCSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseCSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseCSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseCSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseCSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseCSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseCSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseCSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseCSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseCSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseCSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseCSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseCSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseCSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_copy_errors_SparseCSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_dim_SparseBSC_cpu, test/test_sparse_csr.py::TestSparseCompressedCPU::test_dim_SparseBSR_cpu, test/test_sparse_csr.py::TestSparseCompressedCPU::test_dim_SparseCSC_cpu, test/test_sparse_csr.py::TestSparseCompressedCPU::test_dim_SparseCSR_cpu, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_SparseCSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_SparseCSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_SparseCSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_SparseCSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_SparseCSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_SparseCSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_SparseCSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_SparseCSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_SparseCSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_SparseCSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_SparseCSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_SparseCSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_SparseCSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_SparseCSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_SparseCSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_SparseCSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_SparseCSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_SparseCSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_SparseCSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_SparseCSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_SparseCSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_SparseCSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_SparseCSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_SparseCSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_errors_SparseCSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_errors_SparseCSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_errors_SparseCSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_errors_SparseCSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_errors_SparseCSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_errors_SparseCSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_errors_SparseCSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_errors_SparseCSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_errors_SparseCSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_errors_SparseCSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_errors_SparseCSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_errors_SparseCSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_errors_SparseCSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_errors_SparseCSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_errors_SparseCSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_errors_SparseCSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_errors_SparseCSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_errors_SparseCSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_errors_SparseCSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_errors_SparseCSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_errors_SparseCSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_errors_SparseCSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_errors_SparseCSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_errors_SparseCSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseBSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseBSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseBSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseBSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseBSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseBSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseBSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseBSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseBSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseBSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseBSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseBSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseBSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseBSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseBSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseBSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseBSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseBSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseBSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseBSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseBSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseBSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseBSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseBSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseCSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseCSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseCSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseCSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseCSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseCSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseCSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseCSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseCSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseCSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseCSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseCSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseCSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseCSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseCSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseCSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseCSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseCSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseCSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseCSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseCSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseCSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseCSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSC_SparseCSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseBSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseBSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseBSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseBSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseBSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseBSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseBSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseBSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseBSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseBSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseBSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseBSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseBSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseBSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseBSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseBSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseBSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseBSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseBSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseBSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseBSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseBSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseBSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseBSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseCSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseCSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseCSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseCSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseCSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseCSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseCSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseCSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseCSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseCSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseCSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseCSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseCSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseCSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseCSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseCSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseCSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseCSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseCSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseCSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseCSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseCSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseCSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseBSR_SparseCSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseBSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseBSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseBSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseBSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseBSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseBSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseBSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseBSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseBSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseBSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseBSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseBSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseBSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseBSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseBSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseBSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseBSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseBSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseBSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseBSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseBSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseBSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseBSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseBSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseCSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseCSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseCSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseCSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseCSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseCSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseCSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseCSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseCSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseCSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseCSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseCSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseCSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseCSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseCSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseCSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseCSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseCSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseCSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseCSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseCSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseCSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseCSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSC_SparseCSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseBSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseBSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseBSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseBSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseBSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseBSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseBSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseBSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseBSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseBSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseBSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseBSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseBSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseBSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseBSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseBSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseBSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseBSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseBSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseBSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseBSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseBSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseBSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseBSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseCSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseCSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseCSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseCSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseCSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseCSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseCSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseCSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseCSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseCSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseCSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseCSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseCSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseCSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseCSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseCSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseCSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseCSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseCSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseCSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseCSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseCSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseCSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_empty_like_SparseCSR_SparseCSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_invalid_input_SparseBSC_target_sparse_compressed_tensor_cpu, test/test_sparse_csr.py::TestSparseCompressedCPU::test_invalid_input_SparseBSC_target_sparse_compressed_tensor_no_size_cpu, test/test_sparse_csr.py::TestSparseCompressedCPU::test_invalid_input_SparseBSC_target_validate_sparse_compressed_tensor_args_cpu, test/test_sparse_csr.py::TestSparseCompressedCPU::test_invalid_input_SparseBSR_target_sparse_compressed_tensor_cpu, test/test_sparse_csr.py::TestSparseCompressedCPU::test_invalid_input_SparseBSR_target_sparse_compressed_tensor_no_size_cpu, test/test_sparse_csr.py::TestSparseCompressedCPU::test_invalid_input_SparseBSR_target_validate_sparse_compressed_tensor_args_cpu, test/test_sparse_csr.py::TestSparseCompressedCPU::test_invalid_input_SparseCSC_target_sparse_compressed_tensor_cpu, test/test_sparse_csr.py::TestSparseCompressedCPU::test_invalid_input_SparseCSC_target_sparse_compressed_tensor_no_size_cpu, test/test_sparse_csr.py::TestSparseCompressedCPU::test_invalid_input_SparseCSC_target_validate_sparse_compressed_tensor_args_cpu, test/test_sparse_csr.py::TestSparseCompressedCPU::test_invalid_input_SparseCSR_target_sparse_compressed_tensor_cpu, test/test_sparse_csr.py::TestSparseCompressedCPU::test_invalid_input_SparseCSR_target_sparse_compressed_tensor_no_size_cpu, test/test_sparse_csr.py::TestSparseCompressedCPU::test_invalid_input_SparseCSR_target_validate_sparse_compressed_tensor_args_cpu, test/test_sparse_csr.py::TestSparseCompressedCPU::test_invalid_input_csr_large_cpu, test/test_sparse_csr.py::TestSparseCompressedCPU::test_layout_SparseBSC_cpu, test/test_sparse_csr.py::TestSparseCompressedCPU::test_layout_SparseBSR_cpu, test/test_sparse_csr.py::TestSparseCompressedCPU::test_layout_SparseCSC_cpu, test/test_sparse_csr.py::TestSparseCompressedCPU::test_layout_SparseCSR_cpu, test/test_sparse_csr.py::TestSparseCompressedCPU::test_pickle_SparseBSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_pickle_SparseBSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_pickle_SparseCSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_pickle_SparseCSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_print_SparseBSC_cpu, test/test_sparse_csr.py::TestSparseCompressedCPU::test_print_SparseBSR_cpu, test/test_sparse_csr.py::TestSparseCompressedCPU::test_print_SparseCSC_cpu, test/test_sparse_csr.py::TestSparseCompressedCPU::test_print_SparseCSR_cpu, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSC_int32_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSC_int32_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSC_int32_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSC_int32_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSC_int32_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSC_int32_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSC_int32_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSC_int32_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSC_int32_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSC_int32_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSC_int32_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSC_int32_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSC_int64_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSC_int64_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSC_int64_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSC_int64_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSC_int64_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSC_int64_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSC_int64_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSC_int64_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSC_int64_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSC_int64_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSC_int64_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSC_int64_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSR_int32_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSR_int32_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSR_int32_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSR_int32_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSR_int32_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSR_int32_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSR_int32_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSR_int32_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSR_int32_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSR_int32_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSR_int32_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSR_int32_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSR_int64_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSR_int64_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSR_int64_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSR_int64_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSR_int64_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSR_int64_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSR_int64_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSR_int64_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSR_int64_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSR_int64_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSR_int64_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseBSR_int64_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSC_int32_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSC_int32_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSC_int32_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSC_int32_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSC_int32_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSC_int32_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSC_int32_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSC_int32_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSC_int32_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSC_int32_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSC_int32_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSC_int32_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSC_int64_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSC_int64_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSC_int64_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSC_int64_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSC_int64_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSC_int64_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSC_int64_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSC_int64_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSC_int64_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSC_int64_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSC_int64_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSC_int64_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSR_int32_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSR_int32_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSR_int32_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSR_int32_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSR_int32_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSR_int32_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSR_int32_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSR_int32_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSR_int32_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSR_int32_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSR_int32_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSR_int32_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSR_int64_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSR_int64_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSR_int64_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSR_int64_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSR_int64_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSR_int64_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSR_int64_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSR_int64_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSR_int64_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSR_int64_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSR_int64_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_select_copy_SparseCSR_int64_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseBSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseBSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseBSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseBSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseBSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseBSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseBSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseBSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseBSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseBSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseBSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseBSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseBSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseBSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseBSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseBSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseBSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseBSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseBSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseBSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseBSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseBSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseBSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseBSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseCSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseCSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseCSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseCSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseCSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseCSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseCSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseCSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseCSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseCSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseCSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseCSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseCSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseCSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseCSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseCSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseCSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseCSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseCSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseCSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseCSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseCSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseCSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_list_SparseCSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseBSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseBSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseBSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseBSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseBSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseBSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseBSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseBSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseBSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseBSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseBSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseBSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseBSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseBSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseBSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseBSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseBSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseBSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseBSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseBSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseBSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseBSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseBSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseBSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseCSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseCSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseCSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseCSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseCSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseCSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseCSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseCSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseCSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseCSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseCSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseCSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseCSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseCSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseCSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseCSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseCSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseCSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseCSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseCSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseCSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseCSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseCSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_____from_tensor_SparseCSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseBSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseBSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseBSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseBSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseBSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseBSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseBSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseBSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseBSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseBSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseBSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseBSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseBSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseBSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseBSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseBSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseBSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseBSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseBSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseBSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseBSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseBSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseBSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseBSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseCSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseCSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseCSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseCSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseCSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseCSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseCSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseCSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseCSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseCSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseCSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseCSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseCSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseCSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseCSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseCSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseCSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseCSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseCSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseCSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseCSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseCSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseCSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_list_SparseCSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseBSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseBSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseBSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseBSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseBSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseBSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseBSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseBSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseBSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseBSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseBSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseBSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseBSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseBSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseBSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseBSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseBSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseBSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseBSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseBSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseBSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseBSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseBSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseBSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseCSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseCSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseCSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseCSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseCSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseCSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseCSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseCSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseCSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseCSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseCSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseCSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseCSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseCSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseCSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseCSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseCSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseCSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseCSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseCSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseCSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseCSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseCSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor___factory_from_tensor_SparseCSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseBSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseBSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseBSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseBSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseBSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseBSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseBSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseBSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseBSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseBSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseBSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseBSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseBSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseBSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseBSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseBSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseBSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseBSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseBSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseBSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseBSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseBSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseBSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseBSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseCSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseCSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseCSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseCSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseCSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseCSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseCSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseCSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseCSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseCSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseCSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseCSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseCSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseCSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseCSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseCSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseCSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseCSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseCSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseCSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseCSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseCSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseCSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_list_SparseCSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseBSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseBSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseBSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseBSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseBSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseBSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseBSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseBSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseBSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseBSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseBSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseBSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseBSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseBSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseBSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseBSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseBSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseBSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseBSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseBSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseBSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseBSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseBSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseBSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseCSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseCSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseCSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseCSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseCSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseCSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseCSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseCSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseCSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseCSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseCSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseCSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseCSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseCSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseCSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseCSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseCSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseCSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseCSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseCSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseCSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseCSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseCSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference___from_tensor_SparseCSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseBSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseBSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseBSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseBSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseBSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseBSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseBSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseBSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseBSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseBSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseBSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseBSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseBSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseBSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseBSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseBSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseBSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseBSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseBSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseBSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseBSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseBSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseBSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseBSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseCSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseCSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseCSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseCSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseCSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseCSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseCSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseCSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseCSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseCSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseCSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseCSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseCSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseCSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseCSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseCSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseCSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseCSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseCSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseCSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseCSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseCSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseCSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_list_SparseCSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseBSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseBSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseBSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseBSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseBSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseBSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseBSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseBSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseBSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseBSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseBSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseBSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseBSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseBSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseBSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseBSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseBSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseBSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseBSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseBSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseBSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseBSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseBSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseBSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseCSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseCSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseCSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseCSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseCSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseCSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseCSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseCSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseCSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseCSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseCSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseCSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseCSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseCSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseCSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseCSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseCSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseCSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseCSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseCSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseCSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseCSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseCSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_constructor_shape_and_device_inference_factory_from_tensor_SparseCSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseBSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseBSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseBSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseBSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseBSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseBSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseBSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseBSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseBSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseBSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseBSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseBSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseBSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseBSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseBSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseBSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseBSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseBSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseBSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseBSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseBSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseBSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseBSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseBSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseCSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseCSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseCSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseCSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseCSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseCSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseCSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseCSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseCSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseCSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseCSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseCSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseCSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseCSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseCSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseCSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseCSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseCSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseCSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseCSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseCSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseCSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseCSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_sparse_compressed_tensor_with_dims_SparseCSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseBSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseBSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseBSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseBSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseBSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseBSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseBSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseBSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseBSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseBSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseBSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseBSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseBSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseBSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseBSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseBSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseBSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseBSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseBSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseBSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseBSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseBSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseBSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseBSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseCSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseCSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseCSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseCSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseCSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseCSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseCSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseCSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseCSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseCSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseCSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseCSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseCSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseCSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseCSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseCSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseCSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseCSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseCSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseCSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseCSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseCSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseCSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_to_dtype_SparseCSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseBSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseBSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseBSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseBSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseBSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseBSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseBSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseBSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseBSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseBSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseBSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseBSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseBSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseBSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseBSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseBSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseBSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseBSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseBSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseBSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseBSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseBSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseBSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseBSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseCSC_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseCSC_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseCSC_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseCSC_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseCSC_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseCSC_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseCSC_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseCSC_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseCSC_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseCSC_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseCSC_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseCSC_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseCSR_cpu_bfloat16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseCSR_cpu_bool, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseCSR_cpu_complex128, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseCSR_cpu_complex64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseCSR_cpu_float16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseCSR_cpu_float32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseCSR_cpu_float64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseCSR_cpu_int16, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseCSR_cpu_int32, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseCSR_cpu_int64, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseCSR_cpu_int8, test/test_sparse_csr.py::TestSparseCompressedCPU::test_validate_SparseCSR_cpu_uint8, test/test_sparse_csr.py::TestSparseCompressedTritonKernelsCPU::test_TensorAsKey, test/test_sparse_csr.py::TestSparseCompressedTritonKernelsCPU::test_triton_bsr_dense_addmm_meta, test/test_sparse_csr.py::TestSparseCompressedTritonKernelsCPU::test_triton_bsr_dense_bmm, test/test_sparse_csr.py::TestSparseCompressedTritonKernelsCPU::test_triton_bsr_dense_bmm_error_messages, test/test_sparse_csr.py::TestSparseCompressedTritonKernelsCPU::test_triton_bsr_scatter_mm, test/test_sparse_csr.py::TestSparseCompressedTritonKernelsCPU::test_triton_bsr_softmax, test/test_sparse_csr.py::TestSparseCompressedTritonKernelsCPU::test_triton_kernel, test/test_sparse_csr.py::TestSparseCompressedTritonKernelsCPU::test_triton_sampled_addmm, test/test_sparse_csr.py::TestSparseCompressedTritonKernelsCPU::test_triton_scaled_dot_product_attention, test/test_sparse_csr.py::TestSparseCompressedTritonKernelsCPU::test_triton_scatter_mm, test/test_sparse_csr.py::TestSparseCompressedTritonKernelsCPU::test_triton_tune 2025-08-14T23:54:27.2941173Z 2025-08-14T23:54:27.3693608Z Running torch_np/numpy_tests/fft/test_helper 1/1 ... [2025-08-14 23:54:27.363976] 2025-08-14T23:54:27.3699905Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:54:27.3701278Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/fft/test_helper.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-14 23:54:27.363976] 2025-08-14T23:54:32.3529243Z Running test_mkldnn 1/1 ... [2025-08-14 23:54:32.352430] 2025-08-14T23:54:32.3529671Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:54:32.3536299Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_mkldnn.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-14 23:54:32.353056] 2025-08-14T23:54:38.3789554Z 2025-08-14T23:54:38.3791196Z torch_np/numpy_tests/fft/test_helper 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.fft.test_helper_1.1_4f75b657e3ee9644_.log 2025-08-14T23:54:38.3796732Z Running 8 items in this shard: test/torch_np/numpy_tests/fft/test_helper.py::TestFFTShift::test_axes_keyword, test/torch_np/numpy_tests/fft/test_helper.py::TestFFTShift::test_definition, test/torch_np/numpy_tests/fft/test_helper.py::TestFFTShift::test_equal_to_original, test/torch_np/numpy_tests/fft/test_helper.py::TestFFTShift::test_inverse, test/torch_np/numpy_tests/fft/test_helper.py::TestFFTShift::test_uneven_dims, test/torch_np/numpy_tests/fft/test_helper.py::TestFFTFreq::test_definition, test/torch_np/numpy_tests/fft/test_helper.py::TestRFFTFreq::test_definition, test/torch_np/numpy_tests/fft/test_helper.py::TestIRFFTN::test_not_last_axis_success 2025-08-14T23:54:38.3801556Z 2025-08-14T23:54:44.7384916Z Running test_unary_ufuncs 1/1 ... [2025-08-14 23:54:44.736492] 2025-08-14T23:54:44.7385654Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:54:44.7395566Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_unary_ufuncs.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-14 23:54:44.736492] 2025-08-14T23:54:45.8741859Z 2025-08-14T23:54:45.8743438Z test_serialization 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_serialization_1.1_5048bb5c828360ed_.log 2025-08-14T23:54:45.8882985Z Running 203 items in this shard: test/test_serialization.py::TestOldSerialization::test_debug_set_in_ci, test/test_serialization.py::TestOldSerialization::test_load_error_msg, test/test_serialization.py::TestOldSerialization::test_load_nonexistent_device, test/test_serialization.py::TestOldSerialization::test_load_python2_unicode_module, test/test_serialization.py::TestOldSerialization::test_load_unicode_error_msg, test/test_serialization.py::TestOldSerialization::test_pickle_module, test/test_serialization.py::TestOldSerialization::test_safe_load_basic_types, test/test_serialization.py::TestOldSerialization::test_save_different_dtype_error, test/test_serialization.py::TestOldSerialization::test_save_different_dtype_unallocated, test/test_serialization.py::TestOldSerialization::test_serialization, test/test_serialization.py::TestOldSerialization::test_serialization_backwards_compat, test/test_serialization.py::TestOldSerialization::test_serialization_backwards_compat_safe, test/test_serialization.py::TestOldSerialization::test_serialization_container, test/test_serialization.py::TestOldSerialization::test_serialization_container_filelike, test/test_serialization.py::TestOldSerialization::test_serialization_dill, test/test_serialization.py::TestOldSerialization::test_serialization_dill_version_not_supported, test/test_serialization.py::TestOldSerialization::test_serialization_fake_zip, test/test_serialization.py::TestOldSerialization::test_serialization_filelike, test/test_serialization.py::TestOldSerialization::test_serialization_filelike_api_requirements, test/test_serialization.py::TestOldSerialization::test_serialization_filelike_exceptions, test/test_serialization.py::TestOldSerialization::test_serialization_filelike_missing_attrs, test/test_serialization.py::TestOldSerialization::test_serialization_filelike_stress, test/test_serialization.py::TestOldSerialization::test_serialization_filelike_uses_readinto, test/test_serialization.py::TestOldSerialization::test_serialization_gzip, test/test_serialization.py::TestOldSerialization::test_serialization_map_location, test/test_serialization.py::TestOldSerialization::test_serialization_offset, test/test_serialization.py::TestOldSerialization::test_serialization_offset_filelike_weights_only_False, test/test_serialization.py::TestOldSerialization::test_serialization_offset_filelike_weights_only_True, test/test_serialization.py::TestOldSerialization::test_serialization_offset_gzip, test/test_serialization.py::TestOldSerialization::test_serialization_safe, test/test_serialization.py::TestOldSerialization::test_serialization_save_warnings, test/test_serialization.py::TestOldSerialization::test_serialization_sparse, test/test_serialization.py::TestOldSerialization::test_serialization_sparse_bsc_invalid, test/test_serialization.py::TestOldSerialization::test_serialization_sparse_bsr_invalid, test/test_serialization.py::TestOldSerialization::test_serialization_sparse_csc_invalid, test/test_serialization.py::TestOldSerialization::test_serialization_sparse_csr_invalid, test/test_serialization.py::TestOldSerialization::test_serialization_sparse_invalid, test/test_serialization.py::TestOldSerialization::test_serialization_sparse_invalid_legacy_ctor, test/test_serialization.py::TestOldSerialization::test_serialization_sparse_safe, test/test_serialization.py::TestOldSerialization::test_serialization_storage_slice, test/test_serialization.py::TestOldSerialization::test_serialization_zipfile_utils, test/test_serialization.py::TestOldSerialization::test_serialize_device, test/test_serialization.py::TestOldSerialization::test_skip_data_load, test/test_serialization.py::TestSerialization::test_crc32_options_compute_crc32_False_filename_False, test/test_serialization.py::TestSerialization::test_crc32_options_compute_crc32_False_filename_True, test/test_serialization.py::TestSerialization::test_crc32_options_compute_crc32_True_filename_False, test/test_serialization.py::TestSerialization::test_crc32_options_compute_crc32_True_filename_True, test/test_serialization.py::TestSerialization::test_debug_set_in_ci, test/test_serialization.py::TestSerialization::test_filewriter_metadata_writing_filename_False, test/test_serialization.py::TestSerialization::test_filewriter_metadata_writing_filename_True, test/test_serialization.py::TestSerialization::test_get_unsafe_globals_in_checkpoint, test/test_serialization.py::TestSerialization::test_has_format_version, test/test_serialization.py::TestSerialization::test_load_error_msg, test/test_serialization.py::TestSerialization::test_load_njt_weights_only_should_import_False, test/test_serialization.py::TestSerialization::test_load_njt_weights_only_should_import_True, test/test_serialization.py::TestSerialization::test_load_nonexistent_device, test/test_serialization.py::TestSerialization::test_load_python2_unicode_module, test/test_serialization.py::TestSerialization::test_load_unicode_error_msg, test/test_serialization.py::TestSerialization::test_lr_scheduler_serialization, test/test_serialization.py::TestSerialization::test_meta_serialization_weights_only_False, test/test_serialization.py::TestSerialization::test_meta_serialization_weights_only_True, test/test_serialization.py::TestSerialization::test_mmap_load_offset_calculation_path_type0, test/test_serialization.py::TestSerialization::test_mmap_load_offset_calculation_path_type1, test/test_serialization.py::TestSerialization::test_pathlike_serialization_weights_only_False, test/test_serialization.py::TestSerialization::test_pathlike_serialization_weights_only_True, test/test_serialization.py::TestSerialization::test_pickle_module, test/test_serialization.py::TestSerialization::test_safe_load_basic_types, test/test_serialization.py::TestSerialization::test_save_different_dtype_error, test/test_serialization.py::TestSerialization::test_save_different_dtype_unallocated, test/test_serialization.py::TestSerialization::test_save_load_preserves_dtype_bfloat16_weights_only_False, test/test_serialization.py::TestSerialization::test_save_load_preserves_dtype_bfloat16_weights_only_True, test/test_serialization.py::TestSerialization::test_save_load_preserves_dtype_bool_weights_only_False, test/test_serialization.py::TestSerialization::test_save_load_preserves_dtype_bool_weights_only_True, test/test_serialization.py::TestSerialization::test_save_load_preserves_dtype_complex128_weights_only_False, test/test_serialization.py::TestSerialization::test_save_load_preserves_dtype_complex128_weights_only_True, test/test_serialization.py::TestSerialization::test_save_load_preserves_dtype_complex64_weights_only_False, test/test_serialization.py::TestSerialization::test_save_load_preserves_dtype_complex64_weights_only_True, test/test_serialization.py::TestSerialization::test_save_load_preserves_dtype_float16_weights_only_False, test/test_serialization.py::TestSerialization::test_save_load_preserves_dtype_float16_weights_only_True, test/test_serialization.py::TestSerialization::test_save_load_preserves_dtype_float32_weights_only_False, test/test_serialization.py::TestSerialization::test_save_load_preserves_dtype_float32_weights_only_True, test/test_serialization.py::TestSerialization::test_save_load_preserves_dtype_float64_weights_only_False, test/test_serialization.py::TestSerialization::test_save_load_preserves_dtype_float64_weights_only_True, test/test_serialization.py::TestSerialization::test_save_load_preserves_dtype_int16_weights_only_False, test/test_serialization.py::TestSerialization::test_save_load_preserves_dtype_int16_weights_only_True, test/test_serialization.py::TestSerialization::test_save_load_preserves_dtype_int32_weights_only_False, test/test_serialization.py::TestSerialization::test_save_load_preserves_dtype_int32_weights_only_True, test/test_serialization.py::TestSerialization::test_save_load_preserves_dtype_int64_weights_only_False, test/test_serialization.py::TestSerialization::test_save_load_preserves_dtype_int64_weights_only_True, test/test_serialization.py::TestSerialization::test_save_load_preserves_dtype_int8_weights_only_False, test/test_serialization.py::TestSerialization::test_save_load_preserves_dtype_int8_weights_only_True, test/test_serialization.py::TestSerialization::test_save_load_preserves_dtype_uint8_weights_only_False, test/test_serialization.py::TestSerialization::test_save_load_preserves_dtype_uint8_weights_only_True, test/test_serialization.py::TestSerialization::test_serialization, test/test_serialization.py::TestSerialization::test_serialization_backwards_compat, test/test_serialization.py::TestSerialization::test_serialization_backwards_compat_safe, test/test_serialization.py::TestSerialization::test_serialization_byte_literal_byte_literals0_weights_only_False, test/test_serialization.py::TestSerialization::test_serialization_byte_literal_byte_literals0_weights_only_True, test/test_serialization.py::TestSerialization::test_serialization_byte_literal_byte_literals1_weights_only_False, test/test_serialization.py::TestSerialization::test_serialization_byte_literal_byte_literals1_weights_only_True, test/test_serialization.py::TestSerialization::test_serialization_byteorder_mark, test/test_serialization.py::TestSerialization::test_serialization_dill, test/test_serialization.py::TestSerialization::test_serialization_dill_version_not_supported, test/test_serialization.py::TestSerialization::test_serialization_dtype_complex32_weights_only_False, test/test_serialization.py::TestSerialization::test_serialization_dtype_complex32_weights_only_True, test/test_serialization.py::TestSerialization::test_serialization_dtype_float8_e4m3fn_weights_only_False, test/test_serialization.py::TestSerialization::test_serialization_dtype_float8_e4m3fn_weights_only_True, test/test_serialization.py::TestSerialization::test_serialization_dtype_float8_e5m2_weights_only_False, test/test_serialization.py::TestSerialization::test_serialization_dtype_float8_e5m2_weights_only_True, test/test_serialization.py::TestSerialization::test_serialization_dtype_uint16_weights_only_False, test/test_serialization.py::TestSerialization::test_serialization_dtype_uint16_weights_only_True, test/test_serialization.py::TestSerialization::test_serialization_dtype_uint32_weights_only_False, test/test_serialization.py::TestSerialization::test_serialization_dtype_uint32_weights_only_True, test/test_serialization.py::TestSerialization::test_serialization_dtype_uint64_weights_only_False, test/test_serialization.py::TestSerialization::test_serialization_dtype_uint64_weights_only_True, test/test_serialization.py::TestSerialization::test_serialization_efficient_zerotensor_weights_only_False, test/test_serialization.py::TestSerialization::test_serialization_efficient_zerotensor_weights_only_True, test/test_serialization.py::TestSerialization::test_serialization_fake_zip, test/test_serialization.py::TestSerialization::test_serialization_filelike, test/test_serialization.py::TestSerialization::test_serialization_filelike_api_requirements, test/test_serialization.py::TestSerialization::test_serialization_filelike_exceptions, test/test_serialization.py::TestSerialization::test_serialization_filelike_missing_attrs, test/test_serialization.py::TestSerialization::test_serialization_filelike_stress, test/test_serialization.py::TestSerialization::test_serialization_filelike_uses_readinto, test/test_serialization.py::TestSerialization::test_serialization_gzip, test/test_serialization.py::TestSerialization::test_serialization_load_bom_data, test/test_serialization.py::TestSerialization::test_serialization_load_bom_data_bfloat16, test/test_serialization.py::TestSerialization::test_serialization_load_bom_data_bool, test/test_serialization.py::TestSerialization::test_serialization_load_bom_data_cdouble, test/test_serialization.py::TestSerialization::test_serialization_load_bom_data_cfloat, test/test_serialization.py::TestSerialization::test_serialization_load_bom_data_double, test/test_serialization.py::TestSerialization::test_serialization_load_bom_data_float, test/test_serialization.py::TestSerialization::test_serialization_load_bom_data_half, test/test_serialization.py::TestSerialization::test_serialization_load_bom_data_int, test/test_serialization.py::TestSerialization::test_serialization_load_bom_data_int16, test/test_serialization.py::TestSerialization::test_serialization_load_bom_data_int8, test/test_serialization.py::TestSerialization::test_serialization_load_bom_data_long, test/test_serialization.py::TestSerialization::test_serialization_load_bom_data_uint8, test/test_serialization.py::TestSerialization::test_serialization_map_location, test/test_serialization.py::TestSerialization::test_serialization_math_bits_weights_only_False, test/test_serialization.py::TestSerialization::test_serialization_math_bits_weights_only_True, test/test_serialization.py::TestSerialization::test_serialization_mmap_loading, test/test_serialization.py::TestSerialization::test_serialization_mmap_loading_ctx, test/test_serialization.py::TestSerialization::test_serialization_mmap_loading_options_path_type0_weights_only_False, test/test_serialization.py::TestSerialization::test_serialization_mmap_loading_options_path_type0_weights_only_True, test/test_serialization.py::TestSerialization::test_serialization_mmap_loading_options_path_type1_weights_only_False, test/test_serialization.py::TestSerialization::test_serialization_mmap_loading_options_path_type1_weights_only_True, test/test_serialization.py::TestSerialization::test_serialization_mmap_loading_with_map_location, test/test_serialization.py::TestSerialization::test_serialization_nested_class, test/test_serialization.py::TestSerialization::test_serialization_offset_gzip, test/test_serialization.py::TestSerialization::test_serialization_python_attr_weights_only_False, test/test_serialization.py::TestSerialization::test_serialization_python_attr_weights_only_True, test/test_serialization.py::TestSerialization::test_serialization_safe, test/test_serialization.py::TestSerialization::test_serialization_save_warnings, test/test_serialization.py::TestSerialization::test_serialization_sparse, test/test_serialization.py::TestSerialization::test_serialization_sparse_bsc_invalid, test/test_serialization.py::TestSerialization::test_serialization_sparse_bsr_invalid, test/test_serialization.py::TestSerialization::test_serialization_sparse_csc_invalid, test/test_serialization.py::TestSerialization::test_serialization_sparse_csr_invalid, test/test_serialization.py::TestSerialization::test_serialization_sparse_invalid, test/test_serialization.py::TestSerialization::test_serialization_sparse_invalid_legacy_ctor, test/test_serialization.py::TestSerialization::test_serialization_sparse_safe, test/test_serialization.py::TestSerialization::test_serialization_storage_slice, test/test_serialization.py::TestSerialization::test_serialization_uintx_intx, test/test_serialization.py::TestSerialization::test_serialization_warning_s390x, test/test_serialization.py::TestSerialization::test_serialization_with_header, test/test_serialization.py::TestSerialization::test_serialization_zipfile_actually_jit, test/test_serialization.py::TestSerialization::test_serialization_zipfile_utils, test/test_serialization.py::TestSerialization::test_serialization_zipfile_weights_only_False, test/test_serialization.py::TestSerialization::test_serialization_zipfile_weights_only_True, test/test_serialization.py::TestSerialization::test_serialize_device, test/test_serialization.py::TestSerialization::test_skip_data_load, test/test_serialization.py::TestSerialization::test_skip_data_serialization_error_cases, test/test_serialization.py::TestSerialization::test_skip_data_serialization_materialize_fake_False, test/test_serialization.py::TestSerialization::test_skip_data_serialization_materialize_fake_True, test/test_serialization.py::TestSerialization::test_skip_data_serialization_preserves_views_materialize_fake_False, test/test_serialization.py::TestSerialization::test_skip_data_serialization_preserves_views_materialize_fake_True, test/test_serialization.py::TestSerialization::test_storage_alignment, test/test_serialization.py::TestSerialization::test_use_pinned_memory_for_d2h, test/test_serialization.py::TestSerialization::test_weights_only_assert, test/test_serialization.py::TestSerialization::test_weights_only_blocked_func_error_msg, test/test_serialization.py::TestSerialization::test_weights_only_env_variables_force_weights_only_False, test/test_serialization.py::TestSerialization::test_weights_only_env_variables_force_weights_only_True, test/test_serialization.py::TestSerialization::test_weights_only_error_unsafe_global_False, test/test_serialization.py::TestSerialization::test_weights_only_error_unsafe_global_True, test/test_serialization.py::TestSerialization::test_weights_only_safe_globals_blocklist, test/test_serialization.py::TestSerialization::test_weights_only_safe_globals_build, test/test_serialization.py::TestSerialization::test_weights_only_safe_globals_build_with_slots_slots_all, test/test_serialization.py::TestSerialization::test_weights_only_safe_globals_build_with_slots_slots_some, test/test_serialization.py::TestSerialization::test_weights_only_safe_globals_newobj, test/test_serialization.py::TestSerialization::test_weights_only_with_zoneinfo_unpickle_registration_success, test/test_serialization.py::TestSubclassSerialization::test_cloned_deepcopy_requires_grad_False, test/test_serialization.py::TestSubclassSerialization::test_cloned_deepcopy_requires_grad_True, test/test_serialization.py::TestSubclassSerialization::test_empty_class_serialization, test/test_serialization.py::TestSubclassSerialization::test_safe_globals_context_manager_weights_only, test/test_serialization.py::TestSubclassSerialization::test_safe_globals_for_weights_only, test/test_serialization.py::TestSubclassSerialization::test_sets_are_loadable_with_weights_only, test/test_serialization.py::TestSubclassSerialization::test_tensor_subclass_deepcopy, test/test_serialization.py::TestSubclassSerialization::test_tensor_subclass_getstate_overwrite, test/test_serialization.py::TestSubclassSerialization::test_tensor_subclass_map_location, test/test_serialization.py::TestSubclassSerialization::test_tensor_subclass_wrapper_serialization, test/test_serialization.py::TestBothSerializationCPU::test_serialization_new_format_old_format_compat_weights_only_False_cpu, test/test_serialization.py::TestBothSerializationCPU::test_serialization_new_format_old_format_compat_weights_only_True_cpu 2025-08-14T23:54:45.9015411Z 2025-08-14T23:54:52.1982242Z Running torch_np/numpy_tests/core/test_scalar_methods 1/1 ... [2025-08-14 23:54:52.197570] 2025-08-14T23:54:52.1983210Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:54:52.1992135Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/test_scalar_methods.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-14 23:54:52.198756] 2025-08-14T23:54:57.5393973Z 2025-08-14T23:54:57.5395762Z torch_np/numpy_tests/core/test_scalar_methods 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_scalar_methods_1.1_06fc18610bb52994_.log 2025-08-14T23:54:57.5450892Z Running 77 items in this shard: test/torch_np/numpy_tests/core/test_scalar_methods.py::TestAsIntegerRatio::test_against_known_values, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestAsIntegerRatio::test_errors_ftype0, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestAsIntegerRatio::test_errors_ftype1, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestAsIntegerRatio::test_errors_ftype2, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestAsIntegerRatio::test_roundtrip_ftype0_frac_vals0_exp_vals0, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestAsIntegerRatio::test_roundtrip_ftype1_frac_vals1_exp_vals1, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestAsIntegerRatio::test_roundtrip_ftype2_frac_vals2_exp_vals2, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestAsIntegerRatio::test_simple_fractions_ftype0, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestAsIntegerRatio::test_simple_fractions_ftype1, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestAsIntegerRatio::test_simple_fractions_ftype2, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestAsIntegerRatio::test_small_ftype0_f_-0_875_ratio1, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestAsIntegerRatio::test_small_ftype0_f_0_0_ratio2, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestAsIntegerRatio::test_small_ftype0_f_0_875_ratio0, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestAsIntegerRatio::test_small_ftype0_f_11_5_ratio3, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestAsIntegerRatio::test_small_ftype1_f_-0_875_ratio1, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestAsIntegerRatio::test_small_ftype1_f_0_0_ratio2, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestAsIntegerRatio::test_small_ftype1_f_0_875_ratio0, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestAsIntegerRatio::test_small_ftype1_f_11_5_ratio3, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestAsIntegerRatio::test_small_ftype2_f_-0_875_ratio1, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestAsIntegerRatio::test_small_ftype2_f_0_0_ratio2, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestAsIntegerRatio::test_small_ftype2_f_0_875_ratio0, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestAsIntegerRatio::test_small_ftype2_f_11_5_ratio3, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestIsInteger::test_false_code_b, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestIsInteger::test_false_code_h, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestIsInteger::test_false_code_i, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestIsInteger::test_false_code_l, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestIsInteger::test_special_str_value_inf_code_d, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestIsInteger::test_special_str_value_inf_code_e, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestIsInteger::test_special_str_value_inf_code_f, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestIsInteger::test_special_str_value_nan_code_d, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestIsInteger::test_special_str_value_nan_code_e, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestIsInteger::test_special_str_value_nan_code_f, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestIsInteger::test_true_code_B, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestIsInteger::test_true_code_b, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestIsInteger::test_true_code_d, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestIsInteger::test_true_code_e, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestIsInteger::test_true_code_f, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestIsInteger::test_true_code_h, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestIsInteger::test_true_code_i, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestIsInteger::test_true_code_l, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestClassGetItem::test_abc_cls0, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestClassGetItem::test_abc_cls1, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestClassGetItem::test_abc_cls2, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestClassGetItem::test_abc_cls3, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestClassGetItem::test_abc_cls4, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestClassGetItem::test_abc_cls5, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestClassGetItem::test_abc_complexfloating, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestClassGetItem::test_abc_complexfloating_subscript_tuple_arg_len_0, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestClassGetItem::test_abc_complexfloating_subscript_tuple_arg_len_1, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestClassGetItem::test_abc_complexfloating_subscript_tuple_arg_len_2, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestClassGetItem::test_abc_complexfloating_subscript_tuple_arg_len_3, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestClassGetItem::test_abc_non_numeric_cls0, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestClassGetItem::test_concrete_code_?, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestClassGetItem::test_concrete_code_B, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestClassGetItem::test_concrete_code_D, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestClassGetItem::test_concrete_code_F, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestClassGetItem::test_concrete_code_b, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestClassGetItem::test_concrete_code_d, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestClassGetItem::test_concrete_code_e, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestClassGetItem::test_concrete_code_f, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestClassGetItem::test_concrete_code_h, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestClassGetItem::test_concrete_code_i, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestClassGetItem::test_concrete_code_l, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestClassGetItem::test_subscript_scalar, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestClassGetItem::test_subscript_tuple_arg_len_0, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestClassGetItem::test_subscript_tuple_arg_len_1, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestClassGetItem::test_subscript_tuple_arg_len_2, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestClassGetItem::test_subscript_tuple_arg_len_3, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestBitCount::test_bit_count, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestBitCount::test_small_itype0, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestBitCount::test_small_itype1, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestBitCount::test_small_itype2, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestBitCount::test_small_itype3, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestBitCount::test_small_itype4, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestBitCount::test_small_itype5, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestBitCount::test_small_itype6, test/torch_np/numpy_tests/core/test_scalar_methods.py::TestBitCount::test_small_itype7 2025-08-14T23:54:57.5502689Z 2025-08-14T23:55:03.5497651Z Running nn/test_init 1/1 ... [2025-08-14 23:55:03.549518] 2025-08-14T23:55:03.5498578Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:55:03.5506763Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'nn/test_init.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-14 23:55:03.550139] 2025-08-14T23:55:27.8945363Z 2025-08-14T23:55:27.8946203Z test_mkldnn 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_mkldnn_1.1_65dac0519cebc385_.log 2025-08-14T23:55:27.8968266Z Running 89 items in this shard: test/test_mkldnn.py::TestMkldnnCPU::test_0_dimension_tensor_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_adaptive_avg_pool2d_bf16_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_adaptive_avg_pool2d_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_add_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_autograd_from_mkldnn_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_autograd_to_mkldnn_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_avg_pool2d_bf16_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_avg_pool2d_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_avg_pool2d_stride_none_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_avg_pool3d_bf16_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_avg_pool3d_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_batch_norm_2d_bf16_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_batch_norm_2d_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_batch_norm_3d_bf16_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_batch_norm_3d_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_clone_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_conv1d_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_conv1d_functional_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_conv2d_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_conv2d_legacy_jit_model_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_conv3d_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_conv_deconv_1d_lower_precision_cpu_bfloat16, test/test_mkldnn.py::TestMkldnnCPU::test_conv_deconv_1d_lower_precision_cpu_float16, test/test_mkldnn.py::TestMkldnnCPU::test_conv_deconv_2d_lower_precision_cpu_bfloat16, test/test_mkldnn.py::TestMkldnnCPU::test_conv_deconv_2d_lower_precision_cpu_float16, test/test_mkldnn.py::TestMkldnnCPU::test_conv_deconv_3d_lower_precision_cpu_bfloat16, test/test_mkldnn.py::TestMkldnnCPU::test_conv_deconv_3d_lower_precision_cpu_float16, test/test_mkldnn.py::TestMkldnnCPU::test_conv_nhwc_fp32_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_conv_nhwc_lower_precision_cpu_bfloat16, test/test_mkldnn.py::TestMkldnnCPU::test_conv_nhwc_lower_precision_cpu_float16, test/test_mkldnn.py::TestMkldnnCPU::test_conv_transpose1d_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_conv_transpose2d_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_conv_transpose3d_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_conv_transpose_nhwc_fp32_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_conv_transpose_nhwc_lower_precision_cpu_bfloat16, test/test_mkldnn.py::TestMkldnnCPU::test_conv_transpose_nhwc_lower_precision_cpu_float16, test/test_mkldnn.py::TestMkldnnCPU::test_conversion_byte_char_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_conversion_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_copy_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_default_use_parent_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_detach_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_empty_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_gelu_bf16_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_gelu_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_generic_precision_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_is_mkldnn_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_is_mkldnn_jit_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_legacy_new_failure_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_linear_backward_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_linear_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_linear_lowp_cpu_bfloat16, test/test_mkldnn.py::TestMkldnnCPU::test_linear_lowp_cpu_float16, test/test_mkldnn.py::TestMkldnnCPU::test_linear_non_contiguous_weight_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_lstm_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_matmul_lower_precision_cpu_bfloat16, test/test_mkldnn.py::TestMkldnnCPU::test_matmul_lower_precision_cpu_float16, test/test_mkldnn.py::TestMkldnnCPU::test_max_pool2d_bf16_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_max_pool2d_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_max_pool2d_stride_none_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_max_pool3d_bf16_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_max_pool3d_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_max_pool_unsupported_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_mkldnn_conv_shapecheck_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_mkldnn_error_on_zero_stride_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_mkldnn_scaled_mm_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_mkldnn_setflags_nowarn_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_mlkdnn_get_set_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_mul_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_prelu_bf16_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_prelu_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_relu__cpu, test/test_mkldnn.py::TestMkldnnCPU::test_relu_bf16_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_relu_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_relu_inplace_bf16_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_repr_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_reshape_backward_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_reshape_blocked_format_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_reshape_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_resnet18_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_resnext50_32x4d_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_set_data_tensorimpl_type_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_sigmoid_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_softmax_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_tanh_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_transpose_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_transpose_invalid_dime_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_unsupported_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_view_cpu, test/test_mkldnn.py::TestMkldnnCPU::test_zero__cpu 2025-08-14T23:55:27.8988417Z 2025-08-14T23:55:32.9700154Z Running torch_np/numpy_tests/core/test_numerictypes 1/1 ... [2025-08-14 23:55:32.962205] 2025-08-14T23:55:32.9700725Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:55:32.9706479Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/test_numerictypes.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-14 23:55:32.962205] 2025-08-14T23:55:38.1457118Z 2025-08-14T23:55:38.1459827Z torch_np/numpy_tests/core/test_numerictypes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_numerictypes_1.1_dc797a92f79fe246_.log 2025-08-14T23:55:38.1476820Z Running 34 items in this shard: test/torch_np/numpy_tests/core/test_numerictypes.py::TestCommonType::test_scalar_loses1, test/torch_np/numpy_tests/core/test_numerictypes.py::TestCommonType::test_scalar_loses2, test/torch_np/numpy_tests/core/test_numerictypes.py::TestCommonType::test_scalar_wins, test/torch_np/numpy_tests/core/test_numerictypes.py::TestCommonType::test_scalar_wins2, test/torch_np/numpy_tests/core/test_numerictypes.py::TestCommonType::test_scalar_wins3, test/torch_np/numpy_tests/core/test_numerictypes.py::TestIsSubDType::test_both_abstract, test/torch_np/numpy_tests/core/test_numerictypes.py::TestIsSubDType::test_nondtype_nonscalartype, test/torch_np/numpy_tests/core/test_numerictypes.py::TestIsSubDType::test_same, test/torch_np/numpy_tests/core/test_numerictypes.py::TestIsSubDType::test_sibling_class, test/torch_np/numpy_tests/core/test_numerictypes.py::TestIsSubDType::test_subclass, test/torch_np/numpy_tests/core/test_numerictypes.py::TestIsSubDType::test_subclass_backwards, test/torch_np/numpy_tests/core/test_numerictypes.py::TestBitName::test_abstract, test/torch_np/numpy_tests/core/test_numerictypes.py::TestDocStrings::test_platform_dependent_aliases, test/torch_np/numpy_tests/core/test_numerictypes.py::TestScalarTypeNames::test_names_are_undersood_by_dtype_t0, test/torch_np/numpy_tests/core/test_numerictypes.py::TestScalarTypeNames::test_names_are_undersood_by_dtype_t1, test/torch_np/numpy_tests/core/test_numerictypes.py::TestScalarTypeNames::test_names_are_undersood_by_dtype_t2, test/torch_np/numpy_tests/core/test_numerictypes.py::TestScalarTypeNames::test_names_are_undersood_by_dtype_t3, test/torch_np/numpy_tests/core/test_numerictypes.py::TestScalarTypeNames::test_names_are_undersood_by_dtype_t4, test/torch_np/numpy_tests/core/test_numerictypes.py::TestScalarTypeNames::test_names_are_undersood_by_dtype_t5, test/torch_np/numpy_tests/core/test_numerictypes.py::TestScalarTypeNames::test_names_are_undersood_by_dtype_t6, test/torch_np/numpy_tests/core/test_numerictypes.py::TestScalarTypeNames::test_names_are_undersood_by_dtype_t7, test/torch_np/numpy_tests/core/test_numerictypes.py::TestScalarTypeNames::test_names_are_undersood_by_dtype_t8, test/torch_np/numpy_tests/core/test_numerictypes.py::TestScalarTypeNames::test_names_are_undersood_by_dtype_t9, test/torch_np/numpy_tests/core/test_numerictypes.py::TestScalarTypeNames::test_names_are_unique, test/torch_np/numpy_tests/core/test_numerictypes.py::TestScalarTypeNames::test_names_reflect_attributes_t0, test/torch_np/numpy_tests/core/test_numerictypes.py::TestScalarTypeNames::test_names_reflect_attributes_t1, test/torch_np/numpy_tests/core/test_numerictypes.py::TestScalarTypeNames::test_names_reflect_attributes_t2, test/torch_np/numpy_tests/core/test_numerictypes.py::TestScalarTypeNames::test_names_reflect_attributes_t3, test/torch_np/numpy_tests/core/test_numerictypes.py::TestScalarTypeNames::test_names_reflect_attributes_t4, test/torch_np/numpy_tests/core/test_numerictypes.py::TestScalarTypeNames::test_names_reflect_attributes_t5, test/torch_np/numpy_tests/core/test_numerictypes.py::TestScalarTypeNames::test_names_reflect_attributes_t6, test/torch_np/numpy_tests/core/test_numerictypes.py::TestScalarTypeNames::test_names_reflect_attributes_t7, test/torch_np/numpy_tests/core/test_numerictypes.py::TestScalarTypeNames::test_names_reflect_attributes_t8, test/torch_np/numpy_tests/core/test_numerictypes.py::TestScalarTypeNames::test_names_reflect_attributes_t9 2025-08-14T23:55:38.1492856Z 2025-08-14T23:55:43.3003073Z Running torch_np/numpy_tests/lib/test_arraypad 1/1 ... [2025-08-14 23:55:43.288727] 2025-08-14T23:55:43.3003636Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:55:43.3009477Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/lib/test_arraypad.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-14 23:55:43.288727] 2025-08-14T23:55:48.2356087Z 2025-08-14T23:55:48.2357798Z torch_np/numpy_tests/lib/test_arraypad 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.lib.test_arraypad_1.1_0418af5007dc2ff4_.log 2025-08-14T23:55:48.2361675Z Running 9 items in this shard: test/torch_np/numpy_tests/lib/test_arraypad.py::TestConstant::test_check_constant, test/torch_np/numpy_tests/lib/test_arraypad.py::TestConstant::test_check_constant_float, test/torch_np/numpy_tests/lib/test_arraypad.py::TestConstant::test_check_constant_float2, test/torch_np/numpy_tests/lib/test_arraypad.py::TestConstant::test_check_constant_float3, test/torch_np/numpy_tests/lib/test_arraypad.py::TestConstant::test_check_constant_odd_pad_amount, test/torch_np/numpy_tests/lib/test_arraypad.py::TestConstant::test_check_constant_pad_2d, test/torch_np/numpy_tests/lib/test_arraypad.py::TestConstant::test_check_constant_zeros, test/torch_np/numpy_tests/lib/test_arraypad.py::TestConstant::test_check_large_integers, test/torch_np/numpy_tests/lib/test_arraypad.py::TestConstant::test_pad_empty_dimension 2025-08-14T23:55:48.2364759Z 2025-08-14T23:55:53.3390947Z Running test_cuda_multigpu 1/1 ... [2025-08-14 23:55:53.323500] 2025-08-14T23:55:53.3391416Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:55:53.3397476Z 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-14 23:55:53.339241] 2025-08-14T23:55:58.1168957Z 2025-08-14T23:55:58.1169993Z test_cuda_multigpu 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cuda_multigpu_1.1_4b0ff9c01c318be7_.log 2025-08-14T23:55:58.1171200Z Running 0 items in this shard: 2025-08-14T23:55:58.1171439Z 2025-08-14T23:56:03.4182853Z Running test_type_promotion 1/1 ... [2025-08-14 23:56:03.417649] 2025-08-14T23:56:03.4183323Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:56:03.4189323Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_type_promotion.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-14 23:56:03.418224] 2025-08-14T23:56:12.9370026Z 2025-08-14T23:56:12.9371243Z test_type_promotion 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_type_promotion_1.1_e8e52527fbc735e3_.log 2025-08-14T23:56:12.9528077Z Running 423 items in this shard: test/test_type_promotion.py::TestTypePromotionCPU::test_add_wrapped_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_alpha_mismatch_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_alternate_result_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_bfloat16_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_booleans_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_can_cast_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_cat_different_dtypes_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_cat_out_different_dtypes_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_bool_bool_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_bool_bool_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_bool_bool_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_bool_bool_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_bool_float32_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_bool_float32_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_bool_float32_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_bool_float32_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_bool_float64_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_bool_float64_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_bool_float64_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_bool_float64_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_bool_int32_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_bool_int32_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_bool_int32_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_bool_int32_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_float32_bool_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_float32_bool_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_float32_bool_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_float32_bool_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_float32_float32_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_float32_float32_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_float32_float32_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_float32_float32_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_float32_float64_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_float32_float64_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_float32_float64_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_float32_float64_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_float32_int32_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_float32_int32_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_float32_int32_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_float32_int32_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_float64_bool_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_float64_bool_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_float64_bool_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_float64_bool_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_float64_float32_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_float64_float32_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_float64_float32_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_float64_float32_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_float64_float64_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_float64_float64_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_float64_float64_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_float64_float64_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_float64_int32_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_float64_int32_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_float64_int32_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_float64_int32_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_int32_bool_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_int32_bool_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_int32_bool_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_int32_bool_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_int32_float32_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_int32_float32_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_int32_float32_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_int32_float32_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_int32_float64_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_int32_float64_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_int32_float64_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_int32_float64_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_int32_int32_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_int32_int32_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_int32_int32_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_clamp_type_promotion_cpu_int32_int32_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_comparison_ops_with_type_promotion_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_complex_assertraises_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_complex_half_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_complex_promotion_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_complex_scalar_mult_tensor_promotion_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_computation_ignores_out_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_create_bool_tensors_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_div_promotion_cpu_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_div_promotion_cpu_int16, test/test_type_promotion.py::TestTypePromotionCPU::test_div_promotion_cpu_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_div_promotion_cpu_int64, test/test_type_promotion.py::TestTypePromotionCPU::test_div_promotion_cpu_int8, test/test_type_promotion.py::TestTypePromotionCPU::test_div_promotion_cpu_uint8, test/test_type_promotion.py::TestTypePromotionCPU::test_div_promotion_inplace_cpu_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_div_promotion_inplace_cpu_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_div_promotion_inplace_cpu_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_div_promotion_inplace_cpu_int16, test/test_type_promotion.py::TestTypePromotionCPU::test_div_promotion_inplace_cpu_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_div_promotion_inplace_cpu_int64, test/test_type_promotion.py::TestTypePromotionCPU::test_div_promotion_inplace_cpu_int8, test/test_type_promotion.py::TestTypePromotionCPU::test_div_promotion_inplace_cpu_uint8, test/test_type_promotion.py::TestTypePromotionCPU::test_div_promotion_out_cpu_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_div_promotion_out_cpu_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_div_promotion_out_cpu_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_div_promotion_out_cpu_int16, test/test_type_promotion.py::TestTypePromotionCPU::test_div_promotion_out_cpu_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_div_promotion_out_cpu_int64, test/test_type_promotion.py::TestTypePromotionCPU::test_div_promotion_out_cpu_int8, test/test_type_promotion.py::TestTypePromotionCPU::test_div_promotion_out_cpu_uint8, test/test_type_promotion.py::TestTypePromotionCPU::test_float_promotion_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_from_issue_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_half_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_indexing_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_indexing_fail_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_inplace_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_int_promotion_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_int_to_float_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_integer_addcdiv_deprecated_cpu_int16, test/test_type_promotion.py::TestTypePromotionCPU::test_integer_addcdiv_deprecated_cpu_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_integer_addcdiv_deprecated_cpu_int64, test/test_type_promotion.py::TestTypePromotionCPU::test_integer_addcdiv_deprecated_cpu_int8, test/test_type_promotion.py::TestTypePromotionCPU::test_integer_addcdiv_deprecated_cpu_uint8, test/test_type_promotion.py::TestTypePromotionCPU::test_lt_with_type_promotion_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_many_promotions_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_mixed_type_backward_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_non_promoting_ops_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_bool_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_bool_complex128, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_bool_complex64, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_bool_float16, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_bool_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_bool_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_bool_int16, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_bool_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_bool_int64, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_bool_int8, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_bool_uint8, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_complex128_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_complex128_complex128, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_complex128_complex64, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_complex128_float16, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_complex128_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_complex128_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_complex128_int16, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_complex128_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_complex128_int64, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_complex128_int8, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_complex128_uint8, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_complex64_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_complex64_complex128, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_complex64_complex64, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_complex64_float16, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_complex64_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_complex64_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_complex64_int16, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_complex64_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_complex64_int64, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_complex64_int8, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_complex64_uint8, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_float16_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_float16_complex128, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_float16_complex64, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_float16_float16, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_float16_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_float16_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_float16_int16, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_float16_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_float16_int64, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_float16_int8, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_float16_uint8, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_float32_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_float32_complex128, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_float32_complex64, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_float32_float16, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_float32_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_float32_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_float32_int16, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_float32_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_float32_int64, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_float32_int8, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_float32_uint8, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_float64_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_float64_complex128, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_float64_complex64, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_float64_float16, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_float64_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_float64_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_float64_int16, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_float64_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_float64_int64, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_float64_int8, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_float64_uint8, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int16_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int16_complex128, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int16_complex64, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int16_float16, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int16_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int16_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int16_int16, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int16_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int16_int64, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int16_int8, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int16_uint8, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int32_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int32_complex128, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int32_complex64, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int32_float16, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int32_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int32_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int32_int16, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int32_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int32_int64, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int32_int8, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int32_uint8, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int64_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int64_complex128, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int64_complex64, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int64_float16, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int64_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int64_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int64_int16, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int64_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int64_int64, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int64_int8, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int64_uint8, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int8_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int8_complex128, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int8_complex64, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int8_float16, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int8_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int8_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int8_int16, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int8_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int8_int64, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int8_int8, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_int8_uint8, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_uint8_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_uint8_complex128, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_uint8_complex64, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_uint8_float16, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_uint8_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_uint8_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_uint8_int16, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_uint8_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_uint8_int64, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_uint8_int8, test/test_type_promotion.py::TestTypePromotionCPU::test_numpy_array_binary_ufunc_promotion_cpu_uint8_uint8, test/test_type_promotion.py::TestTypePromotionCPU::test_promote_self_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_promote_types_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_bfloat16_bfloat16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_bfloat16_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_bfloat16_complex128, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_bfloat16_complex64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_bfloat16_float16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_bfloat16_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_bfloat16_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_bfloat16_int16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_bfloat16_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_bfloat16_int64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_bfloat16_int8, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_bfloat16_uint8, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_bool_bfloat16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_bool_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_bool_complex128, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_bool_complex64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_bool_float16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_bool_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_bool_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_bool_int16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_bool_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_bool_int64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_bool_int8, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_bool_uint8, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_complex128_bfloat16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_complex128_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_complex128_complex128, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_complex128_complex64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_complex128_float16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_complex128_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_complex128_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_complex128_int16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_complex128_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_complex128_int64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_complex128_int8, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_complex128_uint8, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_complex64_bfloat16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_complex64_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_complex64_complex128, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_complex64_complex64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_complex64_float16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_complex64_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_complex64_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_complex64_int16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_complex64_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_complex64_int64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_complex64_int8, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_complex64_uint8, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float16_bfloat16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float16_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float16_complex128, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float16_complex64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float16_float16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float16_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float16_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float16_int16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float16_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float16_int64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float16_int8, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float16_uint8, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float32_bfloat16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float32_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float32_complex128, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float32_complex64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float32_float16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float32_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float32_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float32_int16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float32_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float32_int64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float32_int8, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float32_uint8, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float64_bfloat16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float64_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float64_complex128, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float64_complex64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float64_float16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float64_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float64_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float64_int16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float64_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float64_int64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float64_int8, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_float64_uint8, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int16_bfloat16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int16_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int16_complex128, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int16_complex64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int16_float16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int16_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int16_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int16_int16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int16_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int16_int64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int16_int8, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int16_uint8, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int32_bfloat16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int32_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int32_complex128, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int32_complex64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int32_float16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int32_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int32_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int32_int16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int32_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int32_int64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int32_int8, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int32_uint8, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int64_bfloat16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int64_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int64_complex128, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int64_complex64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int64_float16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int64_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int64_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int64_int16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int64_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int64_int64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int64_int8, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int64_uint8, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int8_bfloat16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int8_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int8_complex128, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int8_complex64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int8_float16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int8_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int8_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int8_int16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int8_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int8_int64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int8_int8, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_int8_uint8, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_uint8_bfloat16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_uint8_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_uint8_complex128, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_uint8_complex64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_uint8_float16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_uint8_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_uint8_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_uint8_int16, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_uint8_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_uint8_int64, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_uint8_int8, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_cpu_uint8_uint8, test/test_type_promotion.py::TestTypePromotionCPU::test_result_type_tensor_vs_scalar_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_sparse_add_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_sparse_div_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_sparse_div_promotion_cpu_bool, test/test_type_promotion.py::TestTypePromotionCPU::test_sparse_div_promotion_cpu_int16, test/test_type_promotion.py::TestTypePromotionCPU::test_sparse_div_promotion_cpu_int32, test/test_type_promotion.py::TestTypePromotionCPU::test_sparse_div_promotion_cpu_int64, test/test_type_promotion.py::TestTypePromotionCPU::test_sparse_div_promotion_cpu_uint8, test/test_type_promotion.py::TestTypePromotionCPU::test_sparse_mul_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_sparse_sub_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_ternary_out_promotion_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_transpose_cpu, test/test_type_promotion.py::TestTypePromotionCPU::test_unary_op_out_casting_cpu_complex128_complex128, test/test_type_promotion.py::TestTypePromotionCPU::test_unary_op_out_casting_cpu_complex128_complex64, test/test_type_promotion.py::TestTypePromotionCPU::test_unary_op_out_casting_cpu_complex128_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_unary_op_out_casting_cpu_complex128_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_unary_op_out_casting_cpu_complex128_int64, test/test_type_promotion.py::TestTypePromotionCPU::test_unary_op_out_casting_cpu_complex64_complex128, test/test_type_promotion.py::TestTypePromotionCPU::test_unary_op_out_casting_cpu_complex64_complex64, test/test_type_promotion.py::TestTypePromotionCPU::test_unary_op_out_casting_cpu_complex64_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_unary_op_out_casting_cpu_complex64_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_unary_op_out_casting_cpu_complex64_int64, test/test_type_promotion.py::TestTypePromotionCPU::test_unary_op_out_casting_cpu_float32_complex128, test/test_type_promotion.py::TestTypePromotionCPU::test_unary_op_out_casting_cpu_float32_complex64, test/test_type_promotion.py::TestTypePromotionCPU::test_unary_op_out_casting_cpu_float32_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_unary_op_out_casting_cpu_float32_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_unary_op_out_casting_cpu_float32_int64, test/test_type_promotion.py::TestTypePromotionCPU::test_unary_op_out_casting_cpu_float64_complex128, test/test_type_promotion.py::TestTypePromotionCPU::test_unary_op_out_casting_cpu_float64_complex64, test/test_type_promotion.py::TestTypePromotionCPU::test_unary_op_out_casting_cpu_float64_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_unary_op_out_casting_cpu_float64_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_unary_op_out_casting_cpu_float64_int64, test/test_type_promotion.py::TestTypePromotionCPU::test_unary_op_out_casting_cpu_int64_complex128, test/test_type_promotion.py::TestTypePromotionCPU::test_unary_op_out_casting_cpu_int64_complex64, test/test_type_promotion.py::TestTypePromotionCPU::test_unary_op_out_casting_cpu_int64_float32, test/test_type_promotion.py::TestTypePromotionCPU::test_unary_op_out_casting_cpu_int64_float64, test/test_type_promotion.py::TestTypePromotionCPU::test_unary_op_out_casting_cpu_int64_int64, test/test_type_promotion.py::TestTypePromotionCPU::test_unsigned_cpu 2025-08-14T23:56:12.9692513Z 2025-08-14T23:56:18.1087825Z Running torch_np/numpy_tests/lib/test_arraysetops 1/1 ... [2025-08-14 23:56:18.108503] 2025-08-14T23:56:18.1088391Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:56:18.1094403Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/lib/test_arraysetops.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-14 23:56:18.109104] 2025-08-14T23:56:23.4865470Z 2025-08-14T23:56:23.4866511Z torch_np/numpy_tests/lib/test_arraysetops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.lib.test_arraysetops_1.1_a63c40095295b88b_.log 2025-08-14T23:56:23.4890403Z Running 62 items in this shard: test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_ediff1d, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_ediff1d_forbidden_type_casts_ary0_prepend0_append_nan_expected_to_end, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_ediff1d_forbidden_type_casts_ary1_prepend1_append1_expected_to_begin, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_ediff1d_forbidden_type_casts_ary2_prepend_nan_append_nan_expected_to_begin, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_ediff1d_scalar_handling_ary0_prepend_65536_append_65540_expected0, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_ediff1d_scalar_handling_ary1_prepend1_append1_expected1, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_ediff1d_scalar_handling_ary2_prepend_0_append_0_expected2, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_ediff1d_scalar_handling_ary3_prepend_3_append_-9_expected3, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_boolean_kind0, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_boolean_kind_sort, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_boolean_kind_table, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_both_arrays_are_object, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_both_arrays_have_structured_dtype, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_char_array, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_errors, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_first_array_is_object, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_hit_alternate_algorithm, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_invert_kind0, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_invert_kind_sort, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_invert_kind_table, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_kind0, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_kind_sort, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_kind_table, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_mixed_boolean_kind0, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_mixed_boolean_kind_sort, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_mixed_boolean_kind_table, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_mixed_dtype_dtype10_dtype20_kind0, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_mixed_dtype_dtype10_dtype20_kind_sort, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_mixed_dtype_dtype10_dtype20_kind_table, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_mixed_dtype_dtype11_dtype21_kind0, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_mixed_dtype_dtype11_dtype21_kind_sort, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_mixed_dtype_dtype11_dtype21_kind_table, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_ravel_kind0, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_ravel_kind_sort, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_ravel_kind_table, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_second_array_is_object, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_table_timedelta_fails, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_timedelta_kind0, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_timedelta_kind_sort, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_with_arrays_containing_tuples, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_intersect1d, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_intersect1d_array_like, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_intersect1d_indices, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_isin_kind0, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_isin_kind_sort, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_isin_kind_table, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_manyways, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_setdiff1d, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_setdiff1d_char_array, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_setdiff1d_unique, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_setxor1d, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_union1d, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestUnique::test_unique_1d, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestUnique::test_unique_1d_2, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestUnique::test_unique_1d_with_axis_axis_-1, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestUnique::test_unique_1d_with_axis_axis_0, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestUnique::test_unique_axis, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestUnique::test_unique_axis_errors, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestUnique::test_unique_axis_list, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestUnique::test_unique_axis_zeros, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestUnique::test_unique_nanequals, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestUnique::test_unique_sort_order_with_axis 2025-08-14T23:56:23.4912563Z 2025-08-14T23:56:28.8762273Z Running test_jit_autocast 1/1 ... [2025-08-14 23:56:28.873050] 2025-08-14T23:56:28.8762719Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:56:28.8769181Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_jit_autocast.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-14 23:56:28.873050] 2025-08-14T23:56:43.2338264Z 2025-08-14T23:56:43.2339270Z test_jit_autocast 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_jit_autocast_1.1_7573d127a5f74d66_.log 2025-08-14T23:56:43.2354477Z Running 54 items in this shard: test/test_jit_autocast.py::TestAutocast::test_autocast_api, test/test_jit_autocast.py::TestAutocast::test_autocast_api_not_supported, test/test_jit_autocast.py::TestAutocast::test_autocast_autodiff, test/test_jit_autocast.py::TestAutocast::test_autocast_decorator, test/test_jit_autocast.py::TestAutocast::test_autocast_decorator_outside_jit, test/test_jit_autocast.py::TestAutocast::test_autocast_mixed_dtypes, test/test_jit_autocast.py::TestAutocast::test_callees, test/test_jit_autocast.py::TestAutocast::test_callees_with_autocast_off, test/test_jit_autocast.py::TestAutocast::test_callees_with_autocast_on, test/test_jit_autocast.py::TestAutocast::test_conditional_autocast, test/test_jit_autocast.py::TestAutocast::test_control_flow, test/test_jit_autocast.py::TestAutocast::test_divergent_autocast, test/test_jit_autocast.py::TestAutocast::test_divergent_types, test/test_jit_autocast.py::TestAutocast::test_duplicate_inputs, test/test_jit_autocast.py::TestAutocast::test_eager_and_script, test/test_jit_autocast.py::TestAutocast::test_explicit_casts, test/test_jit_autocast.py::TestAutocast::test_fp32_policy, test/test_jit_autocast.py::TestAutocast::test_fp32_policy_with_fp64, test/test_jit_autocast.py::TestAutocast::test_fp32_set_opt_dtype_policy, test/test_jit_autocast.py::TestAutocast::test_fp32_set_opt_dtype_policy_fp64, test/test_jit_autocast.py::TestAutocast::test_ignore_amp, test/test_jit_autocast.py::TestAutocast::test_implicitly_nested_autocast, test/test_jit_autocast.py::TestAutocast::test_inplace, test/test_jit_autocast.py::TestAutocast::test_jit_autocast_softmax_cpu, test/test_jit_autocast.py::TestAutocast::test_jit_autocast_softmax_gpu, test/test_jit_autocast.py::TestAutocast::test_jit_call_method_under_autocast, test/test_jit_autocast.py::TestAutocast::test_jit_executor_under_autocast, test/test_jit_autocast.py::TestAutocast::test_jit_freeze_autocast_basic, test/test_jit_autocast.py::TestAutocast::test_jit_freeze_autocast_constants, test/test_jit_autocast.py::TestAutocast::test_jit_generic_autocast, test/test_jit_autocast.py::TestAutocast::test_linear_bf16, test/test_jit_autocast.py::TestAutocast::test_minimal, test/test_jit_autocast.py::TestAutocast::test_minimal_cpu, test/test_jit_autocast.py::TestAutocast::test_minimal_off, test/test_jit_autocast.py::TestAutocast::test_nested_autocast, test/test_jit_autocast.py::TestAutocast::test_promote_policy, test/test_jit_autocast.py::TestAutocast::test_promote_policy_fp64, test/test_jit_autocast.py::TestAutocast::test_reused_autocast, test/test_jit_autocast.py::TestAutocast::test_reused_autocast_expr, test/test_jit_autocast.py::TestAutocast::test_runtime_autocast_state, test/test_jit_autocast.py::TestAutocast::test_runtime_autocast_state_expr, test/test_jit_autocast.py::TestAutocast::test_script_and_tracing, test/test_jit_autocast.py::TestAutocast::test_script_and_tracing_with_autocast, test/test_jit_autocast.py::TestAutocast::test_script_module, test/test_jit_autocast.py::TestAutocast::test_tracing_and_script, test/test_jit_autocast.py::TestAutocast::test_tracing_with_autocast_and_script, test/test_jit_autocast.py::TestJitTraceAutocast::test_cat_promote, test/test_jit_autocast.py::TestJitTraceAutocast::test_generate_autocast_jit_trace_model, test/test_jit_autocast.py::TestJitTraceAutocast::test_nchw_autocast_jit_trace_model, test/test_jit_autocast.py::TestJitTraceAutocast::test_nhwc_autocast_jit_trace_model, test/test_jit_autocast.py::TestJitTraceAutocast::test_script_autocast_cpu, test/test_jit_autocast.py::TestJitTraceAutocast::test_script_autocast_cuda, test/test_jit_autocast.py::TestJitTraceAutocast::test_script_autocast_enable_and_check, test/test_jit_autocast.py::TestJitTraceAutocast::test_scripted_aliasing 2025-08-14T23:56:43.2368090Z 2025-08-14T23:56:48.4327032Z Running test_dlpack 1/1 ... [2025-08-14 23:56:48.430688] 2025-08-14T23:56:48.4327505Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:56:48.4333746Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_dlpack.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-14 23:56:48.430688] 2025-08-14T23:56:54.1011463Z 2025-08-14T23:56:54.1012509Z test_dlpack 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_dlpack_1.1_588d49078e255923_.log 2025-08-14T23:56:54.1059822Z Running 142 items in this shard: test/test_dlpack.py::TestTorchDlPackCPU::test_automatically_select_in_creation_cpu, test/test_dlpack.py::TestTorchDlPackCPU::test_copy_cpu, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_capsule_conversion_cpu_bfloat16, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_capsule_conversion_cpu_bool, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_capsule_conversion_cpu_complex128, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_capsule_conversion_cpu_complex64, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_capsule_conversion_cpu_float16, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_capsule_conversion_cpu_float32, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_capsule_conversion_cpu_float64, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_capsule_conversion_cpu_int16, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_capsule_conversion_cpu_int32, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_capsule_conversion_cpu_int64, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_capsule_conversion_cpu_int8, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_capsule_conversion_cpu_uint16, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_capsule_conversion_cpu_uint32, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_capsule_conversion_cpu_uint64, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_capsule_conversion_cpu_uint8, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_conversion_with_diff_streams_cpu_bfloat16, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_conversion_with_diff_streams_cpu_bool, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_conversion_with_diff_streams_cpu_complex128, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_conversion_with_diff_streams_cpu_complex64, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_conversion_with_diff_streams_cpu_float16, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_conversion_with_diff_streams_cpu_float32, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_conversion_with_diff_streams_cpu_float64, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_conversion_with_diff_streams_cpu_int16, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_conversion_with_diff_streams_cpu_int32, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_conversion_with_diff_streams_cpu_int64, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_conversion_with_diff_streams_cpu_int8, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_conversion_with_diff_streams_cpu_uint8, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_conversion_with_streams_cpu_bfloat16, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_conversion_with_streams_cpu_bool, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_conversion_with_streams_cpu_complex128, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_conversion_with_streams_cpu_complex64, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_conversion_with_streams_cpu_float16, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_conversion_with_streams_cpu_float32, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_conversion_with_streams_cpu_float64, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_conversion_with_streams_cpu_int16, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_conversion_with_streams_cpu_int32, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_conversion_with_streams_cpu_int64, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_conversion_with_streams_cpu_int8, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_conversion_with_streams_cpu_uint8, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_convert_default_stream_cpu, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_cuda_per_thread_stream_cpu, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_default_stream_cpu, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_export_is_conj_cpu, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_export_non_strided_cpu, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_export_requires_grad_cpu, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_invalid_cpu_stream_cpu, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_invalid_cuda_streams_cpu, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_invalid_rocm_streams_cpu, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_normalize_strides_cpu, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_protocol_conversion_cpu_bfloat16, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_protocol_conversion_cpu_bool, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_protocol_conversion_cpu_complex128, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_protocol_conversion_cpu_complex64, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_protocol_conversion_cpu_float16, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_protocol_conversion_cpu_float32, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_protocol_conversion_cpu_float64, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_protocol_conversion_cpu_int16, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_protocol_conversion_cpu_int32, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_protocol_conversion_cpu_int64, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_protocol_conversion_cpu_int8, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_protocol_conversion_cpu_uint16, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_protocol_conversion_cpu_uint32, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_protocol_conversion_cpu_uint64, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_protocol_conversion_cpu_uint8, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_shared_storage_cpu, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_tensor_invalid_stream_cpu_bfloat16, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_tensor_invalid_stream_cpu_complex128, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_tensor_invalid_stream_cpu_complex64, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_tensor_invalid_stream_cpu_float16, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_tensor_invalid_stream_cpu_float32, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_tensor_invalid_stream_cpu_float64, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_tensor_invalid_stream_cpu_int16, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_tensor_invalid_stream_cpu_int32, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_tensor_invalid_stream_cpu_int64, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_tensor_invalid_stream_cpu_int8, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_tensor_invalid_stream_cpu_uint8, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_tensor_on_different_device_cpu, test/test_dlpack.py::TestTorchDlPackCPU::test_dlpack_unsupported_dtype_error_cpu, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_cpu_bfloat16, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_cpu_bool, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_cpu_complex128, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_cpu_complex64, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_cpu_float16, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_cpu_float32, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_cpu_float64, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_cpu_int16, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_cpu_int32, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_cpu_int64, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_cpu_int8, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_cpu_uint16, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_cpu_uint32, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_cpu_uint64, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_cpu_uint8, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_dtype_cpu_bfloat16, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_dtype_cpu_bool, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_dtype_cpu_complex128, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_dtype_cpu_complex64, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_dtype_cpu_float16, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_dtype_cpu_float32, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_dtype_cpu_float64, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_dtype_cpu_int16, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_dtype_cpu_int32, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_dtype_cpu_int64, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_dtype_cpu_int8, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_dtype_cpu_uint16, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_dtype_cpu_uint32, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_dtype_cpu_uint64, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_dtype_cpu_uint8, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_noncontinguous_cpu_bfloat16, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_noncontinguous_cpu_bool, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_noncontinguous_cpu_complex128, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_noncontinguous_cpu_complex64, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_noncontinguous_cpu_float16, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_noncontinguous_cpu_float32, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_noncontinguous_cpu_float64, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_noncontinguous_cpu_int16, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_noncontinguous_cpu_int32, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_noncontinguous_cpu_int64, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_noncontinguous_cpu_int8, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_noncontinguous_cpu_uint16, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_noncontinguous_cpu_uint32, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_noncontinguous_cpu_uint64, test/test_dlpack.py::TestTorchDlPackCPU::test_from_dlpack_noncontinguous_cpu_uint8, test/test_dlpack.py::TestTorchDlPackCPU::test_max_version_cpu, test/test_dlpack.py::TestTorchDlPackCPU::test_needs_copy_error_cpu, test/test_dlpack.py::TestTorchDlPackCPU::test_no_copy_cpu, test/test_dlpack.py::TestTorchDlPackCPU::test_numpy_dlpack_protocol_conversion_cpu_complex128, test/test_dlpack.py::TestTorchDlPackCPU::test_numpy_dlpack_protocol_conversion_cpu_complex64, test/test_dlpack.py::TestTorchDlPackCPU::test_numpy_dlpack_protocol_conversion_cpu_float16, test/test_dlpack.py::TestTorchDlPackCPU::test_numpy_dlpack_protocol_conversion_cpu_float32, test/test_dlpack.py::TestTorchDlPackCPU::test_numpy_dlpack_protocol_conversion_cpu_float64, test/test_dlpack.py::TestTorchDlPackCPU::test_numpy_dlpack_protocol_conversion_cpu_int16, test/test_dlpack.py::TestTorchDlPackCPU::test_numpy_dlpack_protocol_conversion_cpu_int32, test/test_dlpack.py::TestTorchDlPackCPU::test_numpy_dlpack_protocol_conversion_cpu_int64, test/test_dlpack.py::TestTorchDlPackCPU::test_numpy_dlpack_protocol_conversion_cpu_int8, test/test_dlpack.py::TestTorchDlPackCPU::test_numpy_dlpack_protocol_conversion_cpu_uint16, test/test_dlpack.py::TestTorchDlPackCPU::test_numpy_dlpack_protocol_conversion_cpu_uint32, test/test_dlpack.py::TestTorchDlPackCPU::test_numpy_dlpack_protocol_conversion_cpu_uint64, test/test_dlpack.py::TestTorchDlPackCPU::test_numpy_dlpack_protocol_conversion_cpu_uint8, test/test_dlpack.py::TestTorchDlPackCPU::test_unsupported_device_error_cpu 2025-08-14T23:56:54.1103332Z 2025-08-14T23:56:59.2617046Z Running profiler/test_profiler_tree 1/1 ... [2025-08-14 23:56:59.261087] 2025-08-14T23:56:59.2617559Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:56:59.2623740Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'profiler/test_profiler_tree.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-14 23:56:59.262234] 2025-08-14T23:57:04.2090112Z 2025-08-14T23:57:04.2091421Z profiler/test_profiler_tree 1/1 was successful, full logs can be found in artifacts with path test/test-reports/profiler.test_profiler_tree_1.1_657ebcdc23394398_.log 2025-08-14T23:57:04.2096345Z Running 10 items in this shard: test/profiler/test_profiler_tree.py::TestProfilerTree::test_profiler_experimental_tree, test/profiler/test_profiler_tree.py::TestProfilerTree::test_profiler_experimental_tree_cuda, test/profiler/test_profiler_tree.py::TestProfilerTree::test_profiler_experimental_tree_cuda_detailed, test/profiler/test_profiler_tree.py::TestProfilerTree::test_profiler_experimental_tree_cuda_with_stream, test/profiler/test_profiler_tree.py::TestProfilerTree::test_profiler_experimental_tree_with_memory, test/profiler/test_profiler_tree.py::TestProfilerTree::test_profiler_experimental_tree_with_memory_and_stack, test/profiler/test_profiler_tree.py::TestProfilerTree::test_profiler_experimental_tree_with_record_function, test/profiler/test_profiler_tree.py::TestProfilerTree::test_profiler_experimental_tree_with_stack_and_modules, test/profiler/test_profiler_tree.py::TestProfilerTree::test_profiler_experimental_tree_with_stack_and_torch_dispatch, test/profiler/test_profiler_tree.py::TestProfilerTree::test_profiler_experimental_tree_with_stack_and_torch_function 2025-08-14T23:57:04.2100804Z 2025-08-14T23:57:09.3639729Z Running torch_np/numpy_tests/core/test_scalar_ctors 1/1 ... [2025-08-14 23:57:09.361504] 2025-08-14T23:57:09.3640294Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:57:09.3646457Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/test_scalar_ctors.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-14 23:57:09.361504] 2025-08-14T23:57:14.5639394Z 2025-08-14T23:57:14.5640710Z torch_np/numpy_tests/core/test_scalar_ctors 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_scalar_ctors_1.1_8d0995d14d1afeea_.log 2025-08-14T23:57:14.5666836Z Running 65 items in this shard: test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestFromString::test_bool, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestFromString::test_floating, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestFromString::test_floating_overflow, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestFromInt::test_intp, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestFromInt::test_uint64_from_negative, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_complex_t10_t20, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_complex_t10_t21, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_complex_t10_t22, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_complex_t11_t20, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_complex_t11_t21, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_complex_t11_t22, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_np_byte_np_byte, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_np_byte_np_int_, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_np_byte_np_intc, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_np_byte_np_longlong, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_np_byte_np_short, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_np_byte_t25, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_np_byte_t26, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_np_int__np_byte, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_np_int__np_int_, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_np_int__np_intc, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_np_int__np_longlong, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_np_int__np_short, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_np_int__t25, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_np_int__t26, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_np_intc_np_byte, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_np_intc_np_int_, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_np_intc_np_intc, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_np_intc_np_longlong, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_np_intc_np_short, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_np_intc_t25, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_np_intc_t26, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_np_longlong_np_byte, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_np_longlong_np_int_, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_np_longlong_np_intc, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_np_longlong_np_longlong, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_np_longlong_np_short, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_np_longlong_t25, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_np_longlong_t26, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_np_short_np_byte, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_np_short_np_int_, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_np_short_np_intc, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_np_short_np_longlong, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_np_short_np_short, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_np_short_t25, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_np_short_t26, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_t15_np_byte, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_t15_np_int_, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_t15_np_intc, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_t15_np_longlong, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_t15_np_short, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_t15_t25, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_integers_t15_t26, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_reals_t10_t20, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_reals_t10_t21, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_reals_t10_t22, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_reals_t10_t23, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_reals_t11_t20, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_reals_t11_t21, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_reals_t11_t22, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_reals_t11_t23, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_reals_t12_t20, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_reals_t12_t21, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_reals_t12_t22, test/torch_np/numpy_tests/core/test_scalar_ctors.py::TestArrayFromScalar::test_reals_t12_t23 2025-08-14T23:57:14.5691861Z 2025-08-14T23:57:19.7032140Z Running profiler/test_torch_tidy 1/1 ... [2025-08-14 23:57:19.702840] 2025-08-14T23:57:19.7038557Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:57:19.7039800Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'profiler/test_torch_tidy.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-14 23:57:19.703417] 2025-08-14T23:57:29.1511907Z 2025-08-14T23:57:29.1513026Z profiler/test_torch_tidy 1/1 was successful, full logs can be found in artifacts with path test/test-reports/profiler.test_torch_tidy_1.1_245a0c286c2146b8_.log 2025-08-14T23:57:29.1521324Z Running 22 items in this shard: test/profiler/test_torch_tidy.py::TestTorchTidyProfiler::test_allocation_id_uniqueness, test/profiler/test_torch_tidy.py::TestTorchTidyProfiler::test_allocation_ids, test/profiler/test_torch_tidy.py::TestTorchTidyProfiler::test_allocation_ids_with_other_ops, test/profiler/test_torch_tidy.py::TestTorchTidyProfiler::test_allocations, test/profiler/test_torch_tidy.py::TestTorchTidyProfiler::test_extra_fields, test/profiler/test_torch_tidy.py::TestTorchTidyProfiler::test_impl_reuse, test/profiler/test_torch_tidy.py::TestTorchTidyProfiler::test_mkldnn_tensors, test/profiler/test_torch_tidy.py::TestTorchTidyProfiler::test_module_and_optimizer_ids, test/profiler/test_torch_tidy.py::TestTorchTidyProfiler::test_nnmodule_params, test/profiler/test_torch_tidy.py::TestTorchTidyProfiler::test_optimizer, test/profiler/test_torch_tidy.py::TestTorchTidyProfiler::test_optimizer_parameters_adam, test/profiler/test_torch_tidy.py::TestTorchTidyProfiler::test_optimizer_parameters_sgd, test/profiler/test_torch_tidy.py::TestTorchTidyProfiler::test_pointers_and_ids, test/profiler/test_torch_tidy.py::TestTorchTidyProfiler::test_refcounts, test/profiler/test_torch_tidy.py::TestTorchTidyProfiler::test_scalar_ins, test/profiler/test_torch_tidy.py::TestTorchTidyProfiler::test_sparse_tensors, test/profiler/test_torch_tidy.py::TestTorchTidyProfiler::test_tensor_lists, test/profiler/test_torch_tidy.py::TestTorchTidyProfiler::test_tensor_properties, test/profiler/test_torch_tidy.py::TestTorchTidyProfiler::test_tensorimpl_invalidation_full, test/profiler/test_torch_tidy.py::TestTorchTidyProfiler::test_tensorimpl_invalidation_keep_alive, test/profiler/test_torch_tidy.py::TestTorchTidyProfiler::test_tensorimpl_invalidation_scalar_args, test/profiler/test_torch_tidy.py::TestTorchTidyProfiler::test_tensorimpl_invalidation_set 2025-08-14T23:57:29.1528770Z 2025-08-14T23:57:34.2661147Z Running torch_np/test_reductions 1/1 ... [2025-08-14 23:57:34.265013] 2025-08-14T23:57:34.2661755Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:57:34.2667557Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_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-14 23:57:34.265013] 2025-08-14T23:57:40.0987791Z 2025-08-14T23:57:40.0988680Z nn/test_init 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_init_1.1_fde60b8dc8a03942_.log 2025-08-14T23:57:40.0996897Z Running 30 items in this shard: test/nn/test_init.py::TestNNInit::test_calculate_gain_leaky_relu, test/nn/test_init.py::TestNNInit::test_calculate_gain_leaky_relu_only_accepts_numbers, test/nn/test_init.py::TestNNInit::test_calculate_gain_linear, test/nn/test_init.py::TestNNInit::test_calculate_gain_nonlinear, test/nn/test_init.py::TestNNInit::test_calculate_gain_only_accepts_valid_nonlinearities, test/nn/test_init.py::TestNNInit::test_constant, test/nn/test_init.py::TestNNInit::test_deprecation, test/nn/test_init.py::TestNNInit::test_dirac_identity, test/nn/test_init.py::TestNNInit::test_dirac_only_works_on_3_4_5d_inputs, test/nn/test_init.py::TestNNInit::test_dirac_properties, test/nn/test_init.py::TestNNInit::test_eye, test/nn/test_init.py::TestNNInit::test_eye_only_works_on_2d_inputs, test/nn/test_init.py::TestNNInit::test_kaiming_normal, test/nn/test_init.py::TestNNInit::test_kaiming_normal_errors_on_inputs_smaller_than_2d, test/nn/test_init.py::TestNNInit::test_kaiming_normal_warning_on_0element_tensor, test/nn/test_init.py::TestNNInit::test_kaiming_uniform, test/nn/test_init.py::TestNNInit::test_kaiming_uniform_errors_on_inputs_smaller_than_2d, test/nn/test_init.py::TestNNInit::test_kaiming_uniform_warning_on_0element_tensor, test/nn/test_init.py::TestNNInit::test_normal, test/nn/test_init.py::TestNNInit::test_ones_and_zeros, test/nn/test_init.py::TestNNInit::test_orthogonal, test/nn/test_init.py::TestNNInit::test_sparse_default_std, test/nn/test_init.py::TestNNInit::test_sparse_only_works_on_2d_inputs, test/nn/test_init.py::TestNNInit::test_trunc_normal, test/nn/test_init.py::TestNNInit::test_trunc_normal_generator, test/nn/test_init.py::TestNNInit::test_uniform, test/nn/test_init.py::TestNNInit::test_xavier_normal, test/nn/test_init.py::TestNNInit::test_xavier_normal_errors_on_inputs_smaller_than_2d, test/nn/test_init.py::TestNNInit::test_xavier_uniform, test/nn/test_init.py::TestNNInit::test_xavier_uniform_errors_on_inputs_smaller_than_2d 2025-08-14T23:57:40.1004254Z 2025-08-14T23:57:44.3207135Z 2025-08-14T23:57:44.3224152Z torch_np/test_reductions 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_reductions_1.1_2883be8172900e11_.log 2025-08-14T23:57:44.3589975Z Running 966 items in this shard: test/torch_np/test_reductions.py::TestFlatnonzero::test_basic, test/torch_np/test_reductions.py::TestAny::test_basic, test/torch_np/test_reductions.py::TestAny::test_method_vs_function, test/torch_np/test_reductions.py::TestAny::test_nd, test/torch_np/test_reductions.py::TestAll::test_basic, test/torch_np/test_reductions.py::TestAll::test_method_vs_function, test/torch_np/test_reductions.py::TestAll::test_nd, test/torch_np/test_reductions.py::TestMean::test_mean, test/torch_np/test_reductions.py::TestMean::test_mean_float16, test/torch_np/test_reductions.py::TestMean::test_mean_values, test/torch_np/test_reductions.py::TestMean::test_mean_where, test/torch_np/test_reductions.py::TestSum::test_sum, test/torch_np/test_reductions.py::TestSum::test_sum_boolean, test/torch_np/test_reductions.py::TestSum::test_sum_complex_1_dt0, test/torch_np/test_reductions.py::TestSum::test_sum_complex_1_dt1, test/torch_np/test_reductions.py::TestSum::test_sum_complex_2_dt0, test/torch_np/test_reductions.py::TestSum::test_sum_complex_2_dt1, test/torch_np/test_reductions.py::TestSum::test_sum_dtypes_2, test/torch_np/test_reductions.py::TestSum::test_sum_dtypes_warnings, test/torch_np/test_reductions.py::TestSum::test_sum_initial, test/torch_np/test_reductions.py::TestSum::test_sum_stability, test/torch_np/test_reductions.py::TestSum::test_sum_where, test/torch_np/test_reductions.py::TestGenericReductions::test_array_axis_func0, test/torch_np/test_reductions.py::TestGenericReductions::test_array_axis_func1, test/torch_np/test_reductions.py::TestGenericReductions::test_array_axis_func10, test/torch_np/test_reductions.py::TestGenericReductions::test_array_axis_func11, test/torch_np/test_reductions.py::TestGenericReductions::test_array_axis_func2, test/torch_np/test_reductions.py::TestGenericReductions::test_array_axis_func3, test/torch_np/test_reductions.py::TestGenericReductions::test_array_axis_func4, test/torch_np/test_reductions.py::TestGenericReductions::test_array_axis_func5, test/torch_np/test_reductions.py::TestGenericReductions::test_array_axis_func6, test/torch_np/test_reductions.py::TestGenericReductions::test_array_axis_func7, test/torch_np/test_reductions.py::TestGenericReductions::test_array_axis_func8, test/torch_np/test_reductions.py::TestGenericReductions::test_array_axis_func9, test/torch_np/test_reductions.py::TestGenericReductions::test_axis_bad_tuple_func0, test/torch_np/test_reductions.py::TestGenericReductions::test_axis_bad_tuple_func1, test/torch_np/test_reductions.py::TestGenericReductions::test_axis_bad_tuple_func10, test/torch_np/test_reductions.py::TestGenericReductions::test_axis_bad_tuple_func11, test/torch_np/test_reductions.py::TestGenericReductions::test_axis_bad_tuple_func2, test/torch_np/test_reductions.py::TestGenericReductions::test_axis_bad_tuple_func3, test/torch_np/test_reductions.py::TestGenericReductions::test_axis_bad_tuple_func4, test/torch_np/test_reductions.py::TestGenericReductions::test_axis_bad_tuple_func5, test/torch_np/test_reductions.py::TestGenericReductions::test_axis_bad_tuple_func6, test/torch_np/test_reductions.py::TestGenericReductions::test_axis_bad_tuple_func7, test/torch_np/test_reductions.py::TestGenericReductions::test_axis_bad_tuple_func8, test/torch_np/test_reductions.py::TestGenericReductions::test_axis_bad_tuple_func9, test/torch_np/test_reductions.py::TestGenericReductions::test_axis_empty_generic_func0, test/torch_np/test_reductions.py::TestGenericReductions::test_axis_empty_generic_func1, test/torch_np/test_reductions.py::TestGenericReductions::test_axis_empty_generic_func10, test/torch_np/test_reductions.py::TestGenericReductions::test_axis_empty_generic_func11, test/torch_np/test_reductions.py::TestGenericReductions::test_axis_empty_generic_func2, test/torch_np/test_reductions.py::TestGenericReductions::test_axis_empty_generic_func3, test/torch_np/test_reductions.py::TestGenericReductions::test_axis_empty_generic_func4, test/torch_np/test_reductions.py::TestGenericReductions::test_axis_empty_generic_func5, test/torch_np/test_reductions.py::TestGenericReductions::test_axis_empty_generic_func6, test/torch_np/test_reductions.py::TestGenericReductions::test_axis_empty_generic_func7, test/torch_np/test_reductions.py::TestGenericReductions::test_axis_empty_generic_func8, test/torch_np/test_reductions.py::TestGenericReductions::test_axis_empty_generic_func9, test/torch_np/test_reductions.py::TestGenericReductions::test_bad_axis_func0, test/torch_np/test_reductions.py::TestGenericReductions::test_bad_axis_func1, test/torch_np/test_reductions.py::TestGenericReductions::test_bad_axis_func10, test/torch_np/test_reductions.py::TestGenericReductions::test_bad_axis_func11, test/torch_np/test_reductions.py::TestGenericReductions::test_bad_axis_func2, test/torch_np/test_reductions.py::TestGenericReductions::test_bad_axis_func3, test/torch_np/test_reductions.py::TestGenericReductions::test_bad_axis_func4, test/torch_np/test_reductions.py::TestGenericReductions::test_bad_axis_func5, test/torch_np/test_reductions.py::TestGenericReductions::test_bad_axis_func6, test/torch_np/test_reductions.py::TestGenericReductions::test_bad_axis_func7, test/torch_np/test_reductions.py::TestGenericReductions::test_bad_axis_func8, test/torch_np/test_reductions.py::TestGenericReductions::test_bad_axis_func9, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis5_func0, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis5_func1, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis5_func10, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis5_func11, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis5_func2, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis5_func3, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis5_func4, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis5_func5, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis5_func6, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis5_func7, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis5_func8, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis5_func9, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis6_func0, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis6_func1, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis6_func10, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis6_func11, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis6_func2, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis6_func3, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis6_func4, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis6_func5, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis6_func6, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis6_func7, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis6_func8, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis6_func9, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis7_func0, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis7_func1, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis7_func10, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis7_func11, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis7_func2, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis7_func3, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis7_func4, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis7_func5, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis7_func6, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis7_func7, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis7_func8, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis7_func9, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis8_func0, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis8_func1, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis8_func10, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis8_func11, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis8_func2, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis8_func3, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis8_func4, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis8_func5, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis8_func6, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis8_func7, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis8_func8, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis8_func9, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_-1_func0, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_-1_func1, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_-1_func10, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_-1_func11, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_-1_func2, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_-1_func3, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_-1_func4, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_-1_func5, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_-1_func6, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_-1_func7, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_-1_func8, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_-1_func9, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_-2_func0, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_-2_func1, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_-2_func10, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_-2_func11, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_-2_func2, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_-2_func3, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_-2_func4, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_-2_func5, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_-2_func6, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_-2_func7, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_-2_func8, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_-2_func9, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_0_func0, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_0_func1, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_0_func10, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_0_func11, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_0_func2, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_0_func3, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_0_func4, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_0_func5, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_0_func6, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_0_func7, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_0_func8, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_0_func9, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_1_func0, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_1_func1, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_1_func10, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_1_func11, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_1_func2, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_1_func3, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_1_func4, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_1_func5, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_1_func6, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_1_func7, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_1_func8, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_1_func9, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_2_func0, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_2_func1, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_2_func10, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_2_func11, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_2_func2, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_2_func3, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_2_func4, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_2_func5, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_2_func6, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_2_func7, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_2_func8, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_2_func9, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_none_func0, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_none_func1, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_none_func10, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_none_func11, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_none_func2, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_none_func3, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_none_func4, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_none_func5, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_none_func6, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_none_func7, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_none_func8, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_generic_axis_none_func9, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func0_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func0_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func0_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func0_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func0_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func0_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func0_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func0_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func0_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func10_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func10_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func10_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func10_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func10_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func10_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func10_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func10_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func10_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func11_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func11_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func11_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func11_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func11_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func11_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func11_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func11_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func11_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func1_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func1_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func1_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func1_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func1_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func1_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func1_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func1_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func1_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func2_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func2_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func2_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func2_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func2_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func2_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func2_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func2_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func2_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func3_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func3_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func3_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func3_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func3_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func3_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func3_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func3_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func3_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func4_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func4_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func4_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func4_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func4_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func4_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func4_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func4_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func4_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func5_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func5_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func5_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func5_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func5_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func5_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func5_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func5_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func5_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func6_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func6_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func6_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func6_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func6_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func6_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func6_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func6_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func6_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func7_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func7_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func7_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func7_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func7_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func7_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func7_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func7_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func7_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func8_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func8_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func8_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func8_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func8_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func8_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func8_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func8_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func8_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func9_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func9_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func9_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func9_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func9_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func9_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func9_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func9_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_keepdims_out_func9_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func0_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func0_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func0_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func0_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func0_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func0_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func0_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func0_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func0_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func10_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func10_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func10_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func10_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func10_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func10_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func10_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func10_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func10_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func11_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func11_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func11_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func11_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func11_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func11_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func11_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func11_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func11_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func1_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func1_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func1_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func1_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func1_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func1_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func1_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func1_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func1_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func2_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func2_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func2_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func2_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func2_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func2_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func2_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func2_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func2_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func3_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func3_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func3_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func3_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func3_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func3_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func3_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func3_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func3_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func4_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func4_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func4_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func4_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func4_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func4_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func4_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func4_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func4_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func5_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func5_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func5_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func5_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func5_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func5_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func5_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func5_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func5_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func6_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func6_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func6_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func6_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func6_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func6_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func6_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func6_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func6_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func7_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func7_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func7_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func7_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func7_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func7_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func7_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func7_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func7_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func8_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func8_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func8_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func8_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func8_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func8_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func8_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func8_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func8_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func9_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func9_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func9_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func9_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func9_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func9_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func9_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func9_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype0_func9_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func0_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func0_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func0_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func0_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func0_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func0_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func0_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func0_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func0_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func10_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func10_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func10_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func10_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func10_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func10_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func10_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func10_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func10_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func11_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func11_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func11_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func11_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func11_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func11_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func11_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func11_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func11_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func1_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func1_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func1_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func1_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func1_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func1_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func1_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func1_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func1_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func2_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func2_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func2_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func2_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func2_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func2_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func2_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func2_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func2_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func3_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func3_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func3_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func3_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func3_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func3_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func3_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func3_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func3_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func4_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func4_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func4_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func4_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func4_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func4_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func4_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func4_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func4_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func5_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func5_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func5_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func5_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func5_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func5_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func5_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func5_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func5_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func6_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func6_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func6_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func6_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func6_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func6_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func6_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func6_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func6_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func7_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func7_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func7_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func7_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func7_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func7_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func7_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func7_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func7_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func8_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func8_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func8_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func8_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func8_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func8_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func8_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func8_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func8_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func9_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func9_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func9_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func9_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func9_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func9_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func9_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func9_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_float64_func9_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func0_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func0_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func0_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func0_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func0_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func0_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func0_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func0_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func0_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func10_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func10_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func10_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func10_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func10_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func10_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func10_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func10_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func10_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func11_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func11_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func11_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func11_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func11_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func11_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func11_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func11_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func11_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func1_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func1_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func1_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func1_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func1_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func1_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func1_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func1_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func1_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func2_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func2_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func2_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func2_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func2_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func2_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func2_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func2_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func2_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func3_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func3_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func3_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func3_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func3_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func3_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func3_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func3_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func3_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func4_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func4_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func4_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func4_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func4_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func4_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func4_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func4_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func4_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func5_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func5_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func5_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func5_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func5_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func5_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func5_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func5_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func5_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func6_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func6_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func6_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func6_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func6_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func6_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func6_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func6_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func6_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func7_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func7_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func7_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func7_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func7_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func7_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func7_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func7_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func7_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func8_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func8_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func8_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func8_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func8_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func8_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func8_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func8_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func8_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func9_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func9_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func9_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func9_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func9_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func9_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func9_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func9_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_False_dtype_int32_func9_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func0_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func0_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func0_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func0_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func0_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func0_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func0_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func0_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func0_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func10_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func10_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func10_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func10_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func10_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func10_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func10_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func10_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func10_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func11_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func11_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func11_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func11_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func11_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func11_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func11_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func11_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func11_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func1_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func1_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func1_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func1_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func1_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func1_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func1_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func1_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func1_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func2_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func2_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func2_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func2_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func2_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func2_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func2_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func2_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func2_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func3_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func3_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func3_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func3_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func3_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func3_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func3_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func3_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func3_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func4_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func4_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func4_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func4_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func4_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func4_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func4_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func4_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func4_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func5_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func5_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func5_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func5_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func5_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func5_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func5_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func5_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func5_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func6_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func6_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func6_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func6_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func6_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func6_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func6_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func6_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func6_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func7_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func7_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func7_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func7_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func7_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func7_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func7_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func7_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func7_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func8_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func8_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func8_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func8_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func8_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func8_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func8_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func8_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func8_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func9_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func9_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func9_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func9_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func9_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func9_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func9_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func9_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype0_func9_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func0_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func0_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func0_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func0_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func0_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func0_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func0_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func0_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func0_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func10_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func10_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func10_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func10_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func10_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func10_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func10_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func10_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func10_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func11_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func11_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func11_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func11_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func11_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func11_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func11_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func11_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func11_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func1_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func1_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func1_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func1_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func1_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func1_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func1_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func1_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func1_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func2_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func2_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func2_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func2_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func2_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func2_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func2_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func2_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func2_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func3_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func3_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func3_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func3_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func3_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func3_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func3_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func3_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func3_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func4_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func4_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func4_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func4_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func4_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func4_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func4_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func4_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func4_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func5_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func5_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func5_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func5_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func5_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func5_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func5_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func5_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func5_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func6_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func6_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func6_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func6_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func6_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func6_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func6_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func6_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func6_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func7_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func7_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func7_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func7_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func7_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func7_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func7_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func7_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func7_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func8_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func8_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func8_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func8_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func8_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func8_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func8_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func8_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func8_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func9_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func9_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func9_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func9_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func9_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func9_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func9_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func9_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_float64_func9_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func0_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func0_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func0_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func0_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func0_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func0_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func0_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func0_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func0_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func10_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func10_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func10_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func10_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func10_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func10_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func10_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func10_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func10_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func11_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func11_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func11_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func11_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func11_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func11_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func11_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func11_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func11_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func1_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func1_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func1_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func1_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func1_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func1_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func1_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func1_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func1_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func2_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func2_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func2_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func2_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func2_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func2_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func2_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func2_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func2_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func3_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func3_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func3_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func3_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func3_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func3_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func3_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func3_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func3_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func4_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func4_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func4_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func4_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func4_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func4_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func4_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func4_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func4_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func5_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func5_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func5_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func5_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func5_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func5_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func5_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func5_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func5_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func6_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func6_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func6_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func6_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func6_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func6_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func6_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func6_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func6_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func7_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func7_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func7_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func7_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func7_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func7_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func7_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func7_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func7_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func8_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func8_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func8_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func8_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func8_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func8_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func8_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func8_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func8_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func9_axis5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func9_axis6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func9_axis7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func9_axis8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func9_axis_-1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func9_axis_-2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func9_axis_0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func9_axis_1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_axis_keepdims_True_dtype_int32_func9_axis_2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_scalar_func0, test/torch_np/test_reductions.py::TestGenericReductions::test_out_scalar_func1, test/torch_np/test_reductions.py::TestGenericReductions::test_out_scalar_func10, test/torch_np/test_reductions.py::TestGenericReductions::test_out_scalar_func11, test/torch_np/test_reductions.py::TestGenericReductions::test_out_scalar_func2, test/torch_np/test_reductions.py::TestGenericReductions::test_out_scalar_func3, test/torch_np/test_reductions.py::TestGenericReductions::test_out_scalar_func4, test/torch_np/test_reductions.py::TestGenericReductions::test_out_scalar_func5, test/torch_np/test_reductions.py::TestGenericReductions::test_out_scalar_func6, test/torch_np/test_reductions.py::TestGenericReductions::test_out_scalar_func7, test/torch_np/test_reductions.py::TestGenericReductions::test_out_scalar_func8, test/torch_np/test_reductions.py::TestGenericReductions::test_out_scalar_func9, test/torch_np/test_reductions.py::TestGenericCumSumProd::test_array_axis_func0, test/torch_np/test_reductions.py::TestGenericCumSumProd::test_array_axis_func1, test/torch_np/test_reductions.py::TestGenericCumSumProd::test_axis_bad_tuple_func0, test/torch_np/test_reductions.py::TestGenericCumSumProd::test_axis_bad_tuple_func1, test/torch_np/test_reductions.py::TestGenericCumSumProd::test_axis_empty_generic_func0, test/torch_np/test_reductions.py::TestGenericCumSumProd::test_axis_empty_generic_func1, test/torch_np/test_reductions.py::TestGenericCumSumProd::test_bad_axis_func0, test/torch_np/test_reductions.py::TestGenericCumSumProd::test_bad_axis_func1 2025-08-14T23:57:44.3953195Z 2025-08-14T23:57:45.2882544Z Running lazy/test_reuse_ir 1/1 ... [2025-08-14 23:57:45.287920] 2025-08-14T23:57:45.2883136Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:57:45.2889252Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'lazy/test_reuse_ir.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-14 23:57:45.288509] 2025-08-14T23:57:49.6372223Z Running test_functional_autograd_benchmark 1/1 ... [2025-08-14 23:57:49.637032] 2025-08-14T23:57:49.6372832Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:57:49.6378928Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_functional_autograd_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-14 23:57:49.637662] 2025-08-14T23:57:49.9156155Z 2025-08-14T23:57:49.9157159Z lazy/test_reuse_ir 1/1 was successful, full logs can be found in artifacts with path test/test-reports/lazy.test_reuse_ir_1.1_729a5b22df369a8b_.log 2025-08-14T23:57:49.9176868Z Running 4 items in this shard: test/lazy/test_reuse_ir.py::TestLazyReuseIr::testAdd, test/lazy/test_reuse_ir.py::TestLazyReuseIr::testAddSub, test/lazy/test_reuse_ir.py::TestLazyReuseIr::testAddSubFallback, test/lazy/test_reuse_ir.py::TestLazyReuseIr::testBatchNorm 2025-08-14T23:57:49.9178683Z 2025-08-14T23:57:55.1540040Z Running test_prims 1/1 ... [2025-08-14 23:57:55.153549] 2025-08-14T23:57:55.1540530Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:57:55.1547470Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_prims.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-14 23:57:55.154122] 2025-08-14T23:58:03.1032657Z 2025-08-14T23:58:03.1033754Z test_prims 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_prims_1.1_a6c11b48cc91f76c_.log 2025-08-14T23:58:03.1040155Z Running 24 items in this shard: test/test_prims.py::TestPrimsBasic::test_check_deprecation_warning, test/test_prims.py::TestPrimsBasic::test_clone_complex, test/test_prims.py::TestPrimsBasic::test_mul_complex, test/test_prims.py::TestPrimsBasic::test_torch_ops, test/test_prims.py::TestPrimsCPU::test_aten_overload_to_prims_cpu, test/test_prims.py::TestPrimsCPU::test_broadcast_in_dim_cpu_float32, test/test_prims.py::TestPrimsCPU::test_broadcast_in_dim_sum_cpu_float32, test/test_prims.py::TestPrimsCPU::test_cbrt_prim_cpu_float64, test/test_prims.py::TestPrimsCPU::test_cbrt_prim_cpu_int64, test/test_prims.py::TestPrimsCPU::test_collapse_cpu_float32, test/test_prims.py::TestPrimsCPU::test_functional_rng_wrappers_cpu_float32, test/test_prims.py::TestPrimsCPU::test_memory_format_strides_cpu_float32, test/test_prims.py::TestPrimsCPU::test_philox_rand_cpu_float32, test/test_prims.py::TestPrimsCPU::test_reshape_view_method_cpu_float32, test/test_prims.py::TestPrimsCPU::test_var_correction_0_cpu_float32, test/test_prims.py::TestPrimsCPU::test_var_correction_1_cpu_float32, test/test_prims.py::TestRefsCPU::test_constant_pad_nd_memory_format_cpu_float32, test/test_prims.py::TestRefsCPU::test_inferred_tags_cpu, test/test_prims.py::TestRefsCPU::test_infinite_loop_from_py_dispatcher_cpu, test/test_prims.py::TestRefsCPU::test_linspace_with_complex_input_cpu, test/test_prims.py::TestRefsCPU::test_logspace_with_complex_input_cpu, test/test_prims.py::TestRefsCPU::test_unbind_cpu, test/test_prims.py::TestDecompCPU::test_decomposition_method_vararg_ones_cpu_float32, test/test_prims.py::TestDecompCPU::test_decomposition_method_vararg_permute_cpu_float32 2025-08-14T23:58:03.1046744Z 2025-08-14T23:58:06.5447060Z 2025-08-14T23:58:06.5447826Z test_unary_ufuncs 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_unary_ufuncs_1.1_982531857653496a_.log 2025-08-14T23:58:07.5565565Z Running 24601 items in this shard: test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_abs_angle_complex_to_float_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_abs_angle_complex_to_float_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_abs_big_number_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_abs_signed_zero_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_abs_signed_zero_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_abs_zero_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_abs_zero_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_bfloat16_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_bfloat16_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_bfloat16_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_bfloat16_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_bfloat16_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_bfloat16_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_bfloat16_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_bfloat16_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_bfloat16_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_bfloat16_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_bfloat16_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_bfloat16_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_bfloat16_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_bool_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_bool_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_bool_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_bool_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_bool_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_bool_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_bool_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_bool_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_bool_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_bool_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_bool_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_bool_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_bool_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_byte_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_byte_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_byte_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_byte_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_byte_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_byte_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_byte_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_byte_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_byte_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_byte_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_byte_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_byte_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_cdouble_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_cdouble_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_cdouble_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_cdouble_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_cdouble_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_cdouble_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_cdouble_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_cdouble_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_cdouble_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_cdouble_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_cdouble_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_cdouble_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_cdouble_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_cfloat_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_cfloat_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_cfloat_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_cfloat_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_cfloat_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_cfloat_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_cfloat_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_cfloat_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_cfloat_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_cfloat_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_cfloat_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_cfloat_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_cfloat_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_chalf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_chalf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_chalf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_chalf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_chalf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_chalf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_chalf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_chalf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_chalf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_chalf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_chalf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_chalf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_chalf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_char_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_char_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_char_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_char_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_char_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_char_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_char_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_char_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_char_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_char_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_char_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_char_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_char_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_double_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_double_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_double_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_double_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_double_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_double_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_double_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_double_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_double_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_double_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_double_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_double_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_double_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_float_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_float_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_float_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_float_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_float_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_float_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_float_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_float_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_float_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_float_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_float_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_float_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_float_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_half_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_half_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_half_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_half_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_half_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_half_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_half_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_half_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_half_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_half_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_half_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_half_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_int_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_int_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_int_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_int_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_int_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_int_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_int_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_int_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_int_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_int_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_int_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_int_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_long_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_long_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_long_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_long_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_long_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_long_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_long_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_long_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_long_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_long_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_long_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_long_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_long_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_short_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_short_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_short_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_short_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_short_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_short_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_short_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_short_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_short_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_short_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_short_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_short_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_abs_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_abs_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_abs_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_abs_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_abs_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_abs_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_abs_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_abs_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_abs_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_abs_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_abs_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_abs_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_acos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_acos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_acos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_acos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_acos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_acos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_acos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_acos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_acos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_acos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_acos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_acos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_acosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_acosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_acosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_acosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_acosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_acosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_acosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_acosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_acosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_acosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_acosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_acosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_asin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_asin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_asin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_asin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_asin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_asin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_asin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_asin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_asin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_asin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_asin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_asin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_asinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_asinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_asinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_asinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_asinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_asinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_asinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_asinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_asinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_asinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_asinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_asinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_atan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_atan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_atan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_atan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_atan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_atan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_atan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_atan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_atan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_atan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_atan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_atan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_atanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_atanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_atanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_atanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_atanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_atanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_atanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_atanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_atanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_atanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_atanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_atanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_bitwise_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_bitwise_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_bitwise_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_bitwise_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_bitwise_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_bitwise_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_ceil_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_ceil_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_ceil_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_ceil_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_ceil_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_ceil_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_ceil_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_ceil_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_ceil_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_conj_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_conj_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_conj_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_conj_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_conj_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_conj_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_conj_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_conj_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_conj_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_conj_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_conj_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_conj_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_conj_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_conj_physical_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_conj_physical_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_conj_physical_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_conj_physical_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_conj_physical_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_conj_physical_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_conj_physical_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_conj_physical_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_conj_physical_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_conj_physical_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_conj_physical_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_conj_physical_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_conj_physical_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_cos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_cos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_cos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_cos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_cos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_cos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_cos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_cos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_cos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_cos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_cos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_cos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_cosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_cosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_cosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_cosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_cosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_cosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_cosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_cosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_cosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_cosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_cosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_cosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_deg2rad_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_deg2rad_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_deg2rad_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_deg2rad_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_deg2rad_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_deg2rad_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_deg2rad_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_deg2rad_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_deg2rad_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_deg2rad_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_digamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_digamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_digamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_digamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_digamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_digamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_digamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_digamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_digamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_digamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_erf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_erf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_erf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_erf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_erf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_erf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_erf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_erf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_erf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_erf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_erfc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_erfc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_erfc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_erfc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_erfc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_erfc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_erfc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_erfc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_erfc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_erfc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_erfinv_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_erfinv_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_erfinv_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_erfinv_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_erfinv_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_erfinv_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_erfinv_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_erfinv_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_erfinv_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_erfinv_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_exp2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_exp2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_exp2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_exp2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_exp2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_exp2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_exp2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_exp2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_exp2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_exp2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_exp2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_exp2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_exp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_exp_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_exp_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_exp_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_exp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_exp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_exp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_exp_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_exp_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_exp_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_exp_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_exp_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_expm1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_expm1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_expm1_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_expm1_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_expm1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_expm1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_expm1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_expm1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_expm1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_expm1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_expm1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_expm1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_fill_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_fill_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_fill_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_fill_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_fill_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_fill_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_fill_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_fill_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_fill_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_fill_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_fill_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_fill_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_fill_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_floor_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_floor_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_floor_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_floor_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_floor_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_floor_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_floor_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_floor_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_floor_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_frac_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_frac_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_frac_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_frac_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_frexp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_frexp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_frexp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_frexp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_i0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_i0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_i0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_i0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_i0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_i0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_i0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_i0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_imag_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_imag_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_imag_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isfinite_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isfinite_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isfinite_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isfinite_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isfinite_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isfinite_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isfinite_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isfinite_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isfinite_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isfinite_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isfinite_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isfinite_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isfinite_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isinf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isinf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isinf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isnan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isnan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isnan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isnan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isnan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isnan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isnan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isnan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isnan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isnan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isnan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isnan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isneginf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isneginf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isneginf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isneginf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isneginf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isneginf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isneginf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isneginf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isneginf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isneginf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isposinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isposinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isposinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isposinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isposinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isposinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isposinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isposinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isposinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isposinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isreal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isreal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isreal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isreal_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isreal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isreal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isreal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isreal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isreal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isreal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isreal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isreal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_isreal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_lgamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_lgamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_lgamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_lgamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_lgamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_lgamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_lgamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_lgamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_lgamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_lgamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log10_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log10_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log10_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log10_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log10_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log10_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log10_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log10_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log10_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log10_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log10_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log10_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log1p_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log1p_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log1p_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log1p_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log1p_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log1p_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log1p_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log1p_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log1p_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log1p_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log1p_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log1p_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_log_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_logical_not_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_logical_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_logical_not_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_logical_not_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_logical_not_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_logical_not_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_logical_not_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_logical_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_logical_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_logical_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_logical_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_logical_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nan_to_num_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nan_to_num_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nan_to_num_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nan_to_num_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nan_to_num_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nan_to_num_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nan_to_num_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nan_to_num_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nan_to_num_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nan_to_num_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_neg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_neg_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_neg_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_neg_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_neg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_neg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_neg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_neg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_neg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_neg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_neg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_neg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_celu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_celu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_celu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_celu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_elu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_elu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_elu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_elu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_hardshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_hardshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_hardshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_hardshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_hardtanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_hardtanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_hardtanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_hardtanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_hardtanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_hardtanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_hardtanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_hardtanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_mish_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_mish_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_mish_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_mish_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_prelu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_prelu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_prelu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_prelu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_relu6_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_relu6_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_relu6_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_relu6_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_relu6_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_relu6_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_relu6_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_relu6_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_relu6_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_relu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_relu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_relu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_relu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_relu_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_relu_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_relu_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_relu_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_relu_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_selu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_selu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_selu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_selu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_softplus_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_softplus_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_softplus_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_softplus_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_softshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_softshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_softshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_softshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_tanhshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_tanhshrink_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_tanhshrink_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_tanhshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_tanhshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_tanhshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_tanhshrink_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_tanhshrink_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_tanhshrink_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_tanhshrink_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_tanhshrink_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_threshold_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_threshold_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_threshold_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_threshold_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_threshold_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_threshold_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_threshold_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_threshold_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_nn_functional_threshold_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_positive_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_positive_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_positive_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_positive_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_positive_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_positive_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_positive_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_positive_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_positive_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_positive_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_positive_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_positive_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_rad2deg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_rad2deg_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_rad2deg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_rad2deg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_rad2deg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_rad2deg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_rad2deg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_rad2deg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_rad2deg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_rad2deg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_real_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_real_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_real_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_real_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_real_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_real_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_real_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_real_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_real_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_real_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_real_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_real_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_real_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_reciprocal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_reciprocal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_reciprocal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_reciprocal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_reciprocal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_reciprocal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_reciprocal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_reciprocal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_reciprocal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_reciprocal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_reciprocal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_reciprocal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_round_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_round_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_round_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_round_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_round_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_round_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_round_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_round_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_round_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_rsqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_rsqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_rsqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_rsqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_rsqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_rsqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_rsqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_rsqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_rsqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_rsqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_rsqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_rsqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sgn_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sgn_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sgn_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sgn_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sgn_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sgn_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sgn_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sgn_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sgn_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sgn_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sgn_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sgn_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sgn_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sigmoid_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sigmoid_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sigmoid_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sigmoid_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sigmoid_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sigmoid_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sigmoid_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sigmoid_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sign_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sign_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sign_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sign_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sign_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sign_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_signbit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_signbit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_signbit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_signbit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_signbit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_signbit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_signbit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_signbit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_signbit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_signbit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sinc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sinc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sinc_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sinc_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sinc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sinc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sinc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sinc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sinc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sinc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sinc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sinc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_bessel_j1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_bessel_j1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_bessel_j1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_bessel_j1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_bessel_j1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_bessel_j1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_bessel_j1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_bessel_j1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_entr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_entr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_entr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_entr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_entr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_entr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_entr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_entr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_entr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_entr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_erfcx_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_erfcx_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_erfcx_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_erfcx_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_erfcx_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_erfcx_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_erfcx_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_erfcx_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_i0e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_i0e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_i0e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_i0e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_i0e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_i0e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_i0e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_i0e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_i0e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_i0e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_i1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_i1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_i1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_i1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_i1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_i1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_i1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_i1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_i1e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_i1e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_i1e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_i1e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_i1e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_i1e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_i1e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_i1e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_i1e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_i1e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_log_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_log_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_log_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_log_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_log_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_log_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_log_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_log_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_logit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_logit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_logit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_logit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_logit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_logit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_logit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_logit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_logit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_logit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_multigammaln_mvlgamma_p_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_multigammaln_mvlgamma_p_1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_multigammaln_mvlgamma_p_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_multigammaln_mvlgamma_p_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_multigammaln_mvlgamma_p_1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_multigammaln_mvlgamma_p_1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_multigammaln_mvlgamma_p_1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_multigammaln_mvlgamma_p_1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_multigammaln_mvlgamma_p_1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_multigammaln_mvlgamma_p_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_multigammaln_mvlgamma_p_3_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_multigammaln_mvlgamma_p_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_multigammaln_mvlgamma_p_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_multigammaln_mvlgamma_p_3_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_multigammaln_mvlgamma_p_3_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_multigammaln_mvlgamma_p_3_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_multigammaln_mvlgamma_p_3_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_multigammaln_mvlgamma_p_3_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_multigammaln_mvlgamma_p_5_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_multigammaln_mvlgamma_p_5_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_multigammaln_mvlgamma_p_5_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_multigammaln_mvlgamma_p_5_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_multigammaln_mvlgamma_p_5_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_multigammaln_mvlgamma_p_5_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_multigammaln_mvlgamma_p_5_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_multigammaln_mvlgamma_p_5_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_multigammaln_mvlgamma_p_5_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_ndtr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_ndtr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_ndtri_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_ndtri_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_ndtri_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_ndtri_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_ndtri_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_ndtri_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_ndtri_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_ndtri_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_spherical_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_spherical_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_spherical_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_spherical_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_spherical_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_spherical_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_spherical_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_special_spherical_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_sqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_square_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_square_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_square_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_square_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_square_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_square_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_square_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_square_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_square_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_square_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_square_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_square_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_tan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_tan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_tan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_tan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_tan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_tan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_tan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_tan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_tan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_tan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_tan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_tan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_tanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_tanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_tanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_tanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_tanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_tanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_tanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_tanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_tanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_tanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_tanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_tanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_trunc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_trunc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_trunc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_trunc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_trunc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_trunc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_trunc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_trunc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing__refs_trunc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_abs_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_abs_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_abs_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_abs_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_abs_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_abs_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_abs_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_abs_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_abs_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_abs_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_abs_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_abs_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_acos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_acos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_acos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_acos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_acos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_acos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_acos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_acos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_acos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_acos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_acos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_acos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_acosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_acosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_acosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_acosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_acosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_acosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_acosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_acosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_acosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_acosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_acosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_acosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_angle_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_angle_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_angle_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_angle_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_angle_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_angle_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_angle_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_angle_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_angle_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_angle_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_angle_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_angle_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_asin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_asin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_asin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_asin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_asin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_asin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_asin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_asin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_asin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_asin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_asin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_asin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_asinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_asinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_asinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_asinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_asinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_asinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_asinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_asinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_asinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_asinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_asinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_asinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_atan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_atan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_atan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_atan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_atan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_atan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_atan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_atan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_atan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_atan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_atan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_atan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_atanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_atanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_atanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_atanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_atanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_atanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_atanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_atanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_atanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_atanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_atanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_atanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_bfloat16_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_bfloat16_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_bfloat16_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_bfloat16_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_bfloat16_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_bfloat16_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_bfloat16_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_bfloat16_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_bfloat16_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_bfloat16_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_bfloat16_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_bfloat16_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_bfloat16_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_bitwise_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_bitwise_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_bitwise_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_bitwise_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_bitwise_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_bitwise_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_bool_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_bool_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_bool_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_bool_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_bool_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_bool_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_bool_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_bool_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_bool_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_bool_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_bool_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_bool_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_bool_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_byte_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_byte_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_byte_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_byte_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_byte_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_byte_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_byte_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_byte_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_byte_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_byte_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_byte_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_byte_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cdouble_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cdouble_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cdouble_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cdouble_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cdouble_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cdouble_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cdouble_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cdouble_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cdouble_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cdouble_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cdouble_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cdouble_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cdouble_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_ceil_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_ceil_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_ceil_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_ceil_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_ceil_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_ceil_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_ceil_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_ceil_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_ceil_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cfloat_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cfloat_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cfloat_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cfloat_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cfloat_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cfloat_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cfloat_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cfloat_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cfloat_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cfloat_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cfloat_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cfloat_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cfloat_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_chalf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_chalf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_chalf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_chalf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_chalf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_chalf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_chalf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_chalf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_chalf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_chalf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_chalf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_chalf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_chalf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_char_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_char_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_char_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_char_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_char_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_char_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_char_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_char_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_char_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_char_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_char_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_char_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_char_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_conj_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_conj_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_conj_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_conj_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_conj_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_conj_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_conj_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_conj_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_conj_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_conj_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_conj_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_conj_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_conj_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_conj_physical_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_conj_physical_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_conj_physical_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_conj_physical_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_conj_physical_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_conj_physical_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_conj_physical_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_conj_physical_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_conj_physical_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_conj_physical_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_conj_physical_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_conj_physical_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_conj_physical_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_cosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_deg2rad_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_deg2rad_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_deg2rad_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_deg2rad_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_deg2rad_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_deg2rad_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_deg2rad_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_deg2rad_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_deg2rad_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_deg2rad_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_digamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_digamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_digamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_digamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_digamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_digamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_digamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_digamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_digamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_digamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_double_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_double_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_double_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_double_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_double_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_double_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_double_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_double_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_double_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_double_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_double_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_double_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_double_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_erf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_erf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_erf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_erf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_erf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_erf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_erf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_erf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_erf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_erf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_erfc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_erfc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_erfc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_erfc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_erfc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_erfc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_erfc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_erfc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_erfc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_erfc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_erfinv_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_erfinv_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_erfinv_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_erfinv_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_erfinv_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_erfinv_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_erfinv_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_erfinv_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_erfinv_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_erfinv_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_exp2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_exp2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_exp2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_exp2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_exp2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_exp2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_exp2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_exp2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_exp2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_exp2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_exp2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_exp2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_exp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_exp_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_exp_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_exp_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_exp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_exp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_exp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_exp_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_exp_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_exp_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_exp_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_exp_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_expm1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_expm1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_expm1_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_expm1_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_expm1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_expm1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_expm1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_expm1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_expm1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_expm1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_expm1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_expm1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_fill_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_fill_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_fill_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_fill_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_fill_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_fill_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_fill_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_fill_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_fill_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_fill_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_fill_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_fill_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_fill_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_float_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_float_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_float_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_float_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_float_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_float_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_float_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_float_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_float_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_float_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_float_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_float_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_float_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_floor_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_floor_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_floor_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_floor_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_floor_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_floor_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_floor_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_floor_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_floor_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_frac_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_frac_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_frac_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_frac_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_frexp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_frexp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_frexp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_frexp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_half_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_half_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_half_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_half_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_half_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_half_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_half_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_half_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_half_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_half_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_half_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_half_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_i0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_i0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_i0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_i0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_i0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_i0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_i0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_i0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_imag_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_imag_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_imag_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_int_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_int_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_int_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_int_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_int_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_int_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_int_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_int_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_int_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_int_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_int_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_int_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isfinite_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isfinite_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isfinite_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isfinite_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isfinite_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isfinite_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isfinite_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isfinite_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isfinite_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isfinite_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isfinite_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isfinite_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isfinite_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isinf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isinf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isinf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isnan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isnan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isnan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isnan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isnan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isnan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isnan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isnan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isnan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isnan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isnan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isnan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isneginf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isneginf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isneginf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isneginf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isneginf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isneginf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isneginf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isneginf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isneginf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isneginf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isposinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isposinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isposinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isposinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isposinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isposinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isposinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isposinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isposinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isposinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isreal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isreal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isreal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isreal_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isreal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isreal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isreal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isreal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isreal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isreal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isreal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isreal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_isreal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_jiterator_unary_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_jiterator_unary_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_jiterator_unary_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_jiterator_unary_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_jiterator_unary_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_jiterator_unary_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_jiterator_unary_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_jiterator_unary_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_jiterator_unary_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_jiterator_unary_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_jiterator_unary_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_jiterator_unary_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_lgamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_lgamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_lgamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_lgamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_lgamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_lgamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_lgamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_lgamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_lgamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_lgamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log10_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log10_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log10_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log10_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log10_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log10_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log10_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log10_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log10_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log10_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log10_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log10_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log1p_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log1p_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log1p_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log1p_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log1p_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log1p_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log1p_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log1p_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log1p_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log1p_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log1p_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log1p_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_log_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_logical_not_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_logical_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_logical_not_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_logical_not_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_logical_not_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_logical_not_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_logical_not_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_logical_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_logical_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_logical_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_logical_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_logical_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_logit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_logit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_logit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_logit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_logit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_logit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_logit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_logit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_logit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_logit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_long_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_long_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_long_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_long_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_long_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_long_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_long_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_long_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_long_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_long_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_long_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_long_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_long_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_mvlgamma_mvlgamma_p_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_mvlgamma_mvlgamma_p_1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_mvlgamma_mvlgamma_p_1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_mvlgamma_mvlgamma_p_1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_mvlgamma_mvlgamma_p_1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_mvlgamma_mvlgamma_p_1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_mvlgamma_mvlgamma_p_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_mvlgamma_mvlgamma_p_3_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_mvlgamma_mvlgamma_p_3_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_mvlgamma_mvlgamma_p_3_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_mvlgamma_mvlgamma_p_3_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_mvlgamma_mvlgamma_p_3_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_mvlgamma_mvlgamma_p_3_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_mvlgamma_mvlgamma_p_5_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_mvlgamma_mvlgamma_p_5_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_mvlgamma_mvlgamma_p_5_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_mvlgamma_mvlgamma_p_5_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_mvlgamma_mvlgamma_p_5_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_mvlgamma_mvlgamma_p_5_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_mvlgamma_mvlgamma_p_5_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nan_to_num_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nan_to_num_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nan_to_num_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nan_to_num_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nan_to_num_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nan_to_num_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nan_to_num_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nan_to_num_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nan_to_num_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nan_to_num_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_neg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_neg_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_neg_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_neg_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_neg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_neg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_neg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_neg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_neg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_neg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_neg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_neg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_celu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_celu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_celu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_celu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_elu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_elu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_elu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_elu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_hardshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_hardshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_hardshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_hardshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_hardsigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_hardsigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_hardsigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_hardsigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_hardtanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_hardtanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_hardtanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_hardtanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_hardtanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_hardtanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_hardtanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_hardtanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_logsigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_logsigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_logsigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_logsigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_mish_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_mish_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_mish_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_mish_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_prelu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_prelu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_prelu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_prelu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_relu6_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_relu6_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_relu6_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_relu6_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_relu6_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_relu6_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_relu6_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_relu6_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_relu6_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_relu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_relu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_relu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_relu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_relu_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_relu_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_relu_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_relu_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_relu_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_rrelu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_rrelu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_rrelu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_selu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_selu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_selu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_selu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_silu_complex_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_silu_complex_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_silu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_silu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_silu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_silu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_softplus_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_softplus_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_softplus_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_softplus_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_softshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_softshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_softshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_softshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_softsign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_softsign_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_softsign_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_softsign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_softsign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_softsign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_softsign_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_softsign_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_softsign_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_softsign_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_softsign_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_tanhshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_tanhshrink_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_tanhshrink_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_tanhshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_tanhshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_tanhshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_tanhshrink_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_tanhshrink_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_tanhshrink_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_tanhshrink_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_tanhshrink_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_threshold_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_threshold_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_threshold_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_threshold_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_threshold_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_threshold_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_threshold_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_threshold_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_nn_functional_threshold_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_3_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_3_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_3_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_3_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_3_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_3_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_4_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_4_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_4_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_4_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_4_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_4_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_4_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_4_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_polygamma_polygamma_n_4_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_positive_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_positive_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_positive_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_positive_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_positive_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_positive_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_positive_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_positive_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_positive_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_positive_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_positive_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_positive_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_rad2deg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_rad2deg_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_rad2deg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_rad2deg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_rad2deg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_rad2deg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_rad2deg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_rad2deg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_rad2deg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_rad2deg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_real_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_real_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_real_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_real_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_real_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_real_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_real_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_real_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_real_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_real_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_real_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_real_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_real_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_reciprocal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_reciprocal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_reciprocal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_reciprocal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_reciprocal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_reciprocal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_reciprocal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_reciprocal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_reciprocal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_reciprocal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_reciprocal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_reciprocal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_round_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_round_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_round_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_round_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_round_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_round_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_round_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_round_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_round_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_round_decimals_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_round_decimals_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_round_decimals_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_round_decimals_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_round_decimals_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_round_decimals_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_round_decimals_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_round_decimals_neg_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_round_decimals_neg_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_round_decimals_neg_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_rsqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_rsqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_rsqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_rsqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_rsqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_rsqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_rsqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_rsqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_rsqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_rsqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_rsqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_rsqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sgn_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sgn_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sgn_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sgn_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sgn_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sgn_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sgn_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sgn_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sgn_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sgn_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sgn_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sgn_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sgn_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_short_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_short_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_short_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_short_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_short_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_short_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_short_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_short_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_short_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_short_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_short_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_short_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sigmoid_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sigmoid_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sigmoid_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sigmoid_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sigmoid_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sigmoid_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sigmoid_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sigmoid_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sign_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sign_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sign_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sign_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sign_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sign_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_signbit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_signbit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_signbit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_signbit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_signbit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_signbit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_signbit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_signbit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_signbit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_signbit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sinc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sinc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sinc_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sinc_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sinc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sinc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sinc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sinc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sinc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sinc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sinc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sinc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_airy_ai_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_airy_ai_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_airy_ai_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_airy_ai_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_airy_ai_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_airy_ai_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_airy_ai_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_airy_ai_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_bessel_j1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_bessel_j1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_bessel_j1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_bessel_j1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_bessel_j1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_bessel_j1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_bessel_j1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_bessel_j1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_bessel_y0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_bessel_y0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_bessel_y0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_bessel_y0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_bessel_y0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_bessel_y0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_bessel_y0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_bessel_y0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_bessel_y1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_bessel_y1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_bessel_y1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_bessel_y1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_bessel_y1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_bessel_y1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_bessel_y1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_bessel_y1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_entr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_entr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_entr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_entr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_entr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_entr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_entr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_entr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_entr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_entr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_erfcx_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_erfcx_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_erfcx_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_erfcx_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_erfcx_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_erfcx_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_erfcx_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_erfcx_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_i0e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_i0e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_i0e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_i0e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_i0e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_i0e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_i0e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_i0e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_i0e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_i0e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_i1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_i1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_i1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_i1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_i1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_i1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_i1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_i1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_i1e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_i1e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_i1e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_i1e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_i1e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_i1e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_i1e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_i1e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_i1e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_i1e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_log_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_log_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_log_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_log_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_log_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_log_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_log_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_log_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_modified_bessel_i0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_modified_bessel_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_modified_bessel_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_modified_bessel_i0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_modified_bessel_i0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_modified_bessel_i0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_modified_bessel_i0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_modified_bessel_i0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_modified_bessel_i1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_modified_bessel_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_modified_bessel_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_modified_bessel_i1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_modified_bessel_i1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_modified_bessel_i1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_modified_bessel_i1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_modified_bessel_i1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_modified_bessel_k0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_modified_bessel_k0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_modified_bessel_k0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_modified_bessel_k0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_modified_bessel_k0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_modified_bessel_k0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_modified_bessel_k0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_modified_bessel_k0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_modified_bessel_k1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_modified_bessel_k1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_modified_bessel_k1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_modified_bessel_k1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_modified_bessel_k1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_modified_bessel_k1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_modified_bessel_k1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_modified_bessel_k1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_ndtr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_ndtr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_ndtri_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_ndtri_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_ndtri_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_ndtri_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_ndtri_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_ndtri_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_ndtri_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_ndtri_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_polygamma_special_polygamma_n_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_polygamma_special_polygamma_n_0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_polygamma_special_polygamma_n_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_polygamma_special_polygamma_n_0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_polygamma_special_polygamma_n_0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_polygamma_special_polygamma_n_0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_polygamma_special_polygamma_n_0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_polygamma_special_polygamma_n_0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_scaled_modified_bessel_k0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_scaled_modified_bessel_k0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_scaled_modified_bessel_k0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_scaled_modified_bessel_k0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_scaled_modified_bessel_k0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_scaled_modified_bessel_k0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_scaled_modified_bessel_k0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_scaled_modified_bessel_k0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_scaled_modified_bessel_k1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_scaled_modified_bessel_k1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_scaled_modified_bessel_k1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_scaled_modified_bessel_k1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_scaled_modified_bessel_k1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_scaled_modified_bessel_k1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_scaled_modified_bessel_k1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_scaled_modified_bessel_k1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_spherical_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_spherical_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_spherical_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_spherical_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_spherical_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_spherical_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_spherical_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_special_spherical_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_sqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_square_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_square_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_square_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_square_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_square_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_square_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_square_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_square_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_square_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_square_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_square_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_square_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_tan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_tan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_tan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_tan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_tan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_tan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_tan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_tan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_tan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_tan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_tan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_tan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_tanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_tanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_tanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_tanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_tanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_tanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_tanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_tanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_tanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_tanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_tanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_tanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_trunc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_trunc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_trunc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_trunc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_trunc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_trunc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_trunc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_trunc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_batch_vs_slicing_trunc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_complex_edge_values_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_bfloat16_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_bfloat16_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_bfloat16_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_bfloat16_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_bfloat16_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_bfloat16_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_bfloat16_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_bfloat16_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_bfloat16_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_bfloat16_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_bfloat16_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_bfloat16_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_bfloat16_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_bool_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_bool_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_bool_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_bool_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_bool_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_bool_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_bool_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_bool_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_bool_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_bool_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_bool_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_bool_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_bool_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_byte_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_byte_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_byte_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_byte_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_byte_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_byte_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_byte_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_byte_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_byte_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_byte_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_byte_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_byte_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_cdouble_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_cdouble_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_cdouble_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_cdouble_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_cdouble_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_cdouble_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_cdouble_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_cdouble_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_cdouble_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_cdouble_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_cdouble_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_cdouble_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_cdouble_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_cfloat_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_cfloat_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_cfloat_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_cfloat_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_cfloat_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_cfloat_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_cfloat_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_cfloat_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_cfloat_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_cfloat_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_cfloat_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_cfloat_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_cfloat_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_chalf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_chalf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_chalf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_chalf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_chalf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_chalf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_chalf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_chalf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_chalf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_chalf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_chalf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_chalf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_chalf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_char_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_char_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_char_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_char_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_char_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_char_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_char_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_char_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_char_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_char_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_char_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_char_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_char_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_double_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_double_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_double_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_double_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_double_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_double_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_double_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_double_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_double_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_double_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_double_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_double_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_double_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_float_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_float_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_float_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_float_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_float_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_float_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_float_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_float_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_float_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_float_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_float_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_float_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_float_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_half_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_half_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_half_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_half_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_half_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_half_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_half_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_half_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_half_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_half_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_half_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_half_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_int_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_int_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_int_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_int_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_int_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_int_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_int_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_int_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_int_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_int_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_int_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_int_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_long_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_long_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_long_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_long_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_long_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_long_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_long_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_long_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_long_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_long_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_long_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_long_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_long_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_short_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_short_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_short_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_short_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_short_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_short_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_short_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_short_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_short_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_short_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_short_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs__conversions_short_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_abs_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_abs_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_abs_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_abs_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_abs_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_abs_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_abs_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_abs_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_abs_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_abs_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_abs_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_abs_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_acos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_acos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_acos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_acos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_acos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_acos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_acos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_acos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_acos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_acos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_acos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_acos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_acosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_acosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_acosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_acosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_acosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_acosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_acosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_acosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_acosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_acosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_acosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_acosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_asin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_asin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_asin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_asin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_asin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_asin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_asin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_asin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_asin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_asin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_asin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_asin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_asinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_asinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_asinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_asinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_asinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_asinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_asinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_asinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_asinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_asinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_asinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_asinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_atan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_atan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_atan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_atan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_atan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_atan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_atan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_atan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_atan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_atan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_atan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_atan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_atanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_atanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_atanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_atanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_atanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_atanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_atanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_atanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_atanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_atanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_atanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_atanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_bitwise_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_bitwise_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_bitwise_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_bitwise_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_bitwise_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_bitwise_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_ceil_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_ceil_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_ceil_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_ceil_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_ceil_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_ceil_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_ceil_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_ceil_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_ceil_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_conj_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_conj_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_conj_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_conj_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_conj_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_conj_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_conj_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_conj_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_conj_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_conj_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_conj_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_conj_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_conj_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_conj_physical_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_conj_physical_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_conj_physical_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_conj_physical_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_conj_physical_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_conj_physical_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_conj_physical_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_conj_physical_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_conj_physical_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_conj_physical_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_conj_physical_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_conj_physical_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_conj_physical_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_cos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_cos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_cos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_cos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_cos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_cos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_cos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_cos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_cos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_cos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_cos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_cos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_cosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_cosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_cosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_cosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_cosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_cosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_cosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_cosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_cosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_cosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_cosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_cosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_deg2rad_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_deg2rad_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_deg2rad_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_deg2rad_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_deg2rad_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_deg2rad_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_deg2rad_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_deg2rad_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_deg2rad_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_deg2rad_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_digamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_digamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_digamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_digamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_digamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_digamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_digamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_digamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_digamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_digamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_erf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_erf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_erf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_erf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_erf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_erf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_erf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_erf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_erf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_erf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_erfc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_erfc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_erfc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_erfc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_erfc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_erfc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_erfc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_erfc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_erfc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_erfc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_erfinv_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_erfinv_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_erfinv_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_erfinv_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_erfinv_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_erfinv_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_erfinv_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_erfinv_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_erfinv_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_erfinv_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_exp2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_exp2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_exp2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_exp2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_exp2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_exp2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_exp2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_exp2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_exp2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_exp2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_exp2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_exp2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_exp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_exp_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_exp_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_exp_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_exp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_exp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_exp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_exp_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_exp_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_exp_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_exp_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_exp_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_expm1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_expm1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_expm1_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_expm1_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_expm1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_expm1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_expm1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_expm1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_expm1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_expm1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_expm1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_expm1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_fill_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_fill_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_fill_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_fill_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_fill_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_fill_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_fill_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_fill_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_fill_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_fill_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_fill_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_fill_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_fill_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_floor_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_floor_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_floor_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_floor_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_floor_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_floor_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_floor_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_floor_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_floor_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_frac_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_frac_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_frac_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_frac_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_frexp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_frexp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_frexp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_frexp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_i0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_i0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_i0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_i0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_i0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_i0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_i0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_i0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_imag_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_imag_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_imag_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isfinite_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isfinite_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isfinite_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isfinite_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isfinite_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isfinite_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isfinite_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isfinite_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isfinite_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isfinite_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isfinite_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isfinite_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isfinite_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isinf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isinf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isinf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isnan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isnan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isnan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isnan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isnan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isnan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isnan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isnan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isnan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isnan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isnan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isnan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isneginf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isneginf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isneginf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isneginf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isneginf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isneginf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isneginf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isneginf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isneginf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isneginf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isposinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isposinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isposinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isposinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isposinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isposinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isposinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isposinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isposinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isposinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isreal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isreal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isreal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isreal_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isreal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isreal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isreal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isreal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isreal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isreal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isreal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isreal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_isreal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_lgamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_lgamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_lgamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_lgamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_lgamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_lgamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_lgamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_lgamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_lgamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_lgamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log10_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log10_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log10_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log10_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log10_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log10_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log10_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log10_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log10_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log10_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log10_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log10_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log1p_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log1p_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log1p_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log1p_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log1p_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log1p_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log1p_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log1p_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log1p_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log1p_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log1p_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log1p_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_log_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_logical_not_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_logical_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_logical_not_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_logical_not_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_logical_not_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_logical_not_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_logical_not_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_logical_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_logical_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_logical_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_logical_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_logical_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nan_to_num_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nan_to_num_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nan_to_num_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nan_to_num_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nan_to_num_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nan_to_num_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nan_to_num_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nan_to_num_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nan_to_num_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nan_to_num_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_neg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_neg_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_neg_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_neg_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_neg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_neg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_neg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_neg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_neg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_neg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_neg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_neg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_celu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_celu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_celu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_celu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_elu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_elu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_elu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_elu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_hardshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_hardshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_hardshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_hardshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_hardtanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_hardtanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_hardtanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_hardtanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_hardtanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_hardtanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_hardtanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_hardtanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_mish_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_mish_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_mish_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_mish_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_prelu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_prelu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_prelu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_prelu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_relu6_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_relu6_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_relu6_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_relu6_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_relu6_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_relu6_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_relu6_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_relu6_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_relu6_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_relu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_relu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_relu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_relu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_relu_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_relu_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_relu_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_relu_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_relu_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_selu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_selu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_selu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_selu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_softplus_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_softplus_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_softplus_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_softplus_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_softshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_softshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_softshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_softshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_tanhshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_tanhshrink_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_tanhshrink_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_tanhshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_tanhshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_tanhshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_tanhshrink_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_tanhshrink_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_tanhshrink_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_tanhshrink_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_tanhshrink_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_threshold_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_threshold_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_threshold_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_threshold_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_threshold_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_threshold_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_threshold_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_threshold_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_nn_functional_threshold_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_positive_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_positive_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_positive_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_positive_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_positive_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_positive_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_positive_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_positive_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_positive_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_positive_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_positive_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_positive_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_rad2deg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_rad2deg_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_rad2deg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_rad2deg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_rad2deg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_rad2deg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_rad2deg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_rad2deg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_rad2deg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_rad2deg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_real_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_real_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_real_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_real_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_real_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_real_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_real_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_real_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_real_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_real_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_real_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_real_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_real_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_reciprocal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_reciprocal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_reciprocal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_reciprocal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_reciprocal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_reciprocal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_reciprocal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_reciprocal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_reciprocal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_reciprocal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_reciprocal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_reciprocal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_round_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_round_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_round_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_round_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_round_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_round_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_round_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_round_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_round_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_rsqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_rsqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_rsqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_rsqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_rsqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_rsqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_rsqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_rsqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_rsqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_rsqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_rsqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_rsqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sgn_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sgn_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sgn_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sgn_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sgn_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sgn_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sgn_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sgn_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sgn_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sgn_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sgn_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sgn_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sgn_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sigmoid_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sigmoid_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sigmoid_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sigmoid_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sigmoid_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sigmoid_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sigmoid_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sigmoid_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sign_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sign_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sign_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sign_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sign_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sign_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_signbit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_signbit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_signbit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_signbit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_signbit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_signbit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_signbit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_signbit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_signbit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_signbit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sinc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sinc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sinc_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sinc_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sinc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sinc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sinc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sinc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sinc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sinc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sinc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sinc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_bessel_j1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_bessel_j1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_bessel_j1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_bessel_j1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_bessel_j1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_bessel_j1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_bessel_j1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_bessel_j1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_entr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_entr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_entr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_entr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_entr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_entr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_entr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_entr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_entr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_entr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_erfcx_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_erfcx_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_erfcx_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_erfcx_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_erfcx_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_erfcx_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_erfcx_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_erfcx_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_i0e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_i0e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_i0e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_i0e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_i0e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_i0e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_i0e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_i0e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_i0e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_i0e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_i1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_i1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_i1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_i1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_i1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_i1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_i1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_i1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_i1e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_i1e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_i1e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_i1e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_i1e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_i1e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_i1e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_i1e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_i1e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_i1e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_log_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_log_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_log_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_log_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_log_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_log_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_log_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_log_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_logit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_logit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_logit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_logit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_logit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_logit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_logit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_logit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_logit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_logit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_multigammaln_mvlgamma_p_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_multigammaln_mvlgamma_p_1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_multigammaln_mvlgamma_p_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_multigammaln_mvlgamma_p_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_multigammaln_mvlgamma_p_1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_multigammaln_mvlgamma_p_1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_multigammaln_mvlgamma_p_1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_multigammaln_mvlgamma_p_1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_multigammaln_mvlgamma_p_1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_multigammaln_mvlgamma_p_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_multigammaln_mvlgamma_p_3_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_multigammaln_mvlgamma_p_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_multigammaln_mvlgamma_p_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_multigammaln_mvlgamma_p_3_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_multigammaln_mvlgamma_p_3_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_multigammaln_mvlgamma_p_3_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_multigammaln_mvlgamma_p_3_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_multigammaln_mvlgamma_p_3_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_multigammaln_mvlgamma_p_5_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_multigammaln_mvlgamma_p_5_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_multigammaln_mvlgamma_p_5_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_multigammaln_mvlgamma_p_5_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_multigammaln_mvlgamma_p_5_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_multigammaln_mvlgamma_p_5_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_multigammaln_mvlgamma_p_5_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_multigammaln_mvlgamma_p_5_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_multigammaln_mvlgamma_p_5_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_ndtr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_ndtr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_ndtri_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_ndtri_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_ndtri_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_ndtri_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_ndtri_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_ndtri_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_ndtri_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_ndtri_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_spherical_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_spherical_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_spherical_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_spherical_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_spherical_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_spherical_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_spherical_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_special_spherical_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_sqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_square_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_square_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_square_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_square_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_square_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_square_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_square_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_square_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_square_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_square_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_square_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_square_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_tan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_tan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_tan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_tan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_tan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_tan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_tan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_tan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_tan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_tan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_tan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_tan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_tanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_tanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_tanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_tanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_tanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_tanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_tanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_tanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_tanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_tanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_tanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_tanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_trunc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_trunc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_trunc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_trunc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_trunc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_trunc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_trunc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_trunc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1__refs_trunc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_abs_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_abs_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_abs_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_abs_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_abs_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_abs_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_abs_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_abs_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_abs_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_abs_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_abs_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_abs_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_acos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_acos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_acos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_acos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_acos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_acos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_acos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_acos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_acos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_acos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_acos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_acos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_acosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_acosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_acosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_acosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_acosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_acosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_acosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_acosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_acosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_acosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_acosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_acosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_angle_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_angle_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_angle_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_angle_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_angle_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_angle_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_angle_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_angle_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_angle_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_angle_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_angle_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_angle_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_asin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_asin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_asin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_asin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_asin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_asin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_asin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_asin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_asin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_asin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_asin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_asin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_asinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_asinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_asinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_asinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_asinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_asinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_asinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_asinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_asinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_asinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_asinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_asinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_atan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_atan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_atan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_atan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_atan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_atan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_atan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_atan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_atan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_atan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_atan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_atan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_atanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_atanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_atanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_atanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_atanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_atanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_atanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_atanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_atanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_atanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_atanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_atanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_bfloat16_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_bfloat16_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_bfloat16_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_bfloat16_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_bfloat16_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_bfloat16_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_bfloat16_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_bfloat16_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_bfloat16_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_bfloat16_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_bfloat16_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_bfloat16_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_bfloat16_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_bitwise_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_bitwise_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_bitwise_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_bitwise_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_bitwise_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_bitwise_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_bool_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_bool_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_bool_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_bool_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_bool_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_bool_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_bool_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_bool_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_bool_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_bool_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_bool_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_bool_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_bool_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_byte_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_byte_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_byte_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_byte_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_byte_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_byte_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_byte_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_byte_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_byte_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_byte_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_byte_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_byte_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cdouble_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cdouble_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cdouble_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cdouble_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cdouble_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cdouble_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cdouble_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cdouble_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cdouble_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cdouble_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cdouble_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cdouble_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cdouble_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_ceil_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_ceil_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_ceil_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_ceil_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_ceil_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_ceil_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_ceil_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_ceil_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_ceil_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cfloat_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cfloat_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cfloat_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cfloat_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cfloat_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cfloat_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cfloat_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cfloat_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cfloat_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cfloat_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cfloat_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cfloat_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cfloat_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_chalf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_chalf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_chalf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_chalf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_chalf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_chalf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_chalf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_chalf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_chalf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_chalf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_chalf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_chalf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_chalf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_char_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_char_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_char_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_char_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_char_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_char_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_char_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_char_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_char_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_char_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_char_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_char_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_char_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_conj_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_conj_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_conj_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_conj_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_conj_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_conj_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_conj_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_conj_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_conj_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_conj_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_conj_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_conj_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_conj_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_conj_physical_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_conj_physical_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_conj_physical_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_conj_physical_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_conj_physical_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_conj_physical_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_conj_physical_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_conj_physical_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_conj_physical_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_conj_physical_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_conj_physical_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_conj_physical_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_conj_physical_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_cosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_deg2rad_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_deg2rad_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_deg2rad_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_deg2rad_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_deg2rad_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_deg2rad_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_deg2rad_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_deg2rad_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_deg2rad_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_deg2rad_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_digamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_digamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_digamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_digamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_digamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_digamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_digamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_digamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_digamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_digamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_double_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_double_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_double_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_double_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_double_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_double_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_double_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_double_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_double_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_double_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_double_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_double_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_double_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_erf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_erf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_erf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_erf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_erf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_erf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_erf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_erf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_erf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_erf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_erfc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_erfc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_erfc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_erfc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_erfc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_erfc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_erfc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_erfc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_erfc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_erfc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_erfinv_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_erfinv_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_erfinv_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_erfinv_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_erfinv_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_erfinv_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_erfinv_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_erfinv_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_erfinv_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_erfinv_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_exp2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_exp2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_exp2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_exp2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_exp2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_exp2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_exp2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_exp2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_exp2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_exp2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_exp2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_exp2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_exp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_exp_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_exp_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_exp_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_exp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_exp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_exp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_exp_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_exp_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_exp_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_exp_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_exp_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_expm1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_expm1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_expm1_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_expm1_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_expm1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_expm1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_expm1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_expm1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_expm1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_expm1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_expm1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_expm1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_fill_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_fill_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_fill_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_fill_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_fill_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_fill_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_fill_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_fill_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_fill_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_fill_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_fill_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_fill_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_fill_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_float_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_float_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_float_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_float_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_float_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_float_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_float_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_float_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_float_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_float_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_float_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_float_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_float_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_floor_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_floor_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_floor_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_floor_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_floor_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_floor_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_floor_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_floor_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_floor_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_frac_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_frac_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_frac_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_frac_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_frexp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_frexp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_frexp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_frexp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_half_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_half_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_half_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_half_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_half_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_half_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_half_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_half_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_half_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_half_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_half_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_half_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_i0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_i0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_i0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_i0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_i0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_i0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_i0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_i0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_imag_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_imag_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_imag_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_int_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_int_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_int_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_int_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_int_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_int_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_int_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_int_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_int_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_int_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_int_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_int_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isfinite_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isfinite_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isfinite_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isfinite_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isfinite_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isfinite_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isfinite_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isfinite_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isfinite_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isfinite_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isfinite_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isfinite_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isfinite_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isinf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isinf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isinf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isnan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isnan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isnan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isnan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isnan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isnan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isnan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isnan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isnan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isnan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isnan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isnan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isneginf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isneginf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isneginf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isneginf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isneginf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isneginf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isneginf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isneginf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isneginf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isneginf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isposinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isposinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isposinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isposinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isposinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isposinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isposinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isposinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isposinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isposinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isreal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isreal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isreal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isreal_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isreal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isreal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isreal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isreal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isreal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isreal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isreal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isreal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_isreal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_jiterator_unary_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_jiterator_unary_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_jiterator_unary_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_jiterator_unary_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_jiterator_unary_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_jiterator_unary_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_jiterator_unary_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_jiterator_unary_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_jiterator_unary_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_jiterator_unary_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_jiterator_unary_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_jiterator_unary_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_bfloat16_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_bfloat16_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_bfloat16_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_bfloat16_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_bfloat16_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_bfloat16_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_bfloat16_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_bfloat16_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_bfloat16_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_bfloat16_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_bfloat16_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_bfloat16_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_bfloat16_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_bool_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_bool_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_bool_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_bool_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_bool_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_bool_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_bool_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_bool_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_bool_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_bool_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_bool_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_bool_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_bool_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_byte_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_byte_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_byte_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_byte_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_byte_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_byte_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_byte_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_byte_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_byte_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_byte_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_byte_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_byte_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_cdouble_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_cdouble_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_cdouble_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_cdouble_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_cdouble_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_cdouble_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_cdouble_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_cdouble_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_cdouble_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_cdouble_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_cdouble_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_cdouble_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_cdouble_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_cfloat_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_cfloat_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_cfloat_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_cfloat_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_cfloat_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_cfloat_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_cfloat_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_cfloat_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_cfloat_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_cfloat_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_cfloat_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_cfloat_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_cfloat_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_chalf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_chalf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_chalf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_chalf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_chalf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_chalf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_chalf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_chalf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_chalf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_chalf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_chalf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_chalf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_chalf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_char_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_char_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_char_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_char_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_char_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_char_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_char_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_char_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_char_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_char_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_char_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_char_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_char_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_double_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_double_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_double_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_double_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_double_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_double_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_double_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_double_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_double_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_double_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_double_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_double_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_double_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_float_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_float_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_float_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_float_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_float_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_float_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_float_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_float_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_float_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_float_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_float_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_float_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_float_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_half_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_half_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_half_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_half_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_half_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_half_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_half_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_half_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_half_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_half_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_half_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_half_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_int_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_int_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_int_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_int_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_int_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_int_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_int_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_int_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_int_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_int_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_int_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_int_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_long_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_long_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_long_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_long_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_long_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_long_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_long_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_long_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_long_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_long_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_long_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_long_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_long_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_short_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_short_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_short_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_short_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_short_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_short_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_short_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_short_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_short_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_short_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_short_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_short_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_abs_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_abs_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_abs_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_abs_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_abs_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_abs_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_abs_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_abs_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_abs_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_abs_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_abs_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_abs_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_acos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_acos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_acos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_acos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_acos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_acos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_acos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_acos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_acos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_acos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_acos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_acos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_acosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_acosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_acosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_acosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_acosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_acosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_acosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_acosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_acosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_acosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_acosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_acosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_asin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_asin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_asin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_asin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_asin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_asin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_asin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_asin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_asin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_asin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_asin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_asin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_asinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_asinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_asinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_asinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_asinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_asinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_asinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_asinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_asinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_asinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_asinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_asinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_atan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_atan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_atan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_atan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_atan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_atan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_atan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_atan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_atan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_atan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_atan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_atan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_atanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_atanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_atanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_atanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_atanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_atanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_atanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_atanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_atanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_atanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_atanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_atanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_bitwise_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_bitwise_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_bitwise_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_bitwise_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_bitwise_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_bitwise_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_ceil_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_ceil_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_ceil_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_ceil_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_ceil_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_ceil_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_ceil_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_ceil_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_ceil_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_conj_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_conj_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_conj_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_conj_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_conj_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_conj_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_conj_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_conj_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_conj_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_conj_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_conj_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_conj_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_conj_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_conj_physical_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_conj_physical_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_conj_physical_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_conj_physical_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_conj_physical_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_conj_physical_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_conj_physical_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_conj_physical_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_conj_physical_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_conj_physical_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_conj_physical_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_conj_physical_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_conj_physical_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_cos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_cos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_cos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_cos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_cos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_cos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_cos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_cos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_cos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_cos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_cos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_cos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_cosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_cosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_cosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_cosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_cosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_cosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_cosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_cosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_cosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_cosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_cosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_cosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_deg2rad_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_deg2rad_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_deg2rad_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_deg2rad_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_deg2rad_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_deg2rad_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_deg2rad_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_deg2rad_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_deg2rad_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_deg2rad_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_digamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_digamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_digamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_digamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_digamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_digamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_digamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_digamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_digamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_digamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_erf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_erf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_erf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_erf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_erf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_erf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_erf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_erf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_erf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_erf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_erfc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_erfc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_erfc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_erfc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_erfc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_erfc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_erfc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_erfc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_erfc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_erfc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_erfinv_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_erfinv_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_erfinv_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_erfinv_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_erfinv_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_erfinv_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_erfinv_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_erfinv_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_erfinv_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_erfinv_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_exp2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_exp2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_exp2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_exp2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_exp2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_exp2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_exp2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_exp2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_exp2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_exp2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_exp2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_exp2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_exp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_exp_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_exp_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_exp_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_exp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_exp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_exp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_exp_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_exp_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_exp_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_exp_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_exp_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_expm1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_expm1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_expm1_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_expm1_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_expm1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_expm1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_expm1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_expm1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_expm1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_expm1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_expm1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_expm1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_fill_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_fill_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_fill_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_fill_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_fill_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_fill_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_fill_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_fill_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_fill_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_fill_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_fill_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_fill_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_fill_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_floor_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_floor_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_floor_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_floor_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_floor_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_floor_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_floor_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_floor_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_floor_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_frac_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_frac_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_frac_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_frac_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_frexp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_frexp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_frexp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_frexp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_i0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_i0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_i0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_i0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_i0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_i0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_i0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_i0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_imag_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_imag_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_imag_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isfinite_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isfinite_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isfinite_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isfinite_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isfinite_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isfinite_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isfinite_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isfinite_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isfinite_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isfinite_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isfinite_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isfinite_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isfinite_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isinf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isinf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isinf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isnan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isnan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isnan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isnan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isnan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isnan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isnan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isnan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isnan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isnan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isnan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isnan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isneginf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isneginf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isneginf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isneginf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isneginf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isneginf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isneginf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isneginf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isneginf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isneginf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isposinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isposinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isposinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isposinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isposinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isposinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isposinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isposinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isposinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isposinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isreal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isreal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isreal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isreal_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isreal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isreal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isreal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isreal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isreal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isreal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isreal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isreal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_isreal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_lgamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_lgamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_lgamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_lgamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_lgamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_lgamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_lgamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_lgamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_lgamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_lgamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log10_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log10_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log10_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log10_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log10_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log10_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log10_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log10_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log10_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log10_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log10_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log10_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log1p_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log1p_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log1p_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log1p_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log1p_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log1p_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log1p_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log1p_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log1p_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log1p_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log1p_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log1p_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_log_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_not_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_not_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_not_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_not_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_not_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_not_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nan_to_num_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nan_to_num_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nan_to_num_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nan_to_num_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nan_to_num_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nan_to_num_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nan_to_num_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nan_to_num_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nan_to_num_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nan_to_num_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_neg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_neg_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_neg_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_neg_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_neg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_neg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_neg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_neg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_neg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_neg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_neg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_neg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_celu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_celu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_celu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_celu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_elu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_elu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_elu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_elu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_hardshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_hardshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_hardshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_hardshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_hardtanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_hardtanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_hardtanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_hardtanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_hardtanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_hardtanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_hardtanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_hardtanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_mish_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_mish_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_mish_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_mish_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_prelu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_prelu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_prelu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_prelu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_relu6_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_relu6_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_relu6_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_relu6_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_relu6_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_relu6_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_relu6_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_relu6_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_relu6_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_relu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_relu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_relu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_relu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_relu_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_relu_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_relu_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_relu_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_relu_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_selu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_selu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_selu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_selu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_softplus_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_softplus_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_softplus_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_softplus_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_softshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_softshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_softshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_softshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_tanhshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_tanhshrink_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_tanhshrink_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_tanhshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_tanhshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_tanhshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_tanhshrink_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_tanhshrink_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_tanhshrink_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_tanhshrink_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_tanhshrink_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_threshold_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_threshold_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_threshold_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_threshold_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_threshold_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_threshold_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_threshold_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_threshold_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_nn_functional_threshold_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_positive_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_positive_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_positive_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_positive_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_positive_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_positive_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_positive_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_positive_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_positive_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_positive_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_positive_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_positive_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_rad2deg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_rad2deg_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_rad2deg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_rad2deg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_rad2deg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_rad2deg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_rad2deg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_rad2deg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_rad2deg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_rad2deg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_real_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_real_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_real_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_real_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_real_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_real_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_real_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_real_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_real_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_real_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_real_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_real_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_real_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_reciprocal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_reciprocal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_reciprocal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_reciprocal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_reciprocal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_reciprocal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_reciprocal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_reciprocal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_reciprocal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_reciprocal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_reciprocal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_reciprocal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_round_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_round_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_round_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_round_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_round_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_round_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_round_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_round_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_round_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_rsqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_rsqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_rsqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_rsqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_rsqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_rsqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_rsqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_rsqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_rsqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_rsqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_rsqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_rsqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sgn_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sgn_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sgn_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sgn_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sgn_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sgn_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sgn_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sgn_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sgn_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sgn_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sgn_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sgn_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sgn_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sigmoid_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sigmoid_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sigmoid_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sigmoid_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sigmoid_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sigmoid_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sigmoid_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sigmoid_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sign_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sign_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sign_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sign_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sign_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sign_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_signbit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_signbit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_signbit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_signbit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_signbit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_signbit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_signbit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_signbit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_signbit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_signbit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sinc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sinc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sinc_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sinc_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sinc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sinc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sinc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sinc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sinc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sinc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sinc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sinc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_bessel_j1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_bessel_j1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_bessel_j1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_bessel_j1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_bessel_j1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_bessel_j1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_bessel_j1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_bessel_j1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_entr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_entr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_entr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_entr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_entr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_entr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_entr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_entr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_entr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_entr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_erfcx_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_erfcx_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_erfcx_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_erfcx_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_erfcx_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_erfcx_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_erfcx_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_erfcx_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_i0e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_i0e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_i0e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_i0e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_i0e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_i0e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_i0e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_i0e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_i0e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_i0e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_i1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_i1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_i1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_i1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_i1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_i1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_i1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_i1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_i1e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_i1e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_i1e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_i1e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_i1e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_i1e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_i1e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_i1e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_i1e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_i1e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_log_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_log_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_log_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_log_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_log_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_log_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_log_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_log_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_logit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_logit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_logit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_logit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_logit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_logit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_logit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_logit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_logit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_logit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_multigammaln_mvlgamma_p_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_multigammaln_mvlgamma_p_1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_multigammaln_mvlgamma_p_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_multigammaln_mvlgamma_p_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_multigammaln_mvlgamma_p_1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_multigammaln_mvlgamma_p_1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_multigammaln_mvlgamma_p_1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_multigammaln_mvlgamma_p_1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_multigammaln_mvlgamma_p_1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_multigammaln_mvlgamma_p_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_multigammaln_mvlgamma_p_3_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_multigammaln_mvlgamma_p_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_multigammaln_mvlgamma_p_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_multigammaln_mvlgamma_p_3_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_multigammaln_mvlgamma_p_3_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_multigammaln_mvlgamma_p_3_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_multigammaln_mvlgamma_p_3_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_multigammaln_mvlgamma_p_3_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_multigammaln_mvlgamma_p_5_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_multigammaln_mvlgamma_p_5_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_multigammaln_mvlgamma_p_5_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_multigammaln_mvlgamma_p_5_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_multigammaln_mvlgamma_p_5_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_multigammaln_mvlgamma_p_5_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_multigammaln_mvlgamma_p_5_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_multigammaln_mvlgamma_p_5_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_multigammaln_mvlgamma_p_5_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_ndtr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_ndtr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_ndtri_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_ndtri_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_ndtri_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_ndtri_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_ndtri_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_ndtri_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_ndtri_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_ndtri_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_spherical_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_spherical_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_spherical_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_spherical_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_spherical_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_spherical_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_spherical_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_special_spherical_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_sqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_square_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_square_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_square_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_square_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_square_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_square_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_square_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_square_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_square_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_square_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_square_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_square_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_tan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_tan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_tan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_tan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_tan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_tan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_tan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_tan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_tan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_tan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_tan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_tan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_tanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_tanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_tanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_tanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_tanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_tanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_tanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_tanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_tanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_tanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_tanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_tanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_trunc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_trunc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_trunc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_trunc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_trunc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_trunc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_trunc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_trunc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim__refs_trunc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_abs_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_abs_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_abs_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_abs_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_abs_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_abs_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_abs_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_abs_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_abs_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_abs_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_abs_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_abs_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_acos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_acos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_acos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_acos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_acos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_acos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_acos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_acos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_acos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_acos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_acos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_acos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_acosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_acosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_acosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_acosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_acosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_acosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_acosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_acosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_acosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_acosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_acosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_acosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_angle_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_angle_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_angle_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_angle_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_angle_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_angle_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_angle_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_angle_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_angle_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_angle_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_angle_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_angle_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_asin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_asin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_asin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_asin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_asin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_asin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_asin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_asin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_asin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_asin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_asin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_asin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_asinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_asinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_asinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_asinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_asinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_asinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_asinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_asinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_asinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_asinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_asinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_asinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_atan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_atan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_atan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_atan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_atan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_atan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_atan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_atan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_atan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_atan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_atan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_atan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_atanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_atanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_atanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_atanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_atanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_atanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_atanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_atanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_atanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_atanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_atanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_atanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_bfloat16_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_bfloat16_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_bfloat16_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_bfloat16_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_bfloat16_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_bfloat16_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_bfloat16_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_bfloat16_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_bfloat16_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_bfloat16_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_bfloat16_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_bfloat16_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_bfloat16_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_bitwise_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_bitwise_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_bitwise_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_bitwise_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_bitwise_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_bitwise_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_bool_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_bool_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_bool_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_bool_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_bool_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_bool_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_bool_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_bool_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_bool_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_bool_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_bool_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_bool_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_bool_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_byte_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_byte_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_byte_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_byte_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_byte_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_byte_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_byte_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_byte_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_byte_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_byte_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_byte_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_byte_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cdouble_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cdouble_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cdouble_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cdouble_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cdouble_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cdouble_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cdouble_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cdouble_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cdouble_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cdouble_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cdouble_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cdouble_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cdouble_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_ceil_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_ceil_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_ceil_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_ceil_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_ceil_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_ceil_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_ceil_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_ceil_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_ceil_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cfloat_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cfloat_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cfloat_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cfloat_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cfloat_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cfloat_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cfloat_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cfloat_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cfloat_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cfloat_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cfloat_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cfloat_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cfloat_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_chalf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_chalf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_chalf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_chalf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_chalf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_chalf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_chalf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_chalf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_chalf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_chalf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_chalf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_chalf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_chalf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_char_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_char_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_char_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_char_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_char_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_char_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_char_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_char_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_char_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_char_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_char_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_char_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_char_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_conj_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_conj_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_conj_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_conj_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_conj_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_conj_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_conj_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_conj_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_conj_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_conj_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_conj_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_conj_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_conj_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_conj_physical_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_conj_physical_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_conj_physical_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_conj_physical_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_conj_physical_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_conj_physical_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_conj_physical_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_conj_physical_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_conj_physical_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_conj_physical_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_conj_physical_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_conj_physical_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_conj_physical_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_cosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_deg2rad_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_deg2rad_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_deg2rad_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_deg2rad_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_deg2rad_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_deg2rad_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_deg2rad_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_deg2rad_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_deg2rad_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_deg2rad_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_digamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_digamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_digamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_digamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_digamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_digamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_digamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_digamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_digamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_digamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_double_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_double_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_double_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_double_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_double_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_double_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_double_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_double_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_double_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_double_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_double_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_double_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_double_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_erf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_erf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_erf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_erf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_erf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_erf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_erf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_erf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_erf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_erf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_erfc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_erfc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_erfc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_erfc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_erfc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_erfc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_erfc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_erfc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_erfc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_erfc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_erfinv_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_erfinv_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_erfinv_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_erfinv_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_erfinv_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_erfinv_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_erfinv_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_erfinv_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_erfinv_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_erfinv_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_exp2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_exp2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_exp2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_exp2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_exp2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_exp2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_exp2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_exp2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_exp2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_exp2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_exp2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_exp2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_exp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_exp_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_exp_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_exp_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_exp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_exp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_exp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_exp_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_exp_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_exp_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_exp_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_exp_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_expm1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_expm1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_expm1_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_expm1_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_expm1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_expm1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_expm1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_expm1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_expm1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_expm1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_expm1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_expm1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_fill_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_fill_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_fill_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_fill_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_fill_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_fill_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_fill_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_fill_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_fill_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_fill_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_fill_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_fill_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_fill_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_float_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_float_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_float_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_float_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_float_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_float_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_float_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_float_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_float_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_float_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_float_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_float_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_float_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_floor_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_floor_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_floor_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_floor_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_floor_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_floor_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_floor_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_floor_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_floor_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_frac_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_frac_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_frac_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_frac_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_frexp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_frexp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_frexp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_frexp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_half_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_half_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_half_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_half_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_half_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_half_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_half_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_half_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_half_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_half_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_half_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_half_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_i0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_i0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_i0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_i0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_i0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_i0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_i0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_i0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_imag_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_imag_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_imag_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_int_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_int_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_int_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_int_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_int_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_int_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_int_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_int_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_int_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_int_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_int_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_int_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isfinite_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isfinite_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isfinite_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isfinite_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isfinite_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isfinite_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isfinite_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isfinite_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isfinite_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isfinite_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isfinite_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isfinite_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isfinite_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isinf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isinf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isinf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isnan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isnan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isnan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isnan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isnan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isnan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isnan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isnan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isnan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isnan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isnan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isnan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isneginf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isneginf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isneginf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isneginf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isneginf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isneginf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isneginf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isneginf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isneginf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isneginf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isposinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isposinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isposinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isposinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isposinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isposinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isposinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isposinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isposinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isposinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isreal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isreal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isreal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isreal_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isreal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isreal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isreal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isreal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isreal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isreal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isreal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isreal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_isreal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_jiterator_unary_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_jiterator_unary_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_jiterator_unary_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_jiterator_unary_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_jiterator_unary_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_jiterator_unary_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_jiterator_unary_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_jiterator_unary_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_jiterator_unary_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_jiterator_unary_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_jiterator_unary_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_jiterator_unary_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_lgamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_lgamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_lgamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_lgamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_lgamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_lgamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_lgamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_lgamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_lgamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_lgamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log10_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log10_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log10_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log10_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log10_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log10_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log10_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log10_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log10_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log10_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log10_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log10_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log1p_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log1p_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log1p_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log1p_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log1p_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log1p_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log1p_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log1p_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log1p_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log1p_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log1p_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log1p_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_log_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_logical_not_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_logical_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_logical_not_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_logical_not_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_logical_not_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_logical_not_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_logical_not_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_logical_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_logical_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_logical_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_logical_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_logical_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_logit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_logit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_logit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_logit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_logit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_logit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_logit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_logit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_logit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_logit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_long_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_long_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_long_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_long_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_long_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_long_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_long_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_long_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_long_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_long_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_long_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_long_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_long_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_mvlgamma_mvlgamma_p_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_mvlgamma_mvlgamma_p_1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_mvlgamma_mvlgamma_p_1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_mvlgamma_mvlgamma_p_1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_mvlgamma_mvlgamma_p_1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_mvlgamma_mvlgamma_p_1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_mvlgamma_mvlgamma_p_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_mvlgamma_mvlgamma_p_3_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_mvlgamma_mvlgamma_p_3_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_mvlgamma_mvlgamma_p_3_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_mvlgamma_mvlgamma_p_3_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_mvlgamma_mvlgamma_p_3_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_mvlgamma_mvlgamma_p_3_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_mvlgamma_mvlgamma_p_5_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_mvlgamma_mvlgamma_p_5_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_mvlgamma_mvlgamma_p_5_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_mvlgamma_mvlgamma_p_5_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_mvlgamma_mvlgamma_p_5_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_mvlgamma_mvlgamma_p_5_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_mvlgamma_mvlgamma_p_5_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nan_to_num_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nan_to_num_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nan_to_num_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nan_to_num_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nan_to_num_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nan_to_num_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nan_to_num_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nan_to_num_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nan_to_num_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nan_to_num_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_neg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_neg_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_neg_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_neg_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_neg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_neg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_neg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_neg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_neg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_neg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_neg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_neg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_celu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_celu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_celu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_celu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_elu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_elu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_elu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_elu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_hardshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_hardshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_hardshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_hardshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_hardsigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_hardsigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_hardsigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_hardsigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_hardtanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_hardtanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_hardtanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_hardtanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_hardtanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_hardtanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_hardtanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_hardtanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_logsigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_logsigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_logsigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_logsigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_mish_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_mish_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_mish_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_mish_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_prelu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_prelu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_prelu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_prelu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_relu6_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_relu6_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_relu6_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_relu6_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_relu6_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_relu6_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_relu6_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_relu6_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_relu6_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_relu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_relu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_relu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_relu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_relu_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_relu_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_relu_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_relu_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_relu_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_rrelu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_rrelu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_rrelu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_selu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_selu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_selu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_selu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_silu_complex_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_silu_complex_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_silu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_silu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_silu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_silu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_softplus_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_softplus_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_softplus_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_softplus_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_softshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_softshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_softshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_softshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_softsign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_softsign_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_softsign_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_softsign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_softsign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_softsign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_softsign_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_softsign_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_softsign_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_softsign_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_softsign_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_tanhshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_tanhshrink_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_tanhshrink_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_tanhshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_tanhshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_tanhshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_tanhshrink_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_tanhshrink_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_tanhshrink_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_tanhshrink_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_tanhshrink_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_threshold_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_threshold_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_threshold_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_threshold_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_threshold_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_threshold_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_threshold_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_threshold_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_nn_functional_threshold_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_3_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_3_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_3_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_3_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_3_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_3_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_4_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_4_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_4_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_4_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_4_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_4_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_4_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_4_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_polygamma_polygamma_n_4_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_positive_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_positive_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_positive_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_positive_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_positive_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_positive_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_positive_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_positive_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_positive_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_positive_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_positive_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_positive_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_rad2deg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_rad2deg_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_rad2deg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_rad2deg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_rad2deg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_rad2deg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_rad2deg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_rad2deg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_rad2deg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_rad2deg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_real_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_real_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_real_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_real_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_real_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_real_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_real_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_real_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_real_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_real_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_real_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_real_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_real_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_reciprocal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_reciprocal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_reciprocal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_reciprocal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_reciprocal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_reciprocal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_reciprocal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_reciprocal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_reciprocal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_reciprocal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_reciprocal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_reciprocal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_round_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_round_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_round_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_round_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_round_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_round_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_round_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_round_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_round_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_round_decimals_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_round_decimals_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_round_decimals_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_round_decimals_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_round_decimals_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_round_decimals_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_round_decimals_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_round_decimals_neg_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_round_decimals_neg_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_round_decimals_neg_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_rsqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_rsqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_rsqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_rsqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_rsqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_rsqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_rsqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_rsqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_rsqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_rsqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_rsqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_rsqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sgn_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sgn_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sgn_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sgn_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sgn_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sgn_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sgn_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sgn_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sgn_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sgn_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sgn_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sgn_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sgn_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_short_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_short_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_short_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_short_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_short_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_short_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_short_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_short_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_short_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_short_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_short_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_short_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sigmoid_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sigmoid_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sigmoid_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sigmoid_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sigmoid_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sigmoid_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sigmoid_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sigmoid_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sign_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sign_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sign_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sign_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sign_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sign_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_signbit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_signbit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_signbit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_signbit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_signbit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_signbit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_signbit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_signbit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_signbit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_signbit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sinc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sinc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sinc_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sinc_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sinc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sinc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sinc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sinc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sinc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sinc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sinc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sinc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_airy_ai_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_airy_ai_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_airy_ai_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_airy_ai_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_airy_ai_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_airy_ai_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_airy_ai_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_airy_ai_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_bessel_j1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_bessel_j1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_bessel_j1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_bessel_j1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_bessel_j1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_bessel_j1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_bessel_j1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_bessel_j1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_bessel_y0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_bessel_y0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_bessel_y0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_bessel_y0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_bessel_y0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_bessel_y0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_bessel_y0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_bessel_y0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_bessel_y1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_bessel_y1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_bessel_y1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_bessel_y1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_bessel_y1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_bessel_y1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_bessel_y1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_bessel_y1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_entr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_entr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_entr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_entr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_entr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_entr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_entr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_entr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_entr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_entr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_erfcx_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_erfcx_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_erfcx_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_erfcx_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_erfcx_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_erfcx_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_erfcx_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_erfcx_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_i0e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_i0e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_i0e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_i0e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_i0e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_i0e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_i0e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_i0e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_i0e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_i0e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_i1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_i1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_i1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_i1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_i1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_i1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_i1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_i1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_i1e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_i1e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_i1e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_i1e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_i1e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_i1e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_i1e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_i1e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_i1e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_i1e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_log_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_log_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_log_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_log_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_log_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_log_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_log_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_log_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_modified_bessel_i0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_modified_bessel_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_modified_bessel_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_modified_bessel_i0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_modified_bessel_i0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_modified_bessel_i0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_modified_bessel_i0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_modified_bessel_i0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_modified_bessel_i1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_modified_bessel_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_modified_bessel_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_modified_bessel_i1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_modified_bessel_i1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_modified_bessel_i1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_modified_bessel_i1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_modified_bessel_i1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_modified_bessel_k0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_modified_bessel_k0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_modified_bessel_k0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_modified_bessel_k0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_modified_bessel_k0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_modified_bessel_k0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_modified_bessel_k0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_modified_bessel_k0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_modified_bessel_k1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_modified_bessel_k1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_modified_bessel_k1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_modified_bessel_k1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_modified_bessel_k1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_modified_bessel_k1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_modified_bessel_k1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_modified_bessel_k1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_ndtr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_ndtr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_ndtri_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_ndtri_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_ndtri_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_ndtri_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_ndtri_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_ndtri_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_ndtri_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_ndtri_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_polygamma_special_polygamma_n_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_polygamma_special_polygamma_n_0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_polygamma_special_polygamma_n_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_polygamma_special_polygamma_n_0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_polygamma_special_polygamma_n_0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_polygamma_special_polygamma_n_0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_polygamma_special_polygamma_n_0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_polygamma_special_polygamma_n_0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_scaled_modified_bessel_k0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_scaled_modified_bessel_k0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_scaled_modified_bessel_k0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_scaled_modified_bessel_k0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_scaled_modified_bessel_k0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_scaled_modified_bessel_k0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_scaled_modified_bessel_k0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_scaled_modified_bessel_k0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_scaled_modified_bessel_k1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_scaled_modified_bessel_k1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_scaled_modified_bessel_k1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_scaled_modified_bessel_k1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_scaled_modified_bessel_k1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_scaled_modified_bessel_k1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_scaled_modified_bessel_k1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_scaled_modified_bessel_k1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_spherical_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_spherical_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_spherical_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_spherical_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_spherical_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_spherical_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_spherical_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_special_spherical_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_sqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_square_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_square_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_square_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_square_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_square_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_square_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_square_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_square_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_square_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_square_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_square_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_square_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_tan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_tan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_tan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_tan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_tan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_tan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_tan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_tan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_tan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_tan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_tan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_tan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_tanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_tanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_tanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_tanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_tanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_tanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_tanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_tanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_tanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_tanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_tanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_tanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_trunc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_trunc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_trunc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_trunc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_trunc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_trunc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_trunc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_trunc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_large_dim_trunc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_lgamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_lgamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_lgamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_lgamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_lgamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_lgamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_lgamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_lgamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_lgamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_lgamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log10_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log10_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log10_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log10_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log10_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log10_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log10_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log10_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log10_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log10_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log10_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log10_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log1p_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log1p_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log1p_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log1p_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log1p_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log1p_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log1p_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log1p_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log1p_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log1p_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log1p_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log1p_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_log_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_logical_not_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_logical_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_logical_not_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_logical_not_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_logical_not_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_logical_not_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_logical_not_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_logical_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_logical_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_logical_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_logical_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_logical_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_logit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_logit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_logit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_logit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_logit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_logit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_logit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_logit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_logit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_logit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_long_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_long_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_long_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_long_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_long_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_long_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_long_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_long_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_long_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_long_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_long_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_long_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_long_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_mvlgamma_mvlgamma_p_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_mvlgamma_mvlgamma_p_1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_mvlgamma_mvlgamma_p_1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_mvlgamma_mvlgamma_p_1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_mvlgamma_mvlgamma_p_1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_mvlgamma_mvlgamma_p_1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_mvlgamma_mvlgamma_p_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_mvlgamma_mvlgamma_p_3_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_mvlgamma_mvlgamma_p_3_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_mvlgamma_mvlgamma_p_3_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_mvlgamma_mvlgamma_p_3_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_mvlgamma_mvlgamma_p_3_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_mvlgamma_mvlgamma_p_3_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_mvlgamma_mvlgamma_p_5_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_mvlgamma_mvlgamma_p_5_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_mvlgamma_mvlgamma_p_5_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_mvlgamma_mvlgamma_p_5_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_mvlgamma_mvlgamma_p_5_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_mvlgamma_mvlgamma_p_5_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_mvlgamma_mvlgamma_p_5_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nan_to_num_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nan_to_num_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nan_to_num_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nan_to_num_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nan_to_num_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nan_to_num_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nan_to_num_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nan_to_num_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nan_to_num_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nan_to_num_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_neg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_neg_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_neg_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_neg_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_neg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_neg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_neg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_neg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_neg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_neg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_neg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_neg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_celu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_celu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_celu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_celu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_elu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_elu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_elu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_elu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_hardshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_hardshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_hardshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_hardshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_hardsigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_hardsigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_hardsigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_hardsigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_hardtanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_hardtanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_hardtanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_hardtanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_hardtanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_hardtanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_hardtanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_hardtanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_logsigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_logsigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_logsigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_logsigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_mish_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_mish_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_mish_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_mish_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_prelu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_prelu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_prelu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_prelu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_relu6_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_relu6_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_relu6_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_relu6_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_relu6_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_relu6_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_relu6_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_relu6_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_relu6_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_relu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_relu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_relu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_relu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_relu_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_relu_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_relu_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_relu_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_relu_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_rrelu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_rrelu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_rrelu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_selu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_selu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_selu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_selu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_silu_complex_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_silu_complex_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_silu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_silu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_silu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_silu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_softplus_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_softplus_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_softplus_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_softplus_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_softshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_softshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_softshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_softshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_softsign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_softsign_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_softsign_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_softsign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_softsign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_softsign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_softsign_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_softsign_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_softsign_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_softsign_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_softsign_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_tanhshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_tanhshrink_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_tanhshrink_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_tanhshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_tanhshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_tanhshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_tanhshrink_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_tanhshrink_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_tanhshrink_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_tanhshrink_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_tanhshrink_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_threshold_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_threshold_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_threshold_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_threshold_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_threshold_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_threshold_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_threshold_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_threshold_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_nn_functional_threshold_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_3_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_3_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_3_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_3_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_3_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_3_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_4_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_4_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_4_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_4_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_4_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_4_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_4_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_4_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_polygamma_polygamma_n_4_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_positive_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_positive_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_positive_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_positive_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_positive_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_positive_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_positive_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_positive_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_positive_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_positive_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_positive_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_positive_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_rad2deg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_rad2deg_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_rad2deg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_rad2deg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_rad2deg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_rad2deg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_rad2deg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_rad2deg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_rad2deg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_rad2deg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_real_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_real_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_real_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_real_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_real_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_real_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_real_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_real_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_real_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_real_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_real_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_real_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_real_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_reciprocal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_reciprocal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_reciprocal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_reciprocal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_reciprocal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_reciprocal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_reciprocal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_reciprocal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_reciprocal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_reciprocal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_reciprocal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_reciprocal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_round_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_round_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_round_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_round_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_round_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_round_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_round_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_round_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_round_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_round_decimals_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_round_decimals_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_round_decimals_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_round_decimals_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_round_decimals_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_round_decimals_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_round_decimals_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_round_decimals_neg_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_round_decimals_neg_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_round_decimals_neg_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_rsqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_rsqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_rsqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_rsqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_rsqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_rsqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_rsqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_rsqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_rsqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_rsqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_rsqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_rsqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sgn_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sgn_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sgn_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sgn_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sgn_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sgn_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sgn_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sgn_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sgn_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sgn_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sgn_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sgn_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sgn_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_short_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_short_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_short_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_short_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_short_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_short_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_short_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_short_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_short_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_short_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_short_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_short_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sigmoid_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sigmoid_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sigmoid_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sigmoid_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sigmoid_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sigmoid_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sigmoid_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sigmoid_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sign_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sign_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sign_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sign_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sign_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sign_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_signbit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_signbit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_signbit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_signbit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_signbit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_signbit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_signbit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_signbit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_signbit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_signbit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sinc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sinc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sinc_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sinc_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sinc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sinc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sinc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sinc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sinc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sinc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sinc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sinc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_airy_ai_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_airy_ai_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_airy_ai_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_airy_ai_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_airy_ai_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_airy_ai_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_airy_ai_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_airy_ai_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_bessel_j1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_bessel_j1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_bessel_j1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_bessel_j1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_bessel_j1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_bessel_j1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_bessel_j1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_bessel_j1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_bessel_y0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_bessel_y0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_bessel_y0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_bessel_y0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_bessel_y0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_bessel_y0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_bessel_y0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_bessel_y0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_bessel_y1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_bessel_y1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_bessel_y1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_bessel_y1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_bessel_y1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_bessel_y1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_bessel_y1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_bessel_y1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_entr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_entr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_entr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_entr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_entr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_entr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_entr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_entr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_entr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_entr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_erfcx_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_erfcx_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_erfcx_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_erfcx_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_erfcx_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_erfcx_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_erfcx_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_erfcx_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_i0e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_i0e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_i0e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_i0e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_i0e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_i0e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_i0e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_i0e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_i0e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_i0e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_i1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_i1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_i1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_i1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_i1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_i1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_i1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_i1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_i1e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_i1e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_i1e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_i1e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_i1e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_i1e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_i1e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_i1e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_i1e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_i1e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_log_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_log_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_log_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_log_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_log_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_log_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_log_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_log_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_modified_bessel_i0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_modified_bessel_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_modified_bessel_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_modified_bessel_i0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_modified_bessel_i0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_modified_bessel_i0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_modified_bessel_i0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_modified_bessel_i0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_modified_bessel_i1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_modified_bessel_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_modified_bessel_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_modified_bessel_i1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_modified_bessel_i1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_modified_bessel_i1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_modified_bessel_i1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_modified_bessel_i1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_modified_bessel_k0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_modified_bessel_k0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_modified_bessel_k0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_modified_bessel_k0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_modified_bessel_k0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_modified_bessel_k0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_modified_bessel_k0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_modified_bessel_k0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_modified_bessel_k1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_modified_bessel_k1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_modified_bessel_k1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_modified_bessel_k1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_modified_bessel_k1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_modified_bessel_k1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_modified_bessel_k1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_modified_bessel_k1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_ndtr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_ndtr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_ndtri_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_ndtri_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_ndtri_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_ndtri_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_ndtri_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_ndtri_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_ndtri_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_ndtri_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_polygamma_special_polygamma_n_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_polygamma_special_polygamma_n_0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_polygamma_special_polygamma_n_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_polygamma_special_polygamma_n_0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_polygamma_special_polygamma_n_0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_polygamma_special_polygamma_n_0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_polygamma_special_polygamma_n_0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_polygamma_special_polygamma_n_0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_scaled_modified_bessel_k0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_scaled_modified_bessel_k0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_scaled_modified_bessel_k0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_scaled_modified_bessel_k0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_scaled_modified_bessel_k0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_scaled_modified_bessel_k0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_scaled_modified_bessel_k0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_scaled_modified_bessel_k0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_scaled_modified_bessel_k1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_scaled_modified_bessel_k1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_scaled_modified_bessel_k1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_scaled_modified_bessel_k1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_scaled_modified_bessel_k1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_scaled_modified_bessel_k1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_scaled_modified_bessel_k1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_scaled_modified_bessel_k1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_spherical_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_spherical_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_spherical_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_spherical_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_spherical_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_spherical_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_spherical_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_special_spherical_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_sqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_square_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_square_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_square_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_square_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_square_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_square_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_square_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_square_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_square_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_square_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_square_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_square_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_tan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_tan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_tan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_tan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_tan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_tan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_tan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_tan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_tan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_tan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_tan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_tan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_tanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_tanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_tanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_tanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_tanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_tanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_tanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_tanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_tanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_tanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_tanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_tanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_trunc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_trunc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_trunc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_trunc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_trunc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_trunc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_trunc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_trunc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_size1_trunc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_bfloat16_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_bfloat16_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_bfloat16_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_bfloat16_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_bfloat16_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_bfloat16_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_bfloat16_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_bfloat16_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_bfloat16_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_bfloat16_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_bfloat16_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_bfloat16_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_bfloat16_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_bool_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_bool_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_bool_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_bool_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_bool_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_bool_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_bool_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_bool_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_bool_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_bool_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_bool_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_bool_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_bool_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_byte_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_byte_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_byte_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_byte_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_byte_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_byte_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_byte_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_byte_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_byte_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_byte_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_byte_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_byte_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_cdouble_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_cdouble_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_cdouble_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_cdouble_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_cdouble_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_cdouble_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_cdouble_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_cdouble_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_cdouble_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_cdouble_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_cdouble_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_cdouble_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_cdouble_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_cfloat_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_cfloat_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_cfloat_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_cfloat_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_cfloat_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_cfloat_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_cfloat_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_cfloat_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_cfloat_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_cfloat_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_cfloat_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_cfloat_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_cfloat_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_chalf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_chalf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_chalf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_chalf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_chalf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_chalf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_chalf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_chalf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_chalf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_chalf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_chalf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_chalf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_chalf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_char_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_char_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_char_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_char_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_char_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_char_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_char_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_char_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_char_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_char_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_char_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_char_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_char_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_double_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_double_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_double_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_double_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_double_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_double_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_double_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_double_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_double_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_double_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_double_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_double_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_double_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_float_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_float_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_float_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_float_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_float_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_float_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_float_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_float_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_float_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_float_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_float_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_float_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_float_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_half_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_half_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_half_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_half_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_half_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_half_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_half_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_half_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_half_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_half_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_half_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_half_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_int_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_int_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_int_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_int_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_int_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_int_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_int_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_int_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_int_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_int_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_int_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_int_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_long_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_long_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_long_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_long_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_long_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_long_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_long_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_long_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_long_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_long_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_long_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_long_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_long_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_short_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_short_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_short_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_short_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_short_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_short_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_short_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_short_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_short_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_short_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_short_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_short_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_abs_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_abs_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_abs_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_abs_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_abs_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_abs_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_abs_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_abs_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_abs_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_abs_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_abs_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_abs_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_acos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_acos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_acos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_acos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_acos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_acos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_acos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_acos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_acos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_acos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_acos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_acos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_acosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_acosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_acosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_acosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_acosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_acosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_acosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_acosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_acosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_acosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_acosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_acosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_asin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_asin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_asin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_asin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_asin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_asin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_asin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_asin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_asin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_asin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_asin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_asin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_asinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_asinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_asinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_asinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_asinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_asinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_asinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_asinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_asinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_asinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_asinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_asinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_atan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_atan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_atan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_atan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_atan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_atan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_atan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_atan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_atan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_atan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_atan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_atan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_atanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_atanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_atanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_atanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_atanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_atanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_atanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_atanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_atanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_atanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_atanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_atanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_bitwise_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_bitwise_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_bitwise_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_bitwise_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_bitwise_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_bitwise_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_ceil_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_ceil_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_ceil_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_ceil_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_ceil_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_ceil_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_ceil_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_ceil_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_ceil_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_conj_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_conj_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_conj_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_conj_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_conj_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_conj_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_conj_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_conj_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_conj_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_conj_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_conj_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_conj_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_conj_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_conj_physical_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_conj_physical_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_conj_physical_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_conj_physical_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_conj_physical_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_conj_physical_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_conj_physical_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_conj_physical_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_conj_physical_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_conj_physical_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_conj_physical_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_conj_physical_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_conj_physical_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_cos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_cos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_cos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_cos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_cos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_cos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_cos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_cos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_cos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_cos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_cos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_cos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_cosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_cosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_cosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_cosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_cosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_cosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_cosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_cosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_cosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_cosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_cosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_cosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_deg2rad_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_deg2rad_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_deg2rad_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_deg2rad_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_deg2rad_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_deg2rad_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_deg2rad_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_deg2rad_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_deg2rad_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_deg2rad_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_digamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_digamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_digamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_digamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_digamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_digamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_digamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_digamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_digamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_digamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_erf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_erf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_erf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_erf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_erf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_erf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_erf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_erf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_erf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_erf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_erfc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_erfc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_erfc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_erfc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_erfc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_erfc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_erfc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_erfc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_erfc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_erfc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_erfinv_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_erfinv_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_erfinv_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_erfinv_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_erfinv_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_erfinv_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_erfinv_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_erfinv_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_erfinv_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_erfinv_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_exp2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_exp2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_exp2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_exp2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_exp2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_exp2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_exp2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_exp2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_exp2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_exp2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_exp2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_exp2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_exp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_exp_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_exp_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_exp_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_exp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_exp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_exp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_exp_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_exp_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_exp_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_exp_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_exp_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_expm1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_expm1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_expm1_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_expm1_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_expm1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_expm1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_expm1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_expm1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_expm1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_expm1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_expm1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_expm1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_fill_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_fill_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_fill_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_fill_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_fill_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_fill_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_fill_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_fill_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_fill_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_fill_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_fill_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_fill_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_fill_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_floor_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_floor_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_floor_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_floor_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_floor_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_floor_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_floor_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_floor_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_floor_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_frac_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_frac_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_frac_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_frac_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_frexp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_frexp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_frexp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_frexp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_i0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_i0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_i0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_i0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_i0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_i0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_i0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_i0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_imag_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_imag_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_imag_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isfinite_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isfinite_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isfinite_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isfinite_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isfinite_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isfinite_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isfinite_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isfinite_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isfinite_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isfinite_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isfinite_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isfinite_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isfinite_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isinf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isinf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isinf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isnan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isnan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isnan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isnan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isnan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isnan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isnan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isnan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isnan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isnan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isnan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isnan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isneginf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isneginf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isneginf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isneginf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isneginf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isneginf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isneginf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isneginf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isneginf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isneginf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isposinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isposinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isposinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isposinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isposinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isposinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isposinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isposinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isposinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isposinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isreal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isreal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isreal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isreal_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isreal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isreal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isreal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isreal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isreal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isreal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isreal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isreal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_isreal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_lgamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_lgamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_lgamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_lgamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_lgamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_lgamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_lgamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_lgamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_lgamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_lgamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log10_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log10_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log10_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log10_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log10_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log10_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log10_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log10_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log10_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log10_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log10_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log10_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log1p_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log1p_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log1p_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log1p_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log1p_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log1p_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log1p_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log1p_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log1p_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log1p_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log1p_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log1p_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_log_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_logical_not_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_logical_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_logical_not_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_logical_not_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_logical_not_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_logical_not_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_logical_not_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_logical_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_logical_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_logical_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_logical_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_logical_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nan_to_num_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nan_to_num_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nan_to_num_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nan_to_num_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nan_to_num_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nan_to_num_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nan_to_num_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nan_to_num_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nan_to_num_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nan_to_num_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_neg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_neg_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_neg_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_neg_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_neg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_neg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_neg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_neg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_neg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_neg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_neg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_neg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_celu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_celu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_celu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_celu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_elu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_elu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_elu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_elu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_hardshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_hardshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_hardshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_hardshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_hardtanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_hardtanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_hardtanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_hardtanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_hardtanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_hardtanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_hardtanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_hardtanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_mish_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_mish_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_mish_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_mish_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_prelu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_prelu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_prelu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_prelu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_relu6_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_relu6_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_relu6_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_relu6_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_relu6_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_relu6_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_relu6_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_relu6_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_relu6_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_relu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_relu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_relu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_relu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_relu_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_relu_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_relu_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_relu_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_relu_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_selu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_selu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_selu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_selu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_softplus_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_softplus_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_softplus_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_softplus_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_softshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_softshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_softshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_softshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_tanhshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_tanhshrink_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_tanhshrink_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_tanhshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_tanhshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_tanhshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_tanhshrink_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_tanhshrink_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_tanhshrink_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_tanhshrink_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_tanhshrink_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_threshold_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_threshold_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_threshold_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_threshold_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_threshold_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_threshold_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_threshold_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_threshold_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_nn_functional_threshold_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_positive_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_positive_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_positive_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_positive_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_positive_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_positive_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_positive_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_positive_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_positive_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_positive_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_positive_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_positive_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_rad2deg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_rad2deg_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_rad2deg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_rad2deg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_rad2deg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_rad2deg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_rad2deg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_rad2deg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_rad2deg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_rad2deg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_real_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_real_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_real_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_real_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_real_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_real_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_real_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_real_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_real_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_real_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_real_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_real_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_real_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_reciprocal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_reciprocal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_reciprocal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_reciprocal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_reciprocal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_reciprocal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_reciprocal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_reciprocal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_reciprocal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_reciprocal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_reciprocal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_reciprocal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_round_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_round_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_round_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_round_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_round_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_round_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_round_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_round_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_round_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_rsqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_rsqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_rsqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_rsqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_rsqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_rsqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_rsqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_rsqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_rsqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_rsqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_rsqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_rsqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sgn_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sgn_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sgn_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sgn_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sgn_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sgn_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sgn_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sgn_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sgn_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sgn_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sgn_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sgn_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sgn_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sigmoid_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sigmoid_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sigmoid_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sigmoid_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sigmoid_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sigmoid_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sigmoid_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sigmoid_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sign_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sign_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sign_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sign_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sign_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sign_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_signbit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_signbit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_signbit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_signbit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_signbit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_signbit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_signbit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_signbit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_signbit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_signbit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sinc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sinc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sinc_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sinc_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sinc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sinc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sinc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sinc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sinc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sinc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sinc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sinc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_bessel_j1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_bessel_j1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_bessel_j1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_bessel_j1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_bessel_j1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_bessel_j1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_bessel_j1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_bessel_j1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_entr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_entr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_entr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_entr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_entr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_entr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_entr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_entr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_entr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_entr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_erfcx_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_erfcx_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_erfcx_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_erfcx_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_erfcx_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_erfcx_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_erfcx_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_erfcx_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_i0e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_i0e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_i0e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_i0e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_i0e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_i0e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_i0e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_i0e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_i0e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_i0e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_i1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_i1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_i1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_i1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_i1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_i1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_i1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_i1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_i1e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_i1e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_i1e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_i1e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_i1e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_i1e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_i1e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_i1e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_i1e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_i1e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_log_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_log_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_log_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_log_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_log_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_log_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_log_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_log_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_logit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_logit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_logit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_logit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_logit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_logit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_logit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_logit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_logit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_logit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_multigammaln_mvlgamma_p_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_multigammaln_mvlgamma_p_1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_multigammaln_mvlgamma_p_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_multigammaln_mvlgamma_p_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_multigammaln_mvlgamma_p_1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_multigammaln_mvlgamma_p_1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_multigammaln_mvlgamma_p_1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_multigammaln_mvlgamma_p_1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_multigammaln_mvlgamma_p_1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_multigammaln_mvlgamma_p_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_multigammaln_mvlgamma_p_3_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_multigammaln_mvlgamma_p_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_multigammaln_mvlgamma_p_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_multigammaln_mvlgamma_p_3_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_multigammaln_mvlgamma_p_3_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_multigammaln_mvlgamma_p_3_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_multigammaln_mvlgamma_p_3_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_multigammaln_mvlgamma_p_3_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_multigammaln_mvlgamma_p_5_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_multigammaln_mvlgamma_p_5_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_multigammaln_mvlgamma_p_5_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_multigammaln_mvlgamma_p_5_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_multigammaln_mvlgamma_p_5_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_multigammaln_mvlgamma_p_5_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_multigammaln_mvlgamma_p_5_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_multigammaln_mvlgamma_p_5_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_multigammaln_mvlgamma_p_5_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_ndtr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_ndtr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_ndtri_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_ndtri_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_ndtri_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_ndtri_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_ndtri_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_ndtri_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_ndtri_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_ndtri_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_spherical_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_spherical_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_spherical_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_spherical_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_spherical_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_spherical_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_spherical_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_special_spherical_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_sqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_square_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_square_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_square_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_square_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_square_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_square_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_square_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_square_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_square_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_square_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_square_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_square_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_tan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_tan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_tan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_tan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_tan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_tan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_tan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_tan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_tan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_tan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_tan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_tan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_tanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_tanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_tanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_tanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_tanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_tanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_tanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_tanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_tanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_tanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_tanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_tanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_trunc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_trunc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_trunc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_trunc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_trunc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_trunc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_trunc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_trunc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other__refs_trunc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_abs_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_abs_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_abs_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_abs_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_abs_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_abs_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_abs_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_abs_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_abs_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_abs_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_abs_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_abs_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_acos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_acos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_acos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_acos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_acos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_acos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_acos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_acos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_acos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_acos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_acos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_acos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_acosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_acosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_acosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_acosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_acosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_acosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_acosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_acosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_acosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_acosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_acosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_acosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_angle_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_angle_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_angle_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_angle_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_angle_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_angle_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_angle_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_angle_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_angle_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_angle_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_angle_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_angle_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_asin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_asin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_asin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_asin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_asin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_asin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_asin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_asin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_asin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_asin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_asin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_asin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_asinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_asinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_asinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_asinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_asinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_asinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_asinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_asinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_asinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_asinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_asinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_asinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_atan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_atan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_atan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_atan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_atan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_atan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_atan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_atan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_atan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_atan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_atan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_atan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_atanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_atanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_atanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_atanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_atanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_atanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_atanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_atanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_atanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_atanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_atanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_atanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_bfloat16_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_bfloat16_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_bfloat16_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_bfloat16_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_bfloat16_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_bfloat16_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_bfloat16_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_bfloat16_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_bfloat16_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_bfloat16_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_bfloat16_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_bfloat16_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_bfloat16_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_bitwise_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_bitwise_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_bitwise_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_bitwise_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_bitwise_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_bitwise_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_bool_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_bool_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_bool_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_bool_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_bool_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_bool_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_bool_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_bool_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_bool_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_bool_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_bool_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_bool_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_bool_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_byte_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_byte_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_byte_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_byte_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_byte_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_byte_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_byte_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_byte_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_byte_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_byte_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_byte_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_byte_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cdouble_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cdouble_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cdouble_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cdouble_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cdouble_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cdouble_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cdouble_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cdouble_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cdouble_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cdouble_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cdouble_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cdouble_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cdouble_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_ceil_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_ceil_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_ceil_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_ceil_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_ceil_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_ceil_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_ceil_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_ceil_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_ceil_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cfloat_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cfloat_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cfloat_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cfloat_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cfloat_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cfloat_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cfloat_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cfloat_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cfloat_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cfloat_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cfloat_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cfloat_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cfloat_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_chalf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_chalf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_chalf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_chalf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_chalf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_chalf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_chalf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_chalf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_chalf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_chalf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_chalf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_chalf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_chalf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_char_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_char_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_char_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_char_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_char_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_char_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_char_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_char_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_char_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_char_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_char_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_char_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_char_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_conj_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_conj_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_conj_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_conj_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_conj_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_conj_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_conj_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_conj_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_conj_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_conj_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_conj_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_conj_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_conj_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_conj_physical_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_conj_physical_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_conj_physical_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_conj_physical_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_conj_physical_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_conj_physical_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_conj_physical_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_conj_physical_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_conj_physical_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_conj_physical_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_conj_physical_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_conj_physical_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_conj_physical_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_cosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_deg2rad_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_deg2rad_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_deg2rad_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_deg2rad_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_deg2rad_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_deg2rad_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_deg2rad_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_deg2rad_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_deg2rad_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_deg2rad_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_digamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_digamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_digamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_digamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_digamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_digamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_digamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_digamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_digamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_digamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_double_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_double_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_double_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_double_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_double_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_double_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_double_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_double_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_double_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_double_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_double_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_double_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_double_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_erf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_erf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_erf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_erf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_erf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_erf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_erf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_erf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_erf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_erf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_erfc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_erfc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_erfc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_erfc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_erfc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_erfc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_erfc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_erfc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_erfc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_erfc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_erfinv_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_erfinv_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_erfinv_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_erfinv_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_erfinv_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_erfinv_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_erfinv_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_erfinv_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_erfinv_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_erfinv_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_exp2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_exp2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_exp2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_exp2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_exp2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_exp2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_exp2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_exp2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_exp2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_exp2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_exp2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_exp2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_exp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_exp_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_exp_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_exp_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_exp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_exp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_exp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_exp_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_exp_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_exp_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_exp_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_exp_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_expm1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_expm1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_expm1_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_expm1_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_expm1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_expm1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_expm1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_expm1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_expm1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_expm1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_expm1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_expm1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_fill_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_fill_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_fill_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_fill_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_fill_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_fill_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_fill_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_fill_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_fill_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_fill_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_fill_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_fill_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_fill_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_float_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_float_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_float_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_float_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_float_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_float_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_float_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_float_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_float_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_float_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_float_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_float_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_float_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_floor_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_floor_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_floor_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_floor_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_floor_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_floor_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_floor_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_floor_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_floor_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_frac_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_frac_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_frac_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_frac_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_frexp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_frexp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_frexp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_frexp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_half_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_half_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_half_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_half_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_half_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_half_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_half_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_half_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_half_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_half_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_half_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_half_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_i0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_i0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_i0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_i0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_i0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_i0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_i0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_i0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_imag_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_imag_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_imag_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_int_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_int_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_int_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_int_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_int_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_int_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_int_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_int_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_int_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_int_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_int_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_int_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isfinite_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isfinite_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isfinite_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isfinite_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isfinite_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isfinite_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isfinite_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isfinite_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isfinite_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isfinite_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isfinite_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isfinite_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isfinite_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isinf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isinf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isinf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isnan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isnan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isnan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isnan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isnan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isnan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isnan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isnan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isnan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isnan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isnan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isnan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isneginf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isneginf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isneginf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isneginf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isneginf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isneginf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isneginf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isneginf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isneginf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isneginf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isposinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isposinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isposinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isposinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isposinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isposinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isposinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isposinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isposinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isposinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isreal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isreal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isreal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isreal_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isreal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isreal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isreal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isreal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isreal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isreal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isreal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isreal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_isreal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_jiterator_unary_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_jiterator_unary_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_jiterator_unary_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_jiterator_unary_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_jiterator_unary_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_jiterator_unary_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_jiterator_unary_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_jiterator_unary_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_jiterator_unary_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_jiterator_unary_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_jiterator_unary_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_jiterator_unary_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_lgamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_lgamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_lgamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_lgamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_lgamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_lgamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_lgamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_lgamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_lgamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_lgamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log10_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log10_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log10_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log10_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log10_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log10_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log10_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log10_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log10_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log10_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log10_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log10_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log1p_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log1p_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log1p_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log1p_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log1p_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log1p_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log1p_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log1p_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log1p_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log1p_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log1p_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log1p_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_log_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_logical_not_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_logical_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_logical_not_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_logical_not_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_logical_not_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_logical_not_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_logical_not_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_logical_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_logical_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_logical_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_logical_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_logical_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_logit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_logit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_logit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_logit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_logit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_logit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_logit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_logit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_logit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_logit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_long_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_long_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_long_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_long_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_long_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_long_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_long_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_long_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_long_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_long_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_long_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_long_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_long_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_mvlgamma_mvlgamma_p_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_mvlgamma_mvlgamma_p_1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_mvlgamma_mvlgamma_p_1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_mvlgamma_mvlgamma_p_1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_mvlgamma_mvlgamma_p_1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_mvlgamma_mvlgamma_p_1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_mvlgamma_mvlgamma_p_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_mvlgamma_mvlgamma_p_3_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_mvlgamma_mvlgamma_p_3_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_mvlgamma_mvlgamma_p_3_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_mvlgamma_mvlgamma_p_3_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_mvlgamma_mvlgamma_p_3_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_mvlgamma_mvlgamma_p_3_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_mvlgamma_mvlgamma_p_5_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_mvlgamma_mvlgamma_p_5_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_mvlgamma_mvlgamma_p_5_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_mvlgamma_mvlgamma_p_5_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_mvlgamma_mvlgamma_p_5_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_mvlgamma_mvlgamma_p_5_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_mvlgamma_mvlgamma_p_5_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nan_to_num_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nan_to_num_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nan_to_num_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nan_to_num_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nan_to_num_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nan_to_num_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nan_to_num_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nan_to_num_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nan_to_num_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nan_to_num_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_neg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_neg_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_neg_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_neg_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_neg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_neg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_neg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_neg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_neg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_neg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_neg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_neg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_celu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_celu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_celu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_celu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_elu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_elu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_elu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_elu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_hardshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_hardshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_hardshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_hardshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_hardsigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_hardsigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_hardsigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_hardsigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_hardtanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_hardtanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_hardtanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_hardtanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_hardtanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_hardtanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_hardtanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_hardtanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_logsigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_logsigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_logsigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_logsigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_mish_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_mish_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_mish_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_mish_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_prelu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_prelu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_prelu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_prelu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_relu6_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_relu6_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_relu6_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_relu6_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_relu6_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_relu6_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_relu6_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_relu6_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_relu6_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_relu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_relu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_relu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_relu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_relu_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_relu_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_relu_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_relu_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_relu_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_rrelu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_rrelu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_rrelu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_selu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_selu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_selu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_selu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_silu_complex_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_silu_complex_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_silu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_silu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_silu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_silu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_softplus_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_softplus_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_softplus_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_softplus_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_softshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_softshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_softshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_softshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_softsign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_softsign_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_softsign_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_softsign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_softsign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_softsign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_softsign_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_softsign_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_softsign_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_softsign_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_softsign_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_tanhshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_tanhshrink_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_tanhshrink_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_tanhshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_tanhshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_tanhshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_tanhshrink_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_tanhshrink_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_tanhshrink_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_tanhshrink_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_tanhshrink_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_threshold_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_threshold_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_threshold_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_threshold_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_threshold_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_threshold_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_threshold_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_threshold_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_nn_functional_threshold_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_3_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_3_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_3_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_3_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_3_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_3_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_4_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_4_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_4_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_4_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_4_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_4_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_4_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_4_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_polygamma_polygamma_n_4_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_positive_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_positive_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_positive_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_positive_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_positive_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_positive_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_positive_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_positive_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_positive_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_positive_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_positive_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_positive_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_rad2deg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_rad2deg_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_rad2deg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_rad2deg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_rad2deg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_rad2deg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_rad2deg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_rad2deg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_rad2deg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_rad2deg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_real_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_real_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_real_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_real_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_real_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_real_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_real_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_real_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_real_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_real_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_real_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_real_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_real_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_reciprocal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_reciprocal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_reciprocal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_reciprocal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_reciprocal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_reciprocal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_reciprocal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_reciprocal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_reciprocal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_reciprocal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_reciprocal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_reciprocal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_round_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_round_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_round_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_round_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_round_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_round_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_round_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_round_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_round_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_round_decimals_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_round_decimals_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_round_decimals_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_round_decimals_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_round_decimals_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_round_decimals_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_round_decimals_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_round_decimals_neg_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_round_decimals_neg_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_round_decimals_neg_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_rsqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_rsqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_rsqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_rsqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_rsqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_rsqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_rsqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_rsqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_rsqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_rsqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_rsqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_rsqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sgn_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sgn_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sgn_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sgn_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sgn_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sgn_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sgn_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sgn_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sgn_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sgn_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sgn_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sgn_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sgn_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_short_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_short_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_short_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_short_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_short_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_short_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_short_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_short_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_short_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_short_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_short_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_short_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sigmoid_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sigmoid_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sigmoid_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sigmoid_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sigmoid_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sigmoid_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sigmoid_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sigmoid_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sign_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sign_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sign_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sign_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sign_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sign_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_signbit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_signbit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_signbit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_signbit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_signbit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_signbit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_signbit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_signbit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_signbit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_signbit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sinc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sinc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sinc_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sinc_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sinc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sinc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sinc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sinc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sinc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sinc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sinc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sinc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_airy_ai_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_airy_ai_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_airy_ai_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_airy_ai_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_airy_ai_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_airy_ai_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_airy_ai_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_airy_ai_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_bessel_j1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_bessel_j1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_bessel_j1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_bessel_j1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_bessel_j1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_bessel_j1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_bessel_j1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_bessel_j1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_bessel_y0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_bessel_y0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_bessel_y0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_bessel_y0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_bessel_y0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_bessel_y0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_bessel_y0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_bessel_y0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_bessel_y1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_bessel_y1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_bessel_y1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_bessel_y1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_bessel_y1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_bessel_y1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_bessel_y1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_bessel_y1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_entr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_entr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_entr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_entr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_entr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_entr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_entr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_entr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_entr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_entr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_erfcx_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_erfcx_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_erfcx_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_erfcx_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_erfcx_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_erfcx_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_erfcx_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_erfcx_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_i0e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_i0e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_i0e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_i0e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_i0e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_i0e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_i0e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_i0e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_i0e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_i0e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_i1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_i1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_i1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_i1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_i1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_i1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_i1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_i1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_i1e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_i1e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_i1e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_i1e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_i1e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_i1e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_i1e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_i1e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_i1e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_i1e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_log_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_log_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_log_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_log_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_log_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_log_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_log_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_log_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_modified_bessel_i0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_modified_bessel_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_modified_bessel_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_modified_bessel_i0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_modified_bessel_i0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_modified_bessel_i0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_modified_bessel_i0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_modified_bessel_i0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_modified_bessel_i1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_modified_bessel_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_modified_bessel_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_modified_bessel_i1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_modified_bessel_i1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_modified_bessel_i1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_modified_bessel_i1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_modified_bessel_i1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_modified_bessel_k0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_modified_bessel_k0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_modified_bessel_k0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_modified_bessel_k0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_modified_bessel_k0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_modified_bessel_k0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_modified_bessel_k0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_modified_bessel_k0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_modified_bessel_k1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_modified_bessel_k1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_modified_bessel_k1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_modified_bessel_k1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_modified_bessel_k1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_modified_bessel_k1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_modified_bessel_k1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_modified_bessel_k1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_ndtr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_ndtr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_ndtri_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_ndtri_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_ndtri_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_ndtri_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_ndtri_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_ndtri_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_ndtri_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_ndtri_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_polygamma_special_polygamma_n_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_polygamma_special_polygamma_n_0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_polygamma_special_polygamma_n_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_polygamma_special_polygamma_n_0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_polygamma_special_polygamma_n_0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_polygamma_special_polygamma_n_0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_polygamma_special_polygamma_n_0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_polygamma_special_polygamma_n_0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_scaled_modified_bessel_k0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_scaled_modified_bessel_k0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_scaled_modified_bessel_k0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_scaled_modified_bessel_k0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_scaled_modified_bessel_k0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_scaled_modified_bessel_k0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_scaled_modified_bessel_k0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_scaled_modified_bessel_k0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_scaled_modified_bessel_k1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_scaled_modified_bessel_k1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_scaled_modified_bessel_k1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_scaled_modified_bessel_k1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_scaled_modified_bessel_k1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_scaled_modified_bessel_k1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_scaled_modified_bessel_k1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_scaled_modified_bessel_k1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_spherical_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_spherical_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_spherical_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_spherical_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_spherical_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_spherical_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_spherical_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_special_spherical_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_sqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_square_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_square_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_square_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_square_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_square_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_square_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_square_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_square_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_square_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_square_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_square_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_square_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_tan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_tan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_tan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_tan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_tan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_tan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_tan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_tan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_tan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_tan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_tan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_tan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_tanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_tanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_tanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_tanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_tanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_tanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_tanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_tanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_tanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_tanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_tanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_tanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_trunc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_trunc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_trunc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_trunc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_trunc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_trunc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_trunc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_trunc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_every_other_trunc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_bfloat16_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_bfloat16_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_bfloat16_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_bfloat16_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_bfloat16_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_bfloat16_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_bfloat16_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_bfloat16_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_bfloat16_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_bfloat16_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_bfloat16_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_bfloat16_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_bfloat16_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_bool_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_bool_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_bool_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_bool_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_bool_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_bool_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_bool_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_bool_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_bool_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_bool_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_bool_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_bool_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_bool_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_byte_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_byte_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_byte_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_byte_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_byte_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_byte_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_byte_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_byte_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_byte_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_byte_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_byte_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_byte_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_cdouble_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_cdouble_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_cdouble_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_cdouble_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_cdouble_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_cdouble_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_cdouble_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_cdouble_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_cdouble_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_cdouble_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_cdouble_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_cdouble_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_cdouble_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_cfloat_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_cfloat_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_cfloat_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_cfloat_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_cfloat_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_cfloat_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_cfloat_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_cfloat_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_cfloat_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_cfloat_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_cfloat_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_cfloat_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_cfloat_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_chalf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_chalf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_chalf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_chalf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_chalf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_chalf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_chalf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_chalf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_chalf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_chalf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_chalf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_chalf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_chalf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_char_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_char_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_char_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_char_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_char_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_char_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_char_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_char_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_char_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_char_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_char_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_char_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_char_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_double_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_double_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_double_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_double_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_double_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_double_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_double_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_double_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_double_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_double_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_double_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_double_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_double_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_float_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_float_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_float_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_float_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_float_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_float_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_float_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_float_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_float_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_float_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_float_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_float_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_float_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_half_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_half_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_half_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_half_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_half_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_half_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_half_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_half_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_half_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_half_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_half_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_half_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_int_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_int_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_int_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_int_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_int_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_int_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_int_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_int_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_int_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_int_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_int_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_int_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_long_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_long_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_long_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_long_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_long_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_long_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_long_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_long_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_long_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_long_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_long_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_long_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_long_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_short_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_short_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_short_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_short_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_short_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_short_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_short_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_short_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_short_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_short_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_short_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_short_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_abs_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_abs_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_abs_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_abs_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_abs_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_abs_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_abs_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_abs_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_abs_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_abs_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_abs_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_abs_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_acos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_acos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_acos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_acos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_acos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_acos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_acos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_acos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_acos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_acos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_acos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_acos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_acosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_acosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_acosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_acosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_acosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_acosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_acosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_acosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_acosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_acosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_acosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_acosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_asin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_asin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_asin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_asin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_asin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_asin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_asin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_asin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_asin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_asin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_asin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_asin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_asinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_asinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_asinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_asinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_asinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_asinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_asinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_asinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_asinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_asinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_asinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_asinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_atan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_atan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_atan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_atan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_atan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_atan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_atan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_atan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_atan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_atan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_atan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_atan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_atanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_atanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_atanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_atanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_atanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_atanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_atanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_atanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_atanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_atanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_atanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_atanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_bitwise_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_bitwise_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_bitwise_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_bitwise_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_bitwise_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_bitwise_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_ceil_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_ceil_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_ceil_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_ceil_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_ceil_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_ceil_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_ceil_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_ceil_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_ceil_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_conj_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_conj_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_conj_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_conj_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_conj_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_conj_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_conj_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_conj_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_conj_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_conj_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_conj_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_conj_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_conj_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_conj_physical_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_conj_physical_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_conj_physical_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_conj_physical_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_conj_physical_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_conj_physical_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_conj_physical_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_conj_physical_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_conj_physical_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_conj_physical_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_conj_physical_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_conj_physical_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_conj_physical_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_cos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_cos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_cos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_cos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_cos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_cos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_cos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_cos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_cos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_cos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_cos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_cos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_cosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_cosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_cosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_cosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_cosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_cosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_cosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_cosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_cosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_cosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_cosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_cosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_deg2rad_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_deg2rad_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_deg2rad_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_deg2rad_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_deg2rad_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_deg2rad_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_deg2rad_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_deg2rad_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_deg2rad_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_deg2rad_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_digamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_digamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_digamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_digamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_digamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_digamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_digamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_digamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_digamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_digamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_erf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_erf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_erf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_erf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_erf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_erf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_erf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_erf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_erf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_erf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_erfc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_erfc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_erfc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_erfc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_erfc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_erfc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_erfc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_erfc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_erfc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_erfc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_erfinv_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_erfinv_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_erfinv_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_erfinv_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_erfinv_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_erfinv_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_erfinv_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_erfinv_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_erfinv_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_erfinv_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_exp2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_exp2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_exp2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_exp2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_exp2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_exp2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_exp2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_exp2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_exp2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_exp2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_exp2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_exp2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_exp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_exp_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_exp_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_exp_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_exp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_exp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_exp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_exp_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_exp_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_exp_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_exp_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_exp_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_expm1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_expm1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_expm1_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_expm1_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_expm1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_expm1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_expm1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_expm1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_expm1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_expm1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_expm1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_expm1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_fill_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_fill_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_fill_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_fill_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_fill_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_fill_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_fill_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_fill_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_fill_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_fill_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_fill_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_fill_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_fill_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_floor_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_floor_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_floor_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_floor_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_floor_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_floor_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_floor_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_floor_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_floor_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_frac_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_frac_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_frac_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_frac_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_frexp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_frexp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_frexp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_frexp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_i0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_i0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_i0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_i0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_i0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_i0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_i0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_i0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_imag_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_imag_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_imag_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isfinite_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isfinite_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isfinite_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isfinite_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isfinite_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isfinite_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isfinite_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isfinite_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isfinite_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isfinite_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isfinite_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isfinite_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isfinite_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isinf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isinf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isinf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isnan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isnan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isnan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isnan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isnan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isnan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isnan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isnan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isnan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isnan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isnan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isnan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isneginf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isneginf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isneginf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isneginf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isneginf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isneginf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isneginf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isneginf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isneginf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isneginf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isposinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isposinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isposinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isposinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isposinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isposinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isposinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isposinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isposinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isposinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isreal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isreal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isreal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isreal_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isreal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isreal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isreal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isreal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isreal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isreal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isreal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isreal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_isreal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_lgamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_lgamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_lgamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_lgamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_lgamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_lgamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_lgamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_lgamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_lgamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_lgamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log10_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log10_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log10_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log10_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log10_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log10_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log10_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log10_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log10_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log10_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log10_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log10_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log1p_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log1p_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log1p_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log1p_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log1p_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log1p_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log1p_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log1p_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log1p_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log1p_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log1p_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log1p_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_log_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_logical_not_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_logical_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_logical_not_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_logical_not_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_logical_not_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_logical_not_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_logical_not_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_logical_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_logical_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_logical_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_logical_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_logical_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nan_to_num_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nan_to_num_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nan_to_num_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nan_to_num_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nan_to_num_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nan_to_num_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nan_to_num_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nan_to_num_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nan_to_num_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nan_to_num_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_neg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_neg_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_neg_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_neg_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_neg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_neg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_neg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_neg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_neg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_neg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_neg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_neg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_celu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_celu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_celu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_celu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_elu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_elu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_elu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_elu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_hardshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_hardshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_hardshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_hardshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_hardtanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_hardtanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_hardtanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_hardtanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_hardtanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_hardtanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_hardtanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_hardtanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_mish_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_mish_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_mish_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_mish_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_prelu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_prelu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_prelu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_prelu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_relu6_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_relu6_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_relu6_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_relu6_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_relu6_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_relu6_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_relu6_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_relu6_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_relu6_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_relu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_relu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_relu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_relu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_relu_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_relu_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_relu_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_relu_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_relu_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_selu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_selu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_selu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_selu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_softplus_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_softplus_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_softplus_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_softplus_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_softshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_softshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_softshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_softshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_tanhshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_tanhshrink_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_tanhshrink_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_tanhshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_tanhshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_tanhshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_tanhshrink_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_tanhshrink_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_tanhshrink_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_tanhshrink_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_tanhshrink_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_threshold_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_threshold_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_threshold_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_threshold_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_threshold_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_threshold_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_threshold_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_threshold_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_nn_functional_threshold_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_positive_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_positive_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_positive_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_positive_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_positive_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_positive_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_positive_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_positive_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_positive_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_positive_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_positive_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_positive_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_rad2deg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_rad2deg_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_rad2deg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_rad2deg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_rad2deg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_rad2deg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_rad2deg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_rad2deg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_rad2deg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_rad2deg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_real_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_real_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_real_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_real_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_real_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_real_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_real_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_real_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_real_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_real_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_real_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_real_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_real_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_reciprocal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_reciprocal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_reciprocal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_reciprocal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_reciprocal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_reciprocal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_reciprocal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_reciprocal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_reciprocal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_reciprocal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_reciprocal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_reciprocal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_round_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_round_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_round_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_round_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_round_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_round_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_round_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_round_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_round_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_rsqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_rsqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_rsqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_rsqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_rsqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_rsqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_rsqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_rsqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_rsqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_rsqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_rsqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_rsqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sgn_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sgn_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sgn_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sgn_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sgn_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sgn_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sgn_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sgn_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sgn_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sgn_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sgn_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sgn_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sgn_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sigmoid_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sigmoid_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sigmoid_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sigmoid_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sigmoid_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sigmoid_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sigmoid_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sigmoid_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sign_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sign_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sign_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sign_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sign_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sign_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_signbit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_signbit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_signbit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_signbit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_signbit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_signbit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_signbit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_signbit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_signbit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_signbit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sinc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sinc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sinc_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sinc_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sinc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sinc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sinc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sinc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sinc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sinc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sinc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sinc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_bessel_j1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_bessel_j1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_bessel_j1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_bessel_j1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_bessel_j1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_bessel_j1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_bessel_j1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_bessel_j1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_entr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_entr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_entr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_entr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_entr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_entr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_entr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_entr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_entr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_entr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_erfcx_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_erfcx_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_erfcx_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_erfcx_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_erfcx_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_erfcx_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_erfcx_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_erfcx_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_i0e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_i0e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_i0e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_i0e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_i0e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_i0e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_i0e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_i0e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_i0e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_i0e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_i1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_i1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_i1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_i1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_i1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_i1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_i1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_i1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_i1e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_i1e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_i1e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_i1e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_i1e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_i1e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_i1e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_i1e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_i1e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_i1e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_log_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_log_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_log_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_log_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_log_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_log_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_log_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_log_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_logit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_logit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_logit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_logit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_logit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_logit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_logit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_logit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_logit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_logit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_multigammaln_mvlgamma_p_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_multigammaln_mvlgamma_p_1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_multigammaln_mvlgamma_p_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_multigammaln_mvlgamma_p_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_multigammaln_mvlgamma_p_1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_multigammaln_mvlgamma_p_1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_multigammaln_mvlgamma_p_1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_multigammaln_mvlgamma_p_1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_multigammaln_mvlgamma_p_1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_multigammaln_mvlgamma_p_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_multigammaln_mvlgamma_p_3_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_multigammaln_mvlgamma_p_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_multigammaln_mvlgamma_p_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_multigammaln_mvlgamma_p_3_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_multigammaln_mvlgamma_p_3_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_multigammaln_mvlgamma_p_3_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_multigammaln_mvlgamma_p_3_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_multigammaln_mvlgamma_p_3_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_multigammaln_mvlgamma_p_5_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_multigammaln_mvlgamma_p_5_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_multigammaln_mvlgamma_p_5_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_multigammaln_mvlgamma_p_5_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_multigammaln_mvlgamma_p_5_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_multigammaln_mvlgamma_p_5_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_multigammaln_mvlgamma_p_5_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_multigammaln_mvlgamma_p_5_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_multigammaln_mvlgamma_p_5_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_ndtr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_ndtr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_ndtri_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_ndtri_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_ndtri_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_ndtri_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_ndtri_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_ndtri_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_ndtri_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_ndtri_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_spherical_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_spherical_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_spherical_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_spherical_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_spherical_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_spherical_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_spherical_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_special_spherical_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_sqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_square_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_square_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_square_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_square_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_square_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_square_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_square_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_square_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_square_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_square_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_square_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_square_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_tan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_tan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_tan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_tan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_tan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_tan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_tan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_tan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_tan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_tan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_tan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_tan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_tanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_tanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_tanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_tanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_tanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_tanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_tanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_tanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_tanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_tanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_tanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_tanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_trunc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_trunc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_trunc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_trunc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_trunc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_trunc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_trunc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_trunc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed__refs_trunc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_abs_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_abs_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_abs_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_abs_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_abs_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_abs_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_abs_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_abs_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_abs_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_abs_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_abs_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_abs_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_acos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_acos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_acos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_acos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_acos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_acos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_acos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_acos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_acos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_acos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_acos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_acos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_acosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_acosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_acosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_acosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_acosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_acosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_acosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_acosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_acosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_acosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_acosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_acosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_angle_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_angle_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_angle_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_angle_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_angle_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_angle_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_angle_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_angle_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_angle_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_angle_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_angle_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_angle_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_asin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_asin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_asin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_asin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_asin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_asin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_asin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_asin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_asin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_asin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_asin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_asin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_asinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_asinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_asinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_asinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_asinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_asinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_asinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_asinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_asinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_asinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_asinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_asinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_atan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_atan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_atan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_atan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_atan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_atan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_atan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_atan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_atan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_atan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_atan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_atan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_atanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_atanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_atanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_atanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_atanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_atanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_atanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_atanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_atanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_atanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_atanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_atanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_bfloat16_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_bfloat16_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_bfloat16_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_bfloat16_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_bfloat16_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_bfloat16_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_bfloat16_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_bfloat16_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_bfloat16_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_bfloat16_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_bfloat16_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_bfloat16_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_bfloat16_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_bitwise_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_bitwise_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_bitwise_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_bitwise_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_bitwise_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_bitwise_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_bool_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_bool_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_bool_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_bool_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_bool_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_bool_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_bool_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_bool_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_bool_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_bool_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_bool_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_bool_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_bool_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_byte_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_byte_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_byte_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_byte_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_byte_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_byte_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_byte_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_byte_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_byte_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_byte_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_byte_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_byte_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cdouble_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cdouble_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cdouble_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cdouble_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cdouble_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cdouble_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cdouble_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cdouble_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cdouble_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cdouble_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cdouble_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cdouble_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cdouble_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_ceil_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_ceil_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_ceil_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_ceil_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_ceil_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_ceil_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_ceil_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_ceil_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_ceil_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cfloat_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cfloat_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cfloat_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cfloat_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cfloat_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cfloat_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cfloat_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cfloat_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cfloat_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cfloat_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cfloat_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cfloat_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cfloat_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_chalf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_chalf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_chalf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_chalf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_chalf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_chalf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_chalf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_chalf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_chalf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_chalf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_chalf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_chalf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_chalf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_char_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_char_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_char_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_char_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_char_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_char_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_char_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_char_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_char_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_char_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_char_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_char_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_char_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_conj_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_conj_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_conj_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_conj_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_conj_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_conj_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_conj_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_conj_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_conj_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_conj_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_conj_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_conj_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_conj_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_conj_physical_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_conj_physical_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_conj_physical_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_conj_physical_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_conj_physical_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_conj_physical_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_conj_physical_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_conj_physical_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_conj_physical_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_conj_physical_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_conj_physical_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_conj_physical_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_conj_physical_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_cosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_deg2rad_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_deg2rad_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_deg2rad_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_deg2rad_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_deg2rad_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_deg2rad_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_deg2rad_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_deg2rad_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_deg2rad_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_deg2rad_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_digamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_digamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_digamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_digamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_digamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_digamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_digamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_digamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_digamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_digamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_double_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_double_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_double_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_double_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_double_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_double_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_double_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_double_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_double_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_double_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_double_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_double_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_double_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_erf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_erf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_erf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_erf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_erf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_erf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_erf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_erf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_erf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_erf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_erfc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_erfc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_erfc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_erfc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_erfc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_erfc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_erfc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_erfc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_erfc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_erfc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_erfinv_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_erfinv_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_erfinv_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_erfinv_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_erfinv_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_erfinv_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_erfinv_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_erfinv_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_erfinv_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_erfinv_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_exp2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_exp2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_exp2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_exp2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_exp2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_exp2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_exp2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_exp2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_exp2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_exp2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_exp2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_exp2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_exp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_exp_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_exp_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_exp_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_exp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_exp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_exp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_exp_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_exp_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_exp_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_exp_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_exp_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_expm1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_expm1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_expm1_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_expm1_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_expm1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_expm1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_expm1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_expm1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_expm1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_expm1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_expm1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_expm1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_fill_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_fill_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_fill_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_fill_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_fill_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_fill_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_fill_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_fill_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_fill_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_fill_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_fill_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_fill_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_fill_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_float_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_float_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_float_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_float_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_float_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_float_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_float_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_float_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_float_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_float_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_float_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_float_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_float_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_floor_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_floor_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_floor_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_floor_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_floor_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_floor_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_floor_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_floor_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_floor_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_frac_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_frac_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_frac_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_frac_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_frexp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_frexp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_frexp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_frexp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_half_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_half_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_half_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_half_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_half_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_half_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_half_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_half_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_half_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_half_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_half_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_half_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_i0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_i0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_i0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_i0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_i0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_i0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_i0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_i0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_imag_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_imag_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_imag_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_int_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_int_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_int_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_int_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_int_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_int_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_int_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_int_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_int_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_int_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_int_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_int_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isfinite_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isfinite_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isfinite_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isfinite_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isfinite_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isfinite_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isfinite_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isfinite_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isfinite_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isfinite_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isfinite_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isfinite_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isfinite_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isinf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isinf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isinf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isnan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isnan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isnan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isnan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isnan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isnan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isnan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isnan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isnan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isnan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isnan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isnan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isneginf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isneginf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isneginf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isneginf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isneginf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isneginf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isneginf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isneginf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isneginf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isneginf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isposinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isposinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isposinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isposinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isposinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isposinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isposinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isposinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isposinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isposinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isreal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isreal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isreal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isreal_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isreal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isreal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isreal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isreal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isreal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isreal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isreal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isreal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_isreal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_jiterator_unary_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_jiterator_unary_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_jiterator_unary_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_jiterator_unary_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_jiterator_unary_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_jiterator_unary_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_jiterator_unary_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_jiterator_unary_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_jiterator_unary_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_jiterator_unary_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_jiterator_unary_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_jiterator_unary_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_lgamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_lgamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_lgamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_lgamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_lgamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_lgamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_lgamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_lgamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_lgamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_lgamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log10_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log10_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log10_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log10_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log10_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log10_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log10_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log10_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log10_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log10_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log10_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log10_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log1p_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log1p_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log1p_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log1p_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log1p_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log1p_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log1p_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log1p_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log1p_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log1p_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log1p_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log1p_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_log_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_logical_not_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_logical_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_logical_not_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_logical_not_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_logical_not_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_logical_not_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_logical_not_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_logical_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_logical_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_logical_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_logical_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_logical_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_logit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_logit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_logit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_logit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_logit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_logit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_logit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_logit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_logit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_logit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_long_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_long_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_long_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_long_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_long_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_long_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_long_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_long_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_long_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_long_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_long_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_long_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_long_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_mvlgamma_mvlgamma_p_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_mvlgamma_mvlgamma_p_1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_mvlgamma_mvlgamma_p_1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_mvlgamma_mvlgamma_p_1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_mvlgamma_mvlgamma_p_1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_mvlgamma_mvlgamma_p_1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_mvlgamma_mvlgamma_p_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_mvlgamma_mvlgamma_p_3_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_mvlgamma_mvlgamma_p_3_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_mvlgamma_mvlgamma_p_3_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_mvlgamma_mvlgamma_p_3_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_mvlgamma_mvlgamma_p_3_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_mvlgamma_mvlgamma_p_3_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_mvlgamma_mvlgamma_p_5_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_mvlgamma_mvlgamma_p_5_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_mvlgamma_mvlgamma_p_5_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_mvlgamma_mvlgamma_p_5_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_mvlgamma_mvlgamma_p_5_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_mvlgamma_mvlgamma_p_5_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_mvlgamma_mvlgamma_p_5_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nan_to_num_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nan_to_num_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nan_to_num_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nan_to_num_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nan_to_num_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nan_to_num_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nan_to_num_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nan_to_num_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nan_to_num_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nan_to_num_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_neg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_neg_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_neg_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_neg_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_neg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_neg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_neg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_neg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_neg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_neg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_neg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_neg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_celu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_celu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_celu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_celu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_elu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_elu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_elu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_elu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_hardshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_hardshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_hardshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_hardshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_hardsigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_hardsigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_hardsigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_hardsigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_hardtanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_hardtanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_hardtanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_hardtanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_hardtanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_hardtanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_hardtanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_hardtanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_logsigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_logsigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_logsigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_logsigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_mish_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_mish_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_mish_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_mish_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_prelu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_prelu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_prelu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_prelu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_relu6_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_relu6_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_relu6_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_relu6_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_relu6_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_relu6_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_relu6_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_relu6_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_relu6_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_relu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_relu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_relu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_relu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_relu_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_relu_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_relu_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_relu_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_relu_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_rrelu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_rrelu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_rrelu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_selu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_selu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_selu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_selu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_silu_complex_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_silu_complex_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_silu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_silu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_silu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_silu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_softplus_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_softplus_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_softplus_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_softplus_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_softshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_softshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_softshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_softshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_softsign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_softsign_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_softsign_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_softsign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_softsign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_softsign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_softsign_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_softsign_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_softsign_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_softsign_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_softsign_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_tanhshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_tanhshrink_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_tanhshrink_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_tanhshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_tanhshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_tanhshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_tanhshrink_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_tanhshrink_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_tanhshrink_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_tanhshrink_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_tanhshrink_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_threshold_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_threshold_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_threshold_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_threshold_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_threshold_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_threshold_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_threshold_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_threshold_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_nn_functional_threshold_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_3_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_3_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_3_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_3_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_3_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_3_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_4_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_4_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_4_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_4_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_4_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_4_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_4_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_4_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_polygamma_polygamma_n_4_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_positive_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_positive_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_positive_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_positive_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_positive_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_positive_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_positive_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_positive_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_positive_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_positive_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_positive_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_positive_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_rad2deg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_rad2deg_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_rad2deg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_rad2deg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_rad2deg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_rad2deg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_rad2deg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_rad2deg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_rad2deg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_rad2deg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_real_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_real_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_real_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_real_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_real_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_real_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_real_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_real_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_real_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_real_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_real_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_real_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_real_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_reciprocal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_reciprocal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_reciprocal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_reciprocal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_reciprocal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_reciprocal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_reciprocal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_reciprocal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_reciprocal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_reciprocal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_reciprocal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_reciprocal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_round_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_round_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_round_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_round_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_round_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_round_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_round_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_round_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_round_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_round_decimals_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_round_decimals_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_round_decimals_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_round_decimals_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_round_decimals_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_round_decimals_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_round_decimals_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_round_decimals_neg_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_round_decimals_neg_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_round_decimals_neg_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_rsqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_rsqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_rsqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_rsqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_rsqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_rsqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_rsqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_rsqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_rsqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_rsqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_rsqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_rsqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sgn_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sgn_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sgn_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sgn_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sgn_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sgn_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sgn_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sgn_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sgn_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sgn_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sgn_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sgn_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sgn_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_short_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_short_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_short_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_short_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_short_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_short_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_short_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_short_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_short_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_short_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_short_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_short_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sigmoid_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sigmoid_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sigmoid_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sigmoid_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sigmoid_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sigmoid_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sigmoid_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sigmoid_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sign_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sign_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sign_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sign_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sign_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sign_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_signbit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_signbit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_signbit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_signbit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_signbit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_signbit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_signbit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_signbit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_signbit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_signbit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sinc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sinc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sinc_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sinc_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sinc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sinc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sinc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sinc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sinc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sinc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sinc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sinc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_airy_ai_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_airy_ai_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_airy_ai_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_airy_ai_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_airy_ai_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_airy_ai_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_airy_ai_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_airy_ai_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_bessel_j1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_bessel_j1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_bessel_j1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_bessel_j1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_bessel_j1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_bessel_j1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_bessel_j1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_bessel_j1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_bessel_y0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_bessel_y0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_bessel_y0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_bessel_y0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_bessel_y0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_bessel_y0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_bessel_y0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_bessel_y0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_bessel_y1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_bessel_y1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_bessel_y1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_bessel_y1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_bessel_y1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_bessel_y1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_bessel_y1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_bessel_y1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_entr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_entr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_entr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_entr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_entr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_entr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_entr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_entr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_entr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_entr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_erfcx_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_erfcx_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_erfcx_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_erfcx_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_erfcx_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_erfcx_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_erfcx_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_erfcx_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_i0e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_i0e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_i0e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_i0e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_i0e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_i0e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_i0e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_i0e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_i0e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_i0e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_i1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_i1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_i1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_i1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_i1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_i1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_i1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_i1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_i1e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_i1e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_i1e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_i1e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_i1e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_i1e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_i1e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_i1e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_i1e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_i1e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_log_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_log_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_log_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_log_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_log_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_log_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_log_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_log_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_modified_bessel_i0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_modified_bessel_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_modified_bessel_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_modified_bessel_i0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_modified_bessel_i0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_modified_bessel_i0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_modified_bessel_i0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_modified_bessel_i0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_modified_bessel_i1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_modified_bessel_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_modified_bessel_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_modified_bessel_i1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_modified_bessel_i1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_modified_bessel_i1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_modified_bessel_i1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_modified_bessel_i1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_modified_bessel_k0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_modified_bessel_k0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_modified_bessel_k0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_modified_bessel_k0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_modified_bessel_k0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_modified_bessel_k0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_modified_bessel_k0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_modified_bessel_k0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_modified_bessel_k1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_modified_bessel_k1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_modified_bessel_k1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_modified_bessel_k1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_modified_bessel_k1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_modified_bessel_k1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_modified_bessel_k1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_modified_bessel_k1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_ndtr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_ndtr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_ndtri_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_ndtri_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_ndtri_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_ndtri_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_ndtri_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_ndtri_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_ndtri_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_ndtri_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_polygamma_special_polygamma_n_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_polygamma_special_polygamma_n_0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_polygamma_special_polygamma_n_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_polygamma_special_polygamma_n_0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_polygamma_special_polygamma_n_0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_polygamma_special_polygamma_n_0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_polygamma_special_polygamma_n_0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_polygamma_special_polygamma_n_0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_scaled_modified_bessel_k0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_scaled_modified_bessel_k0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_scaled_modified_bessel_k0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_scaled_modified_bessel_k0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_scaled_modified_bessel_k0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_scaled_modified_bessel_k0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_scaled_modified_bessel_k0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_scaled_modified_bessel_k0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_scaled_modified_bessel_k1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_scaled_modified_bessel_k1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_scaled_modified_bessel_k1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_scaled_modified_bessel_k1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_scaled_modified_bessel_k1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_scaled_modified_bessel_k1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_scaled_modified_bessel_k1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_scaled_modified_bessel_k1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_spherical_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_spherical_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_spherical_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_spherical_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_spherical_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_spherical_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_spherical_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_special_spherical_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_sqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_square_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_square_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_square_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_square_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_square_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_square_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_square_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_square_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_square_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_square_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_square_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_square_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_tan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_tan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_tan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_tan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_tan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_tan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_tan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_tan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_tan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_tan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_tan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_tan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_tanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_tanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_tanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_tanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_tanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_tanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_tanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_tanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_tanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_tanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_tanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_tanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_trunc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_trunc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_trunc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_trunc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_trunc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_trunc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_trunc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_trunc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_contig_vs_transposed_trunc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_digamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_digamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_digamma_special_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_digamma_special_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_exp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_exp_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_exp_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_exp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_exp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_exp_slow_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_acos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_acos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_acos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_acos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_acosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_acosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_acosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_acosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_asin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_asin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_asin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_asin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_atanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_atanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_atanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_atanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_erfinv_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_erfinv_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_erfinv_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_erfinv_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_log10_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_log10_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_log10_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_log10_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_log1p_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_log1p_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_log1p_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_log1p_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_log2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_log2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_log2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_log2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_log_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_log_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_log_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_log_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_rsqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_rsqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_rsqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_rsqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_special_logit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_special_logit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_special_logit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_special_logit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_special_multigammaln_mvlgamma_p_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_special_multigammaln_mvlgamma_p_1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_special_multigammaln_mvlgamma_p_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_special_multigammaln_mvlgamma_p_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_special_multigammaln_mvlgamma_p_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_special_multigammaln_mvlgamma_p_3_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_special_multigammaln_mvlgamma_p_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_special_multigammaln_mvlgamma_p_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_special_multigammaln_mvlgamma_p_5_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_special_multigammaln_mvlgamma_p_5_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_special_multigammaln_mvlgamma_p_5_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_special_multigammaln_mvlgamma_p_5_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_special_ndtri_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_special_ndtri_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_sqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_sqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_sqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains__refs_sqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_acos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_acos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_acos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_acos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_acosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_acosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_acosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_acosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_asin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_asin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_asin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_asin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_atanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_atanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_atanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_atanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_erfinv_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_erfinv_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_erfinv_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_erfinv_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_log10_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_log10_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_log10_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_log10_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_log1p_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_log1p_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_log1p_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_log1p_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_log2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_log2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_log2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_log2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_log_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_log_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_log_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_log_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_logit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_logit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_logit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_logit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_mvlgamma_mvlgamma_p_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_mvlgamma_mvlgamma_p_1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_mvlgamma_mvlgamma_p_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_mvlgamma_mvlgamma_p_3_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_mvlgamma_mvlgamma_p_5_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_mvlgamma_mvlgamma_p_5_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_rsqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_rsqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_rsqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_rsqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_special_ndtri_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_special_ndtri_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_sqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_sqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_sqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_float_domains_sqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_frexp_assert_raises_cpu, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_frexp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_frexp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_frexp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_hardshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_hardshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_hardshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_hardshrink_edge_cases_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_hardshrink_edge_cases_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_hardshrink_edge_cases_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_hardsigmoid_backward_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_hardsigmoid_backward_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_hardsigmoid_backward_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_hardsigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_hardsigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_hardsigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_hardswish_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_hardswish_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_hardswish_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_i0_range1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_i0_range1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_i0_range1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_i0_range2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_i0_range2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_i0_range2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_i0_range3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_i0_special_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_i0_special_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_i0_special_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_igamma_common_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_igamma_common_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_igamma_common_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_igamma_common_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_igamma_edge_cases_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_igamma_edge_cases_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_igamma_edge_cases_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_igamma_edge_cases_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_igammac_common_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_igammac_common_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_igammac_common_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_igammac_common_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_igammac_edge_cases_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_igammac_edge_cases_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_igammac_edge_cases_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_igammac_edge_cases_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_isposinf_isneginf_non_boolean_output_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_isposinf_isneginf_non_boolean_output_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_isposinf_isneginf_non_boolean_output_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_isposinf_isneginf_non_boolean_output_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_isposinf_isneginf_non_boolean_output_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_isposinf_isneginf_non_boolean_output_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_isposinf_isneginf_non_boolean_output_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_isposinf_isneginf_non_boolean_output_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_isposinf_isneginf_non_boolean_output_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_isposinf_isneginf_non_boolean_output_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_isposinf_isneginf_non_boolean_output_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_log1p_complex_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_log1p_complex_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_mish_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_mish_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_nan_to_num_bfloat16_cpu, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_nan_to_num_complex_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_nan_to_num_complex_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_nan_to_num_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_nan_to_num_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_nan_to_num_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_nan_to_num_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_nan_to_num_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_nan_to_num_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_nan_to_num_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_nan_to_num_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_nan_to_num_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_nan_to_num_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_nan_to_num_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_narrow_dtypes_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_narrow_dtypes_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_bfloat16_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_bfloat16_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_bfloat16_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_bfloat16_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_bfloat16_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_bfloat16_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_bfloat16_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_bfloat16_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_bfloat16_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_bfloat16_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_bfloat16_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_bfloat16_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_bfloat16_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_bool_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_bool_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_bool_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_bool_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_bool_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_bool_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_bool_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_bool_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_bool_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_bool_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_bool_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_bool_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_bool_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_byte_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_byte_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_byte_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_byte_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_byte_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_byte_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_byte_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_byte_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_byte_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_byte_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_byte_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_byte_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_cdouble_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_cdouble_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_cdouble_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_cdouble_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_cdouble_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_cdouble_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_cdouble_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_cdouble_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_cdouble_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_cdouble_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_cdouble_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_cdouble_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_cdouble_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_cfloat_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_cfloat_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_cfloat_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_cfloat_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_cfloat_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_cfloat_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_cfloat_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_cfloat_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_cfloat_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_cfloat_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_cfloat_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_cfloat_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_cfloat_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_chalf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_chalf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_chalf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_chalf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_chalf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_chalf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_chalf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_chalf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_chalf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_chalf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_chalf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_chalf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_chalf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_char_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_char_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_char_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_char_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_char_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_char_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_char_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_char_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_char_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_char_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_char_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_char_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_char_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_double_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_double_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_double_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_double_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_double_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_double_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_double_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_double_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_double_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_double_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_double_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_double_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_double_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_float_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_float_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_float_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_float_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_float_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_float_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_float_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_float_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_float_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_float_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_float_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_float_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_float_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_half_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_half_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_half_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_half_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_half_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_half_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_half_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_half_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_half_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_half_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_half_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_half_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_int_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_int_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_int_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_int_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_int_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_int_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_int_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_int_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_int_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_int_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_int_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_int_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_long_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_long_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_long_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_long_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_long_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_long_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_long_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_long_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_long_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_long_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_long_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_long_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_long_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_short_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_short_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_short_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_short_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_short_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_short_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_short_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_short_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_short_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_short_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_short_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs__conversions_short_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_abs_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_abs_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_abs_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_abs_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_abs_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_abs_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_abs_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_abs_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_abs_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_abs_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_abs_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_abs_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_acos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_acos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_acos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_acos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_acos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_acos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_acos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_acos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_acos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_acos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_acos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_acos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_acosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_acosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_acosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_acosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_acosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_acosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_acosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_acosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_acosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_acosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_acosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_acosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_asin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_asin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_asin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_asin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_asin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_asin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_asin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_asin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_asin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_asin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_asin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_asin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_asinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_asinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_asinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_asinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_asinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_asinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_asinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_asinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_asinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_asinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_asinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_asinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_atan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_atan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_atan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_atan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_atan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_atan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_atan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_atan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_atan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_atan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_atan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_atan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_atanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_atanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_atanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_atanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_atanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_atanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_atanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_atanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_atanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_atanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_atanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_atanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_bitwise_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_bitwise_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_bitwise_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_bitwise_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_bitwise_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_bitwise_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_ceil_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_ceil_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_ceil_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_ceil_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_ceil_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_ceil_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_ceil_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_ceil_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_ceil_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_conj_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_conj_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_conj_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_conj_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_conj_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_conj_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_conj_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_conj_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_conj_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_conj_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_conj_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_conj_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_conj_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_conj_physical_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_conj_physical_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_conj_physical_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_conj_physical_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_conj_physical_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_conj_physical_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_conj_physical_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_conj_physical_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_conj_physical_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_conj_physical_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_conj_physical_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_conj_physical_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_conj_physical_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_cos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_cos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_cos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_cos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_cos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_cos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_cos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_cos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_cos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_cos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_cos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_cos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_cosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_cosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_cosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_cosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_cosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_cosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_cosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_cosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_cosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_cosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_cosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_cosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_deg2rad_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_deg2rad_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_deg2rad_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_deg2rad_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_deg2rad_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_deg2rad_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_deg2rad_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_deg2rad_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_deg2rad_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_deg2rad_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_digamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_digamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_digamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_digamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_digamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_digamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_digamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_digamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_digamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_digamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_erf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_erf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_erf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_erf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_erf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_erf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_erf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_erf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_erf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_erf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_erfc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_erfc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_erfc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_erfc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_erfc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_erfc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_erfc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_erfc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_erfc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_erfc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_erfinv_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_erfinv_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_erfinv_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_erfinv_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_erfinv_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_erfinv_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_erfinv_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_erfinv_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_erfinv_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_erfinv_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_exp2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_exp2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_exp2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_exp2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_exp2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_exp2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_exp2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_exp2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_exp2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_exp2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_exp2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_exp2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_exp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_exp_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_exp_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_exp_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_exp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_exp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_exp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_exp_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_exp_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_exp_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_exp_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_exp_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_expm1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_expm1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_expm1_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_expm1_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_expm1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_expm1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_expm1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_expm1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_expm1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_expm1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_expm1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_expm1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_fill_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_fill_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_fill_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_fill_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_fill_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_fill_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_fill_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_fill_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_fill_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_fill_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_fill_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_fill_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_fill_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_floor_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_floor_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_floor_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_floor_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_floor_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_floor_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_floor_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_floor_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_floor_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_frac_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_frac_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_frac_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_frac_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_frexp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_frexp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_frexp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_frexp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_i0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_i0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_i0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_i0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_i0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_i0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_i0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_i0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_imag_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_imag_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_imag_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isfinite_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isfinite_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isfinite_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isfinite_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isfinite_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isfinite_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isfinite_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isfinite_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isfinite_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isfinite_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isfinite_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isfinite_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isfinite_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isinf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isinf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isinf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isnan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isnan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isnan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isnan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isnan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isnan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isnan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isnan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isnan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isnan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isnan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isnan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isneginf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isneginf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isneginf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isneginf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isneginf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isneginf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isneginf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isneginf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isneginf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isneginf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isposinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isposinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isposinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isposinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isposinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isposinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isposinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isposinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isposinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isposinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isreal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isreal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isreal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isreal_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isreal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isreal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isreal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isreal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isreal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isreal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isreal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isreal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_isreal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_lgamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_lgamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_lgamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_lgamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_lgamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_lgamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_lgamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_lgamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_lgamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_lgamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log10_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log10_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log10_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log10_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log10_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log10_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log10_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log10_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log10_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log10_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log10_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log10_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log1p_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log1p_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log1p_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log1p_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log1p_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log1p_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log1p_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log1p_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log1p_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log1p_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log1p_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log1p_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_log_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_logical_not_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_logical_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_logical_not_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_logical_not_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_logical_not_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_logical_not_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_logical_not_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_logical_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_logical_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_logical_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_logical_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_logical_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nan_to_num_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nan_to_num_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nan_to_num_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nan_to_num_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nan_to_num_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nan_to_num_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nan_to_num_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nan_to_num_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nan_to_num_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nan_to_num_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_neg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_neg_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_neg_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_neg_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_neg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_neg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_neg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_neg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_neg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_neg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_neg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_neg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_celu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_celu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_celu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_celu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_elu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_elu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_elu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_elu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_hardshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_hardshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_hardshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_hardshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_hardtanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_hardtanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_hardtanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_hardtanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_hardtanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_hardtanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_hardtanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_hardtanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_mish_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_mish_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_mish_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_mish_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_prelu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_prelu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_prelu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_prelu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_relu6_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_relu6_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_relu6_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_relu6_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_relu6_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_relu6_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_relu6_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_relu6_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_relu6_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_relu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_relu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_relu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_relu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_relu_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_relu_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_relu_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_relu_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_relu_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_selu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_selu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_selu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_selu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_softplus_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_softplus_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_softplus_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_softplus_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_softshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_softshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_softshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_softshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_tanhshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_tanhshrink_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_tanhshrink_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_tanhshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_tanhshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_tanhshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_tanhshrink_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_tanhshrink_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_tanhshrink_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_tanhshrink_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_tanhshrink_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_threshold_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_threshold_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_threshold_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_threshold_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_threshold_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_threshold_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_threshold_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_threshold_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_nn_functional_threshold_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_positive_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_positive_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_positive_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_positive_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_positive_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_positive_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_positive_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_positive_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_positive_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_positive_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_positive_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_positive_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_rad2deg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_rad2deg_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_rad2deg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_rad2deg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_rad2deg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_rad2deg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_rad2deg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_rad2deg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_rad2deg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_rad2deg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_real_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_real_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_real_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_real_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_real_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_real_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_real_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_real_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_real_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_real_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_real_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_real_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_real_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_reciprocal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_reciprocal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_reciprocal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_reciprocal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_reciprocal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_reciprocal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_reciprocal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_reciprocal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_reciprocal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_reciprocal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_reciprocal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_reciprocal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_round_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_round_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_round_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_round_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_round_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_round_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_round_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_round_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_round_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_rsqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_rsqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_rsqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_rsqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_rsqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_rsqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_rsqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_rsqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_rsqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_rsqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_rsqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_rsqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sgn_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sgn_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sgn_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sgn_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sgn_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sgn_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sgn_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sgn_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sgn_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sgn_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sgn_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sgn_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sgn_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sigmoid_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sigmoid_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sigmoid_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sigmoid_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sigmoid_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sigmoid_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sigmoid_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sigmoid_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sign_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sign_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sign_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sign_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sign_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sign_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_signbit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_signbit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_signbit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_signbit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_signbit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_signbit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_signbit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_signbit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_signbit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_signbit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sinc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sinc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sinc_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sinc_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sinc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sinc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sinc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sinc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sinc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sinc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sinc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sinc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_bessel_j1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_bessel_j1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_bessel_j1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_bessel_j1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_bessel_j1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_bessel_j1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_bessel_j1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_bessel_j1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_entr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_entr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_entr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_entr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_entr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_entr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_entr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_entr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_entr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_entr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_erfcx_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_erfcx_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_erfcx_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_erfcx_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_erfcx_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_erfcx_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_erfcx_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_erfcx_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_i0e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_i0e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_i0e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_i0e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_i0e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_i0e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_i0e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_i0e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_i0e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_i0e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_i1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_i1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_i1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_i1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_i1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_i1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_i1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_i1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_i1e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_i1e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_i1e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_i1e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_i1e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_i1e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_i1e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_i1e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_i1e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_i1e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_log_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_log_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_log_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_log_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_log_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_log_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_log_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_log_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_logit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_logit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_logit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_logit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_logit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_logit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_logit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_logit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_logit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_logit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_multigammaln_mvlgamma_p_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_multigammaln_mvlgamma_p_1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_multigammaln_mvlgamma_p_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_multigammaln_mvlgamma_p_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_multigammaln_mvlgamma_p_1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_multigammaln_mvlgamma_p_1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_multigammaln_mvlgamma_p_1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_multigammaln_mvlgamma_p_1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_multigammaln_mvlgamma_p_1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_multigammaln_mvlgamma_p_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_multigammaln_mvlgamma_p_3_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_multigammaln_mvlgamma_p_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_multigammaln_mvlgamma_p_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_multigammaln_mvlgamma_p_3_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_multigammaln_mvlgamma_p_3_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_multigammaln_mvlgamma_p_3_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_multigammaln_mvlgamma_p_3_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_multigammaln_mvlgamma_p_3_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_multigammaln_mvlgamma_p_5_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_multigammaln_mvlgamma_p_5_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_multigammaln_mvlgamma_p_5_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_multigammaln_mvlgamma_p_5_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_multigammaln_mvlgamma_p_5_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_multigammaln_mvlgamma_p_5_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_multigammaln_mvlgamma_p_5_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_multigammaln_mvlgamma_p_5_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_multigammaln_mvlgamma_p_5_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_ndtr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_ndtr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_ndtri_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_ndtri_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_ndtri_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_ndtri_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_ndtri_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_ndtri_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_ndtri_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_ndtri_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_spherical_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_spherical_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_spherical_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_spherical_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_spherical_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_spherical_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_spherical_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_special_spherical_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_sqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_square_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_square_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_square_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_square_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_square_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_square_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_square_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_square_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_square_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_square_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_square_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_square_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_tan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_tan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_tan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_tan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_tan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_tan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_tan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_tan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_tan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_tan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_tan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_tan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_tanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_tanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_tanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_tanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_tanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_tanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_tanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_tanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_tanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_tanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_tanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_tanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_trunc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_trunc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_trunc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_trunc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_trunc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_trunc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_trunc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_trunc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig__refs_trunc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_abs_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_abs_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_abs_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_abs_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_abs_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_abs_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_abs_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_abs_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_abs_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_abs_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_abs_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_abs_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_acos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_acos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_acos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_acos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_acos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_acos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_acos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_acos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_acos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_acos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_acos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_acos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_acosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_acosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_acosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_acosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_acosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_acosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_acosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_acosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_acosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_acosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_acosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_acosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_angle_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_angle_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_angle_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_angle_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_angle_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_angle_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_angle_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_angle_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_angle_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_angle_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_angle_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_angle_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_asin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_asin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_asin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_asin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_asin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_asin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_asin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_asin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_asin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_asin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_asin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_asin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_asinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_asinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_asinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_asinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_asinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_asinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_asinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_asinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_asinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_asinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_asinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_asinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_atan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_atan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_atan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_atan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_atan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_atan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_atan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_atan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_atan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_atan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_atan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_atan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_atanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_atanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_atanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_atanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_atanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_atanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_atanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_atanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_atanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_atanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_atanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_atanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_bfloat16_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_bfloat16_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_bfloat16_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_bfloat16_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_bfloat16_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_bfloat16_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_bfloat16_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_bfloat16_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_bfloat16_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_bfloat16_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_bfloat16_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_bfloat16_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_bfloat16_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_bitwise_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_bitwise_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_bitwise_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_bitwise_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_bitwise_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_bitwise_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_bool_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_bool_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_bool_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_bool_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_bool_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_bool_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_bool_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_bool_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_bool_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_bool_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_bool_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_bool_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_bool_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_byte_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_byte_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_byte_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_byte_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_byte_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_byte_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_byte_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_byte_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_byte_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_byte_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_byte_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_byte_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cdouble_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cdouble_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cdouble_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cdouble_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cdouble_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cdouble_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cdouble_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cdouble_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cdouble_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cdouble_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cdouble_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cdouble_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cdouble_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_ceil_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_ceil_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_ceil_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_ceil_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_ceil_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_ceil_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_ceil_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_ceil_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_ceil_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cfloat_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cfloat_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cfloat_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cfloat_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cfloat_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cfloat_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cfloat_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cfloat_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cfloat_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cfloat_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cfloat_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cfloat_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cfloat_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_chalf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_chalf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_chalf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_chalf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_chalf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_chalf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_chalf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_chalf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_chalf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_chalf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_chalf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_chalf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_chalf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_char_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_char_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_char_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_char_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_char_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_char_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_char_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_char_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_char_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_char_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_char_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_char_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_char_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_conj_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_conj_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_conj_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_conj_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_conj_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_conj_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_conj_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_conj_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_conj_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_conj_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_conj_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_conj_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_conj_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_conj_physical_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_conj_physical_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_conj_physical_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_conj_physical_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_conj_physical_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_conj_physical_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_conj_physical_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_conj_physical_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_conj_physical_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_conj_physical_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_conj_physical_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_conj_physical_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_conj_physical_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_cosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_deg2rad_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_deg2rad_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_deg2rad_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_deg2rad_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_deg2rad_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_deg2rad_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_deg2rad_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_deg2rad_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_deg2rad_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_deg2rad_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_digamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_digamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_digamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_digamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_digamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_digamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_digamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_digamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_digamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_digamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_double_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_double_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_double_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_double_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_double_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_double_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_double_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_double_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_double_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_double_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_double_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_double_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_double_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_erf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_erf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_erf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_erf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_erf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_erf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_erf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_erf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_erf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_erf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_erfc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_erfc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_erfc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_erfc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_erfc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_erfc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_erfc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_erfc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_erfc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_erfc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_erfinv_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_erfinv_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_erfinv_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_erfinv_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_erfinv_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_erfinv_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_erfinv_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_erfinv_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_erfinv_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_erfinv_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_exp2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_exp2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_exp2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_exp2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_exp2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_exp2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_exp2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_exp2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_exp2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_exp2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_exp2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_exp2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_exp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_exp_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_exp_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_exp_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_exp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_exp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_exp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_exp_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_exp_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_exp_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_exp_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_exp_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_bfloat16_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_bfloat16_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_bfloat16_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_bfloat16_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_bfloat16_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_bfloat16_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_bfloat16_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_bfloat16_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_bfloat16_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_bfloat16_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_bfloat16_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_bfloat16_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_bfloat16_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_bool_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_bool_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_bool_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_bool_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_bool_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_bool_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_bool_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_bool_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_bool_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_bool_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_bool_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_bool_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_bool_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_byte_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_byte_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_byte_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_byte_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_byte_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_byte_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_byte_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_byte_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_byte_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_byte_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_byte_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_byte_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_cdouble_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_cdouble_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_cdouble_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_cdouble_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_cdouble_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_cdouble_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_cdouble_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_cdouble_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_cdouble_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_cdouble_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_cdouble_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_cdouble_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_cdouble_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_cfloat_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_cfloat_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_cfloat_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_cfloat_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_cfloat_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_cfloat_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_cfloat_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_cfloat_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_cfloat_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_cfloat_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_cfloat_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_cfloat_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_cfloat_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_chalf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_chalf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_chalf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_chalf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_chalf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_chalf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_chalf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_chalf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_chalf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_chalf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_chalf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_chalf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_chalf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_char_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_char_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_char_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_char_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_char_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_char_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_char_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_char_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_char_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_char_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_char_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_char_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_char_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_double_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_double_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_double_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_double_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_double_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_double_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_double_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_double_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_double_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_double_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_double_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_double_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_double_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_float_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_float_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_float_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_float_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_float_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_float_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_float_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_float_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_float_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_float_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_float_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_float_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_float_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_half_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_half_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_half_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_half_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_half_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_half_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_half_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_half_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_half_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_half_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_half_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_half_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_int_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_int_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_int_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_int_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_int_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_int_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_int_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_int_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_int_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_int_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_int_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_int_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_long_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_long_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_long_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_long_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_long_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_long_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_long_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_long_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_long_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_long_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_long_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_long_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_long_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_short_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_short_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_short_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_short_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_short_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_short_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_short_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_short_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_short_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_short_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_short_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs__conversions_short_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_abs_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_abs_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_abs_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_abs_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_abs_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_abs_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_abs_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_abs_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_abs_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_abs_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_abs_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_abs_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_acos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_acos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_acos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_acos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_acos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_acos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_acos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_acos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_acos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_acos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_acos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_acos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_acosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_acosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_acosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_acosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_acosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_acosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_acosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_acosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_acosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_acosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_acosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_acosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_asin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_asin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_asin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_asin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_asin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_asin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_asin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_asin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_asin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_asin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_asin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_asin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_asinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_asinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_asinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_asinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_asinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_asinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_asinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_asinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_asinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_asinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_asinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_asinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_atan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_atan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_atan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_atan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_atan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_atan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_atan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_atan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_atan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_atan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_atan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_atan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_atanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_atanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_atanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_atanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_atanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_atanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_atanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_atanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_atanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_atanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_atanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_atanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_bitwise_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_bitwise_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_bitwise_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_bitwise_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_bitwise_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_bitwise_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_ceil_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_ceil_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_ceil_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_ceil_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_ceil_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_ceil_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_ceil_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_ceil_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_ceil_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_conj_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_conj_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_conj_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_conj_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_conj_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_conj_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_conj_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_conj_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_conj_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_conj_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_conj_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_conj_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_conj_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_conj_physical_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_conj_physical_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_conj_physical_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_conj_physical_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_conj_physical_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_conj_physical_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_conj_physical_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_conj_physical_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_conj_physical_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_conj_physical_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_conj_physical_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_conj_physical_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_conj_physical_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_cos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_cos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_cos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_cos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_cos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_cos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_cos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_cos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_cos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_cos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_cos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_cos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_cosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_cosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_cosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_cosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_cosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_cosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_cosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_cosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_cosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_cosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_cosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_cosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_deg2rad_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_deg2rad_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_deg2rad_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_deg2rad_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_deg2rad_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_deg2rad_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_deg2rad_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_deg2rad_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_deg2rad_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_deg2rad_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_digamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_digamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_digamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_digamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_digamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_digamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_digamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_digamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_digamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_digamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_erf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_erf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_erf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_erf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_erf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_erf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_erf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_erf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_erf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_erf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_erfc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_erfc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_erfc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_erfc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_erfc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_erfc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_erfc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_erfc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_erfc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_erfc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_erfinv_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_erfinv_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_erfinv_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_erfinv_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_erfinv_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_erfinv_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_erfinv_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_erfinv_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_erfinv_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_erfinv_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_exp2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_exp2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_exp2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_exp2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_exp2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_exp2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_exp2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_exp2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_exp2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_exp2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_exp2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_exp2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_exp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_exp_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_exp_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_exp_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_exp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_exp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_exp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_exp_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_exp_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_exp_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_exp_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_exp_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_expm1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_expm1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_expm1_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_expm1_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_expm1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_expm1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_expm1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_expm1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_expm1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_expm1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_expm1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_expm1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_fill_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_fill_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_fill_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_fill_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_fill_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_fill_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_fill_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_fill_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_fill_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_fill_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_fill_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_fill_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_fill_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_floor_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_floor_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_floor_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_floor_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_floor_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_floor_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_floor_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_floor_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_floor_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_frac_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_frac_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_frac_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_frac_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_frexp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_frexp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_frexp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_frexp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_i0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_i0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_i0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_i0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_i0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_i0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_i0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_i0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_imag_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_imag_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_imag_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isfinite_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isfinite_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isfinite_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isfinite_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isfinite_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isfinite_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isfinite_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isfinite_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isfinite_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isfinite_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isfinite_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isfinite_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isfinite_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isinf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isinf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isinf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isnan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isnan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isnan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isnan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isnan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isnan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isnan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isnan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isnan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isnan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isnan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isnan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isneginf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isneginf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isneginf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isneginf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isneginf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isneginf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isneginf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isneginf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isneginf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isneginf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isposinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isposinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isposinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isposinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isposinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isposinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isposinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isposinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isposinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isposinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isreal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isreal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isreal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isreal_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isreal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isreal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isreal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isreal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isreal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isreal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isreal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isreal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_isreal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_lgamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_lgamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_lgamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_lgamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_lgamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_lgamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_lgamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_lgamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_lgamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_lgamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log10_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log10_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log10_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log10_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log10_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log10_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log10_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log10_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log10_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log10_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log10_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log10_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log1p_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log1p_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log1p_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log1p_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log1p_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log1p_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log1p_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log1p_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log1p_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log1p_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log1p_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log1p_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_log_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_logical_not_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_logical_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_logical_not_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_logical_not_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_logical_not_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_logical_not_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_logical_not_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_logical_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_logical_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_logical_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_logical_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_logical_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nan_to_num_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nan_to_num_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nan_to_num_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nan_to_num_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nan_to_num_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nan_to_num_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nan_to_num_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nan_to_num_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nan_to_num_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nan_to_num_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_neg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_neg_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_neg_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_neg_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_neg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_neg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_neg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_neg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_neg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_neg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_neg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_neg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_celu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_celu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_celu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_celu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_elu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_elu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_elu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_elu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_hardshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_hardshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_hardshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_hardshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_hardtanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_hardtanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_hardtanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_hardtanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_hardtanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_hardtanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_hardtanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_hardtanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_mish_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_mish_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_mish_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_mish_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_prelu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_prelu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_prelu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_prelu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_relu6_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_relu6_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_relu6_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_relu6_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_relu6_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_relu6_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_relu6_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_relu6_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_relu6_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_relu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_relu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_relu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_relu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_relu_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_relu_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_relu_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_relu_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_relu_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_selu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_selu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_selu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_selu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_softplus_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_softplus_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_softplus_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_softplus_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_softshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_softshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_softshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_softshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_tanhshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_tanhshrink_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_tanhshrink_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_tanhshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_tanhshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_tanhshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_tanhshrink_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_tanhshrink_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_tanhshrink_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_tanhshrink_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_tanhshrink_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_threshold_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_threshold_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_threshold_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_threshold_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_threshold_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_threshold_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_threshold_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_threshold_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_nn_functional_threshold_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_positive_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_positive_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_positive_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_positive_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_positive_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_positive_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_positive_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_positive_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_positive_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_positive_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_positive_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_positive_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_rad2deg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_rad2deg_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_rad2deg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_rad2deg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_rad2deg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_rad2deg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_rad2deg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_rad2deg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_rad2deg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_rad2deg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_real_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_real_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_real_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_real_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_real_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_real_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_real_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_real_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_real_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_real_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_real_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_real_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_real_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_reciprocal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_reciprocal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_reciprocal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_reciprocal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_reciprocal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_reciprocal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_reciprocal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_reciprocal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_reciprocal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_reciprocal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_reciprocal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_reciprocal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_round_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_round_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_round_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_round_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_round_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_round_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_round_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_round_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_round_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_rsqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_rsqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_rsqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_rsqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_rsqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_rsqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_rsqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_rsqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_rsqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_rsqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_rsqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_rsqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sgn_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sgn_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sgn_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sgn_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sgn_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sgn_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sgn_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sgn_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sgn_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sgn_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sgn_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sgn_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sgn_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sigmoid_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sigmoid_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sigmoid_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sigmoid_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sigmoid_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sigmoid_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sigmoid_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sigmoid_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sign_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sign_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sign_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sign_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sign_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sign_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_signbit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_signbit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_signbit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_signbit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_signbit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_signbit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_signbit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_signbit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_signbit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_signbit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sinc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sinc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sinc_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sinc_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sinc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sinc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sinc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sinc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sinc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sinc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sinc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sinc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_bessel_j1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_bessel_j1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_bessel_j1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_bessel_j1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_bessel_j1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_bessel_j1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_bessel_j1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_bessel_j1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_entr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_entr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_entr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_entr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_entr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_entr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_entr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_entr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_entr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_entr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_erfcx_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_erfcx_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_erfcx_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_erfcx_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_erfcx_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_erfcx_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_erfcx_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_erfcx_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_i0e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_i0e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_i0e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_i0e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_i0e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_i0e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_i0e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_i0e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_i0e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_i0e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_i1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_i1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_i1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_i1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_i1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_i1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_i1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_i1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_i1e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_i1e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_i1e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_i1e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_i1e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_i1e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_i1e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_i1e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_i1e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_i1e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_log_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_log_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_log_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_log_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_log_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_log_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_log_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_log_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_logit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_logit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_logit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_logit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_logit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_logit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_logit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_logit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_logit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_logit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_multigammaln_mvlgamma_p_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_multigammaln_mvlgamma_p_1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_multigammaln_mvlgamma_p_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_multigammaln_mvlgamma_p_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_multigammaln_mvlgamma_p_1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_multigammaln_mvlgamma_p_1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_multigammaln_mvlgamma_p_1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_multigammaln_mvlgamma_p_1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_multigammaln_mvlgamma_p_1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_multigammaln_mvlgamma_p_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_multigammaln_mvlgamma_p_3_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_multigammaln_mvlgamma_p_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_multigammaln_mvlgamma_p_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_multigammaln_mvlgamma_p_3_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_multigammaln_mvlgamma_p_3_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_multigammaln_mvlgamma_p_3_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_multigammaln_mvlgamma_p_3_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_multigammaln_mvlgamma_p_3_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_multigammaln_mvlgamma_p_5_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_multigammaln_mvlgamma_p_5_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_multigammaln_mvlgamma_p_5_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_multigammaln_mvlgamma_p_5_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_multigammaln_mvlgamma_p_5_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_multigammaln_mvlgamma_p_5_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_multigammaln_mvlgamma_p_5_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_multigammaln_mvlgamma_p_5_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_multigammaln_mvlgamma_p_5_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_ndtr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_ndtr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_ndtri_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_ndtri_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_ndtri_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_ndtri_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_ndtri_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_ndtri_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_ndtri_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_ndtri_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_spherical_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_spherical_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_spherical_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_spherical_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_spherical_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_spherical_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_spherical_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_special_spherical_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_sqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_square_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_square_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_square_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_square_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_square_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_square_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_square_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_square_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_square_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_square_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_square_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_square_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_tan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_tan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_tan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_tan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_tan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_tan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_tan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_tan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_tan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_tan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_tan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_tan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_tanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_tanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_tanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_tanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_tanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_tanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_tanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_tanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_tanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_tanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_tanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_tanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_trunc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_trunc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_trunc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_trunc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_trunc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_trunc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_trunc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_trunc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand__refs_trunc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_abs_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_abs_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_abs_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_abs_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_abs_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_abs_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_abs_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_abs_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_abs_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_abs_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_abs_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_abs_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_acos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_acos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_acos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_acos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_acos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_acos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_acos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_acos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_acos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_acos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_acos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_acos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_acosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_acosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_acosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_acosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_acosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_acosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_acosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_acosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_acosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_acosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_acosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_acosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_angle_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_angle_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_angle_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_angle_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_angle_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_angle_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_angle_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_angle_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_angle_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_angle_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_angle_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_angle_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_asin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_asin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_asin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_asin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_asin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_asin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_asin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_asin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_asin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_asin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_asin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_asin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_asinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_asinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_asinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_asinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_asinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_asinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_asinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_asinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_asinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_asinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_asinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_asinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_atan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_atan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_atan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_atan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_atan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_atan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_atan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_atan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_atan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_atan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_atan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_atan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_atanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_atanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_atanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_atanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_atanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_atanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_atanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_atanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_atanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_atanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_atanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_atanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_bfloat16_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_bfloat16_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_bfloat16_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_bfloat16_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_bfloat16_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_bfloat16_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_bfloat16_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_bfloat16_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_bfloat16_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_bfloat16_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_bfloat16_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_bfloat16_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_bfloat16_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_bitwise_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_bitwise_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_bitwise_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_bitwise_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_bitwise_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_bitwise_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_bool_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_bool_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_bool_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_bool_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_bool_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_bool_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_bool_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_bool_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_bool_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_bool_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_bool_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_bool_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_bool_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_byte_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_byte_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_byte_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_byte_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_byte_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_byte_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_byte_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_byte_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_byte_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_byte_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_byte_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_byte_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cdouble_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cdouble_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cdouble_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cdouble_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cdouble_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cdouble_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cdouble_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cdouble_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cdouble_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cdouble_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cdouble_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cdouble_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cdouble_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_ceil_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_ceil_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_ceil_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_ceil_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_ceil_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_ceil_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_ceil_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_ceil_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_ceil_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cfloat_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cfloat_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cfloat_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cfloat_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cfloat_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cfloat_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cfloat_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cfloat_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cfloat_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cfloat_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cfloat_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cfloat_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cfloat_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_chalf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_chalf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_chalf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_chalf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_chalf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_chalf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_chalf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_chalf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_chalf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_chalf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_chalf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_chalf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_chalf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_char_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_char_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_char_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_char_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_char_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_char_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_char_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_char_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_char_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_char_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_char_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_char_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_char_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_conj_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_conj_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_conj_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_conj_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_conj_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_conj_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_conj_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_conj_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_conj_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_conj_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_conj_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_conj_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_conj_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_conj_physical_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_conj_physical_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_conj_physical_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_conj_physical_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_conj_physical_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_conj_physical_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_conj_physical_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_conj_physical_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_conj_physical_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_conj_physical_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_conj_physical_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_conj_physical_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_conj_physical_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_cosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_deg2rad_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_deg2rad_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_deg2rad_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_deg2rad_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_deg2rad_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_deg2rad_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_deg2rad_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_deg2rad_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_deg2rad_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_deg2rad_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_digamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_digamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_digamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_digamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_digamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_digamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_digamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_digamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_digamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_digamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_double_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_double_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_double_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_double_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_double_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_double_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_double_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_double_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_double_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_double_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_double_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_double_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_double_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_erf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_erf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_erf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_erf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_erf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_erf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_erf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_erf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_erf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_erf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_erfc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_erfc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_erfc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_erfc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_erfc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_erfc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_erfc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_erfc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_erfc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_erfc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_erfinv_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_erfinv_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_erfinv_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_erfinv_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_erfinv_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_erfinv_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_erfinv_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_erfinv_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_erfinv_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_erfinv_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_exp2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_exp2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_exp2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_exp2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_exp2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_exp2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_exp2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_exp2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_exp2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_exp2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_exp2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_exp2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_exp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_exp_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_exp_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_exp_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_exp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_exp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_exp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_exp_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_exp_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_exp_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_exp_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_exp_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_expm1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_expm1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_expm1_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_expm1_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_expm1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_expm1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_expm1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_expm1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_expm1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_expm1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_expm1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_expm1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_fill_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_fill_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_fill_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_fill_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_fill_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_fill_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_fill_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_fill_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_fill_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_fill_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_fill_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_fill_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_fill_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_float_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_float_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_float_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_float_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_float_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_float_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_float_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_float_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_float_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_float_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_float_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_float_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_float_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_floor_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_floor_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_floor_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_floor_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_floor_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_floor_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_floor_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_floor_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_floor_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_frac_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_frac_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_frac_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_frac_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_frexp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_frexp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_frexp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_frexp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_half_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_half_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_half_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_half_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_half_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_half_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_half_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_half_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_half_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_half_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_half_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_half_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_i0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_i0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_i0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_i0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_i0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_i0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_i0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_i0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_imag_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_imag_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_imag_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_int_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_int_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_int_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_int_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_int_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_int_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_int_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_int_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_int_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_int_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_int_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_int_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isfinite_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isfinite_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isfinite_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isfinite_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isfinite_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isfinite_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isfinite_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isfinite_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isfinite_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isfinite_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isfinite_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isfinite_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isfinite_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isinf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isinf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isinf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isnan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isnan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isnan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isnan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isnan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isnan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isnan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isnan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isnan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isnan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isnan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isnan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isneginf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isneginf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isneginf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isneginf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isneginf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isneginf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isneginf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isneginf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isneginf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isneginf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isposinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isposinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isposinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isposinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isposinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isposinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isposinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isposinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isposinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isposinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isreal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isreal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isreal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isreal_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isreal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isreal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isreal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isreal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isreal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isreal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isreal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isreal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_isreal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_jiterator_unary_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_jiterator_unary_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_jiterator_unary_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_jiterator_unary_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_jiterator_unary_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_jiterator_unary_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_jiterator_unary_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_jiterator_unary_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_jiterator_unary_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_jiterator_unary_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_jiterator_unary_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_jiterator_unary_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_lgamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_lgamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_lgamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_lgamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_lgamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_lgamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_lgamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_lgamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_lgamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_lgamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log10_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log10_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log10_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log10_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log10_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log10_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log10_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log10_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log10_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log10_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log10_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log10_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log1p_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log1p_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log1p_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log1p_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log1p_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log1p_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log1p_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log1p_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log1p_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log1p_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log1p_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log1p_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_log_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_logical_not_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_logical_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_logical_not_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_logical_not_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_logical_not_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_logical_not_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_logical_not_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_logical_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_logical_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_logical_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_logical_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_logical_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_logit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_logit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_logit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_logit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_logit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_logit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_logit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_logit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_logit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_logit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_long_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_long_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_long_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_long_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_long_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_long_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_long_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_long_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_long_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_long_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_long_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_long_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_long_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_mvlgamma_mvlgamma_p_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_mvlgamma_mvlgamma_p_1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_mvlgamma_mvlgamma_p_1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_mvlgamma_mvlgamma_p_1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_mvlgamma_mvlgamma_p_1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_mvlgamma_mvlgamma_p_1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_mvlgamma_mvlgamma_p_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_mvlgamma_mvlgamma_p_3_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_mvlgamma_mvlgamma_p_3_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_mvlgamma_mvlgamma_p_3_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_mvlgamma_mvlgamma_p_3_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_mvlgamma_mvlgamma_p_3_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_mvlgamma_mvlgamma_p_3_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_mvlgamma_mvlgamma_p_5_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_mvlgamma_mvlgamma_p_5_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_mvlgamma_mvlgamma_p_5_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_mvlgamma_mvlgamma_p_5_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_mvlgamma_mvlgamma_p_5_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_mvlgamma_mvlgamma_p_5_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_mvlgamma_mvlgamma_p_5_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nan_to_num_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nan_to_num_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nan_to_num_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nan_to_num_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nan_to_num_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nan_to_num_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nan_to_num_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nan_to_num_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nan_to_num_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nan_to_num_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_neg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_neg_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_neg_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_neg_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_neg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_neg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_neg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_neg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_neg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_neg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_neg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_neg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_celu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_celu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_celu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_celu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_elu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_elu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_elu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_elu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_hardshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_hardshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_hardshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_hardshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_hardsigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_hardsigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_hardsigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_hardsigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_hardtanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_hardtanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_hardtanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_hardtanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_hardtanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_hardtanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_hardtanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_hardtanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_logsigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_logsigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_logsigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_logsigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_mish_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_mish_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_mish_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_mish_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_prelu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_prelu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_prelu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_prelu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_relu6_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_relu6_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_relu6_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_relu6_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_relu6_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_relu6_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_relu6_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_relu6_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_relu6_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_relu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_relu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_relu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_relu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_relu_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_relu_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_relu_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_relu_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_relu_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_rrelu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_rrelu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_rrelu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_selu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_selu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_selu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_selu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_silu_complex_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_silu_complex_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_silu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_silu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_silu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_silu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_softplus_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_softplus_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_softplus_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_softplus_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_softshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_softshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_softshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_softshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_softsign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_softsign_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_softsign_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_softsign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_softsign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_softsign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_softsign_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_softsign_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_softsign_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_softsign_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_softsign_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_tanhshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_tanhshrink_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_tanhshrink_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_tanhshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_tanhshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_tanhshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_tanhshrink_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_tanhshrink_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_tanhshrink_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_tanhshrink_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_tanhshrink_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_threshold_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_threshold_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_threshold_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_threshold_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_threshold_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_threshold_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_threshold_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_threshold_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_nn_functional_threshold_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_3_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_3_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_3_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_3_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_3_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_3_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_4_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_4_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_4_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_4_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_4_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_4_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_4_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_4_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_polygamma_polygamma_n_4_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_positive_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_positive_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_positive_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_positive_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_positive_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_positive_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_positive_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_positive_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_positive_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_positive_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_positive_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_positive_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_rad2deg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_rad2deg_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_rad2deg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_rad2deg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_rad2deg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_rad2deg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_rad2deg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_rad2deg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_rad2deg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_rad2deg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_real_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_real_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_real_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_real_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_real_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_real_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_real_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_real_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_real_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_real_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_real_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_real_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_real_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_reciprocal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_reciprocal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_reciprocal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_reciprocal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_reciprocal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_reciprocal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_reciprocal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_reciprocal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_reciprocal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_reciprocal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_reciprocal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_reciprocal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_round_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_round_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_round_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_round_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_round_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_round_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_round_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_round_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_round_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_round_decimals_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_round_decimals_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_round_decimals_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_round_decimals_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_round_decimals_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_round_decimals_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_round_decimals_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_round_decimals_neg_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_round_decimals_neg_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_round_decimals_neg_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_rsqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_rsqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_rsqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_rsqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_rsqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_rsqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_rsqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_rsqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_rsqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_rsqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_rsqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_rsqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sgn_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sgn_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sgn_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sgn_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sgn_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sgn_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sgn_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sgn_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sgn_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sgn_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sgn_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sgn_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sgn_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_short_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_short_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_short_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_short_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_short_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_short_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_short_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_short_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_short_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_short_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_short_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_short_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sigmoid_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sigmoid_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sigmoid_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sigmoid_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sigmoid_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sigmoid_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sigmoid_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sigmoid_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sign_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sign_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sign_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sign_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sign_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sign_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_signbit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_signbit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_signbit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_signbit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_signbit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_signbit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_signbit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_signbit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_signbit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_signbit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sinc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sinc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sinc_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sinc_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sinc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sinc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sinc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sinc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sinc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sinc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sinc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sinc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_airy_ai_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_airy_ai_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_airy_ai_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_airy_ai_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_airy_ai_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_airy_ai_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_airy_ai_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_airy_ai_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_bessel_j1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_bessel_j1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_bessel_j1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_bessel_j1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_bessel_j1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_bessel_j1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_bessel_j1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_bessel_j1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_bessel_y0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_bessel_y0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_bessel_y0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_bessel_y0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_bessel_y0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_bessel_y0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_bessel_y0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_bessel_y0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_bessel_y1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_bessel_y1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_bessel_y1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_bessel_y1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_bessel_y1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_bessel_y1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_bessel_y1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_bessel_y1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_entr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_entr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_entr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_entr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_entr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_entr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_entr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_entr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_entr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_entr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_erfcx_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_erfcx_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_erfcx_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_erfcx_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_erfcx_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_erfcx_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_erfcx_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_erfcx_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_i0e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_i0e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_i0e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_i0e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_i0e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_i0e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_i0e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_i0e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_i0e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_i0e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_i1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_i1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_i1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_i1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_i1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_i1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_i1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_i1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_i1e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_i1e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_i1e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_i1e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_i1e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_i1e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_i1e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_i1e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_i1e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_i1e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_log_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_log_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_log_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_log_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_log_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_log_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_log_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_log_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_modified_bessel_i0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_modified_bessel_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_modified_bessel_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_modified_bessel_i0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_modified_bessel_i0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_modified_bessel_i0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_modified_bessel_i0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_modified_bessel_i0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_modified_bessel_i1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_modified_bessel_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_modified_bessel_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_modified_bessel_i1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_modified_bessel_i1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_modified_bessel_i1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_modified_bessel_i1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_modified_bessel_i1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_modified_bessel_k0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_modified_bessel_k0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_modified_bessel_k0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_modified_bessel_k0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_modified_bessel_k0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_modified_bessel_k0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_modified_bessel_k0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_modified_bessel_k0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_modified_bessel_k1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_modified_bessel_k1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_modified_bessel_k1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_modified_bessel_k1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_modified_bessel_k1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_modified_bessel_k1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_modified_bessel_k1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_modified_bessel_k1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_ndtr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_ndtr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_ndtri_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_ndtri_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_ndtri_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_ndtri_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_ndtri_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_ndtri_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_ndtri_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_ndtri_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_polygamma_special_polygamma_n_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_polygamma_special_polygamma_n_0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_polygamma_special_polygamma_n_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_polygamma_special_polygamma_n_0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_polygamma_special_polygamma_n_0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_polygamma_special_polygamma_n_0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_polygamma_special_polygamma_n_0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_polygamma_special_polygamma_n_0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_scaled_modified_bessel_k0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_scaled_modified_bessel_k0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_scaled_modified_bessel_k0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_scaled_modified_bessel_k0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_scaled_modified_bessel_k0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_scaled_modified_bessel_k0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_scaled_modified_bessel_k0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_scaled_modified_bessel_k0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_scaled_modified_bessel_k1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_scaled_modified_bessel_k1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_scaled_modified_bessel_k1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_scaled_modified_bessel_k1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_scaled_modified_bessel_k1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_scaled_modified_bessel_k1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_scaled_modified_bessel_k1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_scaled_modified_bessel_k1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_spherical_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_spherical_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_spherical_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_spherical_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_spherical_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_spherical_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_spherical_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_special_spherical_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_sqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_square_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_square_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_square_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_square_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_square_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_square_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_square_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_square_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_square_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_square_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_square_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_square_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_tan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_tan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_tan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_tan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_tan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_tan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_tan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_tan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_tan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_tan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_tan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_tan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_tanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_tanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_tanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_tanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_tanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_tanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_tanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_tanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_tanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_tanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_tanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_tanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_trunc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_trunc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_trunc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_trunc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_trunc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_trunc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_trunc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_trunc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expand_trunc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expm1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expm1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expm1_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expm1_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expm1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expm1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expm1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expm1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expm1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expm1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expm1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_expm1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_fill_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_fill_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_fill_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_fill_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_fill_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_fill_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_fill_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_fill_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_fill_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_fill_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_fill_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_fill_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_fill_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_float_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_float_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_float_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_float_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_float_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_float_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_float_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_float_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_float_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_float_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_float_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_float_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_float_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_floor_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_floor_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_floor_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_floor_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_floor_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_floor_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_floor_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_floor_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_floor_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_frac_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_frac_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_frac_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_frac_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_frexp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_frexp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_frexp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_frexp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_half_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_half_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_half_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_half_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_half_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_half_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_half_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_half_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_half_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_half_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_half_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_half_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_i0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_i0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_i0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_i0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_i0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_i0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_i0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_i0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_imag_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_imag_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_imag_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_bfloat16_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_bfloat16_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_bfloat16_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_bfloat16_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_bfloat16_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_bfloat16_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_bfloat16_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_bfloat16_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_bfloat16_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_bfloat16_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_bfloat16_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_bfloat16_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_bfloat16_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_bool_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_bool_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_bool_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_bool_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_bool_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_bool_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_bool_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_bool_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_bool_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_bool_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_bool_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_bool_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_bool_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_byte_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_byte_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_byte_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_byte_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_byte_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_byte_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_byte_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_byte_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_byte_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_byte_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_byte_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_byte_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_cdouble_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_cdouble_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_cdouble_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_cdouble_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_cdouble_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_cdouble_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_cdouble_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_cdouble_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_cdouble_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_cdouble_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_cdouble_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_cdouble_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_cdouble_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_cfloat_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_cfloat_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_cfloat_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_cfloat_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_cfloat_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_cfloat_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_cfloat_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_cfloat_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_cfloat_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_cfloat_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_cfloat_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_cfloat_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_cfloat_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_chalf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_chalf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_chalf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_chalf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_chalf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_chalf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_chalf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_chalf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_chalf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_chalf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_chalf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_chalf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_chalf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_char_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_char_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_char_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_char_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_char_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_char_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_char_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_char_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_char_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_char_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_char_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_char_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_char_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_double_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_double_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_double_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_double_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_double_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_double_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_double_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_double_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_double_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_double_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_double_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_double_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_double_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_float_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_float_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_float_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_float_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_float_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_float_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_float_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_float_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_float_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_float_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_float_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_float_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_float_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_half_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_half_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_half_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_half_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_half_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_half_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_half_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_half_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_half_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_half_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_half_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_half_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_int_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_int_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_int_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_int_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_int_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_int_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_int_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_int_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_int_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_int_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_int_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_int_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_long_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_long_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_long_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_long_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_long_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_long_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_long_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_long_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_long_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_long_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_long_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_long_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_long_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_short_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_short_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_short_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_short_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_short_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_short_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_short_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_short_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_short_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_short_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_short_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs__conversions_short_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_abs_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_abs_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_abs_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_abs_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_abs_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_abs_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_abs_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_abs_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_abs_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_abs_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_abs_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_abs_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_acos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_acos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_acos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_acos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_acos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_acos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_acos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_acos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_acos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_acos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_acos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_acos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_acosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_acosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_acosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_acosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_acosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_acosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_acosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_acosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_acosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_acosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_acosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_acosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_asin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_asin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_asin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_asin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_asin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_asin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_asin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_asin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_asin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_asin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_asin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_asin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_asinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_asinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_asinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_asinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_asinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_asinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_asinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_asinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_asinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_asinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_asinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_asinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_atan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_atan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_atan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_atan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_atan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_atan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_atan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_atan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_atan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_atan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_atan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_atan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_atanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_atanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_atanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_atanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_atanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_atanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_atanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_atanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_atanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_atanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_atanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_atanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_bitwise_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_bitwise_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_bitwise_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_bitwise_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_bitwise_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_bitwise_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_ceil_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_ceil_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_ceil_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_ceil_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_ceil_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_ceil_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_ceil_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_ceil_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_ceil_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_conj_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_conj_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_conj_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_conj_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_conj_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_conj_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_conj_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_conj_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_conj_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_conj_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_conj_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_conj_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_conj_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_conj_physical_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_conj_physical_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_conj_physical_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_conj_physical_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_conj_physical_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_conj_physical_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_conj_physical_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_conj_physical_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_conj_physical_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_conj_physical_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_conj_physical_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_conj_physical_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_conj_physical_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_cos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_cos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_cos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_cos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_cos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_cos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_cos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_cos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_cos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_cos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_cos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_cos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_cosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_cosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_cosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_cosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_cosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_cosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_cosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_cosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_cosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_cosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_cosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_cosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_deg2rad_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_deg2rad_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_deg2rad_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_deg2rad_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_deg2rad_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_deg2rad_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_deg2rad_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_deg2rad_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_deg2rad_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_deg2rad_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_digamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_digamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_digamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_digamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_digamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_digamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_digamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_digamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_digamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_digamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_erf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_erf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_erf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_erf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_erf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_erf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_erf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_erf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_erf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_erf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_erfc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_erfc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_erfc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_erfc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_erfc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_erfc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_erfc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_erfc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_erfc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_erfc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_erfinv_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_erfinv_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_erfinv_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_erfinv_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_erfinv_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_erfinv_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_erfinv_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_erfinv_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_erfinv_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_erfinv_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_exp2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_exp2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_exp2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_exp2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_exp2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_exp2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_exp2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_exp2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_exp2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_exp2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_exp2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_exp2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_exp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_exp_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_exp_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_exp_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_exp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_exp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_exp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_exp_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_exp_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_exp_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_exp_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_exp_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_expm1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_expm1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_expm1_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_expm1_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_expm1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_expm1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_expm1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_expm1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_expm1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_expm1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_expm1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_expm1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_fill_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_fill_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_fill_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_fill_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_fill_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_fill_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_fill_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_fill_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_fill_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_fill_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_fill_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_fill_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_fill_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_floor_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_floor_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_floor_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_floor_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_floor_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_floor_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_floor_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_floor_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_floor_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_frac_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_frac_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_frac_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_frac_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_frexp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_frexp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_frexp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_frexp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_i0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_i0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_i0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_i0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_i0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_i0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_i0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_i0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_imag_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_imag_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_imag_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isfinite_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isfinite_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isfinite_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isfinite_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isfinite_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isfinite_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isfinite_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isfinite_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isfinite_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isfinite_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isfinite_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isfinite_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isfinite_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isinf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isinf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isinf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isnan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isnan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isnan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isnan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isnan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isnan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isnan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isnan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isnan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isnan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isnan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isnan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isneginf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isneginf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isneginf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isneginf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isneginf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isneginf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isneginf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isneginf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isneginf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isneginf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isposinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isposinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isposinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isposinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isposinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isposinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isposinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isposinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isposinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isposinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isreal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isreal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isreal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isreal_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isreal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isreal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isreal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isreal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isreal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isreal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isreal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isreal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_isreal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_lgamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_lgamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_lgamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_lgamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_lgamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_lgamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_lgamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_lgamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_lgamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_lgamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log10_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log10_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log10_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log10_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log10_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log10_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log10_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log10_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log10_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log10_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log10_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log10_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log1p_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log1p_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log1p_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log1p_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log1p_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log1p_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log1p_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log1p_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log1p_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log1p_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log1p_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log1p_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_log_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_logical_not_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_logical_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_logical_not_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_logical_not_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_logical_not_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_logical_not_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_logical_not_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_logical_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_logical_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_logical_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_logical_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_logical_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nan_to_num_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nan_to_num_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nan_to_num_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nan_to_num_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nan_to_num_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nan_to_num_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nan_to_num_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nan_to_num_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nan_to_num_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nan_to_num_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_neg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_neg_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_neg_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_neg_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_neg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_neg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_neg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_neg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_neg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_neg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_neg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_neg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_celu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_celu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_celu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_celu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_elu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_elu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_elu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_elu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_hardshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_hardshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_hardshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_hardshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_hardtanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_hardtanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_hardtanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_hardtanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_hardtanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_hardtanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_hardtanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_hardtanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_mish_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_mish_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_mish_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_mish_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_prelu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_prelu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_prelu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_prelu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_relu6_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_relu6_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_relu6_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_relu6_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_relu6_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_relu6_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_relu6_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_relu6_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_relu6_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_relu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_relu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_relu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_relu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_relu_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_relu_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_relu_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_relu_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_relu_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_selu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_selu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_selu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_selu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_softplus_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_softplus_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_softplus_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_softplus_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_softshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_softshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_softshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_softshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_tanhshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_tanhshrink_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_tanhshrink_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_tanhshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_tanhshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_tanhshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_tanhshrink_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_tanhshrink_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_tanhshrink_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_tanhshrink_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_tanhshrink_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_threshold_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_threshold_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_threshold_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_threshold_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_threshold_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_threshold_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_threshold_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_threshold_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_nn_functional_threshold_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_positive_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_positive_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_positive_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_positive_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_positive_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_positive_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_positive_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_positive_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_positive_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_positive_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_positive_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_positive_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_rad2deg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_rad2deg_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_rad2deg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_rad2deg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_rad2deg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_rad2deg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_rad2deg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_rad2deg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_rad2deg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_rad2deg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_real_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_real_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_real_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_real_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_real_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_real_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_real_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_real_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_real_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_real_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_real_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_real_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_real_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_reciprocal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_reciprocal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_reciprocal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_reciprocal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_reciprocal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_reciprocal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_reciprocal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_reciprocal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_reciprocal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_reciprocal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_reciprocal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_reciprocal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_round_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_round_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_round_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_round_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_round_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_round_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_round_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_round_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_round_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_rsqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_rsqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_rsqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_rsqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_rsqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_rsqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_rsqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_rsqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_rsqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_rsqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_rsqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_rsqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sgn_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sgn_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sgn_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sgn_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sgn_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sgn_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sgn_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sgn_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sgn_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sgn_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sgn_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sgn_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sgn_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sigmoid_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sigmoid_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sigmoid_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sigmoid_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sigmoid_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sigmoid_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sigmoid_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sigmoid_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sign_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sign_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sign_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sign_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sign_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sign_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_signbit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_signbit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_signbit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_signbit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_signbit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_signbit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_signbit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_signbit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_signbit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_signbit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sinc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sinc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sinc_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sinc_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sinc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sinc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sinc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sinc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sinc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sinc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sinc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sinc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_bessel_j1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_bessel_j1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_bessel_j1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_bessel_j1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_bessel_j1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_bessel_j1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_bessel_j1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_bessel_j1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_entr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_entr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_entr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_entr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_entr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_entr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_entr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_entr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_entr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_entr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_erfcx_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_erfcx_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_erfcx_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_erfcx_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_erfcx_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_erfcx_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_erfcx_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_erfcx_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_i0e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_i0e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_i0e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_i0e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_i0e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_i0e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_i0e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_i0e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_i0e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_i0e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_i1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_i1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_i1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_i1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_i1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_i1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_i1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_i1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_i1e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_i1e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_i1e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_i1e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_i1e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_i1e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_i1e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_i1e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_i1e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_i1e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_log_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_log_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_log_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_log_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_log_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_log_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_log_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_log_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_logit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_logit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_logit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_logit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_logit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_logit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_logit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_logit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_logit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_logit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_multigammaln_mvlgamma_p_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_multigammaln_mvlgamma_p_1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_multigammaln_mvlgamma_p_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_multigammaln_mvlgamma_p_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_multigammaln_mvlgamma_p_1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_multigammaln_mvlgamma_p_1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_multigammaln_mvlgamma_p_1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_multigammaln_mvlgamma_p_1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_multigammaln_mvlgamma_p_1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_multigammaln_mvlgamma_p_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_multigammaln_mvlgamma_p_3_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_multigammaln_mvlgamma_p_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_multigammaln_mvlgamma_p_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_multigammaln_mvlgamma_p_3_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_multigammaln_mvlgamma_p_3_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_multigammaln_mvlgamma_p_3_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_multigammaln_mvlgamma_p_3_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_multigammaln_mvlgamma_p_3_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_multigammaln_mvlgamma_p_5_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_multigammaln_mvlgamma_p_5_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_multigammaln_mvlgamma_p_5_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_multigammaln_mvlgamma_p_5_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_multigammaln_mvlgamma_p_5_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_multigammaln_mvlgamma_p_5_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_multigammaln_mvlgamma_p_5_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_multigammaln_mvlgamma_p_5_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_multigammaln_mvlgamma_p_5_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_ndtr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_ndtr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_ndtri_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_ndtri_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_ndtri_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_ndtri_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_ndtri_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_ndtri_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_ndtri_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_ndtri_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_spherical_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_spherical_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_spherical_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_spherical_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_spherical_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_spherical_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_spherical_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_special_spherical_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_sqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_square_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_square_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_square_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_square_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_square_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_square_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_square_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_square_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_square_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_square_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_square_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_square_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_tan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_tan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_tan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_tan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_tan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_tan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_tan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_tan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_tan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_tan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_tan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_tan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_tanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_tanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_tanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_tanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_tanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_tanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_tanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_tanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_tanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_tanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_tanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_tanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_trunc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_trunc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_trunc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_trunc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_trunc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_trunc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_trunc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_trunc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index__refs_trunc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_abs_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_abs_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_abs_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_abs_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_abs_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_abs_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_abs_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_abs_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_abs_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_abs_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_abs_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_abs_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_acos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_acos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_acos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_acos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_acos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_acos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_acos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_acos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_acos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_acos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_acos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_acos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_acosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_acosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_acosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_acosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_acosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_acosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_acosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_acosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_acosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_acosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_acosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_acosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_angle_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_angle_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_angle_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_angle_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_angle_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_angle_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_angle_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_angle_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_angle_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_angle_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_angle_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_angle_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_asin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_asin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_asin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_asin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_asin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_asin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_asin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_asin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_asin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_asin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_asin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_asin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_asinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_asinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_asinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_asinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_asinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_asinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_asinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_asinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_asinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_asinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_asinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_asinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_atan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_atan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_atan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_atan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_atan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_atan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_atan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_atan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_atan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_atan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_atan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_atan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_atanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_atanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_atanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_atanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_atanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_atanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_atanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_atanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_atanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_atanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_atanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_atanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_bfloat16_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_bfloat16_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_bfloat16_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_bfloat16_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_bfloat16_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_bfloat16_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_bfloat16_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_bfloat16_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_bfloat16_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_bfloat16_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_bfloat16_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_bfloat16_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_bfloat16_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_bitwise_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_bitwise_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_bitwise_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_bitwise_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_bitwise_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_bitwise_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_bool_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_bool_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_bool_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_bool_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_bool_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_bool_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_bool_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_bool_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_bool_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_bool_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_bool_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_bool_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_bool_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_byte_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_byte_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_byte_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_byte_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_byte_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_byte_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_byte_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_byte_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_byte_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_byte_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_byte_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_byte_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cdouble_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cdouble_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cdouble_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cdouble_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cdouble_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cdouble_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cdouble_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cdouble_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cdouble_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cdouble_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cdouble_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cdouble_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cdouble_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_ceil_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_ceil_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_ceil_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_ceil_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_ceil_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_ceil_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_ceil_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_ceil_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_ceil_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cfloat_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cfloat_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cfloat_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cfloat_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cfloat_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cfloat_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cfloat_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cfloat_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cfloat_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cfloat_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cfloat_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cfloat_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cfloat_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_chalf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_chalf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_chalf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_chalf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_chalf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_chalf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_chalf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_chalf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_chalf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_chalf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_chalf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_chalf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_chalf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_char_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_char_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_char_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_char_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_char_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_char_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_char_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_char_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_char_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_char_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_char_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_char_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_char_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_conj_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_conj_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_conj_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_conj_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_conj_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_conj_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_conj_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_conj_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_conj_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_conj_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_conj_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_conj_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_conj_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_conj_physical_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_conj_physical_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_conj_physical_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_conj_physical_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_conj_physical_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_conj_physical_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_conj_physical_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_conj_physical_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_conj_physical_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_conj_physical_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_conj_physical_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_conj_physical_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_conj_physical_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_cosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_deg2rad_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_deg2rad_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_deg2rad_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_deg2rad_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_deg2rad_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_deg2rad_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_deg2rad_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_deg2rad_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_deg2rad_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_deg2rad_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_digamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_digamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_digamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_digamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_digamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_digamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_digamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_digamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_digamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_digamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_double_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_double_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_double_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_double_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_double_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_double_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_double_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_double_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_double_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_double_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_double_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_double_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_double_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_erf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_erf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_erf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_erf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_erf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_erf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_erf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_erf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_erf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_erf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_erfc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_erfc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_erfc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_erfc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_erfc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_erfc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_erfc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_erfc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_erfc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_erfc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_erfinv_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_erfinv_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_erfinv_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_erfinv_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_erfinv_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_erfinv_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_erfinv_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_erfinv_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_erfinv_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_erfinv_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_exp2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_exp2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_exp2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_exp2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_exp2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_exp2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_exp2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_exp2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_exp2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_exp2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_exp2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_exp2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_exp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_exp_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_exp_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_exp_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_exp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_exp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_exp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_exp_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_exp_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_exp_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_exp_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_exp_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_expm1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_expm1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_expm1_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_expm1_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_expm1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_expm1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_expm1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_expm1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_expm1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_expm1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_expm1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_expm1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_fill_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_fill_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_fill_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_fill_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_fill_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_fill_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_fill_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_fill_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_fill_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_fill_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_fill_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_fill_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_fill_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_float_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_float_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_float_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_float_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_float_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_float_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_float_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_float_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_float_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_float_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_float_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_float_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_float_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_floor_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_floor_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_floor_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_floor_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_floor_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_floor_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_floor_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_floor_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_floor_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_frac_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_frac_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_frac_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_frac_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_frexp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_frexp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_frexp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_frexp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_half_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_half_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_half_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_half_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_half_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_half_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_half_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_half_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_half_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_half_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_half_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_half_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_i0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_i0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_i0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_i0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_i0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_i0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_i0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_i0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_imag_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_imag_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_imag_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_int_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_int_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_int_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_int_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_int_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_int_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_int_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_int_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_int_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_int_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_int_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_int_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isfinite_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isfinite_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isfinite_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isfinite_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isfinite_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isfinite_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isfinite_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isfinite_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isfinite_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isfinite_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isfinite_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isfinite_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isfinite_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isinf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isinf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isinf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isnan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isnan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isnan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isnan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isnan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isnan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isnan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isnan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isnan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isnan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isnan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isnan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isneginf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isneginf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isneginf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isneginf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isneginf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isneginf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isneginf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isneginf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isneginf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isneginf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isposinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isposinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isposinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isposinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isposinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isposinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isposinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isposinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isposinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isposinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isreal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isreal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isreal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isreal_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isreal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isreal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isreal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isreal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isreal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isreal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isreal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isreal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_isreal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_jiterator_unary_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_jiterator_unary_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_jiterator_unary_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_jiterator_unary_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_jiterator_unary_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_jiterator_unary_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_jiterator_unary_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_jiterator_unary_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_jiterator_unary_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_jiterator_unary_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_jiterator_unary_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_jiterator_unary_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_lgamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_lgamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_lgamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_lgamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_lgamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_lgamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_lgamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_lgamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_lgamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_lgamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log10_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log10_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log10_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log10_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log10_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log10_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log10_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log10_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log10_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log10_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log10_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log10_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log1p_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log1p_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log1p_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log1p_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log1p_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log1p_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log1p_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log1p_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log1p_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log1p_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log1p_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log1p_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_log_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_logical_not_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_logical_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_logical_not_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_logical_not_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_logical_not_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_logical_not_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_logical_not_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_logical_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_logical_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_logical_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_logical_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_logical_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_logit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_logit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_logit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_logit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_logit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_logit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_logit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_logit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_logit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_logit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_long_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_long_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_long_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_long_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_long_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_long_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_long_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_long_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_long_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_long_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_long_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_long_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_long_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_mvlgamma_mvlgamma_p_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_mvlgamma_mvlgamma_p_1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_mvlgamma_mvlgamma_p_1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_mvlgamma_mvlgamma_p_1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_mvlgamma_mvlgamma_p_1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_mvlgamma_mvlgamma_p_1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_mvlgamma_mvlgamma_p_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_mvlgamma_mvlgamma_p_3_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_mvlgamma_mvlgamma_p_3_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_mvlgamma_mvlgamma_p_3_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_mvlgamma_mvlgamma_p_3_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_mvlgamma_mvlgamma_p_3_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_mvlgamma_mvlgamma_p_3_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_mvlgamma_mvlgamma_p_5_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_mvlgamma_mvlgamma_p_5_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_mvlgamma_mvlgamma_p_5_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_mvlgamma_mvlgamma_p_5_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_mvlgamma_mvlgamma_p_5_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_mvlgamma_mvlgamma_p_5_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_mvlgamma_mvlgamma_p_5_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nan_to_num_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nan_to_num_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nan_to_num_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nan_to_num_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nan_to_num_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nan_to_num_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nan_to_num_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nan_to_num_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nan_to_num_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nan_to_num_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_neg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_neg_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_neg_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_neg_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_neg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_neg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_neg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_neg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_neg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_neg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_neg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_neg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_celu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_celu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_celu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_celu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_elu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_elu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_elu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_elu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_hardshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_hardshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_hardshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_hardshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_hardsigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_hardsigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_hardsigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_hardsigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_hardtanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_hardtanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_hardtanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_hardtanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_hardtanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_hardtanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_hardtanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_hardtanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_logsigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_logsigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_logsigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_logsigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_mish_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_mish_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_mish_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_mish_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_prelu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_prelu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_prelu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_prelu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_relu6_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_relu6_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_relu6_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_relu6_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_relu6_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_relu6_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_relu6_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_relu6_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_relu6_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_relu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_relu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_relu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_relu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_relu_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_relu_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_relu_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_relu_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_relu_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_rrelu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_rrelu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_rrelu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_selu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_selu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_selu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_selu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_silu_complex_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_silu_complex_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_silu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_silu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_silu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_silu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_softplus_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_softplus_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_softplus_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_softplus_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_softshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_softshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_softshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_softshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_softsign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_softsign_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_softsign_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_softsign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_softsign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_softsign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_softsign_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_softsign_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_softsign_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_softsign_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_softsign_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_tanhshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_tanhshrink_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_tanhshrink_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_tanhshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_tanhshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_tanhshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_tanhshrink_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_tanhshrink_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_tanhshrink_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_tanhshrink_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_tanhshrink_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_threshold_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_threshold_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_threshold_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_threshold_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_threshold_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_threshold_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_threshold_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_threshold_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_nn_functional_threshold_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_3_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_3_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_3_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_3_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_3_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_3_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_4_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_4_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_4_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_4_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_4_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_4_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_4_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_4_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_polygamma_polygamma_n_4_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_positive_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_positive_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_positive_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_positive_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_positive_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_positive_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_positive_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_positive_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_positive_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_positive_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_positive_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_positive_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_rad2deg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_rad2deg_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_rad2deg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_rad2deg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_rad2deg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_rad2deg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_rad2deg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_rad2deg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_rad2deg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_rad2deg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_real_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_real_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_real_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_real_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_real_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_real_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_real_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_real_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_real_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_real_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_real_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_real_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_real_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_reciprocal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_reciprocal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_reciprocal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_reciprocal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_reciprocal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_reciprocal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_reciprocal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_reciprocal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_reciprocal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_reciprocal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_reciprocal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_reciprocal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_round_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_round_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_round_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_round_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_round_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_round_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_round_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_round_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_round_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_round_decimals_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_round_decimals_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_round_decimals_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_round_decimals_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_round_decimals_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_round_decimals_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_round_decimals_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_round_decimals_neg_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_round_decimals_neg_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_round_decimals_neg_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_rsqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_rsqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_rsqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_rsqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_rsqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_rsqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_rsqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_rsqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_rsqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_rsqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_rsqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_rsqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sgn_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sgn_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sgn_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sgn_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sgn_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sgn_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sgn_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sgn_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sgn_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sgn_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sgn_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sgn_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sgn_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_short_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_short_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_short_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_short_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_short_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_short_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_short_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_short_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_short_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_short_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_short_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_short_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sigmoid_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sigmoid_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sigmoid_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sigmoid_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sigmoid_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sigmoid_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sigmoid_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sigmoid_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sign_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sign_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sign_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sign_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sign_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sign_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_signbit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_signbit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_signbit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_signbit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_signbit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_signbit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_signbit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_signbit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_signbit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_signbit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sinc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sinc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sinc_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sinc_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sinc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sinc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sinc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sinc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sinc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sinc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sinc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sinc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_airy_ai_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_airy_ai_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_airy_ai_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_airy_ai_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_airy_ai_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_airy_ai_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_airy_ai_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_airy_ai_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_bessel_j1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_bessel_j1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_bessel_j1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_bessel_j1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_bessel_j1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_bessel_j1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_bessel_j1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_bessel_j1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_bessel_y0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_bessel_y0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_bessel_y0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_bessel_y0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_bessel_y0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_bessel_y0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_bessel_y0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_bessel_y0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_bessel_y1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_bessel_y1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_bessel_y1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_bessel_y1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_bessel_y1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_bessel_y1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_bessel_y1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_bessel_y1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_entr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_entr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_entr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_entr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_entr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_entr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_entr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_entr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_entr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_entr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_erfcx_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_erfcx_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_erfcx_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_erfcx_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_erfcx_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_erfcx_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_erfcx_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_erfcx_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_i0e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_i0e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_i0e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_i0e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_i0e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_i0e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_i0e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_i0e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_i0e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_i0e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_i1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_i1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_i1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_i1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_i1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_i1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_i1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_i1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_i1e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_i1e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_i1e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_i1e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_i1e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_i1e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_i1e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_i1e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_i1e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_i1e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_log_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_log_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_log_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_log_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_log_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_log_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_log_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_log_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_modified_bessel_i0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_modified_bessel_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_modified_bessel_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_modified_bessel_i0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_modified_bessel_i0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_modified_bessel_i0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_modified_bessel_i0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_modified_bessel_i0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_modified_bessel_i1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_modified_bessel_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_modified_bessel_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_modified_bessel_i1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_modified_bessel_i1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_modified_bessel_i1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_modified_bessel_i1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_modified_bessel_i1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_modified_bessel_k0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_modified_bessel_k0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_modified_bessel_k0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_modified_bessel_k0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_modified_bessel_k0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_modified_bessel_k0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_modified_bessel_k0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_modified_bessel_k0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_modified_bessel_k1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_modified_bessel_k1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_modified_bessel_k1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_modified_bessel_k1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_modified_bessel_k1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_modified_bessel_k1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_modified_bessel_k1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_modified_bessel_k1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_ndtr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_ndtr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_ndtri_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_ndtri_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_ndtri_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_ndtri_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_ndtri_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_ndtri_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_ndtri_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_ndtri_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_polygamma_special_polygamma_n_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_polygamma_special_polygamma_n_0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_polygamma_special_polygamma_n_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_polygamma_special_polygamma_n_0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_polygamma_special_polygamma_n_0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_polygamma_special_polygamma_n_0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_polygamma_special_polygamma_n_0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_polygamma_special_polygamma_n_0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_scaled_modified_bessel_k0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_scaled_modified_bessel_k0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_scaled_modified_bessel_k0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_scaled_modified_bessel_k0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_scaled_modified_bessel_k0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_scaled_modified_bessel_k0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_scaled_modified_bessel_k0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_scaled_modified_bessel_k0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_scaled_modified_bessel_k1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_scaled_modified_bessel_k1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_scaled_modified_bessel_k1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_scaled_modified_bessel_k1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_scaled_modified_bessel_k1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_scaled_modified_bessel_k1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_scaled_modified_bessel_k1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_scaled_modified_bessel_k1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_spherical_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_spherical_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_spherical_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_spherical_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_spherical_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_spherical_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_spherical_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_special_spherical_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_sqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_square_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_square_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_square_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_square_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_square_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_square_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_square_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_square_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_square_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_square_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_square_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_square_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_tan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_tan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_tan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_tan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_tan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_tan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_tan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_tan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_tan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_tan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_tan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_tan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_tanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_tanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_tanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_tanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_tanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_tanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_tanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_tanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_tanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_tanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_tanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_tanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_trunc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_trunc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_trunc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_trunc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_trunc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_trunc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_trunc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_trunc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_index_trunc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_int_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_int_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_int_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_int_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_int_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_int_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_int_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_int_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_int_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_int_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_int_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_int_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isfinite_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isfinite_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isfinite_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isfinite_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isfinite_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isfinite_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isfinite_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isfinite_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isfinite_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isfinite_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isfinite_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isfinite_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isfinite_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isinf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isinf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isinf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isnan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isnan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isnan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isnan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isnan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isnan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isnan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isnan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isnan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isnan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isnan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isnan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isneginf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isneginf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isneginf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isneginf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isneginf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isneginf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isneginf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isneginf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isneginf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isneginf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isposinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isposinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isposinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isposinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isposinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isposinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isposinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isposinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isposinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isposinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isreal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isreal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isreal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isreal_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isreal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isreal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isreal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isreal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isreal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isreal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isreal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isreal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_isreal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_jiterator_unary_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_jiterator_unary_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_jiterator_unary_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_jiterator_unary_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_jiterator_unary_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_jiterator_unary_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_jiterator_unary_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_jiterator_unary_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_jiterator_unary_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_jiterator_unary_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_jiterator_unary_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_jiterator_unary_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_lgamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_lgamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_lgamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_lgamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_lgamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_lgamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_lgamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_lgamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_lgamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_lgamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log10_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log10_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log10_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log10_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log10_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log10_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log10_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log10_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log10_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log10_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log10_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log10_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log1p_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log1p_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log1p_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log1p_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log1p_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log1p_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log1p_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log1p_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log1p_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log1p_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log1p_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log1p_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_log_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_logical_not_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_logical_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_logical_not_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_logical_not_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_logical_not_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_logical_not_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_logical_not_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_logical_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_logical_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_logical_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_logical_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_logical_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_logit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_logit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_logit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_logit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_logit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_logit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_logit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_logit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_logit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_logit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_long_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_long_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_long_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_long_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_long_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_long_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_long_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_long_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_long_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_long_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_long_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_long_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_long_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_mvlgamma_mvlgamma_p_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_mvlgamma_mvlgamma_p_1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_mvlgamma_mvlgamma_p_1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_mvlgamma_mvlgamma_p_1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_mvlgamma_mvlgamma_p_1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_mvlgamma_mvlgamma_p_1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_mvlgamma_mvlgamma_p_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_mvlgamma_mvlgamma_p_3_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_mvlgamma_mvlgamma_p_3_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_mvlgamma_mvlgamma_p_3_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_mvlgamma_mvlgamma_p_3_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_mvlgamma_mvlgamma_p_3_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_mvlgamma_mvlgamma_p_3_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_mvlgamma_mvlgamma_p_5_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_mvlgamma_mvlgamma_p_5_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_mvlgamma_mvlgamma_p_5_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_mvlgamma_mvlgamma_p_5_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_mvlgamma_mvlgamma_p_5_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_mvlgamma_mvlgamma_p_5_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_mvlgamma_mvlgamma_p_5_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nan_to_num_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nan_to_num_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nan_to_num_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nan_to_num_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nan_to_num_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nan_to_num_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nan_to_num_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nan_to_num_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nan_to_num_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nan_to_num_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_neg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_neg_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_neg_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_neg_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_neg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_neg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_neg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_neg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_neg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_neg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_neg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_neg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_celu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_celu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_celu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_celu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_elu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_elu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_elu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_elu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_hardshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_hardshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_hardshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_hardshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_hardsigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_hardsigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_hardsigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_hardsigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_hardtanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_hardtanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_hardtanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_hardtanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_hardtanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_hardtanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_hardtanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_hardtanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_logsigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_logsigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_logsigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_logsigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_mish_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_mish_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_mish_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_mish_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_prelu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_prelu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_prelu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_prelu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_relu6_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_relu6_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_relu6_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_relu6_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_relu6_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_relu6_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_relu6_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_relu6_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_relu6_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_relu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_relu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_relu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_relu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_relu_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_relu_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_relu_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_relu_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_relu_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_rrelu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_rrelu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_rrelu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_selu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_selu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_selu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_selu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_silu_complex_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_silu_complex_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_silu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_silu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_silu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_silu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_softplus_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_softplus_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_softplus_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_softplus_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_softshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_softshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_softshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_softshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_softsign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_softsign_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_softsign_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_softsign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_softsign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_softsign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_softsign_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_softsign_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_softsign_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_softsign_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_softsign_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_tanhshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_tanhshrink_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_tanhshrink_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_tanhshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_tanhshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_tanhshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_tanhshrink_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_tanhshrink_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_tanhshrink_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_tanhshrink_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_tanhshrink_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_threshold_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_threshold_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_threshold_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_threshold_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_threshold_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_threshold_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_threshold_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_threshold_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_nn_functional_threshold_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_3_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_3_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_3_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_3_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_3_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_3_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_4_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_4_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_4_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_4_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_4_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_4_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_4_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_4_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_polygamma_polygamma_n_4_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_positive_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_positive_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_positive_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_positive_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_positive_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_positive_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_positive_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_positive_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_positive_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_positive_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_positive_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_positive_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_rad2deg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_rad2deg_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_rad2deg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_rad2deg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_rad2deg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_rad2deg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_rad2deg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_rad2deg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_rad2deg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_rad2deg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_real_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_real_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_real_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_real_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_real_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_real_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_real_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_real_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_real_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_real_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_real_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_real_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_real_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_reciprocal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_reciprocal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_reciprocal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_reciprocal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_reciprocal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_reciprocal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_reciprocal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_reciprocal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_reciprocal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_reciprocal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_reciprocal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_reciprocal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_round_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_round_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_round_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_round_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_round_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_round_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_round_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_round_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_round_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_round_decimals_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_round_decimals_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_round_decimals_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_round_decimals_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_round_decimals_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_round_decimals_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_round_decimals_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_round_decimals_neg_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_round_decimals_neg_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_round_decimals_neg_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_rsqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_rsqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_rsqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_rsqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_rsqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_rsqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_rsqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_rsqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_rsqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_rsqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_rsqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_rsqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sgn_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sgn_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sgn_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sgn_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sgn_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sgn_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sgn_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sgn_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sgn_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sgn_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sgn_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sgn_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sgn_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_short_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_short_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_short_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_short_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_short_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_short_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_short_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_short_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_short_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_short_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_short_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_short_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sigmoid_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sigmoid_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sigmoid_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sigmoid_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sigmoid_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sigmoid_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sigmoid_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sigmoid_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sign_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sign_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sign_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sign_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sign_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sign_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_signbit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_signbit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_signbit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_signbit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_signbit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_signbit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_signbit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_signbit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_signbit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_signbit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sinc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sinc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sinc_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sinc_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sinc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sinc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sinc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sinc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sinc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sinc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sinc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sinc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_airy_ai_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_airy_ai_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_airy_ai_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_airy_ai_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_airy_ai_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_airy_ai_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_airy_ai_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_airy_ai_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_bessel_j1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_bessel_j1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_bessel_j1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_bessel_j1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_bessel_j1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_bessel_j1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_bessel_j1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_bessel_j1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_bessel_y0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_bessel_y0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_bessel_y0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_bessel_y0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_bessel_y0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_bessel_y0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_bessel_y0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_bessel_y0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_bessel_y1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_bessel_y1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_bessel_y1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_bessel_y1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_bessel_y1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_bessel_y1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_bessel_y1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_bessel_y1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_entr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_entr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_entr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_entr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_entr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_entr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_entr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_entr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_entr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_entr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_erfcx_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_erfcx_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_erfcx_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_erfcx_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_erfcx_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_erfcx_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_erfcx_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_erfcx_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_i0e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_i0e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_i0e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_i0e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_i0e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_i0e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_i0e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_i0e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_i0e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_i0e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_i1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_i1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_i1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_i1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_i1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_i1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_i1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_i1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_i1e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_i1e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_i1e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_i1e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_i1e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_i1e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_i1e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_i1e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_i1e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_i1e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_log_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_log_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_log_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_log_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_log_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_log_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_log_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_log_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_modified_bessel_i0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_modified_bessel_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_modified_bessel_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_modified_bessel_i0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_modified_bessel_i0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_modified_bessel_i0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_modified_bessel_i0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_modified_bessel_i0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_modified_bessel_i1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_modified_bessel_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_modified_bessel_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_modified_bessel_i1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_modified_bessel_i1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_modified_bessel_i1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_modified_bessel_i1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_modified_bessel_i1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_modified_bessel_k0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_modified_bessel_k0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_modified_bessel_k0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_modified_bessel_k0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_modified_bessel_k0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_modified_bessel_k0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_modified_bessel_k0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_modified_bessel_k0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_modified_bessel_k1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_modified_bessel_k1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_modified_bessel_k1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_modified_bessel_k1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_modified_bessel_k1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_modified_bessel_k1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_modified_bessel_k1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_modified_bessel_k1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_ndtr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_ndtr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_ndtri_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_ndtri_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_ndtri_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_ndtri_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_ndtri_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_ndtri_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_ndtri_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_ndtri_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_polygamma_special_polygamma_n_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_polygamma_special_polygamma_n_0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_polygamma_special_polygamma_n_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_polygamma_special_polygamma_n_0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_polygamma_special_polygamma_n_0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_polygamma_special_polygamma_n_0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_polygamma_special_polygamma_n_0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_polygamma_special_polygamma_n_0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_scaled_modified_bessel_k0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_scaled_modified_bessel_k0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_scaled_modified_bessel_k0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_scaled_modified_bessel_k0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_scaled_modified_bessel_k0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_scaled_modified_bessel_k0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_scaled_modified_bessel_k0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_scaled_modified_bessel_k0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_scaled_modified_bessel_k1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_scaled_modified_bessel_k1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_scaled_modified_bessel_k1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_scaled_modified_bessel_k1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_scaled_modified_bessel_k1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_scaled_modified_bessel_k1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_scaled_modified_bessel_k1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_scaled_modified_bessel_k1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_spherical_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_spherical_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_spherical_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_spherical_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_spherical_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_spherical_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_spherical_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_special_spherical_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_sqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_square_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_square_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_square_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_square_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_square_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_square_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_square_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_square_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_square_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_square_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_square_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_square_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_tan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_tan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_tan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_tan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_tan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_tan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_tan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_tan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_tan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_tan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_tan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_tan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_tanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_tanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_tanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_tanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_tanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_tanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_tanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_tanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_tanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_tanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_tanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_tanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_trunc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_trunc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_trunc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_trunc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_trunc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_trunc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_trunc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_trunc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_non_contig_trunc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_nonzero_empty_cpu, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_nonzero_large_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_nonzero_static_cpu, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_nonzero_static_large_cpu, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_op_invert_cpu, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_polygamma_neg_cpu, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_abs_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_abs_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_abs_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_abs_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_abs_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_abs_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_acos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_acos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_acos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_acos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_acos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_acos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_acosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_acosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_acosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_acosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_acosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_acosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_asin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_asin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_asin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_asin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_asin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_asin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_asinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_asinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_asinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_asinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_asinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_asinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_atan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_atan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_atan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_atan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_atan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_atan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_atanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_atanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_atanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_atanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_atanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_atanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_ceil_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_ceil_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_ceil_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_ceil_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_conj_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_conj_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_conj_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_conj_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_conj_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_conj_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_conj_physical_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_conj_physical_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_conj_physical_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_conj_physical_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_conj_physical_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_conj_physical_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_cos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_cos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_cos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_cos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_cos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_cos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_cosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_cosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_cosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_cosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_cosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_cosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_deg2rad_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_deg2rad_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_deg2rad_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_deg2rad_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_digamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_digamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_digamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_digamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_erf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_erf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_erf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_erf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_erfc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_erfc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_erfc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_erfc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_erfinv_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_erfinv_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_erfinv_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_erfinv_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_exp2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_exp2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_exp2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_exp2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_exp2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_exp2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_exp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_exp_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_exp_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_exp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_exp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_exp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_expm1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_expm1_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_expm1_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_expm1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_expm1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_expm1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_fill_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_fill_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_fill_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_fill_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_fill_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_fill_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_floor_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_floor_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_floor_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_floor_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_frac_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_frac_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_frac_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_frac_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_frexp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_frexp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_frexp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_frexp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_i0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_i0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_imag_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_imag_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_isfinite_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_isfinite_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_isfinite_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_isfinite_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_isfinite_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_isfinite_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_isinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_isinf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_isinf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_isinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_isinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_isinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_isnan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_isnan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_isnan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_isnan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_isnan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_isnan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_isneginf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_isneginf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_isneginf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_isneginf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_isposinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_isposinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_isposinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_isposinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_isreal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_isreal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_isreal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_isreal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_isreal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_isreal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_lgamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_lgamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_lgamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_lgamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_log10_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_log10_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_log10_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_log10_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_log10_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_log10_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_log1p_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_log1p_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_log1p_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_log1p_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_log1p_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_log1p_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_log2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_log2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_log2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_log2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_log2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_log2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_log_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_log_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_log_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_log_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_log_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_log_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_logical_not_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_logical_not_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_logical_not_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_logical_not_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_logical_not_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_logical_not_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nan_to_num_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nan_to_num_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nan_to_num_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nan_to_num_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_neg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_neg_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_neg_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_neg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_neg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_neg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_celu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_celu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_celu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_celu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_elu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_elu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_elu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_elu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_mish_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_mish_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_mish_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_mish_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_prelu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_prelu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_prelu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_prelu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_relu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_relu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_relu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_relu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_selu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_selu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_selu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_selu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_softplus_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_softplus_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_softplus_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_softplus_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_tanhshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_tanhshrink_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_tanhshrink_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_tanhshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_tanhshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_tanhshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_threshold_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_threshold_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_threshold_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_nn_functional_threshold_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_positive_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_positive_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_positive_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_positive_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_positive_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_positive_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_rad2deg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_rad2deg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_rad2deg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_rad2deg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_real_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_real_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_real_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_real_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_real_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_real_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_reciprocal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_reciprocal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_reciprocal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_reciprocal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_reciprocal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_reciprocal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_round_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_round_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_round_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_round_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_rsqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_rsqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_rsqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_rsqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_rsqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_rsqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sgn_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sgn_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sgn_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sgn_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sgn_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sgn_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sigmoid_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sigmoid_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_signbit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_signbit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_signbit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_signbit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sinc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sinc_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sinc_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sinc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sinc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sinc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_bessel_j1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_bessel_j1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_entr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_entr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_entr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_entr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_erfcx_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_erfcx_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_i0e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_i0e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_i0e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_i0e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_i1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_i1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_i1e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_i1e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_i1e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_i1e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_log_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_log_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_logit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_logit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_logit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_logit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_multigammaln_mvlgamma_p_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_multigammaln_mvlgamma_p_1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_multigammaln_mvlgamma_p_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_multigammaln_mvlgamma_p_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_multigammaln_mvlgamma_p_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_multigammaln_mvlgamma_p_3_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_multigammaln_mvlgamma_p_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_multigammaln_mvlgamma_p_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_multigammaln_mvlgamma_p_5_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_multigammaln_mvlgamma_p_5_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_multigammaln_mvlgamma_p_5_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_multigammaln_mvlgamma_p_5_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_ndtr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_ndtr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_ndtri_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_ndtri_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_spherical_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_special_spherical_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_sqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_square_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_square_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_square_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_square_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_square_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_square_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_tan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_tan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_tan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_tan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_tan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_tan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_tanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_tanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_tanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_tanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_tanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_tanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_trunc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_trunc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_trunc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal__refs_trunc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_abs_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_abs_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_abs_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_abs_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_abs_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_abs_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_acos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_acos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_acos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_acos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_acos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_acos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_acosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_acosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_acosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_acosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_acosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_acosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_angle_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_angle_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_angle_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_angle_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_angle_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_angle_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_asin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_asin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_asin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_asin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_asin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_asin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_asinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_asinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_asinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_asinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_asinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_asinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_atan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_atan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_atan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_atan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_atan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_atan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_atanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_atanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_atanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_atanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_atanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_atanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_ceil_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_ceil_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_ceil_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_ceil_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_conj_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_conj_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_conj_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_conj_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_conj_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_conj_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_conj_physical_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_conj_physical_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_conj_physical_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_conj_physical_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_conj_physical_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_conj_physical_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_cos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_cos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_cos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_cos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_cos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_cos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_cosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_cosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_cosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_cosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_cosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_cosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_deg2rad_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_deg2rad_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_deg2rad_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_deg2rad_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_digamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_digamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_digamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_digamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_erf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_erf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_erf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_erf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_erfc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_erfc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_erfc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_erfc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_erfinv_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_erfinv_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_erfinv_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_erfinv_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_exp2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_exp2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_exp2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_exp2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_exp2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_exp2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_exp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_exp_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_exp_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_exp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_exp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_exp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_expm1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_expm1_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_expm1_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_expm1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_expm1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_expm1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_fill_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_fill_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_fill_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_fill_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_fill_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_fill_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_floor_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_floor_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_floor_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_floor_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_frac_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_frac_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_frac_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_frac_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_frexp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_frexp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_frexp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_frexp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_i0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_i0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_imag_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_imag_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_isfinite_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_isfinite_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_isfinite_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_isfinite_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_isfinite_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_isfinite_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_isinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_isinf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_isinf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_isinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_isinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_isinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_isnan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_isnan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_isnan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_isnan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_isnan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_isnan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_isneginf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_isneginf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_isneginf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_isneginf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_isposinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_isposinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_isposinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_isposinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_isreal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_isreal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_isreal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_isreal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_isreal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_isreal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_jiterator_unary_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_jiterator_unary_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_jiterator_unary_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_jiterator_unary_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_jiterator_unary_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_jiterator_unary_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_lgamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_lgamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_lgamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_lgamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_log10_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_log10_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_log10_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_log10_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_log10_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_log10_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_log1p_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_log1p_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_log1p_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_log1p_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_log1p_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_log1p_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_log2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_log2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_log2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_log2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_log2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_log2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_log_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_log_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_log_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_log_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_log_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_log_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_logical_not_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_logical_not_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_logical_not_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_logical_not_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_logical_not_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_logical_not_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_logit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_logit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_logit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_logit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_mvlgamma_mvlgamma_p_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_mvlgamma_mvlgamma_p_1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_mvlgamma_mvlgamma_p_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_mvlgamma_mvlgamma_p_3_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_mvlgamma_mvlgamma_p_5_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_mvlgamma_mvlgamma_p_5_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nan_to_num_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nan_to_num_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nan_to_num_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nan_to_num_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_neg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_neg_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_neg_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_neg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_neg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_neg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_celu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_celu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_celu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_celu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_elu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_elu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_elu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_elu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_hardsigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_hardsigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_hardsigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_hardsigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_logsigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_logsigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_logsigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_logsigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_mish_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_mish_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_mish_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_mish_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_prelu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_prelu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_prelu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_prelu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_relu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_relu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_relu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_relu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_selu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_selu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_selu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_selu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_silu_complex_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_silu_complex_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_silu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_silu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_silu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_silu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_softplus_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_softplus_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_softplus_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_softplus_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_softsign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_softsign_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_softsign_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_softsign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_softsign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_softsign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_tanhshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_tanhshrink_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_tanhshrink_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_tanhshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_tanhshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_tanhshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_threshold_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_threshold_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_threshold_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_nn_functional_threshold_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_polygamma_polygamma_n_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_polygamma_polygamma_n_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_polygamma_polygamma_n_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_polygamma_polygamma_n_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_polygamma_polygamma_n_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_polygamma_polygamma_n_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_polygamma_polygamma_n_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_polygamma_polygamma_n_2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_polygamma_polygamma_n_2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_polygamma_polygamma_n_2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_polygamma_polygamma_n_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_polygamma_polygamma_n_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_polygamma_polygamma_n_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_polygamma_polygamma_n_4_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_polygamma_polygamma_n_4_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_polygamma_polygamma_n_4_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_positive_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_positive_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_positive_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_positive_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_positive_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_positive_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_rad2deg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_rad2deg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_rad2deg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_rad2deg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_real_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_real_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_real_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_real_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_real_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_real_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_reciprocal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_reciprocal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_reciprocal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_reciprocal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_reciprocal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_reciprocal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_round_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_round_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_round_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_round_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_round_decimals_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_round_decimals_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_round_decimals_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_round_decimals_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_round_decimals_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_round_decimals_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_round_decimals_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_round_decimals_neg_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_round_decimals_neg_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_round_decimals_neg_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_rsqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_rsqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_rsqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_rsqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_rsqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_rsqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sgn_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sgn_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sgn_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sgn_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sgn_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sgn_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sigmoid_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sigmoid_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_signbit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_signbit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_signbit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_signbit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sinc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sinc_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sinc_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sinc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sinc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sinc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_airy_ai_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_airy_ai_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_bessel_j1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_bessel_j1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_bessel_y0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_bessel_y0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_bessel_y1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_bessel_y1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_entr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_entr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_entr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_entr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_erfcx_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_erfcx_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_i0e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_i0e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_i0e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_i0e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_i1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_i1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_i1e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_i1e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_i1e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_i1e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_log_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_log_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_modified_bessel_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_modified_bessel_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_modified_bessel_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_modified_bessel_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_modified_bessel_k0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_modified_bessel_k0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_modified_bessel_k1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_modified_bessel_k1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_ndtr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_ndtr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_ndtri_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_ndtri_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_polygamma_special_polygamma_n_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_polygamma_special_polygamma_n_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_scaled_modified_bessel_k0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_scaled_modified_bessel_k0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_scaled_modified_bessel_k1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_scaled_modified_bessel_k1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_spherical_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_special_spherical_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_sqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_square_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_square_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_square_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_square_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_square_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_square_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_tan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_tan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_tan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_tan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_tan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_tan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_tanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_tanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_tanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_tanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_tanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_tanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_trunc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_trunc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_trunc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_extremal_trunc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_abs_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_abs_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_abs_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_abs_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_abs_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_abs_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_abs_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_abs_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_abs_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_abs_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_abs_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_abs_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_acos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_acos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_acos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_acos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_acos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_acos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_acos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_acos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_acos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_acos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_acos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_acos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_acosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_acosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_acosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_acosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_acosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_acosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_acosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_acosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_acosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_acosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_acosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_acosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_asin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_asin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_asin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_asin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_asin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_asin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_asin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_asin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_asin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_asin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_asin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_asin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_asinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_asinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_asinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_asinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_asinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_asinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_asinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_asinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_asinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_asinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_asinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_asinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_atan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_atan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_atan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_atan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_atan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_atan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_atan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_atan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_atan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_atan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_atan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_atan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_atanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_atanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_atanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_atanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_atanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_atanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_atanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_atanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_atanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_atanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_atanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_atanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_bitwise_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_bitwise_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_bitwise_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_bitwise_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_bitwise_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_bitwise_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_ceil_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_ceil_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_ceil_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_ceil_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_ceil_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_ceil_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_ceil_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_ceil_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_ceil_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_conj_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_conj_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_conj_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_conj_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_conj_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_conj_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_conj_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_conj_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_conj_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_conj_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_conj_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_conj_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_conj_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_conj_physical_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_conj_physical_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_conj_physical_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_conj_physical_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_conj_physical_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_conj_physical_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_conj_physical_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_conj_physical_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_conj_physical_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_conj_physical_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_conj_physical_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_conj_physical_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_conj_physical_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_cos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_cos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_cos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_cos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_cos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_cos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_cos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_cos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_cos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_cos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_cos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_cos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_cosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_cosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_cosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_cosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_cosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_cosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_cosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_cosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_cosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_cosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_cosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_cosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_deg2rad_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_deg2rad_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_deg2rad_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_deg2rad_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_deg2rad_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_deg2rad_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_deg2rad_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_deg2rad_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_deg2rad_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_deg2rad_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_digamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_digamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_digamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_digamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_digamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_digamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_digamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_digamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_digamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_digamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_erf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_erf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_erf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_erf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_erf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_erf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_erf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_erf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_erf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_erf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_erfc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_erfc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_erfc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_erfc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_erfc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_erfc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_erfc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_erfc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_erfc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_erfc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_erfinv_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_erfinv_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_erfinv_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_erfinv_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_erfinv_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_erfinv_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_erfinv_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_erfinv_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_erfinv_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_erfinv_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_exp2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_exp2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_exp2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_exp2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_exp2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_exp2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_exp2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_exp2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_exp2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_exp2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_exp2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_exp2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_exp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_exp_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_exp_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_exp_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_exp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_exp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_exp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_exp_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_exp_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_exp_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_exp_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_exp_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_expm1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_expm1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_expm1_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_expm1_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_expm1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_expm1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_expm1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_expm1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_expm1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_expm1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_expm1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_expm1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_fill_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_fill_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_fill_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_fill_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_fill_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_fill_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_fill_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_fill_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_fill_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_fill_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_fill_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_fill_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_fill_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_floor_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_floor_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_floor_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_floor_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_floor_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_floor_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_floor_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_floor_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_floor_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_frac_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_frac_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_frac_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_frac_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_frexp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_frexp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_frexp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_frexp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_i0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_i0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_i0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_i0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_i0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_i0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_i0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_i0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_imag_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_imag_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_imag_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isfinite_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isfinite_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isfinite_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isfinite_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isfinite_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isfinite_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isfinite_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isfinite_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isfinite_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isfinite_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isfinite_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isfinite_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isfinite_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isinf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isinf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isinf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isnan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isnan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isnan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isnan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isnan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isnan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isnan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isnan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isnan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isnan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isnan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isnan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isneginf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isneginf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isneginf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isneginf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isneginf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isneginf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isneginf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isneginf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isneginf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isneginf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isposinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isposinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isposinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isposinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isposinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isposinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isposinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isposinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isposinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isposinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isreal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isreal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isreal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isreal_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isreal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isreal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isreal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isreal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isreal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isreal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isreal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isreal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_isreal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_lgamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_lgamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_lgamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_lgamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_lgamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_lgamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_lgamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_lgamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_lgamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_lgamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log10_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log10_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log10_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log10_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log10_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log10_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log10_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log10_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log10_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log10_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log10_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log10_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log1p_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log1p_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log1p_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log1p_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log1p_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log1p_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log1p_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log1p_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log1p_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log1p_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log1p_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log1p_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_log_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_logical_not_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_logical_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_logical_not_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_logical_not_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_logical_not_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_logical_not_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_logical_not_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_logical_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_logical_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_logical_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_logical_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_logical_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nan_to_num_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nan_to_num_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nan_to_num_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nan_to_num_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nan_to_num_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nan_to_num_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nan_to_num_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nan_to_num_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nan_to_num_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nan_to_num_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_neg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_neg_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_neg_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_neg_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_neg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_neg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_neg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_neg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_neg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_neg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_neg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_neg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_celu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_celu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_celu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_celu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_elu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_elu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_elu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_elu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_mish_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_mish_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_mish_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_mish_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_prelu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_prelu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_prelu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_prelu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_relu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_relu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_relu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_relu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_relu_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_relu_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_relu_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_relu_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_relu_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_selu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_selu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_selu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_selu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_softplus_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_softplus_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_softplus_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_softplus_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_tanhshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_tanhshrink_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_tanhshrink_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_tanhshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_tanhshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_tanhshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_tanhshrink_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_tanhshrink_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_tanhshrink_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_tanhshrink_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_tanhshrink_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_threshold_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_threshold_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_threshold_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_threshold_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_threshold_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_threshold_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_threshold_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_threshold_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_nn_functional_threshold_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_positive_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_positive_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_positive_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_positive_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_positive_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_positive_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_positive_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_positive_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_positive_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_positive_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_positive_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_positive_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_rad2deg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_rad2deg_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_rad2deg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_rad2deg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_rad2deg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_rad2deg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_rad2deg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_rad2deg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_rad2deg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_rad2deg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_real_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_real_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_real_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_real_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_real_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_real_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_real_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_real_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_real_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_real_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_real_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_real_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_real_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_reciprocal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_reciprocal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_reciprocal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_reciprocal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_reciprocal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_reciprocal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_reciprocal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_reciprocal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_reciprocal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_reciprocal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_reciprocal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_reciprocal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_round_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_round_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_round_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_round_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_round_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_round_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_round_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_round_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_round_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_rsqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_rsqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_rsqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_rsqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_rsqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_rsqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_rsqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_rsqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_rsqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_rsqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_rsqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_rsqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sgn_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sgn_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sgn_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sgn_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sgn_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sgn_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sgn_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sgn_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sgn_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sgn_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sgn_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sgn_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sgn_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sigmoid_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sigmoid_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sigmoid_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sigmoid_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sigmoid_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sigmoid_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sigmoid_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sigmoid_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sign_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sign_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sign_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sign_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sign_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sign_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_signbit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_signbit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_signbit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_signbit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_signbit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_signbit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_signbit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_signbit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_signbit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_signbit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sinc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sinc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sinc_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sinc_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sinc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sinc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sinc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sinc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sinc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sinc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sinc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sinc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_bessel_j1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_bessel_j1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_bessel_j1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_bessel_j1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_bessel_j1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_bessel_j1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_bessel_j1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_bessel_j1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_entr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_entr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_entr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_entr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_entr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_entr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_entr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_entr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_entr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_entr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_erfcx_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_erfcx_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_erfcx_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_erfcx_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_erfcx_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_erfcx_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_erfcx_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_erfcx_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_i0e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_i0e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_i0e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_i0e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_i0e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_i0e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_i0e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_i0e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_i0e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_i0e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_i1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_i1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_i1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_i1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_i1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_i1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_i1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_i1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_i1e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_i1e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_i1e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_i1e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_i1e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_i1e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_i1e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_i1e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_i1e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_i1e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_log_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_log_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_log_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_log_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_log_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_log_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_log_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_log_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_logit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_logit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_logit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_logit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_logit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_logit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_logit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_logit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_logit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_logit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_multigammaln_mvlgamma_p_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_multigammaln_mvlgamma_p_1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_multigammaln_mvlgamma_p_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_multigammaln_mvlgamma_p_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_multigammaln_mvlgamma_p_1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_multigammaln_mvlgamma_p_1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_multigammaln_mvlgamma_p_1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_multigammaln_mvlgamma_p_1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_multigammaln_mvlgamma_p_1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_multigammaln_mvlgamma_p_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_multigammaln_mvlgamma_p_3_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_multigammaln_mvlgamma_p_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_multigammaln_mvlgamma_p_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_multigammaln_mvlgamma_p_3_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_multigammaln_mvlgamma_p_3_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_multigammaln_mvlgamma_p_3_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_multigammaln_mvlgamma_p_3_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_multigammaln_mvlgamma_p_3_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_multigammaln_mvlgamma_p_5_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_multigammaln_mvlgamma_p_5_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_multigammaln_mvlgamma_p_5_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_multigammaln_mvlgamma_p_5_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_multigammaln_mvlgamma_p_5_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_multigammaln_mvlgamma_p_5_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_multigammaln_mvlgamma_p_5_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_multigammaln_mvlgamma_p_5_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_multigammaln_mvlgamma_p_5_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_ndtr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_ndtr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_ndtri_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_ndtri_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_ndtri_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_ndtri_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_ndtri_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_ndtri_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_ndtri_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_ndtri_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_spherical_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_spherical_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_spherical_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_spherical_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_spherical_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_spherical_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_spherical_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_special_spherical_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_sqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_square_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_square_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_square_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_square_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_square_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_square_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_square_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_square_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_square_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_square_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_square_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_square_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_tan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_tan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_tan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_tan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_tan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_tan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_tan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_tan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_tan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_tan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_tan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_tan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_tanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_tanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_tanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_tanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_tanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_tanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_tanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_tanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_tanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_tanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_tanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_tanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_trunc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_trunc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_trunc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_trunc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_trunc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_trunc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_trunc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_trunc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large__refs_trunc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_abs_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_abs_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_abs_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_abs_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_abs_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_abs_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_abs_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_abs_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_abs_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_abs_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_abs_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_abs_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_acos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_acos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_acos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_acos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_acos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_acos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_acos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_acos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_acos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_acos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_acos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_acos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_acosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_acosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_acosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_acosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_acosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_acosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_acosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_acosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_acosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_acosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_acosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_acosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_angle_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_angle_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_angle_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_angle_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_angle_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_angle_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_angle_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_angle_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_angle_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_angle_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_angle_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_angle_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_asin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_asin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_asin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_asin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_asin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_asin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_asin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_asin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_asin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_asin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_asin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_asin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_asinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_asinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_asinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_asinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_asinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_asinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_asinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_asinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_asinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_asinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_asinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_asinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_atan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_atan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_atan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_atan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_atan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_atan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_atan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_atan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_atan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_atan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_atan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_atan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_atanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_atanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_atanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_atanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_atanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_atanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_atanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_atanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_atanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_atanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_atanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_atanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_bitwise_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_bitwise_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_bitwise_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_bitwise_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_bitwise_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_bitwise_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_ceil_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_ceil_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_ceil_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_ceil_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_ceil_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_ceil_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_ceil_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_ceil_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_ceil_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_conj_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_conj_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_conj_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_conj_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_conj_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_conj_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_conj_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_conj_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_conj_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_conj_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_conj_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_conj_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_conj_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_conj_physical_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_conj_physical_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_conj_physical_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_conj_physical_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_conj_physical_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_conj_physical_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_conj_physical_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_conj_physical_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_conj_physical_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_conj_physical_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_conj_physical_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_conj_physical_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_conj_physical_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_cos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_cos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_cos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_cos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_cos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_cos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_cos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_cos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_cos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_cos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_cos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_cos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_cosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_cosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_cosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_cosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_cosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_cosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_cosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_cosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_cosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_cosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_cosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_cosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_deg2rad_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_deg2rad_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_deg2rad_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_deg2rad_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_deg2rad_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_deg2rad_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_deg2rad_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_deg2rad_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_deg2rad_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_deg2rad_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_digamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_digamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_digamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_digamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_digamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_digamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_digamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_digamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_digamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_digamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_erf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_erf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_erf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_erf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_erf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_erf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_erf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_erf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_erf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_erf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_erfc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_erfc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_erfc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_erfc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_erfc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_erfc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_erfc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_erfc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_erfc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_erfc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_erfinv_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_erfinv_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_erfinv_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_erfinv_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_erfinv_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_erfinv_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_erfinv_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_erfinv_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_erfinv_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_erfinv_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_exp2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_exp2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_exp2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_exp2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_exp2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_exp2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_exp2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_exp2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_exp2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_exp2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_exp2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_exp2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_exp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_exp_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_exp_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_exp_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_exp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_exp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_exp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_exp_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_exp_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_exp_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_exp_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_exp_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_expm1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_expm1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_expm1_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_expm1_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_expm1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_expm1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_expm1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_expm1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_expm1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_expm1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_expm1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_expm1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_fill_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_fill_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_fill_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_fill_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_fill_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_fill_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_fill_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_fill_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_fill_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_fill_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_fill_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_fill_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_fill_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_floor_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_floor_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_floor_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_floor_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_floor_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_floor_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_floor_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_floor_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_floor_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_frac_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_frac_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_frac_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_frac_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_frexp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_frexp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_frexp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_frexp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_i0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_i0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_i0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_i0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_i0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_i0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_i0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_i0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_imag_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_imag_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_imag_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isfinite_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isfinite_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isfinite_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isfinite_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isfinite_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isfinite_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isfinite_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isfinite_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isfinite_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isfinite_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isfinite_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isfinite_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isfinite_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isinf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isinf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isinf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isnan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isnan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isnan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isnan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isnan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isnan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isnan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isnan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isnan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isnan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isnan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isnan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isneginf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isneginf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isneginf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isneginf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isneginf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isneginf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isneginf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isneginf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isneginf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isneginf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isposinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isposinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isposinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isposinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isposinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isposinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isposinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isposinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isposinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isposinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isreal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isreal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isreal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isreal_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isreal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isreal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isreal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isreal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isreal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isreal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isreal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isreal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_isreal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_jiterator_unary_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_jiterator_unary_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_jiterator_unary_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_jiterator_unary_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_jiterator_unary_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_jiterator_unary_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_jiterator_unary_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_jiterator_unary_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_jiterator_unary_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_jiterator_unary_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_jiterator_unary_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_jiterator_unary_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_lgamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_lgamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_lgamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_lgamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_lgamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_lgamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_lgamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_lgamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_lgamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_lgamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log10_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log10_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log10_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log10_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log10_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log10_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log10_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log10_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log10_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log10_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log10_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log10_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log1p_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log1p_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log1p_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log1p_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log1p_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log1p_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log1p_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log1p_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log1p_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log1p_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log1p_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log1p_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_log_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_logical_not_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_logical_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_logical_not_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_logical_not_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_logical_not_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_logical_not_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_logical_not_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_logical_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_logical_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_logical_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_logical_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_logical_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_logit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_logit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_logit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_logit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_logit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_logit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_logit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_logit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_logit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_logit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_mvlgamma_mvlgamma_p_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_mvlgamma_mvlgamma_p_1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_mvlgamma_mvlgamma_p_1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_mvlgamma_mvlgamma_p_1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_mvlgamma_mvlgamma_p_1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_mvlgamma_mvlgamma_p_1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_mvlgamma_mvlgamma_p_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_mvlgamma_mvlgamma_p_3_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_mvlgamma_mvlgamma_p_3_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_mvlgamma_mvlgamma_p_3_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_mvlgamma_mvlgamma_p_3_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_mvlgamma_mvlgamma_p_3_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_mvlgamma_mvlgamma_p_3_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_mvlgamma_mvlgamma_p_5_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_mvlgamma_mvlgamma_p_5_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_mvlgamma_mvlgamma_p_5_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_mvlgamma_mvlgamma_p_5_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_mvlgamma_mvlgamma_p_5_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_mvlgamma_mvlgamma_p_5_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_mvlgamma_mvlgamma_p_5_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nan_to_num_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nan_to_num_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nan_to_num_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nan_to_num_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nan_to_num_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nan_to_num_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nan_to_num_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nan_to_num_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nan_to_num_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nan_to_num_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_neg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_neg_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_neg_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_neg_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_neg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_neg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_neg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_neg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_neg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_neg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_neg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_neg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_celu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_celu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_celu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_celu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_elu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_elu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_elu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_elu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_hardsigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_hardsigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_hardsigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_hardsigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_logsigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_logsigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_logsigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_logsigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_mish_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_mish_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_mish_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_mish_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_prelu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_prelu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_prelu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_prelu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_relu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_relu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_relu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_relu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_relu_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_relu_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_relu_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_relu_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_relu_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_selu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_selu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_selu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_selu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_silu_complex_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_silu_complex_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_silu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_silu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_silu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_silu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_softplus_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_softplus_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_softplus_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_softplus_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_softsign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_softsign_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_softsign_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_softsign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_softsign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_softsign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_softsign_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_softsign_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_softsign_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_softsign_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_softsign_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_tanhshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_tanhshrink_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_tanhshrink_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_tanhshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_tanhshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_tanhshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_tanhshrink_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_tanhshrink_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_tanhshrink_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_tanhshrink_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_tanhshrink_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_threshold_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_threshold_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_threshold_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_threshold_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_threshold_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_threshold_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_threshold_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_threshold_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_nn_functional_threshold_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_3_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_3_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_3_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_3_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_3_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_3_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_4_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_4_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_4_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_4_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_4_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_4_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_4_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_4_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_polygamma_polygamma_n_4_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_positive_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_positive_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_positive_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_positive_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_positive_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_positive_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_positive_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_positive_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_positive_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_positive_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_positive_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_positive_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_rad2deg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_rad2deg_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_rad2deg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_rad2deg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_rad2deg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_rad2deg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_rad2deg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_rad2deg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_rad2deg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_rad2deg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_real_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_real_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_real_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_real_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_real_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_real_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_real_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_real_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_real_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_real_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_real_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_real_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_real_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_reciprocal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_reciprocal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_reciprocal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_reciprocal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_reciprocal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_reciprocal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_reciprocal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_reciprocal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_reciprocal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_reciprocal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_reciprocal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_reciprocal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_round_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_round_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_round_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_round_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_round_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_round_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_round_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_round_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_round_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_round_decimals_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_round_decimals_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_round_decimals_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_round_decimals_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_round_decimals_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_round_decimals_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_round_decimals_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_round_decimals_neg_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_round_decimals_neg_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_round_decimals_neg_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_rsqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_rsqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_rsqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_rsqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_rsqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_rsqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_rsqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_rsqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_rsqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_rsqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_rsqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_rsqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sgn_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sgn_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sgn_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sgn_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sgn_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sgn_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sgn_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sgn_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sgn_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sgn_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sgn_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sgn_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sgn_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sigmoid_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sigmoid_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sigmoid_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sigmoid_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sigmoid_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sigmoid_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sigmoid_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sigmoid_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sign_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sign_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sign_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sign_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sign_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sign_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_signbit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_signbit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_signbit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_signbit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_signbit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_signbit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_signbit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_signbit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_signbit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_signbit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sinc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sinc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sinc_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sinc_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sinc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sinc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sinc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sinc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sinc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sinc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sinc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sinc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_airy_ai_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_airy_ai_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_airy_ai_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_airy_ai_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_airy_ai_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_airy_ai_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_airy_ai_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_airy_ai_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_bessel_j1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_bessel_j1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_bessel_j1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_bessel_j1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_bessel_j1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_bessel_j1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_bessel_j1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_bessel_j1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_bessel_y0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_bessel_y0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_bessel_y0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_bessel_y0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_bessel_y0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_bessel_y0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_bessel_y0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_bessel_y0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_bessel_y1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_bessel_y1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_bessel_y1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_bessel_y1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_bessel_y1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_bessel_y1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_bessel_y1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_bessel_y1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_entr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_entr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_entr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_entr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_entr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_entr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_entr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_entr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_entr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_entr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_erfcx_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_erfcx_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_erfcx_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_erfcx_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_erfcx_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_erfcx_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_erfcx_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_erfcx_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_i0e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_i0e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_i0e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_i0e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_i0e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_i0e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_i0e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_i0e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_i0e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_i0e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_i1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_i1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_i1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_i1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_i1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_i1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_i1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_i1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_i1e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_i1e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_i1e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_i1e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_i1e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_i1e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_i1e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_i1e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_i1e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_i1e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_log_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_log_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_log_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_log_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_log_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_log_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_log_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_log_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_modified_bessel_i0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_modified_bessel_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_modified_bessel_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_modified_bessel_i0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_modified_bessel_i0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_modified_bessel_i0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_modified_bessel_i0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_modified_bessel_i0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_modified_bessel_i1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_modified_bessel_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_modified_bessel_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_modified_bessel_i1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_modified_bessel_i1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_modified_bessel_i1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_modified_bessel_i1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_modified_bessel_i1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_modified_bessel_k0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_modified_bessel_k0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_modified_bessel_k0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_modified_bessel_k0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_modified_bessel_k0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_modified_bessel_k0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_modified_bessel_k0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_modified_bessel_k0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_modified_bessel_k1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_modified_bessel_k1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_modified_bessel_k1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_modified_bessel_k1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_modified_bessel_k1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_modified_bessel_k1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_modified_bessel_k1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_modified_bessel_k1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_ndtr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_ndtr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_ndtri_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_ndtri_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_ndtri_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_ndtri_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_ndtri_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_ndtri_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_ndtri_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_ndtri_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_polygamma_special_polygamma_n_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_polygamma_special_polygamma_n_0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_polygamma_special_polygamma_n_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_polygamma_special_polygamma_n_0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_polygamma_special_polygamma_n_0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_polygamma_special_polygamma_n_0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_polygamma_special_polygamma_n_0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_polygamma_special_polygamma_n_0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_scaled_modified_bessel_k0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_scaled_modified_bessel_k0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_scaled_modified_bessel_k0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_scaled_modified_bessel_k0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_scaled_modified_bessel_k0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_scaled_modified_bessel_k0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_scaled_modified_bessel_k0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_scaled_modified_bessel_k0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_scaled_modified_bessel_k1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_scaled_modified_bessel_k1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_scaled_modified_bessel_k1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_scaled_modified_bessel_k1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_scaled_modified_bessel_k1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_scaled_modified_bessel_k1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_scaled_modified_bessel_k1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_scaled_modified_bessel_k1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_spherical_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_spherical_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_spherical_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_spherical_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_spherical_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_spherical_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_spherical_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_special_spherical_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_sqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_square_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_square_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_square_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_square_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_square_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_square_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_square_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_square_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_square_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_square_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_square_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_square_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_tan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_tan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_tan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_tan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_tan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_tan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_tan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_tan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_tan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_tan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_tan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_tan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_tanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_tanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_tanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_tanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_tanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_tanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_tanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_tanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_tanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_tanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_tanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_tanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_trunc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_trunc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_trunc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_trunc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_trunc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_trunc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_trunc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_trunc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_large_trunc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_abs_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_abs_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_abs_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_abs_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_abs_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_abs_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_abs_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_abs_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_abs_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_abs_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_abs_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_abs_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_acos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_acos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_acos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_acos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_acos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_acos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_acos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_acos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_acos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_acos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_acos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_acos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_acosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_acosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_acosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_acosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_acosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_acosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_acosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_acosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_acosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_acosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_acosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_acosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_asin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_asin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_asin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_asin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_asin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_asin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_asin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_asin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_asin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_asin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_asin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_asin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_asinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_asinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_asinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_asinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_asinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_asinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_asinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_asinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_asinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_asinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_asinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_asinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_atan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_atan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_atan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_atan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_atan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_atan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_atan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_atan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_atan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_atan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_atan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_atan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_atanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_atanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_atanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_atanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_atanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_atanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_atanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_atanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_atanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_atanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_atanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_atanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_bitwise_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_bitwise_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_bitwise_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_bitwise_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_bitwise_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_bitwise_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_ceil_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_ceil_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_ceil_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_ceil_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_ceil_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_ceil_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_ceil_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_ceil_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_ceil_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_conj_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_conj_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_conj_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_conj_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_conj_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_conj_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_conj_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_conj_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_conj_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_conj_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_conj_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_conj_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_conj_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_conj_physical_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_conj_physical_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_conj_physical_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_conj_physical_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_conj_physical_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_conj_physical_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_conj_physical_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_conj_physical_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_conj_physical_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_conj_physical_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_conj_physical_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_conj_physical_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_conj_physical_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_cos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_cos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_cos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_cos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_cos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_cos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_cos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_cos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_cos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_cos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_cos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_cos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_cosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_cosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_cosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_cosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_cosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_cosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_cosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_cosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_cosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_cosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_cosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_cosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_deg2rad_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_deg2rad_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_deg2rad_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_deg2rad_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_deg2rad_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_deg2rad_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_deg2rad_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_deg2rad_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_deg2rad_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_deg2rad_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_digamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_digamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_digamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_digamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_digamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_digamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_digamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_digamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_digamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_digamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_erf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_erf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_erf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_erf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_erf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_erf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_erf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_erf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_erf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_erf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_erfc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_erfc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_erfc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_erfc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_erfc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_erfc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_erfc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_erfc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_erfc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_erfc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_erfinv_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_erfinv_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_erfinv_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_erfinv_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_erfinv_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_erfinv_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_erfinv_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_erfinv_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_erfinv_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_erfinv_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_exp2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_exp2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_exp2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_exp2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_exp2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_exp2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_exp2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_exp2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_exp2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_exp2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_exp2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_exp2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_exp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_exp_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_exp_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_exp_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_exp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_exp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_exp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_exp_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_exp_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_exp_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_exp_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_exp_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_expm1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_expm1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_expm1_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_expm1_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_expm1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_expm1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_expm1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_expm1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_expm1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_expm1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_expm1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_expm1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_fill_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_fill_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_fill_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_fill_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_fill_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_fill_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_fill_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_fill_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_fill_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_fill_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_fill_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_fill_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_fill_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_floor_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_floor_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_floor_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_floor_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_floor_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_floor_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_floor_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_floor_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_floor_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_frac_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_frac_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_frac_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_frac_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_frexp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_frexp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_frexp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_frexp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_i0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_i0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_i0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_i0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_i0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_i0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_i0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_i0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_imag_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_imag_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_imag_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isfinite_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isfinite_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isfinite_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isfinite_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isfinite_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isfinite_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isfinite_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isfinite_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isfinite_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isfinite_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isfinite_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isfinite_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isfinite_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isinf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isinf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isinf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isnan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isnan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isnan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isnan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isnan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isnan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isnan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isnan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isnan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isnan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isnan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isnan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isneginf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isneginf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isneginf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isneginf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isneginf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isneginf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isneginf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isneginf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isneginf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isneginf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isposinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isposinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isposinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isposinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isposinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isposinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isposinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isposinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isposinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isposinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isreal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isreal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isreal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isreal_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isreal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isreal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isreal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isreal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isreal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isreal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isreal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isreal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_isreal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_lgamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_lgamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_lgamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_lgamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_lgamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_lgamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_lgamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_lgamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_lgamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_lgamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log10_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log10_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log10_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log10_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log10_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log10_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log10_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log10_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log10_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log10_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log10_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log10_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log1p_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log1p_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log1p_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log1p_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log1p_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log1p_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log1p_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log1p_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log1p_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log1p_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log1p_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log1p_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_log_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_logical_not_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_logical_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_logical_not_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_logical_not_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_logical_not_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_logical_not_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_logical_not_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_logical_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_logical_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_logical_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_logical_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_logical_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nan_to_num_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nan_to_num_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nan_to_num_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nan_to_num_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nan_to_num_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nan_to_num_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nan_to_num_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nan_to_num_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nan_to_num_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nan_to_num_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_neg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_neg_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_neg_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_neg_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_neg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_neg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_neg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_neg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_neg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_neg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_neg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_neg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_celu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_celu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_celu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_celu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_elu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_elu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_elu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_elu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_mish_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_mish_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_mish_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_mish_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_prelu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_prelu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_prelu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_prelu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_relu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_relu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_relu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_relu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_relu_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_relu_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_relu_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_relu_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_relu_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_selu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_selu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_selu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_selu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_softplus_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_softplus_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_softplus_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_softplus_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_tanhshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_tanhshrink_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_tanhshrink_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_tanhshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_tanhshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_tanhshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_tanhshrink_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_tanhshrink_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_tanhshrink_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_tanhshrink_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_tanhshrink_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_threshold_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_threshold_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_threshold_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_threshold_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_threshold_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_threshold_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_threshold_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_threshold_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_nn_functional_threshold_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_positive_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_positive_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_positive_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_positive_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_positive_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_positive_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_positive_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_positive_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_positive_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_positive_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_positive_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_positive_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_rad2deg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_rad2deg_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_rad2deg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_rad2deg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_rad2deg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_rad2deg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_rad2deg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_rad2deg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_rad2deg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_rad2deg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_real_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_real_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_real_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_real_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_real_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_real_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_real_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_real_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_real_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_real_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_real_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_real_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_real_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_reciprocal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_reciprocal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_reciprocal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_reciprocal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_reciprocal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_reciprocal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_reciprocal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_reciprocal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_reciprocal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_reciprocal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_reciprocal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_reciprocal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_round_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_round_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_round_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_round_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_round_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_round_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_round_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_round_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_round_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_rsqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_rsqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_rsqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_rsqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_rsqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_rsqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_rsqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_rsqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_rsqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_rsqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_rsqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_rsqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sgn_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sgn_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sgn_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sgn_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sgn_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sgn_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sgn_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sgn_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sgn_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sgn_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sgn_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sgn_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sgn_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sigmoid_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sigmoid_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sigmoid_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sigmoid_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sigmoid_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sigmoid_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sigmoid_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sigmoid_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sign_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sign_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sign_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sign_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sign_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sign_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_signbit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_signbit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_signbit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_signbit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_signbit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_signbit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_signbit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_signbit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_signbit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_signbit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sinc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sinc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sinc_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sinc_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sinc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sinc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sinc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sinc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sinc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sinc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sinc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sinc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_bessel_j1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_bessel_j1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_bessel_j1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_bessel_j1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_bessel_j1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_bessel_j1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_bessel_j1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_bessel_j1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_entr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_entr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_entr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_entr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_entr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_entr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_entr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_entr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_entr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_entr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_erfcx_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_erfcx_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_erfcx_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_erfcx_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_erfcx_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_erfcx_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_erfcx_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_erfcx_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_i0e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_i0e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_i0e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_i0e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_i0e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_i0e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_i0e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_i0e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_i0e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_i0e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_i1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_i1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_i1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_i1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_i1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_i1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_i1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_i1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_i1e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_i1e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_i1e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_i1e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_i1e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_i1e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_i1e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_i1e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_i1e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_i1e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_log_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_log_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_log_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_log_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_log_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_log_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_log_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_log_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_logit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_logit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_logit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_logit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_logit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_logit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_logit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_logit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_logit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_logit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_multigammaln_mvlgamma_p_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_multigammaln_mvlgamma_p_1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_multigammaln_mvlgamma_p_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_multigammaln_mvlgamma_p_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_multigammaln_mvlgamma_p_1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_multigammaln_mvlgamma_p_1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_multigammaln_mvlgamma_p_1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_multigammaln_mvlgamma_p_1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_multigammaln_mvlgamma_p_1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_multigammaln_mvlgamma_p_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_multigammaln_mvlgamma_p_3_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_multigammaln_mvlgamma_p_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_multigammaln_mvlgamma_p_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_multigammaln_mvlgamma_p_3_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_multigammaln_mvlgamma_p_3_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_multigammaln_mvlgamma_p_3_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_multigammaln_mvlgamma_p_3_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_multigammaln_mvlgamma_p_3_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_multigammaln_mvlgamma_p_5_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_multigammaln_mvlgamma_p_5_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_multigammaln_mvlgamma_p_5_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_multigammaln_mvlgamma_p_5_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_multigammaln_mvlgamma_p_5_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_multigammaln_mvlgamma_p_5_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_multigammaln_mvlgamma_p_5_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_multigammaln_mvlgamma_p_5_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_multigammaln_mvlgamma_p_5_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_ndtr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_ndtr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_ndtri_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_ndtri_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_ndtri_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_ndtri_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_ndtri_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_ndtri_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_ndtri_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_ndtri_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_spherical_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_spherical_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_spherical_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_spherical_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_spherical_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_spherical_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_spherical_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_special_spherical_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_sqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_square_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_square_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_square_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_square_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_square_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_square_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_square_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_square_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_square_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_square_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_square_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_square_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_tan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_tan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_tan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_tan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_tan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_tan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_tan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_tan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_tan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_tan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_tan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_tan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_tanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_tanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_tanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_tanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_tanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_tanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_tanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_tanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_tanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_tanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_tanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_tanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_trunc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_trunc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_trunc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_trunc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_trunc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_trunc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_trunc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_trunc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal__refs_trunc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_abs_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_abs_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_abs_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_abs_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_abs_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_abs_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_abs_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_abs_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_abs_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_abs_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_abs_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_abs_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_acos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_acos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_acos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_acos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_acos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_acos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_acos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_acos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_acos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_acos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_acos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_acos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_acosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_acosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_acosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_acosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_acosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_acosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_acosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_acosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_acosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_acosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_acosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_acosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_angle_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_angle_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_angle_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_angle_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_angle_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_angle_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_angle_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_angle_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_angle_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_angle_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_angle_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_angle_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_asin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_asin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_asin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_asin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_asin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_asin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_asin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_asin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_asin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_asin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_asin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_asin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_asinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_asinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_asinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_asinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_asinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_asinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_asinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_asinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_asinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_asinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_asinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_asinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_atan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_atan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_atan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_atan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_atan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_atan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_atan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_atan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_atan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_atan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_atan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_atan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_atanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_atanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_atanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_atanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_atanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_atanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_atanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_atanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_atanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_atanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_atanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_atanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_bitwise_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_bitwise_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_bitwise_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_bitwise_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_bitwise_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_bitwise_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_ceil_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_ceil_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_ceil_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_ceil_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_ceil_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_ceil_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_ceil_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_ceil_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_ceil_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_conj_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_conj_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_conj_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_conj_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_conj_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_conj_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_conj_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_conj_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_conj_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_conj_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_conj_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_conj_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_conj_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_conj_physical_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_conj_physical_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_conj_physical_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_conj_physical_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_conj_physical_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_conj_physical_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_conj_physical_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_conj_physical_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_conj_physical_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_conj_physical_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_conj_physical_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_conj_physical_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_conj_physical_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_cos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_cos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_cos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_cos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_cos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_cos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_cos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_cos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_cos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_cos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_cos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_cos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_cosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_cosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_cosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_cosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_cosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_cosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_cosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_cosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_cosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_cosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_cosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_cosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_deg2rad_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_deg2rad_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_deg2rad_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_deg2rad_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_deg2rad_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_deg2rad_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_deg2rad_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_deg2rad_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_deg2rad_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_deg2rad_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_digamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_digamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_digamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_digamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_digamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_digamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_digamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_digamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_digamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_digamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_erf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_erf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_erf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_erf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_erf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_erf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_erf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_erf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_erf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_erf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_erfc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_erfc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_erfc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_erfc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_erfc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_erfc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_erfc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_erfc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_erfc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_erfc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_erfinv_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_erfinv_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_erfinv_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_erfinv_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_erfinv_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_erfinv_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_erfinv_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_erfinv_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_erfinv_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_erfinv_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_exp2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_exp2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_exp2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_exp2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_exp2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_exp2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_exp2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_exp2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_exp2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_exp2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_exp2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_exp2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_exp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_exp_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_exp_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_exp_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_exp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_exp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_exp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_exp_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_exp_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_exp_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_exp_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_exp_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_expm1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_expm1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_expm1_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_expm1_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_expm1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_expm1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_expm1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_expm1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_expm1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_expm1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_expm1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_expm1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_fill_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_fill_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_fill_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_fill_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_fill_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_fill_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_fill_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_fill_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_fill_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_fill_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_fill_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_fill_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_fill_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_floor_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_floor_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_floor_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_floor_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_floor_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_floor_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_floor_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_floor_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_floor_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_frac_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_frac_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_frac_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_frac_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_frexp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_frexp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_frexp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_frexp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_i0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_i0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_i0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_i0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_i0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_i0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_i0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_i0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_imag_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_imag_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_imag_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isfinite_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isfinite_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isfinite_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isfinite_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isfinite_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isfinite_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isfinite_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isfinite_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isfinite_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isfinite_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isfinite_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isfinite_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isfinite_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isinf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isinf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isinf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isnan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isnan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isnan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isnan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isnan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isnan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isnan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isnan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isnan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isnan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isnan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isnan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isneginf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isneginf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isneginf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isneginf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isneginf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isneginf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isneginf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isneginf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isneginf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isneginf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isposinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isposinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isposinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isposinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isposinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isposinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isposinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isposinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isposinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isposinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isreal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isreal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isreal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isreal_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isreal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isreal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isreal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isreal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isreal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isreal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isreal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isreal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_isreal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_jiterator_unary_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_jiterator_unary_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_jiterator_unary_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_jiterator_unary_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_jiterator_unary_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_jiterator_unary_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_jiterator_unary_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_jiterator_unary_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_jiterator_unary_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_jiterator_unary_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_jiterator_unary_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_jiterator_unary_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_lgamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_lgamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_lgamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_lgamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_lgamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_lgamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_lgamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_lgamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_lgamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_lgamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log10_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log10_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log10_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log10_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log10_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log10_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log10_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log10_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log10_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log10_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log10_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log10_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log1p_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log1p_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log1p_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log1p_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log1p_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log1p_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log1p_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log1p_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log1p_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log1p_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log1p_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log1p_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_log_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_logical_not_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_logical_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_logical_not_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_logical_not_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_logical_not_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_logical_not_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_logical_not_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_logical_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_logical_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_logical_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_logical_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_logical_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_logit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_logit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_logit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_logit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_logit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_logit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_logit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_logit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_logit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_logit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_mvlgamma_mvlgamma_p_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_mvlgamma_mvlgamma_p_1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_mvlgamma_mvlgamma_p_1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_mvlgamma_mvlgamma_p_1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_mvlgamma_mvlgamma_p_1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_mvlgamma_mvlgamma_p_1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_mvlgamma_mvlgamma_p_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_mvlgamma_mvlgamma_p_3_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_mvlgamma_mvlgamma_p_3_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_mvlgamma_mvlgamma_p_3_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_mvlgamma_mvlgamma_p_3_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_mvlgamma_mvlgamma_p_3_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_mvlgamma_mvlgamma_p_3_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_mvlgamma_mvlgamma_p_5_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_mvlgamma_mvlgamma_p_5_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_mvlgamma_mvlgamma_p_5_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_mvlgamma_mvlgamma_p_5_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_mvlgamma_mvlgamma_p_5_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_mvlgamma_mvlgamma_p_5_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_mvlgamma_mvlgamma_p_5_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nan_to_num_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nan_to_num_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nan_to_num_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nan_to_num_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nan_to_num_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nan_to_num_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nan_to_num_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nan_to_num_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nan_to_num_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nan_to_num_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_neg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_neg_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_neg_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_neg_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_neg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_neg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_neg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_neg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_neg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_neg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_neg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_neg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_celu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_celu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_celu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_celu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_elu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_elu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_elu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_elu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_hardsigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_hardsigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_hardsigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_hardsigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_logsigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_logsigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_logsigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_logsigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_mish_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_mish_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_mish_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_mish_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_prelu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_prelu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_prelu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_prelu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_relu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_relu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_relu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_relu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_relu_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_relu_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_relu_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_relu_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_relu_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_selu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_selu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_selu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_selu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_silu_complex_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_silu_complex_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_silu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_silu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_silu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_silu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_softplus_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_softplus_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_softplus_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_softplus_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_softsign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_softsign_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_softsign_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_softsign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_softsign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_softsign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_softsign_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_softsign_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_softsign_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_softsign_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_softsign_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_tanhshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_tanhshrink_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_tanhshrink_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_tanhshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_tanhshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_tanhshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_tanhshrink_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_tanhshrink_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_tanhshrink_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_tanhshrink_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_tanhshrink_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_threshold_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_threshold_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_threshold_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_threshold_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_threshold_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_threshold_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_threshold_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_threshold_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_nn_functional_threshold_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_3_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_3_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_3_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_3_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_3_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_3_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_4_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_4_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_4_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_4_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_4_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_4_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_4_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_4_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_polygamma_polygamma_n_4_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_positive_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_positive_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_positive_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_positive_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_positive_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_positive_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_positive_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_positive_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_positive_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_positive_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_positive_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_positive_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_rad2deg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_rad2deg_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_rad2deg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_rad2deg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_rad2deg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_rad2deg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_rad2deg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_rad2deg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_rad2deg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_rad2deg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_real_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_real_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_real_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_real_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_real_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_real_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_real_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_real_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_real_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_real_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_real_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_real_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_real_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_reciprocal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_reciprocal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_reciprocal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_reciprocal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_reciprocal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_reciprocal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_reciprocal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_reciprocal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_reciprocal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_reciprocal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_reciprocal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_reciprocal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_round_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_round_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_round_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_round_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_round_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_round_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_round_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_round_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_round_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_round_decimals_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_round_decimals_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_round_decimals_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_round_decimals_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_round_decimals_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_round_decimals_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_round_decimals_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_round_decimals_neg_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_round_decimals_neg_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_round_decimals_neg_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_rsqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_rsqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_rsqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_rsqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_rsqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_rsqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_rsqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_rsqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_rsqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_rsqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_rsqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_rsqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sgn_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sgn_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sgn_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sgn_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sgn_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sgn_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sgn_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sgn_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sgn_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sgn_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sgn_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sgn_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sgn_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sigmoid_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sigmoid_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sigmoid_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sigmoid_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sigmoid_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sigmoid_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sigmoid_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sigmoid_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sign_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sign_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sign_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sign_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sign_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sign_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_signbit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_signbit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_signbit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_signbit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_signbit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_signbit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_signbit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_signbit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_signbit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_signbit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sinc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sinc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sinc_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sinc_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sinc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sinc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sinc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sinc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sinc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sinc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sinc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sinc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_airy_ai_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_airy_ai_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_airy_ai_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_airy_ai_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_airy_ai_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_airy_ai_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_airy_ai_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_airy_ai_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_bessel_j1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_bessel_j1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_bessel_j1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_bessel_j1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_bessel_j1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_bessel_j1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_bessel_j1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_bessel_j1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_bessel_y0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_bessel_y0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_bessel_y0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_bessel_y0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_bessel_y0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_bessel_y0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_bessel_y0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_bessel_y0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_bessel_y1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_bessel_y1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_bessel_y1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_bessel_y1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_bessel_y1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_bessel_y1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_bessel_y1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_bessel_y1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_entr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_entr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_entr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_entr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_entr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_entr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_entr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_entr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_entr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_entr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_erfcx_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_erfcx_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_erfcx_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_erfcx_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_erfcx_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_erfcx_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_erfcx_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_erfcx_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_i0e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_i0e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_i0e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_i0e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_i0e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_i0e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_i0e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_i0e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_i0e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_i0e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_i1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_i1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_i1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_i1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_i1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_i1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_i1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_i1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_i1e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_i1e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_i1e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_i1e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_i1e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_i1e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_i1e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_i1e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_i1e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_i1e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_log_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_log_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_log_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_log_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_log_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_log_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_log_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_log_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_modified_bessel_i0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_modified_bessel_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_modified_bessel_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_modified_bessel_i0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_modified_bessel_i0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_modified_bessel_i0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_modified_bessel_i0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_modified_bessel_i0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_modified_bessel_i1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_modified_bessel_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_modified_bessel_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_modified_bessel_i1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_modified_bessel_i1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_modified_bessel_i1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_modified_bessel_i1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_modified_bessel_i1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_modified_bessel_k0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_modified_bessel_k0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_modified_bessel_k0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_modified_bessel_k0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_modified_bessel_k0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_modified_bessel_k0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_modified_bessel_k0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_modified_bessel_k0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_modified_bessel_k1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_modified_bessel_k1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_modified_bessel_k1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_modified_bessel_k1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_modified_bessel_k1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_modified_bessel_k1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_modified_bessel_k1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_modified_bessel_k1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_ndtr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_ndtr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_ndtri_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_ndtri_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_ndtri_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_ndtri_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_ndtri_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_ndtri_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_ndtri_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_ndtri_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_polygamma_special_polygamma_n_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_polygamma_special_polygamma_n_0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_polygamma_special_polygamma_n_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_polygamma_special_polygamma_n_0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_polygamma_special_polygamma_n_0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_polygamma_special_polygamma_n_0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_polygamma_special_polygamma_n_0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_polygamma_special_polygamma_n_0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_scaled_modified_bessel_k0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_scaled_modified_bessel_k0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_scaled_modified_bessel_k0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_scaled_modified_bessel_k0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_scaled_modified_bessel_k0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_scaled_modified_bessel_k0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_scaled_modified_bessel_k0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_scaled_modified_bessel_k0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_scaled_modified_bessel_k1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_scaled_modified_bessel_k1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_scaled_modified_bessel_k1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_scaled_modified_bessel_k1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_scaled_modified_bessel_k1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_scaled_modified_bessel_k1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_scaled_modified_bessel_k1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_scaled_modified_bessel_k1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_spherical_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_spherical_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_spherical_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_spherical_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_spherical_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_spherical_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_spherical_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_special_spherical_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_sqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_square_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_square_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_square_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_square_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_square_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_square_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_square_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_square_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_square_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_square_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_square_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_square_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_tan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_tan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_tan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_tan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_tan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_tan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_tan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_tan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_tan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_tan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_tan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_tan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_tanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_tanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_tanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_tanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_tanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_tanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_tanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_tanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_tanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_tanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_tanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_tanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_trunc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_trunc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_trunc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_trunc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_trunc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_trunc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_trunc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_trunc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_normal_trunc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_abs_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_abs_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_abs_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_abs_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_abs_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_abs_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_abs_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_abs_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_abs_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_abs_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_abs_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_abs_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_acos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_acos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_acos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_acos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_acos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_acos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_acos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_acos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_acos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_acos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_acos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_acos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_acosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_acosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_acosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_acosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_acosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_acosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_acosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_acosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_acosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_acosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_acosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_acosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_asin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_asin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_asin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_asin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_asin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_asin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_asin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_asin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_asin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_asin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_asin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_asin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_asinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_asinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_asinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_asinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_asinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_asinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_asinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_asinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_asinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_asinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_asinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_asinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_atan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_atan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_atan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_atan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_atan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_atan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_atan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_atan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_atan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_atan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_atan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_atan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_atanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_atanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_atanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_atanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_atanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_atanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_atanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_atanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_atanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_atanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_atanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_atanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_bitwise_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_bitwise_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_bitwise_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_bitwise_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_bitwise_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_bitwise_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_ceil_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_ceil_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_ceil_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_ceil_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_ceil_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_ceil_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_ceil_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_ceil_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_ceil_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_conj_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_conj_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_conj_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_conj_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_conj_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_conj_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_conj_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_conj_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_conj_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_conj_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_conj_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_conj_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_conj_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_conj_physical_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_conj_physical_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_conj_physical_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_conj_physical_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_conj_physical_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_conj_physical_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_conj_physical_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_conj_physical_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_conj_physical_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_conj_physical_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_conj_physical_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_conj_physical_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_conj_physical_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_cos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_cos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_cos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_cos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_cos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_cos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_cos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_cos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_cos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_cos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_cos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_cos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_cosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_cosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_cosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_cosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_cosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_cosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_cosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_cosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_cosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_cosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_cosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_cosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_deg2rad_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_deg2rad_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_deg2rad_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_deg2rad_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_deg2rad_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_deg2rad_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_deg2rad_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_deg2rad_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_deg2rad_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_deg2rad_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_digamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_digamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_digamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_digamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_digamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_digamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_digamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_digamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_digamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_digamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_erf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_erf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_erf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_erf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_erf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_erf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_erf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_erf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_erf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_erf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_erfc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_erfc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_erfc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_erfc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_erfc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_erfc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_erfc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_erfc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_erfc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_erfc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_erfinv_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_erfinv_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_erfinv_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_erfinv_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_erfinv_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_erfinv_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_erfinv_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_erfinv_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_erfinv_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_erfinv_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_exp2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_exp2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_exp2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_exp2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_exp2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_exp2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_exp2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_exp2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_exp2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_exp2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_exp2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_exp2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_exp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_exp_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_exp_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_exp_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_exp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_exp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_exp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_exp_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_exp_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_exp_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_exp_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_exp_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_expm1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_expm1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_expm1_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_expm1_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_expm1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_expm1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_expm1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_expm1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_expm1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_expm1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_expm1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_expm1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_fill_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_fill_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_fill_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_fill_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_fill_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_fill_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_fill_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_fill_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_fill_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_fill_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_fill_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_fill_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_fill_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_floor_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_floor_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_floor_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_floor_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_floor_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_floor_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_floor_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_floor_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_floor_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_frac_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_frac_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_frac_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_frac_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_frexp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_frexp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_frexp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_frexp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_i0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_i0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_i0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_i0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_i0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_i0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_i0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_i0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_imag_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_imag_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_imag_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isfinite_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isfinite_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isfinite_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isfinite_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isfinite_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isfinite_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isfinite_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isfinite_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isfinite_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isfinite_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isfinite_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isfinite_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isfinite_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isinf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isinf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isinf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isnan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isnan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isnan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isnan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isnan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isnan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isnan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isnan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isnan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isnan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isnan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isnan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isneginf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isneginf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isneginf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isneginf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isneginf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isneginf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isneginf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isneginf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isneginf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isneginf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isposinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isposinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isposinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isposinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isposinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isposinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isposinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isposinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isposinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isposinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isreal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isreal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isreal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isreal_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isreal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isreal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isreal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isreal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isreal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isreal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isreal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isreal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_isreal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_lgamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_lgamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_lgamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_lgamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_lgamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_lgamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_lgamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_lgamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_lgamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_lgamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log10_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log10_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log10_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log10_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log10_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log10_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log10_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log10_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log10_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log10_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log10_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log10_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log1p_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log1p_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log1p_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log1p_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log1p_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log1p_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log1p_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log1p_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log1p_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log1p_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log1p_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log1p_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_log_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_logical_not_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_logical_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_logical_not_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_logical_not_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_logical_not_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_logical_not_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_logical_not_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_logical_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_logical_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_logical_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_logical_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_logical_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nan_to_num_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nan_to_num_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nan_to_num_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nan_to_num_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nan_to_num_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nan_to_num_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nan_to_num_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nan_to_num_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nan_to_num_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nan_to_num_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_neg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_neg_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_neg_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_neg_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_neg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_neg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_neg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_neg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_neg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_neg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_neg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_neg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_celu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_celu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_celu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_celu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_elu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_elu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_elu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_elu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_mish_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_mish_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_mish_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_mish_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_prelu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_prelu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_prelu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_prelu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_relu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_relu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_relu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_relu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_relu_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_relu_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_relu_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_relu_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_relu_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_selu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_selu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_selu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_selu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_softplus_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_softplus_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_softplus_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_softplus_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_tanhshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_tanhshrink_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_tanhshrink_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_tanhshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_tanhshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_tanhshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_tanhshrink_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_tanhshrink_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_tanhshrink_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_tanhshrink_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_tanhshrink_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_threshold_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_threshold_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_threshold_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_threshold_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_threshold_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_threshold_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_threshold_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_threshold_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_nn_functional_threshold_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_positive_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_positive_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_positive_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_positive_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_positive_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_positive_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_positive_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_positive_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_positive_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_positive_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_positive_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_positive_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_rad2deg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_rad2deg_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_rad2deg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_rad2deg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_rad2deg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_rad2deg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_rad2deg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_rad2deg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_rad2deg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_rad2deg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_real_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_real_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_real_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_real_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_real_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_real_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_real_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_real_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_real_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_real_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_real_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_real_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_real_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_reciprocal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_reciprocal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_reciprocal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_reciprocal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_reciprocal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_reciprocal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_reciprocal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_reciprocal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_reciprocal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_reciprocal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_reciprocal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_reciprocal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_round_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_round_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_round_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_round_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_round_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_round_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_round_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_round_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_round_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_rsqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_rsqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_rsqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_rsqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_rsqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_rsqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_rsqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_rsqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_rsqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_rsqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_rsqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_rsqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sgn_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sgn_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sgn_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sgn_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sgn_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sgn_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sgn_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sgn_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sgn_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sgn_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sgn_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sgn_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sgn_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sigmoid_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sigmoid_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sigmoid_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sigmoid_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sigmoid_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sigmoid_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sigmoid_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sigmoid_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sign_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sign_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sign_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sign_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sign_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sign_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_signbit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_signbit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_signbit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_signbit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_signbit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_signbit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_signbit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_signbit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_signbit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_signbit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sinc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sinc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sinc_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sinc_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sinc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sinc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sinc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sinc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sinc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sinc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sinc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sinc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_bessel_j1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_bessel_j1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_bessel_j1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_bessel_j1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_bessel_j1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_bessel_j1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_bessel_j1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_bessel_j1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_entr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_entr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_entr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_entr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_entr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_entr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_entr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_entr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_entr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_entr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_erfcx_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_erfcx_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_erfcx_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_erfcx_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_erfcx_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_erfcx_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_erfcx_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_erfcx_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_i0e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_i0e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_i0e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_i0e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_i0e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_i0e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_i0e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_i0e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_i0e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_i0e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_i1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_i1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_i1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_i1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_i1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_i1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_i1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_i1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_i1e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_i1e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_i1e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_i1e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_i1e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_i1e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_i1e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_i1e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_i1e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_i1e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_log_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_log_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_log_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_log_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_log_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_log_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_log_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_log_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_logit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_logit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_logit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_logit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_logit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_logit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_logit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_logit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_logit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_logit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_multigammaln_mvlgamma_p_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_multigammaln_mvlgamma_p_1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_multigammaln_mvlgamma_p_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_multigammaln_mvlgamma_p_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_multigammaln_mvlgamma_p_1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_multigammaln_mvlgamma_p_1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_multigammaln_mvlgamma_p_1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_multigammaln_mvlgamma_p_1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_multigammaln_mvlgamma_p_1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_multigammaln_mvlgamma_p_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_multigammaln_mvlgamma_p_3_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_multigammaln_mvlgamma_p_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_multigammaln_mvlgamma_p_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_multigammaln_mvlgamma_p_3_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_multigammaln_mvlgamma_p_3_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_multigammaln_mvlgamma_p_3_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_multigammaln_mvlgamma_p_3_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_multigammaln_mvlgamma_p_3_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_multigammaln_mvlgamma_p_5_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_multigammaln_mvlgamma_p_5_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_multigammaln_mvlgamma_p_5_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_multigammaln_mvlgamma_p_5_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_multigammaln_mvlgamma_p_5_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_multigammaln_mvlgamma_p_5_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_multigammaln_mvlgamma_p_5_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_multigammaln_mvlgamma_p_5_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_multigammaln_mvlgamma_p_5_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_ndtr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_ndtr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_ndtri_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_ndtri_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_ndtri_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_ndtri_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_ndtri_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_ndtri_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_ndtri_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_ndtri_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_spherical_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_spherical_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_spherical_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_spherical_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_spherical_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_spherical_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_spherical_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_special_spherical_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_sqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_square_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_square_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_square_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_square_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_square_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_square_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_square_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_square_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_square_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_square_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_square_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_square_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_tan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_tan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_tan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_tan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_tan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_tan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_tan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_tan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_tan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_tan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_tan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_tan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_tanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_tanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_tanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_tanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_tanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_tanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_tanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_tanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_tanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_tanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_tanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_tanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_trunc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_trunc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_trunc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_trunc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_trunc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_trunc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_trunc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_trunc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small__refs_trunc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_abs_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_abs_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_abs_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_abs_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_abs_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_abs_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_abs_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_abs_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_abs_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_abs_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_abs_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_abs_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_acos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_acos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_acos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_acos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_acos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_acos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_acos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_acos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_acos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_acos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_acos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_acos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_acosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_acosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_acosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_acosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_acosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_acosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_acosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_acosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_acosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_acosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_acosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_acosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_angle_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_angle_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_angle_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_angle_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_angle_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_angle_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_angle_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_angle_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_angle_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_angle_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_angle_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_angle_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_asin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_asin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_asin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_asin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_asin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_asin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_asin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_asin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_asin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_asin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_asin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_asin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_asinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_asinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_asinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_asinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_asinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_asinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_asinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_asinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_asinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_asinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_asinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_asinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_atan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_atan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_atan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_atan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_atan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_atan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_atan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_atan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_atan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_atan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_atan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_atan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_atanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_atanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_atanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_atanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_atanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_atanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_atanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_atanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_atanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_atanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_atanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_atanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_bitwise_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_bitwise_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_bitwise_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_bitwise_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_bitwise_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_bitwise_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_ceil_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_ceil_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_ceil_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_ceil_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_ceil_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_ceil_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_ceil_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_ceil_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_ceil_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_conj_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_conj_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_conj_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_conj_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_conj_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_conj_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_conj_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_conj_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_conj_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_conj_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_conj_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_conj_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_conj_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_conj_physical_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_conj_physical_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_conj_physical_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_conj_physical_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_conj_physical_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_conj_physical_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_conj_physical_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_conj_physical_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_conj_physical_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_conj_physical_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_conj_physical_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_conj_physical_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_conj_physical_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_cos_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_cos_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_cos_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_cos_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_cos_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_cos_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_cos_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_cos_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_cos_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_cos_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_cos_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_cos_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_cosh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_cosh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_cosh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_cosh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_cosh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_cosh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_cosh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_cosh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_cosh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_cosh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_cosh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_cosh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_deg2rad_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_deg2rad_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_deg2rad_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_deg2rad_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_deg2rad_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_deg2rad_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_deg2rad_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_deg2rad_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_deg2rad_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_deg2rad_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_digamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_digamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_digamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_digamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_digamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_digamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_digamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_digamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_digamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_digamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_erf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_erf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_erf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_erf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_erf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_erf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_erf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_erf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_erf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_erf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_erfc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_erfc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_erfc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_erfc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_erfc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_erfc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_erfc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_erfc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_erfc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_erfc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_erfinv_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_erfinv_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_erfinv_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_erfinv_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_erfinv_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_erfinv_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_erfinv_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_erfinv_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_erfinv_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_erfinv_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_exp2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_exp2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_exp2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_exp2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_exp2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_exp2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_exp2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_exp2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_exp2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_exp2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_exp2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_exp2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_exp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_exp_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_exp_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_exp_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_exp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_exp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_exp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_exp_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_exp_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_exp_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_exp_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_exp_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_expm1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_expm1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_expm1_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_expm1_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_expm1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_expm1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_expm1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_expm1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_expm1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_expm1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_expm1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_expm1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_fill_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_fill_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_fill_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_fill_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_fill_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_fill_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_fill_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_fill_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_fill_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_fill_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_fill_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_fill_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_fill_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_floor_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_floor_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_floor_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_floor_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_floor_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_floor_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_floor_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_floor_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_floor_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_frac_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_frac_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_frac_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_frac_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_frexp_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_frexp_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_frexp_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_frexp_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_i0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_i0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_i0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_i0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_i0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_i0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_i0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_i0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_imag_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_imag_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_imag_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isfinite_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isfinite_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isfinite_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isfinite_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isfinite_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isfinite_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isfinite_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isfinite_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isfinite_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isfinite_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isfinite_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isfinite_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isfinite_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isinf_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isinf_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isinf_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isnan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isnan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isnan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isnan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isnan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isnan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isnan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isnan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isnan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isnan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isnan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isnan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isneginf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isneginf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isneginf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isneginf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isneginf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isneginf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isneginf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isneginf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isneginf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isneginf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isposinf_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isposinf_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isposinf_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isposinf_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isposinf_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isposinf_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isposinf_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isposinf_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isposinf_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isposinf_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isreal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isreal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isreal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isreal_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isreal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isreal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isreal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isreal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isreal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isreal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isreal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isreal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_isreal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_jiterator_unary_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_jiterator_unary_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_jiterator_unary_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_jiterator_unary_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_jiterator_unary_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_jiterator_unary_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_jiterator_unary_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_jiterator_unary_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_jiterator_unary_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_jiterator_unary_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_jiterator_unary_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_jiterator_unary_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_lgamma_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_lgamma_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_lgamma_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_lgamma_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_lgamma_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_lgamma_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_lgamma_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_lgamma_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_lgamma_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_lgamma_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log10_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log10_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log10_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log10_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log10_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log10_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log10_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log10_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log10_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log10_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log10_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log10_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log1p_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log1p_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log1p_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log1p_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log1p_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log1p_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log1p_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log1p_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log1p_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log1p_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log1p_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log1p_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log2_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log2_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log2_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_log_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_logical_not_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_logical_not_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_logical_not_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_logical_not_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_logical_not_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_logical_not_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_logical_not_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_logical_not_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_logical_not_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_logical_not_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_logical_not_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_logical_not_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_logit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_logit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_logit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_logit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_logit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_logit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_logit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_logit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_logit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_logit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_mvlgamma_mvlgamma_p_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_mvlgamma_mvlgamma_p_1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_mvlgamma_mvlgamma_p_1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_mvlgamma_mvlgamma_p_1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_mvlgamma_mvlgamma_p_1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_mvlgamma_mvlgamma_p_1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_mvlgamma_mvlgamma_p_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_mvlgamma_mvlgamma_p_3_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_mvlgamma_mvlgamma_p_3_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_mvlgamma_mvlgamma_p_3_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_mvlgamma_mvlgamma_p_3_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_mvlgamma_mvlgamma_p_3_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_mvlgamma_mvlgamma_p_3_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_mvlgamma_mvlgamma_p_5_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_mvlgamma_mvlgamma_p_5_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_mvlgamma_mvlgamma_p_5_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_mvlgamma_mvlgamma_p_5_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_mvlgamma_mvlgamma_p_5_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_mvlgamma_mvlgamma_p_5_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_mvlgamma_mvlgamma_p_5_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nan_to_num_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nan_to_num_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nan_to_num_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nan_to_num_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nan_to_num_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nan_to_num_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nan_to_num_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nan_to_num_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nan_to_num_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nan_to_num_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_neg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_neg_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_neg_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_neg_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_neg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_neg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_neg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_neg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_neg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_neg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_neg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_neg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_celu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_celu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_celu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_celu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_elu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_elu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_elu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_elu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_hardsigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_hardsigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_hardsigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_hardsigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_logsigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_logsigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_logsigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_logsigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_mish_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_mish_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_mish_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_mish_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_prelu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_prelu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_prelu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_prelu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_relu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_relu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_relu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_relu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_relu_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_relu_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_relu_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_relu_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_relu_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_selu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_selu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_selu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_selu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_silu_complex_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_silu_complex_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_silu_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_silu_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_silu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_silu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_softplus_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_softplus_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_softplus_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_softplus_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_softsign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_softsign_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_softsign_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_softsign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_softsign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_softsign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_softsign_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_softsign_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_softsign_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_softsign_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_softsign_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_tanhshrink_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_tanhshrink_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_tanhshrink_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_tanhshrink_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_tanhshrink_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_tanhshrink_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_tanhshrink_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_tanhshrink_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_tanhshrink_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_tanhshrink_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_tanhshrink_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_threshold_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_threshold_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_threshold_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_threshold_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_threshold_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_threshold_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_threshold_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_threshold_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_nn_functional_threshold_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_2_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_2_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_2_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_2_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_2_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_2_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_2_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_2_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_2_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_3_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_3_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_3_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_3_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_3_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_3_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_4_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_4_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_4_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_4_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_4_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_4_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_4_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_4_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_polygamma_polygamma_n_4_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_positive_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_positive_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_positive_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_positive_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_positive_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_positive_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_positive_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_positive_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_positive_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_positive_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_positive_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_positive_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_rad2deg_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_rad2deg_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_rad2deg_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_rad2deg_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_rad2deg_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_rad2deg_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_rad2deg_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_rad2deg_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_rad2deg_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_rad2deg_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_real_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_real_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_real_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_real_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_real_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_real_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_real_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_real_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_real_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_real_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_real_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_real_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_real_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_reciprocal_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_reciprocal_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_reciprocal_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_reciprocal_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_reciprocal_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_reciprocal_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_reciprocal_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_reciprocal_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_reciprocal_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_reciprocal_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_reciprocal_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_reciprocal_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_round_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_round_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_round_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_round_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_round_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_round_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_round_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_round_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_round_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_round_decimals_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_round_decimals_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_round_decimals_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_round_decimals_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_round_decimals_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_round_decimals_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_round_decimals_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_round_decimals_neg_3_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_round_decimals_neg_3_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_round_decimals_neg_3_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_rsqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_rsqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_rsqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_rsqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_rsqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_rsqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_rsqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_rsqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_rsqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_rsqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_rsqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_rsqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sgn_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sgn_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sgn_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sgn_cpu_complex32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sgn_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sgn_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sgn_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sgn_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sgn_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sgn_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sgn_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sgn_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sgn_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sigmoid_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sigmoid_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sigmoid_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sigmoid_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sigmoid_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sigmoid_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sigmoid_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sigmoid_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sigmoid_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sigmoid_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sigmoid_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sigmoid_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sign_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sign_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sign_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sign_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sign_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sign_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sign_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sign_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sign_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sign_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_signbit_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_signbit_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_signbit_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_signbit_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_signbit_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_signbit_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_signbit_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_signbit_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_signbit_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_signbit_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sin_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sin_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sin_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sin_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sin_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sin_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sin_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sin_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sin_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sin_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sin_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sin_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sinc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sinc_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sinc_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sinc_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sinc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sinc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sinc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sinc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sinc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sinc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sinc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sinc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sinh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sinh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sinh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sinh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sinh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sinh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sinh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sinh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sinh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sinh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sinh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sinh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_airy_ai_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_airy_ai_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_airy_ai_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_airy_ai_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_airy_ai_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_airy_ai_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_airy_ai_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_airy_ai_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_bessel_j1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_bessel_j1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_bessel_j1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_bessel_j1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_bessel_j1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_bessel_j1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_bessel_j1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_bessel_j1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_bessel_y0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_bessel_y0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_bessel_y0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_bessel_y0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_bessel_y0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_bessel_y0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_bessel_y0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_bessel_y0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_bessel_y1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_bessel_y1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_bessel_y1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_bessel_y1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_bessel_y1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_bessel_y1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_bessel_y1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_bessel_y1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_entr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_entr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_entr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_entr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_entr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_entr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_entr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_entr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_entr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_entr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_erfcx_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_erfcx_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_erfcx_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_erfcx_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_erfcx_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_erfcx_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_erfcx_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_erfcx_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_i0e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_i0e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_i0e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_i0e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_i0e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_i0e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_i0e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_i0e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_i0e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_i0e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_i1_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_i1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_i1_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_i1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_i1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_i1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_i1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_i1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_i1e_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_i1e_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_i1e_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_i1e_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_i1e_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_i1e_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_i1e_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_i1e_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_i1e_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_i1e_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_log_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_log_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_log_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_log_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_log_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_log_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_log_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_log_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_modified_bessel_i0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_modified_bessel_i0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_modified_bessel_i0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_modified_bessel_i0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_modified_bessel_i0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_modified_bessel_i0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_modified_bessel_i0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_modified_bessel_i0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_modified_bessel_i1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_modified_bessel_i1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_modified_bessel_i1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_modified_bessel_i1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_modified_bessel_i1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_modified_bessel_i1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_modified_bessel_i1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_modified_bessel_i1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_modified_bessel_k0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_modified_bessel_k0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_modified_bessel_k0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_modified_bessel_k0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_modified_bessel_k0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_modified_bessel_k0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_modified_bessel_k0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_modified_bessel_k0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_modified_bessel_k1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_modified_bessel_k1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_modified_bessel_k1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_modified_bessel_k1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_modified_bessel_k1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_modified_bessel_k1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_modified_bessel_k1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_modified_bessel_k1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_ndtr_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_ndtr_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_ndtr_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_ndtr_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_ndtr_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_ndtr_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_ndtr_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_ndtr_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_ndtr_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_ndtr_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_ndtri_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_ndtri_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_ndtri_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_ndtri_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_ndtri_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_ndtri_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_ndtri_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_ndtri_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_polygamma_special_polygamma_n_0_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_polygamma_special_polygamma_n_0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_polygamma_special_polygamma_n_0_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_polygamma_special_polygamma_n_0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_polygamma_special_polygamma_n_0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_polygamma_special_polygamma_n_0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_polygamma_special_polygamma_n_0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_polygamma_special_polygamma_n_0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_scaled_modified_bessel_k0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_scaled_modified_bessel_k0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_scaled_modified_bessel_k0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_scaled_modified_bessel_k0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_scaled_modified_bessel_k0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_scaled_modified_bessel_k0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_scaled_modified_bessel_k0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_scaled_modified_bessel_k0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_scaled_modified_bessel_k1_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_scaled_modified_bessel_k1_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_scaled_modified_bessel_k1_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_scaled_modified_bessel_k1_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_scaled_modified_bessel_k1_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_scaled_modified_bessel_k1_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_scaled_modified_bessel_k1_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_scaled_modified_bessel_k1_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_spherical_bessel_j0_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_spherical_bessel_j0_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_spherical_bessel_j0_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_spherical_bessel_j0_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_spherical_bessel_j0_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_spherical_bessel_j0_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_spherical_bessel_j0_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_special_spherical_bessel_j0_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sqrt_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sqrt_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sqrt_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sqrt_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sqrt_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sqrt_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sqrt_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sqrt_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sqrt_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sqrt_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sqrt_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_sqrt_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_square_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_square_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_square_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_square_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_square_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_square_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_square_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_square_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_square_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_square_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_square_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_square_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_tan_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_tan_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_tan_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_tan_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_tan_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_tan_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_tan_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_tan_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_tan_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_tan_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_tan_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_tan_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_tanh_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_tanh_cpu_bool, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_tanh_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_tanh_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_tanh_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_tanh_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_tanh_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_tanh_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_tanh_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_tanh_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_tanh_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_tanh_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_trunc_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_trunc_cpu_float16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_trunc_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_trunc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_trunc_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_trunc_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_trunc_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_trunc_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_reference_numerics_small_trunc_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_silu_complex_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_silu_complex_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_silu_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_silu_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_sinc_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_special_i0_i1_vs_scipy_cpu_bfloat16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_special_i0_i1_vs_scipy_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_special_i0_i1_vs_scipy_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_special_log_ndtr_vs_scipy_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_special_log_ndtr_vs_scipy_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_special_ndtr_vs_scipy_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_special_ndtr_vs_scipy_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_threshold_cpu_complex128, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_threshold_cpu_complex64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_threshold_cpu_float32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_threshold_cpu_float64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_threshold_cpu_int16, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_threshold_cpu_int32, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_threshold_cpu_int64, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_threshold_cpu_int8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_threshold_cpu_uint8, test/test_unary_ufuncs.py::TestUnaryUfuncsCPU::test_unary_out_op_mem_overlap_cpu_float64 2025-08-14T23:58:08.4409850Z 2025-08-14T23:58:08.5581587Z Running profiler/test_python_tracer 1/1 ... [2025-08-14 23:58:08.551556] 2025-08-14T23:58:08.5582059Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:58:08.5588578Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'profiler/test_python_tracer.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-14 23:58:08.551556] 2025-08-14T23:58:18.7979086Z 2025-08-14T23:58:18.7980692Z profiler/test_python_tracer 1/1 was successful, full logs can be found in artifacts with path test/test-reports/profiler.test_python_tracer_1.1_4fdbc602db82793b_.log 2025-08-14T23:58:18.7984793Z Running 3 items in this shard: test/profiler/test_python_tracer.py::TestPythonTracer::test_method_with_c_function, test/profiler/test_python_tracer.py::TestPythonTracer::test_monitoring_callback, test/profiler/test_python_tracer.py::TestPythonTracer::test_unexpected_c_return_events 2025-08-14T23:58:18.7986566Z 2025-08-14T23:58:25.1066921Z 2025-08-14T23:58:25.1068168Z test_functional_autograd_benchmark 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_functional_autograd_benchmark_1.1_1188752c54b46e83_.log 2025-08-14T23:58:25.1069846Z Running 2 items in this shard: test/test_functional_autograd_benchmark.py::TestFunctionalAutogradBenchmark::test_fast_tasks, test/test_functional_autograd_benchmark.py::TestFunctionalAutogradBenchmark::test_slow_tasks 2025-08-14T23:58:25.1070796Z 2025-08-14T23:58:25.9541648Z Running test batch 'tests to run' cost 7776.52 seconds 2025-08-14T23:58:26.0109559Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-14T23:58:26.0110055Z Uploading artifacts took 0.00 seconds 2025-08-14T23:58:26.0110500Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-14T23:58:26.0110956Z Uploading artifacts took 0.00 seconds 2025-08-14T23:58:33.3003759Z 2025-08-14T23:58:33.3004515Z (base) C:\actions-runner\_work\pytorch\pytorch\test>if ERRORLEVEL 1 goto fail 2025-08-14T23:58:33.3004926Z 2025-08-14T23:58:33.3005145Z (base) C:\actions-runner\_work\pytorch\pytorch\test>popd 2025-08-14T23:58:33.3009537Z 2025-08-14T23:58:33.3009985Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-14T23:58:33.3037202Z + [[ 1 == 1 ]] 2025-08-14T23:58:33.3037521Z + [[ 3 -gt 1 ]] 2025-08-14T23:58:33.3037948Z + /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/test_libtorch.bat 2025-08-14T23:58:33.3214869Z 2025-08-14T23:58:33.3215610Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\setup_pytorch_env.bat 2025-08-14T23:58:33.3230530Z 2025-08-14T23:58:33.3233359Z 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-14T23:58:33.3235834Z 2025-08-14T23:58:33.3236343Z C:\actions-runner\_work\pytorch\pytorch>set INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-08-14T23:58:33.3236961Z 2025-08-14T23:58:33.3238154Z 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-14T23:58:33.3254574Z 2025-08-14T23:58:33.3257521Z 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-14T23:58:33.3259924Z 2025-08-14T23:58:33.3260333Z C:\actions-runner\_work\pytorch\pytorch>if not exist C:\Jenkins\Miniconda3 (set INSTALL_FRESH_CONDA=1 ) 2025-08-14T23:58:33.3263256Z 2025-08-14T23:58:33.3263674Z C:\actions-runner\_work\pytorch\pytorch>if "" == "1" ( 2025-08-14T23:58:33.3264750Z 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-14T23:58:33.3265710Z if errorlevel 1 exit /b 2025-08-14T23:58:33.3265955Z if not errorlevel 0 exit /b 2025-08-14T23:58:33.3266773Z 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-14T23:58:33.3267570Z if errorlevel 1 exit /b 2025-08-14T23:58:33.3267844Z if not errorlevel 0 exit /b 2025-08-14T23:58:33.3268094Z ) 2025-08-14T23:58:33.3268193Z 2025-08-14T23:58:33.3268542Z C:\actions-runner\_work\pytorch\pytorch>call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 2025-08-14T23:58:34.1636836Z Overwrite C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py (Yes/No/All)? qM����z�D�9�M��@�M���% ���M��>��y�����M��@�M���M����M���M��^^�y��f �@�M��8` ���M��������������������� 2025-08-14T23:58:34.1638677Z �T��&��Э��0� ���M����Э��0� �4��y�(ѭ���� ���0` �` ��M��q�V��xѭ���� �C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.pyX�M����q 2025-08-14T23:58:34.1639404Z �p�M����������Э��0� ���M�� 2025-08-14T23:58:34.1639840Z �`ѭ��P ������(ѭ���� ��� 2025-08-14T23:58:34.1640181Z ���� 2025-08-14T23:58:34.1640532Z �� �ѭ���� ��%�Ww 2025-08-14T23:58:34.1641035Z ��:"�ѭ���� ��%�Ww 2025-08-14T23:58:34.1641357Z ��:"�ѭ���� ��%�Ww 2025-08-14T23:58:34.1641840Z ��:"��:"��:"���Э��0� ��M��O\JkiA? 2025-08-14T23:58:34.1642193Z 2025-08-14T23:58:34.1643153Z ixѭ���� �C:\Jenkins\Miniconda3\Lib\site-packages\torch\functional.py�Э��0� �`�M��;�-+ 2025-08-14T23:58:34.1643767Z 2025-08-14T23:58:34.1644373Z � & �& �0�> �N����& �)&�� ��& ��& ��& ��> �������& �� & �00I ������0 �����������'����@ 2025-08-14T23:58:34.1644845Z �T��&��!� 2025-08-14T23:58:34.1645925Z �'����@�M��B �M���M����V����M��=������������� �0` �` ��q�V�� �M��� �0` ��& ��M����̣E 2025-08-14T23:58:34.1646495Z �� 2025-08-14T23:58:34.1647037Z �@�M���& �� ��� 2025-08-14T23:58:34.1647665Z �^ �J4�y�^ �^ ��M���M���M���� 2025-08-14T23:58:34.1648017Z ��0I ��q 2025-08-14T23:58:34.1648311Z �(�M���p �x�M���� 2025-08-14T23:58:34.1648582Z ��� 2025-08-14T23:58:34.1648792Z ��� 2025-08-14T23:58:34.1649003Z ��� 2025-08-14T23:58:34.1649234Z �@�M���/�y�� 2025-08-14T23:58:34.1649500Z ���M��@�M���p ��� 2025-08-14T23:58:34.1649802Z ��M��ѭ��� ��� 2025-08-14T23:58:34.1650130Z ��� 2025-08-14T23:58:34.1650342Z ��p �`� 2025-08-14T23:58:34.1651061Z ����xѭ���� �C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py@� `� �3ѭ���� �ѭ���� ��� 2025-08-14T23:58:34.1651734Z �� h� �ѭ���� �ѭ���� �� 2025-08-14T23:58:34.1652215Z ��� X� �ѭ���� �ѭ���� �� 2025-08-14T23:58:34.1652673Z �`� �ѭ���� �ѭ���� ��� 2025-08-14T23:58:34.1653093Z ��Э��0� � �M��O�A? 2025-08-14T23:58:34.1653505Z 2025-08-14T23:58:34.1660112Z ѭ���� �C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ѭ��0� ���M��BA?xѭ���� � ��ѭ���� �ѭ���� ��� ����& �ѭ���� �ѭ���� �P� � I�M��ѭ���� �`� 2025-08-14T23:58:34.1661089Z �ѭ���� ��� ���ѭ���� � �ѭ���� ��� �ٓ�� 2025-08-14T23:58:34.3228222Z Overwrite C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py (Yes/No/All)? ********************************************************************** 2025-08-14T23:58:34.3228994Z ** Visual Studio 2022 Developer Command Prompt v17.8.22 2025-08-14T23:58:34.3229352Z ** Copyright (c) 2022 Microsoft Corporation 2025-08-14T23:58:34.3230213Z ********************************************************************** 2025-08-14T23:58:34.7658513Z [vcvarsall.bat] Environment initialized for: 'x64' 2025-08-14T23:58:34.7691117Z 2025-08-14T23:58:34.7691817Z (base) C:\actions-runner\_work\pytorch\pytorch>popd 2025-08-14T23:58:34.7695181Z 2025-08-14T23:58:34.7695624Z (base) C:\actions-runner\_work\pytorch\pytorch>set DISTUTILS_USE_SDK=1 2025-08-14T23:58:34.7697744Z 2025-08-14T23:58:34.7698068Z (base) C:\actions-runner\_work\pytorch\pytorch>if not "0" == "1" goto cuda_build_end 2025-08-14T23:58:34.7700415Z 2025-08-14T23:58:34.7700889Z (base) C:\actions-runner\_work\pytorch\pytorch>set PYTHONPATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build; 2025-08-14T23:58:34.7703238Z 2025-08-14T23:58:34.7703465Z (base) C:\actions-runner\_work\pytorch\pytorch>set 2025-08-14T23:58:34.7886100Z ACTIONS_ID_TOKEN_REQUEST_TOKEN=*** 2025-08-14T23:58:34.7887225Z ACTIONS_ID_TOKEN_REQUEST_URL=https://run-actions-3-azure-eastus.actions.githubusercontent.com/35//idtoken/eb633651-a2d8-43a7-b851-b43ceeb8c5b6/e15b5e5f-47e0-5be9-b0de-90b5fce8f49a?api-version=2.0 2025-08-14T23:58:34.7888315Z ACTIONS_RUNNER_HOOK_JOB_COMPLETED=C:\actions-runner\jobcompleted.ps1 2025-08-14T23:58:34.7888749Z ALLUSERSPROFILE=C:\ProgramData 2025-08-14T23:58:34.7889129Z ALPINE_IMAGE=308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-08-14T23:58:34.7889565Z APPDATA=C:\Users\runneruser\AppData\Roaming 2025-08-14T23:58:34.7889866Z AWS_DEFAULT_REGION=us-east-1 2025-08-14T23:58:34.7890217Z AWS_EXECUTION_ENV=EC2 2025-08-14T23:58:34.7890495Z BUILD_ENVIRONMENT=win-vs2022-cpu-py3 2025-08-14T23:58:34.7890805Z CI=true 2025-08-14T23:58:34.7891025Z CommandPromptType=Native 2025-08-14T23:58:34.7891369Z COMMONPROGRAMFILES=C:\Program Files\Common Files 2025-08-14T23:58:34.7891741Z COMPUTERNAME=EC2AMAZ-VK08H34 2025-08-14T23:58:34.7892054Z COMSPEC=C:\Windows\system32\cmd.exe 2025-08-14T23:58:34.7892474Z CONDA_BUILD=C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T23:58:34.7892893Z CONDA_DEFAULT_ENV=base 2025-08-14T23:58:34.7893220Z CONDA_EXE=C:\Jenkins\Miniconda3\Scripts\conda.exe 2025-08-14T23:58:34.7893648Z CONDA_INSTALL=C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T23:58:34.7894062Z CONDA_PARENT_DIR=C:\Jenkins 2025-08-14T23:58:34.7894339Z CONDA_PREFIX=C:\Jenkins\Miniconda3 2025-08-14T23:58:34.7894668Z CONDA_PROMPT_MODIFIER=(base) 2025-08-14T23:58:34.7894986Z CONDA_PYTHON_EXE=C:\Jenkins\Miniconda3\python.exe 2025-08-14T23:58:34.7895492Z CONDA_RUN=C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T23:58:34.7896113Z CONDA_SHLVL=1 2025-08-14T23:58:34.7896341Z CONTINUE_THROUGH_ERROR=True 2025-08-14T23:58:34.7896733Z CUDA_PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.9 2025-08-14T23:58:34.7897242Z CUDA_PATH_V12_6=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-08-14T23:58:34.7897793Z CUDA_PATH_V12_8=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.8 2025-08-14T23:58:34.7898312Z CUDA_PATH_V12_9=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.9 2025-08-14T23:58:34.7898740Z CUDA_VERSION=cpu 2025-08-14T23:58:34.7899011Z ChocolateyInstall=C:\ProgramData\chocolatey 2025-08-14T23:58:34.7899455Z CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files 2025-08-14T23:58:34.7899916Z CommonProgramW6432=C:\Program Files\Common Files 2025-08-14T23:58:34.7900411Z DevEnvDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\ 2025-08-14T23:58:34.7900889Z DISTUTILS_USE_SDK=1 2025-08-14T23:58:34.7901172Z DriverData=C:\Windows\System32\Drivers\DriverData 2025-08-14T23:58:34.7901540Z EC2LAUNCH_TELEMETRY=1 2025-08-14T23:58:34.7901951Z ExtensionSdkDir=C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs 2025-08-14T23:58:34.7904751Z EXTERNAL_INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um 2025-08-14T23:58:34.7907057Z Framework40Version=v4.0 2025-08-14T23:58:34.7907405Z FrameworkDir=C:\Windows\Microsoft.NET\Framework64\ 2025-08-14T23:58:34.7907819Z FrameworkDir64=C:\Windows\Microsoft.NET\Framework64\ 2025-08-14T23:58:34.7908214Z FrameworkVersion=v4.0.30319 2025-08-14T23:58:34.7908500Z FrameworkVersion64=v4.0.30319 2025-08-14T23:58:34.7908803Z GITHUB_ACTION=test 2025-08-14T23:58:34.7909043Z GITHUB_ACTIONS=true 2025-08-14T23:58:34.7909296Z GITHUB_ACTION_REF= 2025-08-14T23:58:34.7909557Z GITHUB_ACTION_REPOSITORY= 2025-08-14T23:58:34.7909830Z GITHUB_ACTOR=pytorchmergebot 2025-08-14T23:58:34.7910130Z GITHUB_ACTOR_ID=97764156 2025-08-14T23:58:34.7910421Z GITHUB_API_URL=https://api.github.com 2025-08-14T23:58:34.7910747Z GITHUB_BASE_REF= 2025-08-14T23:58:34.7911226Z GITHUB_ENV=C:\actions-runner\_work\_temp\_runner_file_commands\set_env_44eab417-38ff-4f1c-9bfa-e2edb9e4240d 2025-08-14T23:58:34.7911800Z GITHUB_EVENT_NAME=push 2025-08-14T23:58:34.7912181Z GITHUB_EVENT_PATH=C:\actions-runner\_work\_temp\_github_workflow\event.json 2025-08-14T23:58:34.7912695Z GITHUB_GRAPHQL_URL=https://api.github.com/graphql 2025-08-14T23:58:34.7913066Z GITHUB_HEAD_REF= 2025-08-14T23:58:34.7913293Z GITHUB_JOB=test 2025-08-14T23:58:34.7913804Z GITHUB_OUTPUT=C:\actions-runner\_work\_temp\_runner_file_commands\set_output_44eab417-38ff-4f1c-9bfa-e2edb9e4240d 2025-08-14T23:58:34.7914610Z GITHUB_PATH=C:\actions-runner\_work\_temp\_runner_file_commands\add_path_44eab417-38ff-4f1c-9bfa-e2edb9e4240d 2025-08-14T23:58:34.7915188Z GITHUB_REF=refs/heads/main 2025-08-14T23:58:34.7915450Z GITHUB_REF_NAME=main 2025-08-14T23:58:34.7915735Z GITHUB_REF_PROTECTED=true 2025-08-14T23:58:34.7915996Z GITHUB_REF_TYPE=branch 2025-08-14T23:58:34.7916293Z GITHUB_REPOSITORY=pytorch/pytorch 2025-08-14T23:58:34.7916624Z GITHUB_REPOSITORY_ID=65600975 2025-08-14T23:58:34.7916918Z GITHUB_REPOSITORY_OWNER=pytorch 2025-08-14T23:58:34.7917238Z GITHUB_REPOSITORY_OWNER_ID=21003710 2025-08-14T23:58:34.7917537Z GITHUB_RETENTION_DAYS=90 2025-08-14T23:58:34.7917825Z GITHUB_RUN_ATTEMPT=1 2025-08-14T23:58:34.7918075Z GITHUB_RUN_ID=16976255045 2025-08-14T23:58:34.7918367Z GITHUB_RUN_NUMBER=140204 2025-08-14T23:58:34.7918733Z GITHUB_SERVER_URL=https://github.com 2025-08-14T23:58:34.7919119Z GITHUB_SHA=1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T23:58:34.7919723Z GITHUB_STATE=C:\actions-runner\_work\_temp\_runner_file_commands\save_state_44eab417-38ff-4f1c-9bfa-e2edb9e4240d 2025-08-14T23:58:34.7920605Z GITHUB_STEP_SUMMARY=C:\actions-runner\_work\_temp\_runner_file_commands\step_summary_44eab417-38ff-4f1c-9bfa-e2edb9e4240d 2025-08-14T23:58:34.7921255Z GITHUB_TRIGGERING_ACTOR=pytorchmergebot 2025-08-14T23:58:34.7921574Z GITHUB_WORKFLOW=trunk 2025-08-14T23:58:34.7922008Z GITHUB_WORKFLOW_REF=pytorch/pytorch/.github/workflows/trunk.yml@refs/heads/main 2025-08-14T23:58:34.7922625Z GITHUB_WORKFLOW_SHA=1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T23:58:34.7923107Z GITHUB_WORKSPACE=C:\actions-runner\_work\pytorch\pytorch 2025-08-14T23:58:34.7923485Z GIT_DEFAULT_BRANCH=main 2025-08-14T23:58:34.7923767Z HOME=C:\Users\runneruser 2025-08-14T23:58:34.7926180Z INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um 2025-08-14T23:58:34.7928681Z INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-08-14T23:58:34.7929545Z INSTALL_WINDOWS_SDK=1 2025-08-14T23:58:34.7929904Z JOB_ID=48128743919 2025-08-14T23:58:34.7930409Z JOB_NAME=win-vs2022-cpu-py3 / test (default, 1, 3, lf.windows.4xlarge.nonephemeral) 2025-08-14T23:58:34.7931930Z LIB=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\lib\x64;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64;C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64 2025-08-14T23:58:34.7934200Z LIBPATH=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\lib\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\lib\x86\store\references;C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.19041.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.19041.0;C:\Windows\Microsoft.NET\Framework64\v4.0.30319 2025-08-14T23:58:34.7935699Z LOCALAPPDATA=C:\Users\runneruser\AppData\Local 2025-08-14T23:58:34.7936149Z NETFXSDKDir=C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\ 2025-08-14T23:58:34.7936518Z NO_TD=False 2025-08-14T23:58:34.7936755Z NO_TEST_TIMEOUT=False 2025-08-14T23:58:34.7936991Z NUMBER_OF_PROCESSORS=16 2025-08-14T23:58:34.7937285Z NUM_TEST_SHARDS=3 2025-08-14T23:58:34.7937520Z OLDPWD=C:/16976255045/build-results 2025-08-14T23:58:34.7937858Z OS=Windows_NT 2025-08-14T23:58:34.7944685Z PATH=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\Linux\bin\ConnectionManagerExe 2025-08-14T23:58:34.7951540Z PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC 2025-08-14T23:58:34.7951921Z Platform=x64 2025-08-14T23:58:34.7952195Z PROCESSOR_ARCHITECTURE=AMD64 2025-08-14T23:58:34.7952682Z PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 85 Stepping 7, GenuineIntel 2025-08-14T23:58:34.7953099Z PROCESSOR_LEVEL=6 2025-08-14T23:58:34.7953423Z PROCESSOR_REVISION=5507 2025-08-14T23:58:34.7953666Z PROGRAMFILES=C:\Program Files 2025-08-14T23:58:34.7954047Z PROJECT_DIR=C:/actions-runner/_work/pytorch/pytorch 2025-08-14T23:58:34.7954479Z PROJECT_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch 2025-08-14T23:58:34.7954904Z PROMPT=(base) $P$G 2025-08-14T23:58:34.7955120Z PR_NUMBER= 2025-08-14T23:58:34.7955946Z PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules;C:\Program Files\WindowsPowerShell\Modules 2025-08-14T23:58:34.7956573Z PUBLIC=C:\Users\Public 2025-08-14T23:58:34.7956962Z *** 2025-08-14T23:58:34.7957278Z PYTHONPATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build; 2025-08-14T23:58:34.7957681Z PYTHON_VERSION=3.9 2025-08-14T23:58:34.7957950Z PYTORCH_FINAL_PACKAGE_DIR=C:/16976255045/build-results/ 2025-08-14T23:58:34.7958369Z PYTORCH_FINAL_PACKAGE_DIR_WIN=C:\16976255045\build-results\ 2025-08-14T23:58:34.7958764Z PYTORCH_TEST_CUDA_MEM_LEAK_CHECK=0 2025-08-14T23:58:34.7959056Z PYTORCH_TEST_RERUN_DISABLED_TESTS=0 2025-08-14T23:58:34.7959334Z ProgramData=C:\ProgramData 2025-08-14T23:58:34.7959604Z ProgramFiles(x86)=C:\Program Files (x86) 2025-08-14T23:58:34.7959897Z ProgramW6432=C:\Program Files 2025-08-14T23:58:34.7960160Z REENABLED_ISSUES= 2025-08-14T23:58:34.7960363Z RUNNER_ARCH=X64 2025-08-14T23:58:34.7960581Z RUNNER_ENVIRONMENT=self-hosted 2025-08-14T23:58:34.7960858Z RUNNER_NAME=i-0598cc65f7dec76e0 2025-08-14T23:58:34.7961146Z RUNNER_OS=Windows 2025-08-14T23:58:34.7961431Z RUNNER_TEMP=C:\actions-runner\_work\_temp 2025-08-14T23:58:34.7961756Z RUNNER_TOOL_CACHE=C:\actions-runner\_work\_tool 2025-08-14T23:58:34.7962209Z RUNNER_TRACKING_ID=github_32e13185-0e9c-4df0-ad3a-2f72d890c9b5 2025-08-14T23:58:34.7962652Z RUNNER_WORKSPACE=C:\actions-runner\_work\pytorch 2025-08-14T23:58:34.7963195Z SCRIPT_HELPERS_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-08-14T23:58:34.7963762Z SHA1=1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T23:58:34.7964095Z SHARD_NUMBER=1 2025-08-14T23:58:34.7964326Z SHLVL=2 2025-08-14T23:58:34.7964576Z SSL_CERT_FILE=C:\Jenkins\Miniconda3\Library\ssl\cacert.pem 2025-08-14T23:58:34.7964993Z SYSTEMDRIVE=C: 2025-08-14T23:58:34.7965243Z SYSTEMROOT=C:\Windows 2025-08-14T23:58:34.7965574Z TEMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T23:58:34.7965895Z TERM=xterm-256color 2025-08-14T23:58:34.7966113Z TEST_CONFIG=default 2025-08-14T23:58:34.7966407Z TEST_DIR=C:/actions-runner/_work/pytorch/pytorch/test 2025-08-14T23:58:34.7966813Z TEST_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\test 2025-08-14T23:58:34.7967184Z TEST_SHOWLOCALS=False 2025-08-14T23:58:34.7967475Z TMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T23:58:34.7967803Z TMPDIR=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T23:58:34.7968286Z TMP_DIR=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-08-14T23:58:34.7968770Z TMP_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp 2025-08-14T23:58:34.7969176Z TORCH_CUDA_ARCH_LIST=8.6 2025-08-14T23:58:34.7969469Z TORCH_SERIALIZATION_DEBUG=1 2025-08-14T23:58:34.7969719Z UCRTVersion=10.0.19041.0 2025-08-14T23:58:34.7970147Z UniversalCRTSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-08-14T23:58:34.7970551Z UPDATEFILE=update.finished 2025-08-14T23:58:34.7970811Z USERDOMAIN=EC2AMAZ-VK08H34 2025-08-14T23:58:34.7971097Z USERNAME=runneruser 2025-08-14T23:58:34.7971359Z USERPROFILE=C:\Users\runneruser 2025-08-14T23:58:34.7971628Z USE_CUDA=0 2025-08-14T23:58:34.7972059Z VCIDEInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\ 2025-08-14T23:58:34.7972725Z VCINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\ 2025-08-14T23:58:34.7973464Z VCToolsInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\ 2025-08-14T23:58:34.7974263Z VCToolsRedistDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Redist\MSVC\14.38.33130\ 2025-08-14T23:58:34.7974834Z VCToolsVersion=14.38.33130 2025-08-14T23:58:34.7975107Z VC_PRODUCT=BuildTools 2025-08-14T23:58:34.7975332Z VC_VERSION= 2025-08-14T23:58:34.7975547Z VC_YEAR=2022 2025-08-14T23:58:34.7975764Z VERBOSE_ARG='SilentlyContinue' 2025-08-14T23:58:34.7976053Z VERBOSE_TEST_LOGS=False 2025-08-14T23:58:34.7976398Z VisualStudioVersion=17.0 2025-08-14T23:58:34.7976956Z VS170COMNTOOLS=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\ 2025-08-14T23:58:34.7977523Z VSCMD_ARG_app_plat=Desktop 2025-08-14T23:58:34.7977759Z VSCMD_ARG_HOST_ARCH=x64 2025-08-14T23:58:34.7978039Z VSCMD_ARG_TGT_ARCH=x64 2025-08-14T23:58:34.7978264Z VSCMD_VER=17.8.22 2025-08-14T23:58:34.7978639Z VSINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\ 2025-08-14T23:58:34.7979101Z VS_VERSION=17.4.1 2025-08-14T23:58:34.7979299Z WINDIR=C:\Windows 2025-08-14T23:58:34.7979953Z 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-14T23:58:34.7980712Z WindowsSdkBinPath=C:\Program Files (x86)\Windows Kits\10\bin\ 2025-08-14T23:58:34.7981193Z WindowsSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-08-14T23:58:34.7981584Z WindowsSDKLibVersion=10.0.19041.0\ 2025-08-14T23:58:34.7982049Z WindowsSdkVerBinPath=C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\ 2025-08-14T23:58:34.7982570Z WindowsSDKVersion=10.0.19041.0\ 2025-08-14T23:58:34.7983108Z WindowsSDK_ExecutablePath_x64=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\ 2025-08-14T23:58:34.7983940Z WindowsSDK_ExecutablePath_x86=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\ 2025-08-14T23:58:34.7984666Z _=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/test_libtorch.bat 2025-08-14T23:58:34.7985194Z __CONDA_OPENSLL_CERT_FILE_SET="1" 2025-08-14T23:58:34.7985494Z __DOTNET_ADD_64BIT=1 2025-08-14T23:58:34.7985733Z __DOTNET_PREFERRED_BITNESS=64 2025-08-14T23:58:34.7989120Z __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-14T23:58:34.7992450Z 2025-08-14T23:58:34.7992670Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 exit /b 1 2025-08-14T23:58:34.7993025Z 2025-08-14T23:58:34.7993306Z (base) C:\actions-runner\_work\pytorch\pytorch>set CWD=C:\actions-runner\_work\pytorch\pytorch 2025-08-14T23:58:34.7993743Z 2025-08-14T23:58:34.7994203Z (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-14T23:58:34.7994767Z 2025-08-14T23:58:34.8001731Z (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.38.33130\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\Linux\bin\ConnectionManagerExe 2025-08-14T23:58:34.8008700Z 2025-08-14T23:58:34.8009135Z (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-14T23:58:34.8009678Z 2025-08-14T23:58:34.8010223Z (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-14T23:58:36.4401564Z Downloading http://yann.lecun.com/exdb/mnist/train-images-idx3-ubyte.gz ... 2025-08-14T23:58:36.4402105Z Failed to download (trying next): 2025-08-14T23:58:36.4402376Z HTTP Error 404: Not Found 2025-08-14T23:58:36.4403834Z Downloading https://ossci-datasets.s3.amazonaws.com/mnist/train-images-idx3-ubyte.gz ... 2025-08-14T23:58:36.4404490Z Downloading http://yann.lecun.com/exdb/mnist/train-labels-idx1-ubyte.gz ... 2025-08-14T23:58:36.4404946Z Failed to download (trying next): 2025-08-14T23:58:36.4405227Z HTTP Error 404: Not Found 2025-08-14T23:58:36.4405678Z Downloading https://ossci-datasets.s3.amazonaws.com/mnist/train-labels-idx1-ubyte.gz ... 2025-08-14T23:58:36.4406328Z Downloading http://yann.lecun.com/exdb/mnist/t10k-images-idx3-ubyte.gz ... 2025-08-14T23:58:36.4406751Z Failed to download (trying next): 2025-08-14T23:58:36.4407028Z HTTP Error 404: Not Found 2025-08-14T23:58:36.4407463Z Downloading https://ossci-datasets.s3.amazonaws.com/mnist/t10k-images-idx3-ubyte.gz ... 2025-08-14T23:58:36.4408098Z Downloading http://yann.lecun.com/exdb/mnist/t10k-labels-idx1-ubyte.gz ... 2025-08-14T23:58:36.4409758Z Failed to download (trying next): 2025-08-14T23:58:36.4410069Z HTTP Error 404: Not Found 2025-08-14T23:58:36.4410522Z Downloading https://ossci-datasets.s3.amazonaws.com/mnist/t10k-labels-idx1-ubyte.gz ... 2025-08-14T23:58:36.4518528Z 2025-08-14T23:58:36.4519127Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i cpp/test_api 2025-08-14T23:58:43.1828069Z Found test times from artifacts 2025-08-14T23:58:43.2577966Z Found test times from artifacts 2025-08-14T23:58:43.2599750Z Running all tests 2025-08-14T23:58:43.2605229Z Running parallel tests on 3 processes 2025-08-14T23:58:43.2605654Z Name: tests to run (est. time: 0.0min) 2025-08-14T23:58:43.2605945Z Serial tests (0): 2025-08-14T23:58:43.2606183Z Parallel tests (1): 2025-08-14T23:58:43.2606398Z cpp/test_api 1/1 2025-08-14T23:58:43.2606638Z Name: excluded (est. time: 0.0min) 2025-08-14T23:58:43.2606896Z Serial tests (0): 2025-08-14T23:58:43.2607115Z Parallel tests (0): 2025-08-14T23:58:43.2631838Z Running cpp/test_api 1/1 ... [2025-08-14 23:58:43.259845] 2025-08-14T23:58:43.2632247Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:58:43.2644270Z 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-bc42076fd25ab306.xml', '-x', '--reruns=2'] ... [2025-08-14 23:58:43.259845] 2025-08-14T23:58:43.2645968Z 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-14T23:58:45.5867242Z 2025-08-14T23:58:45.5868260Z cpp/test_api 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.test_api_1.1_d1e9ce9e798c3e0d_.log 2025-08-14T23:58:45.5868836Z 2025-08-14T23:58:49.9899759Z Running cpp/test_api 1/1 ... [2025-08-14 23:58:49.989781] 2025-08-14T23:58:49.9900264Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:58:49.9909430Z 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-f961a3b002ed4227.xml', '-x', '--reruns=2'] ... [2025-08-14 23:58:49.990290] 2025-08-15T00:01:54.5622575Z 2025-08-15T00:01:54.5623469Z cpp/test_api 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.test_api_1.1_607a1cded3a74d15_.log 2025-08-15T00:01:54.5642572Z 2025-08-15T00:01:55.4388618Z Running test batch 'tests to run' cost 192.18 seconds 2025-08-15T00:01:55.4399031Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:01:55.4399518Z Uploading artifacts took 0.00 seconds 2025-08-15T00:01:56.2091655Z 2025-08-15T00:01:56.2092280Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 exit /b 1 2025-08-15T00:01:56.2092742Z 2025-08-15T00:01:56.2093106Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 exit /b 1 2025-08-15T00:01:56.2094122Z 2025-08-15T00:01:56.2094614Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-08-15T00:01:56.2100142Z 2025-08-15T00:01:56.2100690Z (base) C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test>for /R "." %a in (*.exe) do ( 2025-08-15T00:01:56.2101268Z call :libtorch_check "%~na" "%~fa" 2025-08-15T00:01:56.2101581Z if errorlevel 1 goto fail 2025-08-15T00:01:56.2101853Z ) 2025-08-15T00:01:56.2106750Z 2025-08-15T00:01:56.2107161Z (base) C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test>( 2025-08-15T00:01:56.2107982Z call :libtorch_check "apply_utils_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\apply_utils_test.exe" 2025-08-15T00:01:56.2108808Z if errorlevel 1 goto fail 2025-08-15T00:01:56.2109061Z ) 2025-08-15T00:01:56.2118503Z 2025-08-15T00:01:56.2119223Z (base) C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:01:56.2122713Z 2025-08-15T00:01:56.2123356Z (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-15T00:01:56.2126384Z 2025-08-15T00:01:56.2126879Z (base) C:\actions-runner\_work\pytorch\pytorch>if "apply_utils_test" == "verify_api_visibility" goto :eof 2025-08-15T00:01:56.2128052Z 2025-08-15T00:01:56.2128614Z (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-15T00:01:56.2129574Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\apply_utils_test.exe" 2025-08-15T00:01:56.2131067Z 2025-08-15T00:01:56.2131576Z (base) C:\actions-runner\_work\pytorch\pytorch>if "apply_utils_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:01:56.2132347Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\apply_utils_test.exe" 2025-08-15T00:01:56.2132847Z goto :eof 2025-08-15T00:01:56.2133071Z ) 2025-08-15T00:01:56.2133178Z 2025-08-15T00:01:56.2133546Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/apply_utils_test" 2025-08-15T00:02:02.4446077Z Found test times from artifacts 2025-08-15T00:02:02.5133104Z Found test times from artifacts 2025-08-15T00:02:02.5155411Z Running all tests 2025-08-15T00:02:02.5160785Z Running parallel tests on 3 processes 2025-08-15T00:02:02.5161169Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:02:02.5161492Z Serial tests (0): 2025-08-15T00:02:02.5161734Z Parallel tests (1): 2025-08-15T00:02:02.5162008Z cpp/apply_utils_test 1/1 2025-08-15T00:02:02.5162297Z Name: excluded (est. time: 0.0min) 2025-08-15T00:02:02.5162600Z Serial tests (0): 2025-08-15T00:02:02.5162838Z Parallel tests (0): 2025-08-15T00:02:02.5174441Z Running cpp/apply_utils_test 1/1 ... [2025-08-15 00:02:02.516987] 2025-08-15T00:02:02.5174884Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:02:02.5187339Z 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-6c2da4286767d66e.xml', '-x', '--reruns=2'] ... [2025-08-15 00:02:02.518503] 2025-08-15T00:02:02.5189137Z 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-15T00:02:04.8171692Z 2025-08-15T00:02:04.8172730Z 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_9675c493e54f0f01_.log 2025-08-15T00:02:04.8173422Z 2025-08-15T00:02:09.2190185Z Running cpp/apply_utils_test 1/1 ... [2025-08-15 00:02:09.216338] 2025-08-15T00:02:09.2198940Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:02:09.2200215Z 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-ae039c1285b6bf52.xml', '-x', '--reruns=2'] ... [2025-08-15 00:02:09.219409] 2025-08-15T00:02:12.5642298Z 2025-08-15T00:02:12.5643449Z 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_666fd6d08267585b_.log 2025-08-15T00:02:12.5644097Z 2025-08-15T00:02:13.3848530Z Running test batch 'tests to run' cost 10.87 seconds 2025-08-15T00:02:13.3855356Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:02:13.3856588Z Uploading artifacts took 0.00 seconds 2025-08-15T00:02:14.1063488Z 2025-08-15T00:02:14.1064069Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:02:14.1064559Z echo "apply_utils_test" failed with exit code 0 2025-08-15T00:02:14.1064887Z goto fail 2025-08-15T00:02:14.1065108Z ) 2025-08-15T00:02:14.1065227Z 2025-08-15T00:02:14.1065424Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:02:14.1065954Z echo "apply_utils_test" failed with exit code 0 2025-08-15T00:02:14.1066292Z goto fail 2025-08-15T00:02:14.1066494Z ) 2025-08-15T00:02:14.1066608Z 2025-08-15T00:02:14.1066803Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:02:14.1078466Z 2025-08-15T00:02:14.1078698Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:02:14.1079364Z call :libtorch_check "atest" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\atest.exe" 2025-08-15T00:02:14.1079963Z if errorlevel 1 goto fail 2025-08-15T00:02:14.1080215Z ) 2025-08-15T00:02:14.1089208Z 2025-08-15T00:02:14.1089886Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:02:14.1093475Z 2025-08-15T00:02:14.1093957Z (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-15T00:02:14.1096360Z 2025-08-15T00:02:14.1096976Z (base) C:\actions-runner\_work\pytorch\pytorch>if "atest" == "verify_api_visibility" goto :eof 2025-08-15T00:02:14.1097875Z 2025-08-15T00:02:14.1098497Z (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-15T00:02:14.1099420Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\atest.exe" 2025-08-15T00:02:14.1100395Z 2025-08-15T00:02:14.1100815Z (base) C:\actions-runner\_work\pytorch\pytorch>if "atest" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:02:14.1101504Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\atest.exe" 2025-08-15T00:02:14.1101961Z goto :eof 2025-08-15T00:02:14.1102190Z ) 2025-08-15T00:02:14.1102307Z 2025-08-15T00:02:14.1102649Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/atest" 2025-08-15T00:02:20.1834818Z Found test times from artifacts 2025-08-15T00:02:20.2509984Z Found test times from artifacts 2025-08-15T00:02:20.2531980Z Running all tests 2025-08-15T00:02:20.2537451Z Running parallel tests on 3 processes 2025-08-15T00:02:20.2537873Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:02:20.2538162Z Serial tests (0): 2025-08-15T00:02:20.2538412Z Parallel tests (1): 2025-08-15T00:02:20.2538648Z cpp/atest 1/1 2025-08-15T00:02:20.2538910Z Name: excluded (est. time: 0.0min) 2025-08-15T00:02:20.2539177Z Serial tests (0): 2025-08-15T00:02:20.2539427Z Parallel tests (0): 2025-08-15T00:02:20.2541215Z Running cpp/atest 1/1 ... [2025-08-15 00:02:20.244877] 2025-08-15T00:02:20.2541599Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:02:20.2552327Z 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-6091003d2ea73b14.xml', '-x', '--reruns=2'] ... [2025-08-15 00:02:20.254966] 2025-08-15T00:02:20.2553963Z 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-15T00:02:22.5523354Z 2025-08-15T00:02:22.5524141Z cpp/atest 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.atest_1.1_58db250dd8e79759_.log 2025-08-15T00:02:22.5524923Z 2025-08-15T00:02:27.0134938Z Running cpp/atest 1/1 ... [2025-08-15 00:02:27.012962] 2025-08-15T00:02:27.0135585Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:02:27.0144273Z 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-40dea41ec8e964c2.xml', '-x', '--reruns=2'] ... [2025-08-15 00:02:27.014158] 2025-08-15T00:02:31.7238937Z 2025-08-15T00:02:31.7239869Z cpp/atest 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.atest_1.1_80f1628df263a8dc_.log 2025-08-15T00:02:31.7240911Z 2025-08-15T00:02:32.5525263Z Running test batch 'tests to run' cost 12.31 seconds 2025-08-15T00:02:32.5531846Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:02:32.5532341Z Uploading artifacts took 0.00 seconds 2025-08-15T00:02:33.2594353Z 2025-08-15T00:02:33.2595202Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:02:33.2595711Z echo "atest" failed with exit code 0 2025-08-15T00:02:33.2596014Z goto fail 2025-08-15T00:02:33.2597288Z ) 2025-08-15T00:02:33.2597404Z 2025-08-15T00:02:33.2597614Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:02:33.2598052Z echo "atest" failed with exit code 0 2025-08-15T00:02:33.2598339Z goto fail 2025-08-15T00:02:33.2598560Z ) 2025-08-15T00:02:33.2598674Z 2025-08-15T00:02:33.2599027Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:02:33.2619619Z 2025-08-15T00:02:33.2620356Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:02:33.2621196Z call :libtorch_check "backend_fallback_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\backend_fallback_test.exe" 2025-08-15T00:02:33.2621910Z if errorlevel 1 goto fail 2025-08-15T00:02:33.2622172Z ) 2025-08-15T00:02:33.2622307Z 2025-08-15T00:02:33.2622588Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:02:33.2623003Z 2025-08-15T00:02:33.2623463Z (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-15T00:02:33.2624554Z 2025-08-15T00:02:33.2625044Z (base) C:\actions-runner\_work\pytorch\pytorch>if "backend_fallback_test" == "verify_api_visibility" goto :eof 2025-08-15T00:02:33.2627100Z 2025-08-15T00:02:33.2627664Z (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-15T00:02:33.2628676Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\backend_fallback_test.exe" 2025-08-15T00:02:33.2629535Z 2025-08-15T00:02:33.2629970Z (base) C:\actions-runner\_work\pytorch\pytorch>if "backend_fallback_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:02:33.2630814Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\backend_fallback_test.exe" 2025-08-15T00:02:33.2631482Z goto :eof 2025-08-15T00:02:33.2631686Z ) 2025-08-15T00:02:33.2631842Z 2025-08-15T00:02:33.2632359Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/backend_fallback_test" 2025-08-15T00:02:39.5159068Z Found test times from artifacts 2025-08-15T00:02:39.5838239Z Found test times from artifacts 2025-08-15T00:02:39.5861038Z Running all tests 2025-08-15T00:02:39.5866615Z Running parallel tests on 3 processes 2025-08-15T00:02:39.5866986Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:02:39.5867336Z Serial tests (0): 2025-08-15T00:02:39.5867619Z Parallel tests (1): 2025-08-15T00:02:39.5867869Z cpp/backend_fallback_test 1/1 2025-08-15T00:02:39.5868205Z Name: excluded (est. time: 0.0min) 2025-08-15T00:02:39.5868479Z Serial tests (0): 2025-08-15T00:02:39.5868727Z Parallel tests (0): 2025-08-15T00:02:39.5870792Z Running cpp/backend_fallback_test 1/1 ... [2025-08-15 00:02:39.586561] 2025-08-15T00:02:39.5871521Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:02:39.5880493Z 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-ebda78c75ac2b738.xml', '-x', '--reruns=2'] ... [2025-08-15 00:02:39.587705] 2025-08-15T00:02:39.5882317Z 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-15T00:02:42.0133796Z 2025-08-15T00:02:42.0134832Z 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_5e251cfd6fc25178_.log 2025-08-15T00:02:42.0135549Z 2025-08-15T00:02:46.5709066Z Running cpp/backend_fallback_test 1/1 ... [2025-08-15 00:02:46.570255] 2025-08-15T00:02:46.5709581Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:02:46.5718776Z 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-c7f7078b4c857a58.xml', '-x', '--reruns=2'] ... [2025-08-15 00:02:46.571403] 2025-08-15T00:02:49.4197194Z 2025-08-15T00:02:49.4198283Z 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_14379f413cff120e_.log 2025-08-15T00:02:49.4199102Z 2025-08-15T00:02:50.3119728Z Running test batch 'tests to run' cost 10.72 seconds 2025-08-15T00:02:50.3128409Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:02:50.3128926Z Uploading artifacts took 0.00 seconds 2025-08-15T00:02:51.0658383Z 2025-08-15T00:02:51.0659010Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:02:51.0659513Z echo "backend_fallback_test" failed with exit code 0 2025-08-15T00:02:51.0659881Z goto fail 2025-08-15T00:02:51.0660079Z ) 2025-08-15T00:02:51.0660226Z 2025-08-15T00:02:51.0660433Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:02:51.0660911Z echo "backend_fallback_test" failed with exit code 0 2025-08-15T00:02:51.0661251Z goto fail 2025-08-15T00:02:51.0661475Z ) 2025-08-15T00:02:51.0661593Z 2025-08-15T00:02:51.0661758Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:02:51.0669428Z 2025-08-15T00:02:51.0669942Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:02:51.0670624Z call :libtorch_check "basic" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\basic.exe" 2025-08-15T00:02:51.0671194Z if errorlevel 1 goto fail 2025-08-15T00:02:51.0671472Z ) 2025-08-15T00:02:51.0680486Z 2025-08-15T00:02:51.0680844Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:02:51.0684934Z 2025-08-15T00:02:51.0685478Z (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-15T00:02:51.0688178Z 2025-08-15T00:02:51.0688573Z (base) C:\actions-runner\_work\pytorch\pytorch>if "basic" == "verify_api_visibility" goto :eof 2025-08-15T00:02:51.0689874Z 2025-08-15T00:02:51.0690412Z (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-15T00:02:51.0691311Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\basic.exe" 2025-08-15T00:02:51.0692791Z 2025-08-15T00:02:51.0693165Z (base) C:\actions-runner\_work\pytorch\pytorch>if "basic" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:02:51.0693844Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\basic.exe" 2025-08-15T00:02:51.0694466Z goto :eof 2025-08-15T00:02:51.0694706Z ) 2025-08-15T00:02:51.0694812Z 2025-08-15T00:02:51.0695137Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/basic" 2025-08-15T00:02:57.1975332Z Found test times from artifacts 2025-08-15T00:02:57.2655028Z Found test times from artifacts 2025-08-15T00:02:57.2677114Z Running all tests 2025-08-15T00:02:57.2694950Z Running parallel tests on 3 processes 2025-08-15T00:02:57.2695442Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:02:57.2695737Z Serial tests (0): 2025-08-15T00:02:57.2696012Z Parallel tests (1): 2025-08-15T00:02:57.2696251Z cpp/basic 1/1 2025-08-15T00:02:57.2696502Z Name: excluded (est. time: 0.0min) 2025-08-15T00:02:57.2696779Z Serial tests (0): 2025-08-15T00:02:57.2697030Z Parallel tests (0): 2025-08-15T00:02:57.2698812Z Running cpp/basic 1/1 ... [2025-08-15 00:02:57.267016] 2025-08-15T00:02:57.2699208Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:02:57.2709003Z 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-4aa62e2706076a2c.xml', '-x', '--reruns=2'] ... [2025-08-15 00:02:57.267016] 2025-08-15T00:02:57.2710819Z 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-15T00:02:59.6122389Z 2025-08-15T00:02:59.6123445Z cpp/basic 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.basic_1.1_397089544ae4172c_.log 2025-08-15T00:02:59.6124109Z 2025-08-15T00:03:04.1083072Z Running cpp/basic 1/1 ... [2025-08-15 00:03:04.103685] 2025-08-15T00:03:04.1083522Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:03:04.1092091Z 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-e337d77839c6a959.xml', '-x', '--reruns=2'] ... [2025-08-15 00:03:04.103685] 2025-08-15T00:03:07.7034623Z 2025-08-15T00:03:07.7035478Z cpp/basic 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.basic_1.1_b274fc1948fd4a2d_.log 2025-08-15T00:03:07.7036324Z 2025-08-15T00:03:08.6272150Z Running test batch 'tests to run' cost 11.36 seconds 2025-08-15T00:03:08.6278409Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:03:08.6278895Z Uploading artifacts took 0.00 seconds 2025-08-15T00:03:09.3381016Z 2025-08-15T00:03:09.3381735Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:03:09.3382209Z echo "basic" failed with exit code 0 2025-08-15T00:03:09.3382501Z goto fail 2025-08-15T00:03:09.3382751Z ) 2025-08-15T00:03:09.3382870Z 2025-08-15T00:03:09.3383068Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:03:09.3383502Z echo "basic" failed with exit code 0 2025-08-15T00:03:09.3383790Z goto fail 2025-08-15T00:03:09.3384010Z ) 2025-08-15T00:03:09.3385049Z 2025-08-15T00:03:09.3385280Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:03:09.3392870Z 2025-08-15T00:03:09.3393120Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:03:09.3393875Z call :libtorch_check "broadcast_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\broadcast_test.exe" 2025-08-15T00:03:09.3394514Z if errorlevel 1 goto fail 2025-08-15T00:03:09.3394785Z ) 2025-08-15T00:03:09.3404207Z 2025-08-15T00:03:09.3404653Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:03:09.3408730Z 2025-08-15T00:03:09.3409430Z (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-15T00:03:09.3411828Z 2025-08-15T00:03:09.3412247Z (base) C:\actions-runner\_work\pytorch\pytorch>if "broadcast_test" == "verify_api_visibility" goto :eof 2025-08-15T00:03:09.3413246Z 2025-08-15T00:03:09.3413790Z (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-15T00:03:09.3414746Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\broadcast_test.exe" 2025-08-15T00:03:09.3415720Z 2025-08-15T00:03:09.3416126Z (base) C:\actions-runner\_work\pytorch\pytorch>if "broadcast_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:03:09.3416890Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\broadcast_test.exe" 2025-08-15T00:03:09.3417402Z goto :eof 2025-08-15T00:03:09.3417605Z ) 2025-08-15T00:03:09.3417717Z 2025-08-15T00:03:09.3418161Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/broadcast_test" 2025-08-15T00:03:15.4078898Z Found test times from artifacts 2025-08-15T00:03:15.4786376Z Found test times from artifacts 2025-08-15T00:03:15.4808423Z Running all tests 2025-08-15T00:03:15.4813751Z Running parallel tests on 3 processes 2025-08-15T00:03:15.4814159Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:03:15.4814477Z Serial tests (0): 2025-08-15T00:03:15.4814890Z Parallel tests (1): 2025-08-15T00:03:15.4815151Z cpp/broadcast_test 1/1 2025-08-15T00:03:15.4815444Z Name: excluded (est. time: 0.0min) 2025-08-15T00:03:15.4815799Z Serial tests (0): 2025-08-15T00:03:15.4816120Z Parallel tests (0): 2025-08-15T00:03:15.4817601Z Running cpp/broadcast_test 1/1 ... [2025-08-15 00:03:15.470236] 2025-08-15T00:03:15.4818041Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:03:15.4827640Z 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-1b72f064f1d2c596.xml', '-x', '--reruns=2'] ... [2025-08-15 00:03:15.470236] 2025-08-15T00:03:15.4829336Z 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-15T00:03:17.8165768Z 2025-08-15T00:03:17.8166940Z cpp/broadcast_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.broadcast_test_1.1_e0a1e3df0bf5d25f_.log 2025-08-15T00:03:17.8167601Z 2025-08-15T00:03:22.3131052Z Running cpp/broadcast_test 1/1 ... [2025-08-15 00:03:22.312557] 2025-08-15T00:03:22.3131586Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:03:22.3141243Z 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-58f85c080e77be7a.xml', '-x', '--reruns=2'] ... [2025-08-15 00:03:22.313915] 2025-08-15T00:03:25.0149032Z 2025-08-15T00:03:25.0150140Z cpp/broadcast_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.broadcast_test_1.1_d0d3035f9d263b59_.log 2025-08-15T00:03:25.0150794Z 2025-08-15T00:03:25.8969967Z Running test batch 'tests to run' cost 10.42 seconds 2025-08-15T00:03:25.8976290Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:03:25.8976801Z Uploading artifacts took 0.00 seconds 2025-08-15T00:03:26.6108850Z 2025-08-15T00:03:26.6109757Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:03:26.6110385Z echo "broadcast_test" failed with exit code 0 2025-08-15T00:03:26.6110743Z goto fail 2025-08-15T00:03:26.6110964Z ) 2025-08-15T00:03:26.6111070Z 2025-08-15T00:03:26.6132906Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:03:26.6133582Z echo "broadcast_test" failed with exit code 0 2025-08-15T00:03:26.6133932Z goto fail 2025-08-15T00:03:26.6134136Z ) 2025-08-15T00:03:26.6134235Z 2025-08-15T00:03:26.6134492Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:03:26.6134765Z 2025-08-15T00:03:26.6134946Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:03:26.6135662Z call :libtorch_check "c10_accumulate_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_accumulate_test.exe" 2025-08-15T00:03:26.6136313Z if errorlevel 1 goto fail 2025-08-15T00:03:26.6136579Z ) 2025-08-15T00:03:26.6136690Z 2025-08-15T00:03:26.6136974Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:03:26.6137381Z 2025-08-15T00:03:26.6137816Z (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-15T00:03:26.6139079Z 2025-08-15T00:03:26.6139755Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_accumulate_test" == "verify_api_visibility" goto :eof 2025-08-15T00:03:26.6140949Z 2025-08-15T00:03:26.6141522Z (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-15T00:03:26.6142627Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_accumulate_test.exe" 2025-08-15T00:03:26.6144095Z 2025-08-15T00:03:26.6144705Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_accumulate_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:03:26.6145524Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_accumulate_test.exe" 2025-08-15T00:03:26.6146112Z goto :eof 2025-08-15T00:03:26.6146380Z ) 2025-08-15T00:03:26.6146555Z 2025-08-15T00:03:26.6146950Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_accumulate_test" 2025-08-15T00:03:32.7616835Z Found test times from artifacts 2025-08-15T00:03:32.8297009Z Found test times from artifacts 2025-08-15T00:03:32.8319603Z Running all tests 2025-08-15T00:03:32.8325173Z Running parallel tests on 3 processes 2025-08-15T00:03:32.8325604Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:03:32.8325961Z Serial tests (0): 2025-08-15T00:03:32.8326268Z Parallel tests (1): 2025-08-15T00:03:32.8326588Z cpp/c10_accumulate_test 1/1 2025-08-15T00:03:32.8326933Z Name: excluded (est. time: 0.0min) 2025-08-15T00:03:32.8327229Z Serial tests (0): 2025-08-15T00:03:32.8327531Z Parallel tests (0): 2025-08-15T00:03:32.8329373Z Running cpp/c10_accumulate_test 1/1 ... [2025-08-15 00:03:32.832838] 2025-08-15T00:03:32.8329837Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:03:32.8344641Z 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-7cfe756ab8d0a3a0.xml', '-x', '--reruns=2'] ... [2025-08-15 00:03:32.834270] 2025-08-15T00:03:32.8346412Z 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-15T00:03:34.3618989Z 2025-08-15T00:03:34.3620122Z 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_3c88fee22eeac694_.log 2025-08-15T00:03:34.3620783Z 2025-08-15T00:03:38.9181303Z Running cpp/c10_accumulate_test 1/1 ... [2025-08-15 00:03:38.917660] 2025-08-15T00:03:38.9181761Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:03:38.9190903Z 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-2158fdb20b6760b7.xml', '-x', '--reruns=2'] ... [2025-08-15 00:03:38.918889] 2025-08-15T00:03:40.4648474Z 2025-08-15T00:03:40.4649376Z 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_cb93c9330278c3da_.log 2025-08-15T00:03:40.4650260Z 2025-08-15T00:03:41.3570437Z Running test batch 'tests to run' cost 8.52 seconds 2025-08-15T00:03:41.3576694Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:03:41.3577184Z Uploading artifacts took 0.00 seconds 2025-08-15T00:03:42.0682510Z 2025-08-15T00:03:42.0683217Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:03:42.0683749Z echo "c10_accumulate_test" failed with exit code 0 2025-08-15T00:03:42.0684094Z goto fail 2025-08-15T00:03:42.0684319Z ) 2025-08-15T00:03:42.0684467Z 2025-08-15T00:03:42.0684697Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:03:42.0685154Z echo "c10_accumulate_test" failed with exit code 0 2025-08-15T00:03:42.0685522Z goto fail 2025-08-15T00:03:42.0685725Z ) 2025-08-15T00:03:42.0685862Z 2025-08-15T00:03:42.0686031Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:03:42.0693048Z 2025-08-15T00:03:42.0693336Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:03:42.0694746Z call :libtorch_check "c10_AllocatorConfig_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_AllocatorConfig_test.exe" 2025-08-15T00:03:42.0695759Z if errorlevel 1 goto fail 2025-08-15T00:03:42.0696012Z ) 2025-08-15T00:03:42.0704377Z 2025-08-15T00:03:42.0705020Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:03:42.0708773Z 2025-08-15T00:03:42.0709268Z (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-15T00:03:42.0711664Z 2025-08-15T00:03:42.0712117Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_AllocatorConfig_test" == "verify_api_visibility" goto :eof 2025-08-15T00:03:42.0713492Z 2025-08-15T00:03:42.0714081Z (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-15T00:03:42.0715107Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_AllocatorConfig_test.exe" 2025-08-15T00:03:42.0716001Z 2025-08-15T00:03:42.0716529Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_AllocatorConfig_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:03:42.0717362Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_AllocatorConfig_test.exe" 2025-08-15T00:03:42.0717908Z goto :eof 2025-08-15T00:03:42.0718132Z ) 2025-08-15T00:03:42.0718243Z 2025-08-15T00:03:42.0718638Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_AllocatorConfig_test" 2025-08-15T00:03:48.1523815Z Found test times from artifacts 2025-08-15T00:03:48.2202344Z Found test times from artifacts 2025-08-15T00:03:48.2224998Z Running all tests 2025-08-15T00:03:48.2230880Z Running parallel tests on 3 processes 2025-08-15T00:03:48.2231306Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:03:48.2231662Z Serial tests (0): 2025-08-15T00:03:48.2231899Z Parallel tests (1): 2025-08-15T00:03:48.2232207Z cpp/c10_AllocatorConfig_test 1/1 2025-08-15T00:03:48.2232522Z Name: excluded (est. time: 0.0min) 2025-08-15T00:03:48.2232824Z Serial tests (0): 2025-08-15T00:03:48.2233094Z Parallel tests (0): 2025-08-15T00:03:48.2234841Z Running cpp/c10_AllocatorConfig_test 1/1 ... [2025-08-15 00:03:48.223047] 2025-08-15T00:03:48.2235313Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:03:48.2244955Z 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-740f2b1290228fad.xml', '-x', '--reruns=2'] ... [2025-08-15 00:03:48.224214] 2025-08-15T00:03:48.2246695Z 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-15T00:03:49.7693966Z 2025-08-15T00:03:49.7695201Z 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_0aa8f8695e891ccb_.log 2025-08-15T00:03:49.7695931Z 2025-08-15T00:03:54.2690119Z Running cpp/c10_AllocatorConfig_test 1/1 ... [2025-08-15 00:03:54.257643] 2025-08-15T00:03:54.2698570Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:03:54.2699845Z 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-8927666e70c2f555.xml', '-x', '--reruns=2'] ... [2025-08-15 00:03:54.257643] 2025-08-15T00:03:55.8396514Z 2025-08-15T00:03:55.8397861Z 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_702ab23454ed5f45_.log 2025-08-15T00:03:55.8398576Z 2025-08-15T00:03:56.6960384Z Running test batch 'tests to run' cost 8.47 seconds 2025-08-15T00:03:56.6966828Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:03:56.6967305Z Uploading artifacts took 0.00 seconds 2025-08-15T00:03:57.4424991Z 2025-08-15T00:03:57.4425831Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:03:57.4426344Z echo "c10_AllocatorConfig_test" failed with exit code 0 2025-08-15T00:03:57.4426806Z goto fail 2025-08-15T00:03:57.4427029Z ) 2025-08-15T00:03:57.4427139Z 2025-08-15T00:03:57.4427342Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:03:57.4427817Z echo "c10_AllocatorConfig_test" failed with exit code 0 2025-08-15T00:03:57.4428193Z goto fail 2025-08-15T00:03:57.4428390Z ) 2025-08-15T00:03:57.4428503Z 2025-08-15T00:03:57.4428663Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:03:57.4435550Z 2025-08-15T00:03:57.4436098Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:03:57.4436843Z call :libtorch_check "c10_ArrayRef_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ArrayRef_test.exe" 2025-08-15T00:03:57.4437524Z if errorlevel 1 goto fail 2025-08-15T00:03:57.4437776Z ) 2025-08-15T00:03:57.4446678Z 2025-08-15T00:03:57.4447113Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:03:57.4450986Z 2025-08-15T00:03:57.4451625Z (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-15T00:03:57.4454087Z 2025-08-15T00:03:57.4454507Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_ArrayRef_test" == "verify_api_visibility" goto :eof 2025-08-15T00:03:57.4455762Z 2025-08-15T00:03:57.4456310Z (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-15T00:03:57.4457270Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ArrayRef_test.exe" 2025-08-15T00:03:57.4458650Z 2025-08-15T00:03:57.4459056Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_ArrayRef_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:03:57.4459818Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ArrayRef_test.exe" 2025-08-15T00:03:57.4460519Z goto :eof 2025-08-15T00:03:57.4460720Z ) 2025-08-15T00:03:57.4460828Z 2025-08-15T00:03:57.4461216Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_ArrayRef_test" 2025-08-15T00:04:03.5307499Z Found test times from artifacts 2025-08-15T00:04:03.5989860Z Found test times from artifacts 2025-08-15T00:04:03.6011715Z Running all tests 2025-08-15T00:04:03.6016954Z Running parallel tests on 3 processes 2025-08-15T00:04:03.6017363Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:04:03.6017683Z Serial tests (0): 2025-08-15T00:04:03.6017927Z Parallel tests (1): 2025-08-15T00:04:03.6018195Z cpp/c10_ArrayRef_test 1/1 2025-08-15T00:04:03.6018450Z Name: excluded (est. time: 0.0min) 2025-08-15T00:04:03.6018736Z Serial tests (0): 2025-08-15T00:04:03.6018984Z Parallel tests (0): 2025-08-15T00:04:03.6020800Z Running cpp/c10_ArrayRef_test 1/1 ... [2025-08-15 00:04:03.594697] 2025-08-15T00:04:03.6021221Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:04:03.6031095Z 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-0f45d85ecfb9a463.xml', '-x', '--reruns=2'] ... [2025-08-15 00:04:03.594697] 2025-08-15T00:04:03.6032911Z 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-15T00:04:05.1203584Z 2025-08-15T00:04:05.1204594Z 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_43c3035b64523aca_.log 2025-08-15T00:04:05.1205293Z 2025-08-15T00:04:09.5330137Z Running cpp/c10_ArrayRef_test 1/1 ... [2025-08-15 00:04:09.524610] 2025-08-15T00:04:09.5330569Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:04:09.5340601Z 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-26ac9c7bff71429e.xml', '-x', '--reruns=2'] ... [2025-08-15 00:04:09.533673] 2025-08-15T00:04:11.1072882Z 2025-08-15T00:04:11.1073958Z 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_0e532343ec7ee42e_.log 2025-08-15T00:04:11.1074570Z 2025-08-15T00:04:11.9868243Z Running test batch 'tests to run' cost 8.39 seconds 2025-08-15T00:04:11.9873972Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:04:11.9874429Z Uploading artifacts took 0.00 seconds 2025-08-15T00:04:12.7057904Z 2025-08-15T00:04:12.7058451Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:04:12.7058926Z echo "c10_ArrayRef_test" failed with exit code 0 2025-08-15T00:04:12.7059245Z goto fail 2025-08-15T00:04:12.7059424Z ) 2025-08-15T00:04:12.7059539Z 2025-08-15T00:04:12.7060250Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:04:12.7060713Z echo "c10_ArrayRef_test" failed with exit code 0 2025-08-15T00:04:12.7061026Z goto fail 2025-08-15T00:04:12.7061232Z ) 2025-08-15T00:04:12.7061339Z 2025-08-15T00:04:12.7061512Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:04:12.7069177Z 2025-08-15T00:04:12.7069574Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:04:12.7070352Z call :libtorch_check "c10_bfloat16_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_bfloat16_test.exe" 2025-08-15T00:04:12.7070991Z if errorlevel 1 goto fail 2025-08-15T00:04:12.7071233Z ) 2025-08-15T00:04:12.7080518Z 2025-08-15T00:04:12.7080889Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:04:12.7084904Z 2025-08-15T00:04:12.7085402Z (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-15T00:04:12.7087807Z 2025-08-15T00:04:12.7088236Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_bfloat16_test" == "verify_api_visibility" goto :eof 2025-08-15T00:04:12.7089271Z 2025-08-15T00:04:12.7089824Z (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-15T00:04:12.7090726Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_bfloat16_test.exe" 2025-08-15T00:04:12.7091728Z 2025-08-15T00:04:12.7092121Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_bfloat16_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:04:12.7092824Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_bfloat16_test.exe" 2025-08-15T00:04:12.7093303Z goto :eof 2025-08-15T00:04:12.7093468Z ) 2025-08-15T00:04:12.7093575Z 2025-08-15T00:04:12.7093927Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_bfloat16_test" 2025-08-15T00:04:18.7980567Z Found test times from artifacts 2025-08-15T00:04:18.8657567Z Found test times from artifacts 2025-08-15T00:04:18.8680432Z Running all tests 2025-08-15T00:04:18.8686156Z Running parallel tests on 3 processes 2025-08-15T00:04:18.8686738Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:04:18.8687024Z Serial tests (0): 2025-08-15T00:04:18.8687306Z Parallel tests (1): 2025-08-15T00:04:18.8687587Z cpp/c10_bfloat16_test 1/1 2025-08-15T00:04:18.8687843Z Name: excluded (est. time: 0.0min) 2025-08-15T00:04:18.8688096Z Serial tests (0): 2025-08-15T00:04:18.8688296Z Parallel tests (0): 2025-08-15T00:04:18.8690003Z Running cpp/c10_bfloat16_test 1/1 ... [2025-08-15 00:04:18.868539] 2025-08-15T00:04:18.8690383Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:04:18.8699966Z 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-f523095497abe485.xml', '-x', '--reruns=2'] ... [2025-08-15 00:04:18.869683] 2025-08-15T00:04:18.8701615Z 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-15T00:04:20.4204845Z 2025-08-15T00:04:20.4205709Z 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_fb8ee1f5f0e52418_.log 2025-08-15T00:04:20.4206405Z 2025-08-15T00:04:24.9012936Z Running cpp/c10_bfloat16_test 1/1 ... [2025-08-15 00:04:24.887481] 2025-08-15T00:04:24.9013351Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:04:24.9022030Z 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-6dc36215d00af1b5.xml', '-x', '--reruns=2'] ... [2025-08-15 00:04:24.887481] 2025-08-15T00:04:26.4823965Z 2025-08-15T00:04:26.4824820Z 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_60e68455102c460c_.log 2025-08-15T00:04:26.4825929Z 2025-08-15T00:04:27.3447329Z Running test batch 'tests to run' cost 8.47 seconds 2025-08-15T00:04:27.3453556Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:04:27.3453998Z Uploading artifacts took 0.00 seconds 2025-08-15T00:04:28.0683706Z 2025-08-15T00:04:28.0684204Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:04:28.0684813Z echo "c10_bfloat16_test" failed with exit code 0 2025-08-15T00:04:28.0685121Z goto fail 2025-08-15T00:04:28.0685283Z ) 2025-08-15T00:04:28.0685399Z 2025-08-15T00:04:28.0685584Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:04:28.0685991Z echo "c10_bfloat16_test" failed with exit code 0 2025-08-15T00:04:28.0686274Z goto fail 2025-08-15T00:04:28.0686443Z ) 2025-08-15T00:04:28.0686534Z 2025-08-15T00:04:28.0686688Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:04:28.0694279Z 2025-08-15T00:04:28.0694552Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:04:28.0695208Z call :libtorch_check "c10_Bitset_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Bitset_test.exe" 2025-08-15T00:04:28.0695815Z if errorlevel 1 goto fail 2025-08-15T00:04:28.0696039Z ) 2025-08-15T00:04:28.0705444Z 2025-08-15T00:04:28.0705799Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:04:28.0709873Z 2025-08-15T00:04:28.0710645Z (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-15T00:04:28.0712840Z 2025-08-15T00:04:28.0713231Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Bitset_test" == "verify_api_visibility" goto :eof 2025-08-15T00:04:28.0714688Z 2025-08-15T00:04:28.0715392Z (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-15T00:04:28.0716386Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Bitset_test.exe" 2025-08-15T00:04:28.0717343Z 2025-08-15T00:04:28.0717724Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Bitset_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:04:28.0718419Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Bitset_test.exe" 2025-08-15T00:04:28.0718902Z goto :eof 2025-08-15T00:04:28.0719073Z ) 2025-08-15T00:04:28.0719174Z 2025-08-15T00:04:28.0719517Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_Bitset_test" 2025-08-15T00:04:34.2166066Z Found test times from artifacts 2025-08-15T00:04:34.2844347Z Found test times from artifacts 2025-08-15T00:04:34.2865926Z Running all tests 2025-08-15T00:04:34.2871319Z Running parallel tests on 3 processes 2025-08-15T00:04:34.2871762Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:04:34.2872036Z Serial tests (0): 2025-08-15T00:04:34.2872261Z Parallel tests (1): 2025-08-15T00:04:34.2872483Z cpp/c10_Bitset_test 1/1 2025-08-15T00:04:34.2872726Z Name: excluded (est. time: 0.0min) 2025-08-15T00:04:34.2872972Z Serial tests (0): 2025-08-15T00:04:34.2873177Z Parallel tests (0): 2025-08-15T00:04:34.2875214Z Running cpp/c10_Bitset_test 1/1 ... [2025-08-15 00:04:34.284553] 2025-08-15T00:04:34.2875590Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:04:34.2885260Z 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-e0ab5c74074085af.xml', '-x', '--reruns=2'] ... [2025-08-15 00:04:34.284553] 2025-08-15T00:04:34.2886906Z 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-15T00:04:35.8318574Z 2025-08-15T00:04:35.8319410Z 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_4ff864e00e2463fe_.log 2025-08-15T00:04:35.8320407Z 2025-08-15T00:04:40.2771836Z Running cpp/c10_Bitset_test 1/1 ... [2025-08-15 00:04:40.276425] 2025-08-15T00:04:40.2772251Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:04:40.2781004Z 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-78a25ad706592d14.xml', '-x', '--reruns=2'] ... [2025-08-15 00:04:40.276425] 2025-08-15T00:04:41.8477566Z 2025-08-15T00:04:41.8478701Z 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_78ed3fde655be0ea_.log 2025-08-15T00:04:41.8479335Z 2025-08-15T00:04:42.6731775Z Running test batch 'tests to run' cost 8.39 seconds 2025-08-15T00:04:42.6738400Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:04:42.6738908Z Uploading artifacts took 0.00 seconds 2025-08-15T00:04:43.3976521Z 2025-08-15T00:04:43.3977022Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:04:43.3977472Z echo "c10_Bitset_test" failed with exit code 0 2025-08-15T00:04:43.3977783Z goto fail 2025-08-15T00:04:43.3977958Z ) 2025-08-15T00:04:43.3978051Z 2025-08-15T00:04:43.3978234Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:04:43.3978644Z echo "c10_Bitset_test" failed with exit code 0 2025-08-15T00:04:43.3978931Z goto fail 2025-08-15T00:04:43.3979094Z ) 2025-08-15T00:04:43.3979478Z 2025-08-15T00:04:43.3979707Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:04:43.3987374Z 2025-08-15T00:04:43.3987745Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:04:43.3988483Z 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-15T00:04:43.3989159Z if errorlevel 1 goto fail 2025-08-15T00:04:43.3989372Z ) 2025-08-15T00:04:43.3998726Z 2025-08-15T00:04:43.3999071Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:04:43.4002956Z 2025-08-15T00:04:43.4003449Z (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-15T00:04:43.4005985Z 2025-08-15T00:04:43.4006471Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_bit_cast_test" == "verify_api_visibility" goto :eof 2025-08-15T00:04:43.4007751Z 2025-08-15T00:04:43.4008285Z (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-15T00:04:43.4009192Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_bit_cast_test.exe" 2025-08-15T00:04:43.4010607Z 2025-08-15T00:04:43.4010990Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_bit_cast_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:04:43.4011710Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_bit_cast_test.exe" 2025-08-15T00:04:43.4012202Z goto :eof 2025-08-15T00:04:43.4012370Z ) 2025-08-15T00:04:43.4012461Z 2025-08-15T00:04:43.4012812Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_bit_cast_test" 2025-08-15T00:04:49.4886869Z Found test times from artifacts 2025-08-15T00:04:49.5569570Z Found test times from artifacts 2025-08-15T00:04:49.5592005Z Running all tests 2025-08-15T00:04:49.5597535Z Running parallel tests on 3 processes 2025-08-15T00:04:49.5598003Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:04:49.5598292Z Serial tests (0): 2025-08-15T00:04:49.5598551Z Parallel tests (1): 2025-08-15T00:04:49.5598802Z cpp/c10_bit_cast_test 1/1 2025-08-15T00:04:49.5599108Z Name: excluded (est. time: 0.0min) 2025-08-15T00:04:49.5599451Z Serial tests (0): 2025-08-15T00:04:49.5599680Z Parallel tests (0): 2025-08-15T00:04:49.5601456Z Running cpp/c10_bit_cast_test 1/1 ... [2025-08-15 00:04:49.560060] 2025-08-15T00:04:49.5601864Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:04:49.5611531Z 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-9143d8f74e1b4c6d.xml', '-x', '--reruns=2'] ... [2025-08-15 00:04:49.560736] 2025-08-15T00:04:49.5613280Z 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-15T00:04:51.1050508Z 2025-08-15T00:04:51.1051446Z 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_182c9484c569e693_.log 2025-08-15T00:04:51.1052133Z 2025-08-15T00:04:55.6258863Z Running cpp/c10_bit_cast_test 1/1 ... [2025-08-15 00:04:55.625131] 2025-08-15T00:04:55.6267216Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:04:55.6268456Z 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-b2181534c3723d5b.xml', '-x', '--reruns=2'] ... [2025-08-15 00:04:55.625131] 2025-08-15T00:04:57.1803092Z 2025-08-15T00:04:57.1804778Z 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_940fdc62b98ac269_.log 2025-08-15T00:04:57.1805489Z 2025-08-15T00:04:58.0158089Z Running test batch 'tests to run' cost 8.46 seconds 2025-08-15T00:04:58.0163553Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:04:58.0164100Z Uploading artifacts took 0.00 seconds 2025-08-15T00:04:58.7713015Z 2025-08-15T00:04:58.7713879Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:04:58.7714381Z echo "c10_bit_cast_test" failed with exit code 0 2025-08-15T00:04:58.7714787Z goto fail 2025-08-15T00:04:58.7715013Z ) 2025-08-15T00:04:58.7715119Z 2025-08-15T00:04:58.7715371Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:04:58.7715841Z echo "c10_bit_cast_test" failed with exit code 0 2025-08-15T00:04:58.7716157Z goto fail 2025-08-15T00:04:58.7716379Z ) 2025-08-15T00:04:58.7717031Z 2025-08-15T00:04:58.7717302Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:04:58.7725118Z 2025-08-15T00:04:58.7725549Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:04:58.7726524Z call :libtorch_check "c10_CompileTimeFunctionPointer_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_CompileTimeFunctionPointer_test.exe" 2025-08-15T00:04:58.7727418Z if errorlevel 1 goto fail 2025-08-15T00:04:58.7727667Z ) 2025-08-15T00:04:58.7736516Z 2025-08-15T00:04:58.7737049Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:04:58.7740908Z 2025-08-15T00:04:58.7741392Z (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-15T00:04:58.7744347Z 2025-08-15T00:04:58.7744891Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_CompileTimeFunctionPointer_test" == "verify_api_visibility" goto :eof 2025-08-15T00:04:58.7745523Z 2025-08-15T00:04:58.7746203Z (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-15T00:04:58.7747318Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_CompileTimeFunctionPointer_test.exe" 2025-08-15T00:04:58.7748271Z 2025-08-15T00:04:58.7748978Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_CompileTimeFunctionPointer_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:04:58.7749988Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_CompileTimeFunctionPointer_test.exe" 2025-08-15T00:04:58.7750746Z goto :eof 2025-08-15T00:04:58.7751003Z ) 2025-08-15T00:04:58.7751119Z 2025-08-15T00:04:58.7751551Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_CompileTimeFunctionPointer_test" 2025-08-15T00:05:04.9353805Z Found test times from artifacts 2025-08-15T00:05:05.0066270Z Found test times from artifacts 2025-08-15T00:05:05.0088322Z Running all tests 2025-08-15T00:05:05.0093615Z Running parallel tests on 3 processes 2025-08-15T00:05:05.0094106Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:05:05.0094416Z Serial tests (0): 2025-08-15T00:05:05.0094673Z Parallel tests (1): 2025-08-15T00:05:05.0094988Z cpp/c10_CompileTimeFunctionPointer_test 1/1 2025-08-15T00:05:05.0095363Z Name: excluded (est. time: 0.0min) 2025-08-15T00:05:05.0095667Z Serial tests (0): 2025-08-15T00:05:05.0095906Z Parallel tests (0): 2025-08-15T00:05:05.0097537Z Running cpp/c10_CompileTimeFunctionPointer_test 1/1 ... [2025-08-15 00:05:05.004280] 2025-08-15T00:05:05.0098031Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:05:05.0107801Z 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-7d22bac7d024c996.xml', '-x', '--reruns=2'] ... [2025-08-15 00:05:05.004280] 2025-08-15T00:05:05.0109900Z 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-15T00:05:06.5165804Z 2025-08-15T00:05:06.5166805Z 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_56a543a60519970d_.log 2025-08-15T00:05:06.5167593Z 2025-08-15T00:05:10.9717290Z Running cpp/c10_CompileTimeFunctionPointer_test 1/1 ... [2025-08-15 00:05:10.970188] 2025-08-15T00:05:10.9717808Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:05:10.9726699Z 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-a7a0d7ab11b09a4a.xml', '-x', '--reruns=2'] ... [2025-08-15 00:05:10.970188] 2025-08-15T00:05:12.5206802Z 2025-08-15T00:05:12.5207844Z 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_fbf89e1fc7975b55_.log 2025-08-15T00:05:12.5208644Z 2025-08-15T00:05:13.3813933Z Running test batch 'tests to run' cost 8.37 seconds 2025-08-15T00:05:13.3814466Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:05:13.3814936Z Uploading artifacts took 0.00 seconds 2025-08-15T00:05:14.1019455Z 2025-08-15T00:05:14.1019998Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:05:14.1020524Z echo "c10_CompileTimeFunctionPointer_test" failed with exit code 0 2025-08-15T00:05:14.1020896Z goto fail 2025-08-15T00:05:14.1021074Z ) 2025-08-15T00:05:14.1022951Z 2025-08-15T00:05:14.1023366Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:05:14.1023897Z echo "c10_CompileTimeFunctionPointer_test" failed with exit code 0 2025-08-15T00:05:14.1024290Z goto fail 2025-08-15T00:05:14.1024473Z ) 2025-08-15T00:05:14.1024567Z 2025-08-15T00:05:14.1024720Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:05:14.1030913Z 2025-08-15T00:05:14.1031151Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:05:14.1031833Z 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-15T00:05:14.1032624Z if errorlevel 1 goto fail 2025-08-15T00:05:14.1032862Z ) 2025-08-15T00:05:14.1041806Z 2025-08-15T00:05:14.1042159Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:05:14.1046081Z 2025-08-15T00:05:14.1046700Z (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-15T00:05:14.1049063Z 2025-08-15T00:05:14.1049580Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_complex_math_test" == "verify_api_visibility" goto :eof 2025-08-15T00:05:14.1050936Z 2025-08-15T00:05:14.1051541Z (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-15T00:05:14.1052486Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_complex_math_test.exe" 2025-08-15T00:05:14.1053408Z 2025-08-15T00:05:14.1053837Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_complex_math_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:05:14.1054574Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_complex_math_test.exe" 2025-08-15T00:05:14.1055066Z goto :eof 2025-08-15T00:05:14.1055231Z ) 2025-08-15T00:05:14.1055330Z 2025-08-15T00:05:14.1055780Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_complex_math_test" 2025-08-15T00:05:20.3533206Z Found test times from artifacts 2025-08-15T00:05:20.4211560Z Found test times from artifacts 2025-08-15T00:05:20.4234311Z Running all tests 2025-08-15T00:05:20.4240805Z Running parallel tests on 3 processes 2025-08-15T00:05:20.4241402Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:05:20.4241915Z Serial tests (0): 2025-08-15T00:05:20.4242300Z Parallel tests (1): 2025-08-15T00:05:20.4242744Z cpp/c10_complex_math_test 1/1 2025-08-15T00:05:20.4243235Z Name: excluded (est. time: 0.0min) 2025-08-15T00:05:20.4243707Z Serial tests (0): 2025-08-15T00:05:20.4244072Z Parallel tests (0): 2025-08-15T00:05:20.4244809Z Running cpp/c10_complex_math_test 1/1 ... [2025-08-15 00:05:20.424359] 2025-08-15T00:05:20.4245287Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:05:20.4255763Z 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-216511e334d28ef4.xml', '-x', '--reruns=2'] ... [2025-08-15 00:05:20.425383] 2025-08-15T00:05:20.4274373Z 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-15T00:05:21.9524196Z 2025-08-15T00:05:21.9525136Z 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_8238305920b09200_.log 2025-08-15T00:05:21.9525808Z 2025-08-15T00:05:26.4593911Z Running cpp/c10_complex_math_test 1/1 ... [2025-08-15 00:05:26.459139] 2025-08-15T00:05:26.4594349Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:05:26.4603364Z 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-95275d74e0ac3fac.xml', '-x', '--reruns=2'] ... [2025-08-15 00:05:26.459762] 2025-08-15T00:05:28.0378527Z 2025-08-15T00:05:28.0379398Z 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_b7e7861c3e49b283_.log 2025-08-15T00:05:28.0380453Z 2025-08-15T00:05:28.9095039Z Running test batch 'tests to run' cost 8.47 seconds 2025-08-15T00:05:28.9101420Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:05:28.9101888Z Uploading artifacts took 0.00 seconds 2025-08-15T00:05:29.6437870Z 2025-08-15T00:05:29.6438683Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:05:29.6439148Z echo "c10_complex_math_test" failed with exit code 0 2025-08-15T00:05:29.6439479Z goto fail 2025-08-15T00:05:29.6439648Z ) 2025-08-15T00:05:29.6439776Z 2025-08-15T00:05:29.6439966Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:05:29.6440403Z echo "c10_complex_math_test" failed with exit code 0 2025-08-15T00:05:29.6440717Z goto fail 2025-08-15T00:05:29.6440893Z ) 2025-08-15T00:05:29.6440987Z 2025-08-15T00:05:29.6441135Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:05:29.6447632Z 2025-08-15T00:05:29.6447904Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:05:29.6448567Z call :libtorch_check "c10_complex_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_complex_test.exe" 2025-08-15T00:05:29.6449267Z if errorlevel 1 goto fail 2025-08-15T00:05:29.6449537Z ) 2025-08-15T00:05:29.6458367Z 2025-08-15T00:05:29.6458729Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:05:29.6462531Z 2025-08-15T00:05:29.6463152Z (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-15T00:05:29.6465597Z 2025-08-15T00:05:29.6466412Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_complex_test" == "verify_api_visibility" goto :eof 2025-08-15T00:05:29.6467476Z 2025-08-15T00:05:29.6468085Z (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-15T00:05:29.6468981Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_complex_test.exe" 2025-08-15T00:05:29.6469917Z 2025-08-15T00:05:29.6470302Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_complex_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:05:29.6471004Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_complex_test.exe" 2025-08-15T00:05:29.6471483Z goto :eof 2025-08-15T00:05:29.6471667Z ) 2025-08-15T00:05:29.6471759Z 2025-08-15T00:05:29.6472115Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_complex_test" 2025-08-15T00:05:35.9023154Z Found test times from artifacts 2025-08-15T00:05:35.9821402Z Found test times from artifacts 2025-08-15T00:05:35.9845444Z Running all tests 2025-08-15T00:05:35.9852151Z Running parallel tests on 3 processes 2025-08-15T00:05:35.9852482Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:05:35.9852764Z Serial tests (0): 2025-08-15T00:05:35.9852993Z Parallel tests (1): 2025-08-15T00:05:35.9853231Z cpp/c10_complex_test 1/1 2025-08-15T00:05:35.9853479Z Name: excluded (est. time: 0.0min) 2025-08-15T00:05:35.9853731Z Serial tests (0): 2025-08-15T00:05:35.9853934Z Parallel tests (0): 2025-08-15T00:05:35.9855953Z Running cpp/c10_complex_test 1/1 ... [2025-08-15 00:05:35.984620] 2025-08-15T00:05:35.9856338Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:05:35.9865855Z 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-8d3057a3b64b7810.xml', '-x', '--reruns=2'] ... [2025-08-15 00:05:35.984620] 2025-08-15T00:05:35.9867508Z 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-15T00:05:37.5018463Z 2025-08-15T00:05:37.5020024Z 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_06f393b6f894e6bb_.log 2025-08-15T00:05:37.5020617Z 2025-08-15T00:05:42.0207138Z Running cpp/c10_complex_test 1/1 ... [2025-08-15 00:05:42.019895] 2025-08-15T00:05:42.0207557Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:05:42.0216948Z 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-415e50d1e5f62142.xml', '-x', '--reruns=2'] ... [2025-08-15 00:05:42.021027] 2025-08-15T00:05:43.5820297Z 2025-08-15T00:05:43.5821361Z 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_ac5962dfd3196511_.log 2025-08-15T00:05:43.5821978Z 2025-08-15T00:05:44.4773032Z Running test batch 'tests to run' cost 8.49 seconds 2025-08-15T00:05:44.4779742Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:05:44.4780213Z Uploading artifacts took 0.00 seconds 2025-08-15T00:05:45.1993720Z 2025-08-15T00:05:45.1994218Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:05:45.1994657Z echo "c10_complex_test" failed with exit code 0 2025-08-15T00:05:45.1994950Z goto fail 2025-08-15T00:05:45.1995127Z ) 2025-08-15T00:05:45.1995228Z 2025-08-15T00:05:45.1995563Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:05:45.1996066Z echo "c10_complex_test" failed with exit code 0 2025-08-15T00:05:45.1996430Z goto fail 2025-08-15T00:05:45.1996610Z ) 2025-08-15T00:05:45.1996709Z 2025-08-15T00:05:45.1996865Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:05:45.2004507Z 2025-08-15T00:05:45.2004950Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:05:45.2005699Z call :libtorch_check "c10_ConstexprCrc_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ConstexprCrc_test.exe" 2025-08-15T00:05:45.2006359Z if errorlevel 1 goto fail 2025-08-15T00:05:45.2006582Z ) 2025-08-15T00:05:45.2015310Z 2025-08-15T00:05:45.2015711Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:05:45.2019232Z 2025-08-15T00:05:45.2020164Z (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-15T00:05:45.2022309Z 2025-08-15T00:05:45.2022854Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_ConstexprCrc_test" == "verify_api_visibility" goto :eof 2025-08-15T00:05:45.2024034Z 2025-08-15T00:05:45.2024591Z (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-15T00:05:45.2025588Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ConstexprCrc_test.exe" 2025-08-15T00:05:45.2027421Z 2025-08-15T00:05:45.2027841Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_ConstexprCrc_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:05:45.2028569Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ConstexprCrc_test.exe" 2025-08-15T00:05:45.2029074Z goto :eof 2025-08-15T00:05:45.2029263Z ) 2025-08-15T00:05:45.2029442Z 2025-08-15T00:05:45.2030022Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_ConstexprCrc_test" 2025-08-15T00:05:51.2426101Z Found test times from artifacts 2025-08-15T00:05:51.3103320Z Found test times from artifacts 2025-08-15T00:05:51.3126510Z Running all tests 2025-08-15T00:05:51.3131512Z Running parallel tests on 3 processes 2025-08-15T00:05:51.3131958Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:05:51.3132227Z Serial tests (0): 2025-08-15T00:05:51.3132637Z Parallel tests (1): 2025-08-15T00:05:51.3132876Z cpp/c10_ConstexprCrc_test 1/1 2025-08-15T00:05:51.3133145Z Name: excluded (est. time: 0.0min) 2025-08-15T00:05:51.3133399Z Serial tests (0): 2025-08-15T00:05:51.3133599Z Parallel tests (0): 2025-08-15T00:05:51.3135436Z Running cpp/c10_ConstexprCrc_test 1/1 ... [2025-08-15 00:05:51.313228] 2025-08-15T00:05:51.3135828Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:05:51.3145600Z 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-e48d2e53120fba9f.xml', '-x', '--reruns=2'] ... [2025-08-15 00:05:51.314389] 2025-08-15T00:05:51.3147317Z 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-15T00:05:52.8492538Z 2025-08-15T00:05:52.8493443Z 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_b8c21b4365531083_.log 2025-08-15T00:05:52.8494268Z 2025-08-15T00:05:57.2405256Z Running cpp/c10_ConstexprCrc_test 1/1 ... [2025-08-15 00:05:57.226644] 2025-08-15T00:05:57.2405698Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:05:57.2415148Z 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-49f80010ef317812.xml', '-x', '--reruns=2'] ... [2025-08-15 00:05:57.226644] 2025-08-15T00:05:58.7499907Z 2025-08-15T00:05:58.7500772Z 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_fdabd08766ffd1ca_.log 2025-08-15T00:05:58.7501767Z 2025-08-15T00:05:59.5801494Z Running test batch 'tests to run' cost 8.26 seconds 2025-08-15T00:05:59.5807909Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:05:59.5808356Z Uploading artifacts took 0.00 seconds 2025-08-15T00:06:00.3418719Z 2025-08-15T00:06:00.3419340Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:06:00.3419791Z echo "c10_ConstexprCrc_test" failed with exit code 0 2025-08-15T00:06:00.3420119Z goto fail 2025-08-15T00:06:00.3420314Z ) 2025-08-15T00:06:00.3420476Z 2025-08-15T00:06:00.3420686Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:06:00.3421170Z echo "c10_ConstexprCrc_test" failed with exit code 0 2025-08-15T00:06:00.3421550Z goto fail 2025-08-15T00:06:00.3421810Z ) 2025-08-15T00:06:00.3422114Z 2025-08-15T00:06:00.3422337Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:06:00.3430817Z 2025-08-15T00:06:00.3431042Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:06:00.3431723Z call :libtorch_check "c10_cow_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_cow_test.exe" 2025-08-15T00:06:00.3432336Z if errorlevel 1 goto fail 2025-08-15T00:06:00.3432614Z ) 2025-08-15T00:06:00.3441625Z 2025-08-15T00:06:00.3442066Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:06:00.3445738Z 2025-08-15T00:06:00.3446301Z (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-15T00:06:00.3448881Z 2025-08-15T00:06:00.3449276Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_cow_test" == "verify_api_visibility" goto :eof 2025-08-15T00:06:00.3450203Z 2025-08-15T00:06:00.3450749Z (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-15T00:06:00.3451802Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_cow_test.exe" 2025-08-15T00:06:00.3452516Z 2025-08-15T00:06:00.3452902Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_cow_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:06:00.3453625Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_cow_test.exe" 2025-08-15T00:06:00.3454114Z goto :eof 2025-08-15T00:06:00.3454334Z ) 2025-08-15T00:06:00.3454446Z 2025-08-15T00:06:00.3454830Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_cow_test" 2025-08-15T00:06:06.7099851Z Found test times from artifacts 2025-08-15T00:06:06.7795474Z Found test times from artifacts 2025-08-15T00:06:06.7819096Z Running all tests 2025-08-15T00:06:06.7825958Z Running parallel tests on 3 processes 2025-08-15T00:06:06.7826378Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:06:06.7826757Z Serial tests (0): 2025-08-15T00:06:06.7827020Z Parallel tests (1): 2025-08-15T00:06:06.7827329Z cpp/c10_cow_test 1/1 2025-08-15T00:06:06.7827615Z Name: excluded (est. time: 0.0min) 2025-08-15T00:06:06.7827956Z Serial tests (0): 2025-08-15T00:06:06.7828231Z Parallel tests (0): 2025-08-15T00:06:06.7831410Z Running cpp/c10_cow_test 1/1 ... [2025-08-15 00:06:06.783053] 2025-08-15T00:06:06.7831874Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:06:06.7846379Z 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-d10c0f06f7f28d9d.xml', '-x', '--reruns=2'] ... [2025-08-15 00:06:06.784412] 2025-08-15T00:06:06.7848480Z 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-15T00:06:08.3131269Z 2025-08-15T00:06:08.3132312Z 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_e1b5475f3b31c9f3_.log 2025-08-15T00:06:08.3132908Z 2025-08-15T00:06:12.7607996Z Running cpp/c10_cow_test 1/1 ... [2025-08-15 00:06:12.760610] 2025-08-15T00:06:12.7608457Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:06:12.7618244Z 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-49bf2810046a8f38.xml', '-x', '--reruns=2'] ... [2025-08-15 00:06:12.761646] 2025-08-15T00:06:14.3206287Z 2025-08-15T00:06:14.3207376Z 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_734439b3454a716e_.log 2025-08-15T00:06:14.3208235Z 2025-08-15T00:06:15.1972205Z Running test batch 'tests to run' cost 8.41 seconds 2025-08-15T00:06:15.1978549Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:06:15.1979045Z Uploading artifacts took 0.00 seconds 2025-08-15T00:06:15.9872620Z 2025-08-15T00:06:15.9873343Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:06:15.9873838Z echo "c10_cow_test" failed with exit code 0 2025-08-15T00:06:15.9874153Z goto fail 2025-08-15T00:06:15.9874367Z ) 2025-08-15T00:06:15.9874858Z 2025-08-15T00:06:15.9875237Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:06:15.9875677Z echo "c10_cow_test" failed with exit code 0 2025-08-15T00:06:15.9876008Z goto fail 2025-08-15T00:06:15.9876199Z ) 2025-08-15T00:06:15.9876325Z 2025-08-15T00:06:15.9876492Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:06:15.9883091Z 2025-08-15T00:06:15.9883396Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:06:15.9884319Z call :libtorch_check "c10_DeadlockDetection_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_DeadlockDetection_test.exe" 2025-08-15T00:06:15.9885062Z if errorlevel 1 goto fail 2025-08-15T00:06:15.9885305Z ) 2025-08-15T00:06:15.9894059Z 2025-08-15T00:06:15.9894431Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:06:15.9898160Z 2025-08-15T00:06:15.9898731Z (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-15T00:06:15.9902895Z 2025-08-15T00:06:15.9903363Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_DeadlockDetection_test" == "verify_api_visibility" goto :eof 2025-08-15T00:06:15.9904235Z 2025-08-15T00:06:15.9904808Z (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-15T00:06:15.9905839Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_DeadlockDetection_test.exe" 2025-08-15T00:06:15.9907033Z 2025-08-15T00:06:15.9907557Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_DeadlockDetection_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:06:15.9908364Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_DeadlockDetection_test.exe" 2025-08-15T00:06:15.9908939Z goto :eof 2025-08-15T00:06:15.9909142Z ) 2025-08-15T00:06:15.9909382Z 2025-08-15T00:06:15.9909856Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_DeadlockDetection_test" 2025-08-15T00:06:22.2912791Z Found test times from artifacts 2025-08-15T00:06:22.3628020Z Found test times from artifacts 2025-08-15T00:06:22.3653122Z Running all tests 2025-08-15T00:06:22.3658867Z Running parallel tests on 3 processes 2025-08-15T00:06:22.3659266Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:06:22.3659615Z Serial tests (0): 2025-08-15T00:06:22.3659864Z Parallel tests (1): 2025-08-15T00:06:22.3660150Z cpp/c10_DeadlockDetection_test 1/1 2025-08-15T00:06:22.3660503Z Name: excluded (est. time: 0.0min) 2025-08-15T00:06:22.3660798Z Serial tests (0): 2025-08-15T00:06:22.3661080Z Parallel tests (0): 2025-08-15T00:06:22.3663065Z Running cpp/c10_DeadlockDetection_test 1/1 ... [2025-08-15 00:06:22.366095] 2025-08-15T00:06:22.3663568Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:06:22.3673801Z 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-4f97b03252e5d3c9.xml', '-x', '--reruns=2'] ... [2025-08-15 00:06:22.366705] 2025-08-15T00:06:22.3675558Z 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-15T00:06:23.8849043Z 2025-08-15T00:06:23.8850258Z 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_085fe4544e0a39f7_.log 2025-08-15T00:06:23.8850972Z 2025-08-15T00:06:28.3209460Z Running cpp/c10_DeadlockDetection_test 1/1 ... [2025-08-15 00:06:28.319847] 2025-08-15T00:06:28.3209956Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:06:28.3219059Z 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-e17918f706b74c58.xml', '-x', '--reruns=2'] ... [2025-08-15 00:06:28.319847] 2025-08-15T00:06:29.8658037Z 2025-08-15T00:06:29.8658997Z 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_d8c9e4993e9123ce_.log 2025-08-15T00:06:29.8659908Z 2025-08-15T00:06:30.7042903Z Running test batch 'tests to run' cost 8.32 seconds 2025-08-15T00:06:30.7049420Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:06:30.7049961Z Uploading artifacts took 0.00 seconds 2025-08-15T00:06:31.4230320Z 2025-08-15T00:06:31.4230963Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:06:31.4231523Z echo "c10_DeadlockDetection_test" failed with exit code 0 2025-08-15T00:06:31.4231911Z goto fail 2025-08-15T00:06:31.4232110Z ) 2025-08-15T00:06:31.4232235Z 2025-08-15T00:06:31.4232474Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:06:31.4232948Z echo "c10_DeadlockDetection_test" failed with exit code 0 2025-08-15T00:06:31.4233337Z goto fail 2025-08-15T00:06:31.4233585Z ) 2025-08-15T00:06:31.4233718Z 2025-08-15T00:06:31.4234036Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:06:31.4241030Z 2025-08-15T00:06:31.4241347Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:06:31.4242089Z call :libtorch_check "c10_DeviceGuard_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_DeviceGuard_test.exe" 2025-08-15T00:06:31.4242786Z if errorlevel 1 goto fail 2025-08-15T00:06:31.4243032Z ) 2025-08-15T00:06:31.4252614Z 2025-08-15T00:06:31.4253328Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:06:31.4256766Z 2025-08-15T00:06:31.4257402Z (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-15T00:06:31.4259808Z 2025-08-15T00:06:31.4260240Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_DeviceGuard_test" == "verify_api_visibility" goto :eof 2025-08-15T00:06:31.4261115Z 2025-08-15T00:06:31.4261671Z (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-15T00:06:31.4262748Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_DeviceGuard_test.exe" 2025-08-15T00:06:31.4263557Z 2025-08-15T00:06:31.4264036Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_DeviceGuard_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:06:31.4264807Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_DeviceGuard_test.exe" 2025-08-15T00:06:31.4265349Z goto :eof 2025-08-15T00:06:31.4265553Z ) 2025-08-15T00:06:31.4265694Z 2025-08-15T00:06:31.4266076Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_DeviceGuard_test" 2025-08-15T00:06:37.4631510Z Found test times from artifacts 2025-08-15T00:06:37.5304812Z Found test times from artifacts 2025-08-15T00:06:37.5326361Z Running all tests 2025-08-15T00:06:37.5331656Z Running parallel tests on 3 processes 2025-08-15T00:06:37.5332077Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:06:37.5332371Z Serial tests (0): 2025-08-15T00:06:37.5332638Z Parallel tests (1): 2025-08-15T00:06:37.5332897Z cpp/c10_DeviceGuard_test 1/1 2025-08-15T00:06:37.5333211Z Name: excluded (est. time: 0.0min) 2025-08-15T00:06:37.5333476Z Serial tests (0): 2025-08-15T00:06:37.5333745Z Parallel tests (0): 2025-08-15T00:06:37.5335496Z Running cpp/c10_DeviceGuard_test 1/1 ... [2025-08-15 00:06:37.528744] 2025-08-15T00:06:37.5335926Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:06:37.5345704Z 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-d727067f009e9d65.xml', '-x', '--reruns=2'] ... [2025-08-15 00:06:37.534336] 2025-08-15T00:06:37.5347442Z 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-15T00:06:39.0585471Z 2025-08-15T00:06:39.0586679Z 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_8ca262cb3c6b61b7_.log 2025-08-15T00:06:39.0587366Z 2025-08-15T00:06:43.5506827Z Running cpp/c10_DeviceGuard_test 1/1 ... [2025-08-15 00:06:43.550265] 2025-08-15T00:06:43.5507319Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:06:43.5516244Z 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-f569766c6e3c18e4.xml', '-x', '--reruns=2'] ... [2025-08-15 00:06:43.551442] 2025-08-15T00:06:45.0838401Z 2025-08-15T00:06:45.0839420Z 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_45a1213bf0a3d256_.log 2025-08-15T00:06:45.0840121Z 2025-08-15T00:06:45.9624805Z Running test batch 'tests to run' cost 8.43 seconds 2025-08-15T00:06:45.9631305Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:06:45.9631781Z Uploading artifacts took 0.00 seconds 2025-08-15T00:06:46.6711442Z 2025-08-15T00:06:46.6712272Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:06:46.6712755Z echo "c10_DeviceGuard_test" failed with exit code 0 2025-08-15T00:06:46.6713216Z goto fail 2025-08-15T00:06:46.6713492Z ) 2025-08-15T00:06:46.6713626Z 2025-08-15T00:06:46.6713825Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:06:46.6714301Z echo "c10_DeviceGuard_test" failed with exit code 0 2025-08-15T00:06:46.6714625Z goto fail 2025-08-15T00:06:46.6714845Z ) 2025-08-15T00:06:46.6714963Z 2025-08-15T00:06:46.6715129Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:06:46.6721582Z 2025-08-15T00:06:46.6722156Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:06:46.6722877Z call :libtorch_check "c10_Device_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Device_test.exe" 2025-08-15T00:06:46.6723541Z if errorlevel 1 goto fail 2025-08-15T00:06:46.6723819Z ) 2025-08-15T00:06:46.6732556Z 2025-08-15T00:06:46.6732944Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:06:46.6736624Z 2025-08-15T00:06:46.6737128Z (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-15T00:06:46.6739589Z 2025-08-15T00:06:46.6740009Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Device_test" == "verify_api_visibility" goto :eof 2025-08-15T00:06:46.6740825Z 2025-08-15T00:06:46.6741360Z (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-15T00:06:46.6742306Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Device_test.exe" 2025-08-15T00:06:46.6743741Z 2025-08-15T00:06:46.6744214Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Device_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:06:46.6744931Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Device_test.exe" 2025-08-15T00:06:46.6745462Z goto :eof 2025-08-15T00:06:46.6745657Z ) 2025-08-15T00:06:46.6745795Z 2025-08-15T00:06:46.6746145Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_Device_test" 2025-08-15T00:06:52.8020965Z Found test times from artifacts 2025-08-15T00:06:52.8696603Z Found test times from artifacts 2025-08-15T00:06:52.8719926Z Running all tests 2025-08-15T00:06:52.8725598Z Running parallel tests on 3 processes 2025-08-15T00:06:52.8726019Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:06:52.8726386Z Serial tests (0): 2025-08-15T00:06:52.8726612Z Parallel tests (1): 2025-08-15T00:06:52.8726928Z cpp/c10_Device_test 1/1 2025-08-15T00:06:52.8727198Z Name: excluded (est. time: 0.0min) 2025-08-15T00:06:52.8727487Z Serial tests (0): 2025-08-15T00:06:52.8727719Z Parallel tests (0): 2025-08-15T00:06:52.8729618Z Running cpp/c10_Device_test 1/1 ... [2025-08-15 00:06:52.872662] 2025-08-15T00:06:52.8729996Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:06:52.8740026Z 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-b15d790358bcc87f.xml', '-x', '--reruns=2'] ... [2025-08-15 00:06:52.873264] 2025-08-15T00:06:52.8741765Z 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-15T00:06:54.3936937Z 2025-08-15T00:06:54.3937704Z 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_2e1cd8d6af245b2e_.log 2025-08-15T00:06:54.3938402Z 2025-08-15T00:06:58.8299144Z Running cpp/c10_Device_test 1/1 ... [2025-08-15 00:06:58.820388] 2025-08-15T00:06:58.8299724Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:06:58.8309372Z 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-3db2d3cf11bdfe3c.xml', '-x', '--reruns=2'] ... [2025-08-15 00:06:58.820388] 2025-08-15T00:07:00.3702107Z 2025-08-15T00:07:00.3703170Z 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_fc1bd3f22ca6b47d_.log 2025-08-15T00:07:00.3703836Z 2025-08-15T00:07:01.2619031Z Running test batch 'tests to run' cost 8.39 seconds 2025-08-15T00:07:01.2625745Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:07:01.2626229Z Uploading artifacts took 0.00 seconds 2025-08-15T00:07:01.9734565Z 2025-08-15T00:07:01.9735234Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:07:01.9735762Z echo "c10_Device_test" failed with exit code 0 2025-08-15T00:07:01.9736082Z goto fail 2025-08-15T00:07:01.9736309Z ) 2025-08-15T00:07:01.9736432Z 2025-08-15T00:07:01.9736636Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:07:01.9737091Z echo "c10_Device_test" failed with exit code 0 2025-08-15T00:07:01.9737404Z goto fail 2025-08-15T00:07:01.9737624Z ) 2025-08-15T00:07:01.9737732Z 2025-08-15T00:07:01.9737896Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:07:01.9744573Z 2025-08-15T00:07:01.9744834Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:07:01.9745634Z call :libtorch_check "c10_DispatchKeySet_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_DispatchKeySet_test.exe" 2025-08-15T00:07:01.9746337Z if errorlevel 1 goto fail 2025-08-15T00:07:01.9746612Z ) 2025-08-15T00:07:01.9755456Z 2025-08-15T00:07:01.9755877Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:07:01.9760181Z 2025-08-15T00:07:01.9760697Z (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-15T00:07:01.9774407Z 2025-08-15T00:07:01.9775199Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_DispatchKeySet_test" == "verify_api_visibility" goto :eof 2025-08-15T00:07:01.9775685Z 2025-08-15T00:07:01.9776253Z (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-15T00:07:01.9777536Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_DispatchKeySet_test.exe" 2025-08-15T00:07:01.9778028Z 2025-08-15T00:07:01.9778376Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_DispatchKeySet_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:07:01.9780569Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_DispatchKeySet_test.exe" 2025-08-15T00:07:01.9781098Z goto :eof 2025-08-15T00:07:01.9781330Z ) 2025-08-15T00:07:01.9781441Z 2025-08-15T00:07:01.9781830Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_DispatchKeySet_test" 2025-08-15T00:07:08.0589472Z Found test times from artifacts 2025-08-15T00:07:08.1267806Z Found test times from artifacts 2025-08-15T00:07:08.1290068Z Running all tests 2025-08-15T00:07:08.1296092Z Running parallel tests on 3 processes 2025-08-15T00:07:08.1296568Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:07:08.1296876Z Serial tests (0): 2025-08-15T00:07:08.1297194Z Parallel tests (1): 2025-08-15T00:07:08.1297493Z cpp/c10_DispatchKeySet_test 1/1 2025-08-15T00:07:08.1297792Z Name: excluded (est. time: 0.0min) 2025-08-15T00:07:08.1298101Z Serial tests (0): 2025-08-15T00:07:08.1298338Z Parallel tests (0): 2025-08-15T00:07:08.1299934Z Running cpp/c10_DispatchKeySet_test 1/1 ... [2025-08-15 00:07:08.129699] 2025-08-15T00:07:08.1300378Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:07:08.1310092Z 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-38a768ca8b194818.xml', '-x', '--reruns=2'] ... [2025-08-15 00:07:08.130303] 2025-08-15T00:07:08.1311982Z 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-15T00:07:09.6586825Z 2025-08-15T00:07:09.6588020Z 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_d77ae72e49b49d96_.log 2025-08-15T00:07:09.6588738Z 2025-08-15T00:07:14.0804863Z Running cpp/c10_DispatchKeySet_test 1/1 ... [2025-08-15 00:07:14.066408] 2025-08-15T00:07:14.0805340Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:07:14.0814268Z 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-168feb81fd4998c0.xml', '-x', '--reruns=2'] ... [2025-08-15 00:07:14.066408] 2025-08-15T00:07:15.6651549Z 2025-08-15T00:07:15.6652643Z 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_8b9dd3da79422d7c_.log 2025-08-15T00:07:15.6653526Z 2025-08-15T00:07:16.5652934Z Running test batch 'tests to run' cost 8.44 seconds 2025-08-15T00:07:16.5659174Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:07:16.5659676Z Uploading artifacts took 0.00 seconds 2025-08-15T00:07:17.2763654Z 2025-08-15T00:07:17.2765558Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:07:17.2766087Z echo "c10_DispatchKeySet_test" failed with exit code 0 2025-08-15T00:07:17.2766443Z goto fail 2025-08-15T00:07:17.2766673Z ) 2025-08-15T00:07:17.2766781Z 2025-08-15T00:07:17.2766988Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:07:17.2767471Z echo "c10_DispatchKeySet_test" failed with exit code 0 2025-08-15T00:07:17.2767998Z goto fail 2025-08-15T00:07:17.2768198Z ) 2025-08-15T00:07:17.2768308Z 2025-08-15T00:07:17.2768495Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:07:17.2773586Z 2025-08-15T00:07:17.2774098Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:07:17.2774856Z call :libtorch_check "c10_Enumerate_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Enumerate_test.exe" 2025-08-15T00:07:17.2775542Z if errorlevel 1 goto fail 2025-08-15T00:07:17.2775798Z ) 2025-08-15T00:07:17.2784784Z 2025-08-15T00:07:17.2785251Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:07:17.2788868Z 2025-08-15T00:07:17.2789445Z (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-15T00:07:17.2797615Z 2025-08-15T00:07:17.2798173Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Enumerate_test" == "verify_api_visibility" goto :eof 2025-08-15T00:07:17.2798608Z 2025-08-15T00:07:17.2799168Z (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-15T00:07:17.2800150Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Enumerate_test.exe" 2025-08-15T00:07:17.2800576Z 2025-08-15T00:07:17.2800994Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Enumerate_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:07:17.2801786Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Enumerate_test.exe" 2025-08-15T00:07:17.2802362Z goto :eof 2025-08-15T00:07:17.2802545Z ) 2025-08-15T00:07:17.2802655Z 2025-08-15T00:07:17.2803015Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_Enumerate_test" 2025-08-15T00:07:23.4071345Z Found test times from artifacts 2025-08-15T00:07:23.4755982Z Found test times from artifacts 2025-08-15T00:07:23.4778172Z Running all tests 2025-08-15T00:07:23.4783368Z Running parallel tests on 3 processes 2025-08-15T00:07:23.4783768Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:07:23.4784051Z Serial tests (0): 2025-08-15T00:07:23.4784296Z Parallel tests (1): 2025-08-15T00:07:23.4784527Z cpp/c10_Enumerate_test 1/1 2025-08-15T00:07:23.4784801Z Name: excluded (est. time: 0.0min) 2025-08-15T00:07:23.4785053Z Serial tests (0): 2025-08-15T00:07:23.4785293Z Parallel tests (0): 2025-08-15T00:07:23.4787176Z Running cpp/c10_Enumerate_test 1/1 ... [2025-08-15 00:07:23.475616] 2025-08-15T00:07:23.4787571Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:07:23.4796943Z 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-fbc19ab3123bebfb.xml', '-x', '--reruns=2'] ... [2025-08-15 00:07:23.475616] 2025-08-15T00:07:23.4798634Z 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-15T00:07:24.9869860Z 2025-08-15T00:07:24.9870841Z 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_b61637aad21003cf_.log 2025-08-15T00:07:24.9871495Z 2025-08-15T00:07:29.3895327Z Running cpp/c10_Enumerate_test 1/1 ... [2025-08-15 00:07:29.388985] 2025-08-15T00:07:29.3895816Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:07:29.3905306Z 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-de9ab69f9b0b9760.xml', '-x', '--reruns=2'] ... [2025-08-15 00:07:29.390182] 2025-08-15T00:07:30.9673360Z 2025-08-15T00:07:30.9674284Z 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_f109e402720fb9a0_.log 2025-08-15T00:07:30.9674905Z 2025-08-15T00:07:31.8278957Z Running test batch 'tests to run' cost 8.35 seconds 2025-08-15T00:07:31.8285152Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:07:31.8285630Z Uploading artifacts took 0.00 seconds 2025-08-15T00:07:32.5422752Z 2025-08-15T00:07:32.5423554Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:07:32.5424043Z echo "c10_Enumerate_test" failed with exit code 0 2025-08-15T00:07:32.5424392Z goto fail 2025-08-15T00:07:32.5424572Z ) 2025-08-15T00:07:32.5424699Z 2025-08-15T00:07:32.5424891Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:07:32.5425335Z echo "c10_Enumerate_test" failed with exit code 0 2025-08-15T00:07:32.5425646Z goto fail 2025-08-15T00:07:32.5425845Z ) 2025-08-15T00:07:32.5425948Z 2025-08-15T00:07:32.5426111Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:07:32.5432723Z 2025-08-15T00:07:32.5432973Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:07:32.5433628Z call :libtorch_check "c10_error_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_error_test.exe" 2025-08-15T00:07:32.5434230Z if errorlevel 1 goto fail 2025-08-15T00:07:32.5434617Z ) 2025-08-15T00:07:32.5443408Z 2025-08-15T00:07:32.5443869Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:07:32.5447524Z 2025-08-15T00:07:32.5448256Z (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-15T00:07:32.5450429Z 2025-08-15T00:07:32.5450919Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_error_test" == "verify_api_visibility" goto :eof 2025-08-15T00:07:32.5451760Z 2025-08-15T00:07:32.5452274Z (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-15T00:07:32.5453176Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_error_test.exe" 2025-08-15T00:07:32.5453953Z 2025-08-15T00:07:32.5454362Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_error_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:07:32.5455057Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_error_test.exe" 2025-08-15T00:07:32.5455552Z goto :eof 2025-08-15T00:07:32.5455730Z ) 2025-08-15T00:07:32.5455842Z 2025-08-15T00:07:32.5456325Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_error_test" 2025-08-15T00:07:38.6185547Z Found test times from artifacts 2025-08-15T00:07:38.6946748Z Found test times from artifacts 2025-08-15T00:07:38.6975490Z Running all tests 2025-08-15T00:07:38.6982282Z Running parallel tests on 3 processes 2025-08-15T00:07:38.6982712Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:07:38.6983011Z Serial tests (0): 2025-08-15T00:07:38.6983258Z Parallel tests (1): 2025-08-15T00:07:38.6983486Z cpp/c10_error_test 1/1 2025-08-15T00:07:38.6983757Z Name: excluded (est. time: 0.0min) 2025-08-15T00:07:38.6984029Z Serial tests (0): 2025-08-15T00:07:38.6984236Z Parallel tests (0): 2025-08-15T00:07:38.6987564Z Running cpp/c10_error_test 1/1 ... [2025-08-15 00:07:38.698603] 2025-08-15T00:07:38.6987947Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:07:38.7000290Z 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-f6ab9db7d033ce45.xml', '-x', '--reruns=2'] ... [2025-08-15 00:07:38.699787] 2025-08-15T00:07:38.7002263Z 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-15T00:07:40.2367530Z 2025-08-15T00:07:40.2368333Z 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_632b26ee943650eb_.log 2025-08-15T00:07:40.2369307Z 2025-08-15T00:07:44.7017987Z Running cpp/c10_error_test 1/1 ... [2025-08-15 00:07:44.693923] 2025-08-15T00:07:44.7018418Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:07:44.7027186Z 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-abc71d0bccc3d519.xml', '-x', '--reruns=2'] ... [2025-08-15 00:07:44.693923] 2025-08-15T00:07:46.2331800Z 2025-08-15T00:07:46.2332750Z 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_909ab8a714027ee5_.log 2025-08-15T00:07:46.2333628Z 2025-08-15T00:07:47.0653981Z Running test batch 'tests to run' cost 8.37 seconds 2025-08-15T00:07:47.0660493Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:07:47.0660951Z Uploading artifacts took 0.00 seconds 2025-08-15T00:07:47.7853808Z 2025-08-15T00:07:47.7854585Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:07:47.7855116Z echo "c10_error_test" failed with exit code 0 2025-08-15T00:07:47.7855499Z goto fail 2025-08-15T00:07:47.7855701Z ) 2025-08-15T00:07:47.7855801Z 2025-08-15T00:07:47.7856007Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:07:47.7856417Z echo "c10_error_test" failed with exit code 0 2025-08-15T00:07:47.7856717Z goto fail 2025-08-15T00:07:47.7856896Z ) 2025-08-15T00:07:47.7857009Z 2025-08-15T00:07:47.7857568Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:07:47.7864417Z 2025-08-15T00:07:47.7864719Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:07:47.7865391Z call :libtorch_check "c10_exception_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_exception_test.exe" 2025-08-15T00:07:47.7866032Z if errorlevel 1 goto fail 2025-08-15T00:07:47.7866277Z ) 2025-08-15T00:07:47.7875707Z 2025-08-15T00:07:47.7876289Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:07:47.7879650Z 2025-08-15T00:07:47.7880116Z (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-15T00:07:47.7882548Z 2025-08-15T00:07:47.7882966Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_exception_test" == "verify_api_visibility" goto :eof 2025-08-15T00:07:47.7884031Z 2025-08-15T00:07:47.7884693Z (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-15T00:07:47.7885651Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_exception_test.exe" 2025-08-15T00:07:47.7886808Z 2025-08-15T00:07:47.7887295Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_exception_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:07:47.7888067Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_exception_test.exe" 2025-08-15T00:07:47.7888564Z goto :eof 2025-08-15T00:07:47.7888773Z ) 2025-08-15T00:07:47.7888875Z 2025-08-15T00:07:47.7889333Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_exception_test" 2025-08-15T00:07:53.9411927Z Found test times from artifacts 2025-08-15T00:07:54.0093929Z Found test times from artifacts 2025-08-15T00:07:54.0115954Z Running all tests 2025-08-15T00:07:54.0121418Z Running parallel tests on 3 processes 2025-08-15T00:07:54.0121832Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:07:54.0122126Z Serial tests (0): 2025-08-15T00:07:54.0122339Z Parallel tests (1): 2025-08-15T00:07:54.0122584Z cpp/c10_exception_test 1/1 2025-08-15T00:07:54.0122843Z Name: excluded (est. time: 0.0min) 2025-08-15T00:07:54.0123108Z Serial tests (0): 2025-08-15T00:07:54.0123321Z Parallel tests (0): 2025-08-15T00:07:54.0125234Z Running cpp/c10_exception_test 1/1 ... [2025-08-15 00:07:54.011290] 2025-08-15T00:07:54.0125651Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:07:54.0134924Z 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-147c4c2a98865fea.xml', '-x', '--reruns=2'] ... [2025-08-15 00:07:54.011290] 2025-08-15T00:07:54.0136704Z 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-15T00:07:55.5777807Z 2025-08-15T00:07:55.5778737Z 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_21213c16981f016e_.log 2025-08-15T00:07:55.5779388Z 2025-08-15T00:08:00.0025822Z Running cpp/c10_exception_test 1/1 ... [2025-08-15 00:08:00.001918] 2025-08-15T00:08:00.0026284Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:08:00.0036413Z 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-9c031917626e1f49.xml', '-x', '--reruns=2'] ... [2025-08-15 00:08:00.001918] 2025-08-15T00:08:01.5634901Z 2025-08-15T00:08:01.5635997Z 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_b9f3072d3e65211c_.log 2025-08-15T00:08:01.5636628Z 2025-08-15T00:08:02.4304028Z Running test batch 'tests to run' cost 8.42 seconds 2025-08-15T00:08:02.4310385Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:08:02.4310860Z Uploading artifacts took 0.00 seconds 2025-08-15T00:08:03.1611353Z 2025-08-15T00:08:03.1612165Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:08:03.1612642Z echo "c10_exception_test" failed with exit code 0 2025-08-15T00:08:03.1612974Z goto fail 2025-08-15T00:08:03.1613158Z ) 2025-08-15T00:08:03.1613288Z 2025-08-15T00:08:03.1613485Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:08:03.1613900Z echo "c10_exception_test" failed with exit code 0 2025-08-15T00:08:03.1614216Z goto fail 2025-08-15T00:08:03.1614413Z ) 2025-08-15T00:08:03.1614509Z 2025-08-15T00:08:03.1614668Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:08:03.1621578Z 2025-08-15T00:08:03.1622046Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:08:03.1622742Z call :libtorch_check "c10_flags_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_flags_test.exe" 2025-08-15T00:08:03.1623408Z if errorlevel 1 goto fail 2025-08-15T00:08:03.1623678Z ) 2025-08-15T00:08:03.1633434Z 2025-08-15T00:08:03.1633787Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:08:03.1637769Z 2025-08-15T00:08:03.1638271Z (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-15T00:08:03.1640793Z 2025-08-15T00:08:03.1641501Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_flags_test" == "verify_api_visibility" goto :eof 2025-08-15T00:08:03.1642302Z 2025-08-15T00:08:03.1642857Z (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-15T00:08:03.1643829Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_flags_test.exe" 2025-08-15T00:08:03.1645324Z 2025-08-15T00:08:03.1645743Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_flags_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:08:03.1646454Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_flags_test.exe" 2025-08-15T00:08:03.1646936Z goto :eof 2025-08-15T00:08:03.1647117Z ) 2025-08-15T00:08:03.1647711Z 2025-08-15T00:08:03.1648162Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_flags_test" 2025-08-15T00:08:09.3092507Z Found test times from artifacts 2025-08-15T00:08:09.3809555Z Found test times from artifacts 2025-08-15T00:08:09.3831757Z Running all tests 2025-08-15T00:08:09.3837805Z Running parallel tests on 3 processes 2025-08-15T00:08:09.3838141Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:08:09.3838416Z Serial tests (0): 2025-08-15T00:08:09.3838619Z Parallel tests (1): 2025-08-15T00:08:09.3838852Z cpp/c10_flags_test 1/1 2025-08-15T00:08:09.3839079Z Name: excluded (est. time: 0.0min) 2025-08-15T00:08:09.3839340Z Serial tests (0): 2025-08-15T00:08:09.3839546Z Parallel tests (0): 2025-08-15T00:08:09.3841919Z Running cpp/c10_flags_test 1/1 ... [2025-08-15 00:08:09.368472] 2025-08-15T00:08:09.3842391Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:08:09.3851489Z 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-a43af461c2e5b51d.xml', '-x', '--reruns=2'] ... [2025-08-15 00:08:09.384749] 2025-08-15T00:08:09.3853206Z 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-15T00:08:10.9068207Z 2025-08-15T00:08:10.9069275Z 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_27202fbad77eacb7_.log 2025-08-15T00:08:10.9069867Z 2025-08-15T00:08:15.2918911Z Running cpp/c10_flags_test 1/1 ... [2025-08-15 00:08:15.285431] 2025-08-15T00:08:15.2919354Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:08:15.2928452Z 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-b521e775ac0a5390.xml', '-x', '--reruns=2'] ... [2025-08-15 00:08:15.285431] 2025-08-15T00:08:16.8234758Z 2025-08-15T00:08:16.8235804Z 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_9f2b770ce94ee4ed_.log 2025-08-15T00:08:16.8236396Z 2025-08-15T00:08:17.6439466Z Running test batch 'tests to run' cost 8.28 seconds 2025-08-15T00:08:17.6445828Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:08:17.6446339Z Uploading artifacts took 0.00 seconds 2025-08-15T00:08:18.3499974Z 2025-08-15T00:08:18.3500774Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:08:18.3501218Z echo "c10_flags_test" failed with exit code 0 2025-08-15T00:08:18.3501520Z goto fail 2025-08-15T00:08:18.3501706Z ) 2025-08-15T00:08:18.3501824Z 2025-08-15T00:08:18.3502013Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:08:18.3502418Z echo "c10_flags_test" failed with exit code 0 2025-08-15T00:08:18.3502704Z goto fail 2025-08-15T00:08:18.3502872Z ) 2025-08-15T00:08:18.3503131Z 2025-08-15T00:08:18.3503549Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:08:18.3510148Z 2025-08-15T00:08:18.3510390Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:08:18.3511157Z 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-15T00:08:18.3511808Z if errorlevel 1 goto fail 2025-08-15T00:08:18.3512026Z ) 2025-08-15T00:08:18.3521252Z 2025-08-15T00:08:18.3521640Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:08:18.3525526Z 2025-08-15T00:08:18.3525984Z (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-15T00:08:18.3528453Z 2025-08-15T00:08:18.3528998Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_generic_math_test" == "verify_api_visibility" goto :eof 2025-08-15T00:08:18.3529897Z 2025-08-15T00:08:18.3530435Z (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-15T00:08:18.3531372Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_generic_math_test.exe" 2025-08-15T00:08:18.3532294Z 2025-08-15T00:08:18.3532935Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_generic_math_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:08:18.3533836Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_generic_math_test.exe" 2025-08-15T00:08:18.3534451Z goto :eof 2025-08-15T00:08:18.3534732Z ) 2025-08-15T00:08:18.3534828Z 2025-08-15T00:08:18.3535206Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_generic_math_test" 2025-08-15T00:08:24.5804993Z Found test times from artifacts 2025-08-15T00:08:24.6483743Z Found test times from artifacts 2025-08-15T00:08:24.6507004Z Running all tests 2025-08-15T00:08:24.6512800Z Running parallel tests on 3 processes 2025-08-15T00:08:24.6513236Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:08:24.6513503Z Serial tests (0): 2025-08-15T00:08:24.6513721Z Parallel tests (1): 2025-08-15T00:08:24.6513938Z cpp/c10_generic_math_test 1/1 2025-08-15T00:08:24.6514244Z Name: excluded (est. time: 0.0min) 2025-08-15T00:08:24.6514505Z Serial tests (0): 2025-08-15T00:08:24.6514746Z Parallel tests (0): 2025-08-15T00:08:24.6516811Z Running cpp/c10_generic_math_test 1/1 ... [2025-08-15 00:08:24.651461] 2025-08-15T00:08:24.6517211Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:08:24.6527032Z 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-0cf98b698a9c625c.xml', '-x', '--reruns=2'] ... [2025-08-15 00:08:24.652032] 2025-08-15T00:08:24.6528714Z 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-15T00:08:26.1666140Z 2025-08-15T00:08:26.1667205Z 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_0f9696faac1fb1a8_.log 2025-08-15T00:08:26.1667853Z 2025-08-15T00:08:30.5789153Z Running cpp/c10_generic_math_test 1/1 ... [2025-08-15 00:08:30.578501] 2025-08-15T00:08:30.5789592Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:08:30.5801177Z 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-8b55a36dd7ed7d0f.xml', '-x', '--reruns=2'] ... [2025-08-15 00:08:30.579689] 2025-08-15T00:08:32.1121235Z 2025-08-15T00:08:32.1122249Z 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_b5506f86da9f9e44_.log 2025-08-15T00:08:32.1122884Z 2025-08-15T00:08:32.9751645Z Running test batch 'tests to run' cost 8.32 seconds 2025-08-15T00:08:32.9758081Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:08:32.9758538Z Uploading artifacts took 0.00 seconds 2025-08-15T00:08:33.6805625Z 2025-08-15T00:08:33.6806348Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:08:33.6806821Z echo "c10_generic_math_test" failed with exit code 0 2025-08-15T00:08:33.6807150Z goto fail 2025-08-15T00:08:33.6807319Z ) 2025-08-15T00:08:33.6807450Z 2025-08-15T00:08:33.6807984Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:08:33.6808474Z echo "c10_generic_math_test" failed with exit code 0 2025-08-15T00:08:33.6808801Z goto fail 2025-08-15T00:08:33.6808994Z ) 2025-08-15T00:08:33.6809121Z 2025-08-15T00:08:33.6809325Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:08:33.6816198Z 2025-08-15T00:08:33.6816478Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:08:33.6817121Z call :libtorch_check "c10_Half_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Half_test.exe" 2025-08-15T00:08:33.6817793Z if errorlevel 1 goto fail 2025-08-15T00:08:33.6818078Z ) 2025-08-15T00:08:33.6827125Z 2025-08-15T00:08:33.6827557Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:08:33.6830939Z 2025-08-15T00:08:33.6831530Z (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-15T00:08:33.6834037Z 2025-08-15T00:08:33.6834602Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Half_test" == "verify_api_visibility" goto :eof 2025-08-15T00:08:33.6835771Z 2025-08-15T00:08:33.6836329Z (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-15T00:08:33.6837265Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Half_test.exe" 2025-08-15T00:08:33.6838695Z 2025-08-15T00:08:33.6839128Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Half_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:08:33.6839859Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Half_test.exe" 2025-08-15T00:08:33.6840380Z goto :eof 2025-08-15T00:08:33.6840580Z ) 2025-08-15T00:08:33.6840690Z 2025-08-15T00:08:33.6841074Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_Half_test" 2025-08-15T00:08:39.8374872Z Found test times from artifacts 2025-08-15T00:08:39.9059844Z Found test times from artifacts 2025-08-15T00:08:39.9082678Z Running all tests 2025-08-15T00:08:39.9088010Z Running parallel tests on 3 processes 2025-08-15T00:08:39.9088376Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:08:39.9088668Z Serial tests (0): 2025-08-15T00:08:39.9088934Z Parallel tests (1): 2025-08-15T00:08:39.9089205Z cpp/c10_Half_test 1/1 2025-08-15T00:08:39.9089475Z Name: excluded (est. time: 0.0min) 2025-08-15T00:08:39.9089772Z Serial tests (0): 2025-08-15T00:08:39.9089996Z Parallel tests (0): 2025-08-15T00:08:39.9091859Z Running cpp/c10_Half_test 1/1 ... [2025-08-15 00:08:39.908537] 2025-08-15T00:08:39.9092257Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:08:39.9102151Z 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-e4c4ce22b0469942.xml', '-x', '--reruns=2'] ... [2025-08-15 00:08:39.908537] 2025-08-15T00:08:39.9103988Z 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-15T00:08:41.4578852Z 2025-08-15T00:08:41.4580088Z 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_533a207dcc51d71b_.log 2025-08-15T00:08:41.4580811Z 2025-08-15T00:08:45.9069810Z Running cpp/c10_Half_test 1/1 ... [2025-08-15 00:08:45.906504] 2025-08-15T00:08:45.9070309Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:08:45.9079183Z 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-b987db5f5850a221.xml', '-x', '--reruns=2'] ... [2025-08-15 00:08:45.906504] 2025-08-15T00:08:47.4345812Z 2025-08-15T00:08:47.4346911Z 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_ba8ab1658ea43297_.log 2025-08-15T00:08:47.4347587Z 2025-08-15T00:08:48.3074363Z Running test batch 'tests to run' cost 8.4 seconds 2025-08-15T00:08:48.3080955Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:08:48.3081461Z Uploading artifacts took 0.00 seconds 2025-08-15T00:08:49.0180204Z 2025-08-15T00:08:49.0181031Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:08:49.0181537Z echo "c10_Half_test" failed with exit code 0 2025-08-15T00:08:49.0181956Z goto fail 2025-08-15T00:08:49.0182226Z ) 2025-08-15T00:08:49.0182349Z 2025-08-15T00:08:49.0182579Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:08:49.0183006Z echo "c10_Half_test" failed with exit code 0 2025-08-15T00:08:49.0183345Z goto fail 2025-08-15T00:08:49.0183540Z ) 2025-08-15T00:08:49.0183681Z 2025-08-15T00:08:49.0183846Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:08:49.0191080Z 2025-08-15T00:08:49.0191606Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:08:49.0192418Z call :libtorch_check "c10_InlineDeviceGuard_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_InlineDeviceGuard_test.exe" 2025-08-15T00:08:49.0193173Z if errorlevel 1 goto fail 2025-08-15T00:08:49.0193430Z ) 2025-08-15T00:08:49.0201497Z 2025-08-15T00:08:49.0201895Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:08:49.0205350Z 2025-08-15T00:08:49.0206091Z (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-15T00:08:49.0209280Z 2025-08-15T00:08:49.0209808Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_InlineDeviceGuard_test" == "verify_api_visibility" goto :eof 2025-08-15T00:08:49.0210293Z 2025-08-15T00:08:49.0210863Z (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-15T00:08:49.0211856Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_InlineDeviceGuard_test.exe" 2025-08-15T00:08:49.0212407Z 2025-08-15T00:08:49.0212921Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_InlineDeviceGuard_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:08:49.0213773Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_InlineDeviceGuard_test.exe" 2025-08-15T00:08:49.0214320Z goto :eof 2025-08-15T00:08:49.0214551Z ) 2025-08-15T00:08:49.0214660Z 2025-08-15T00:08:49.0215055Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_InlineDeviceGuard_test" 2025-08-15T00:08:55.1131739Z Found test times from artifacts 2025-08-15T00:08:55.1808959Z Found test times from artifacts 2025-08-15T00:08:55.1831379Z Running all tests 2025-08-15T00:08:55.1836693Z Running parallel tests on 3 processes 2025-08-15T00:08:55.1837114Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:08:55.1837410Z Serial tests (0): 2025-08-15T00:08:55.1837679Z Parallel tests (1): 2025-08-15T00:08:55.1837986Z cpp/c10_InlineDeviceGuard_test 1/1 2025-08-15T00:08:55.1838363Z Name: excluded (est. time: 0.0min) 2025-08-15T00:08:55.1838640Z Serial tests (0): 2025-08-15T00:08:55.1838918Z Parallel tests (0): 2025-08-15T00:08:55.1840755Z Running cpp/c10_InlineDeviceGuard_test 1/1 ... [2025-08-15 00:08:55.183814] 2025-08-15T00:08:55.1841216Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:08:55.1866791Z 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-3eaad07749521a22.xml', '-x', '--reruns=2'] ... [2025-08-15 00:08:55.186098] 2025-08-15T00:08:55.1868574Z 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-15T00:08:56.7060158Z 2025-08-15T00:08:56.7061347Z 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_1f98214071268ebb_.log 2025-08-15T00:08:56.7062075Z 2025-08-15T00:09:01.1582981Z Running cpp/c10_InlineDeviceGuard_test 1/1 ... [2025-08-15 00:09:01.152776] 2025-08-15T00:09:01.1583551Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:09:01.1591909Z 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-ac98ccf7540cfc96.xml', '-x', '--reruns=2'] ... [2025-08-15 00:09:01.152776] 2025-08-15T00:09:02.7073823Z 2025-08-15T00:09:02.7074882Z 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_3eafa144a74c4b1b_.log 2025-08-15T00:09:02.7075609Z 2025-08-15T00:09:03.6060822Z Running test batch 'tests to run' cost 8.42 seconds 2025-08-15T00:09:03.6061356Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:09:03.6061826Z Uploading artifacts took 0.00 seconds 2025-08-15T00:09:04.3153436Z 2025-08-15T00:09:04.3154149Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:09:04.3154641Z echo "c10_InlineDeviceGuard_test" failed with exit code 0 2025-08-15T00:09:04.3155013Z goto fail 2025-08-15T00:09:04.3155193Z ) 2025-08-15T00:09:04.3155312Z 2025-08-15T00:09:04.3155501Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:09:04.3155971Z echo "c10_InlineDeviceGuard_test" failed with exit code 0 2025-08-15T00:09:04.3156306Z goto fail 2025-08-15T00:09:04.3156495Z ) 2025-08-15T00:09:04.3156590Z 2025-08-15T00:09:04.3156745Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:09:04.3163721Z 2025-08-15T00:09:04.3163969Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:09:04.3164748Z call :libtorch_check "c10_InlineStreamGuard_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_InlineStreamGuard_test.exe" 2025-08-15T00:09:04.3165468Z if errorlevel 1 goto fail 2025-08-15T00:09:04.3165715Z ) 2025-08-15T00:09:04.3217245Z 2025-08-15T00:09:04.3218044Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:09:04.3218458Z 2025-08-15T00:09:04.3218905Z (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-15T00:09:04.3219584Z 2025-08-15T00:09:04.3219963Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_InlineStreamGuard_test" == "verify_api_visibility" goto :eof 2025-08-15T00:09:04.3220440Z 2025-08-15T00:09:04.3220963Z (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-15T00:09:04.3221940Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_InlineStreamGuard_test.exe" 2025-08-15T00:09:04.3222494Z 2025-08-15T00:09:04.3222890Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_InlineStreamGuard_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:09:04.3223694Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_InlineStreamGuard_test.exe" 2025-08-15T00:09:04.3224226Z goto :eof 2025-08-15T00:09:04.3224407Z ) 2025-08-15T00:09:04.3224508Z 2025-08-15T00:09:04.3224904Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_InlineStreamGuard_test" 2025-08-15T00:09:10.4111095Z Found test times from artifacts 2025-08-15T00:09:10.4793864Z Found test times from artifacts 2025-08-15T00:09:10.4816450Z Running all tests 2025-08-15T00:09:10.4822362Z Running parallel tests on 3 processes 2025-08-15T00:09:10.4822808Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:09:10.4823116Z Serial tests (0): 2025-08-15T00:09:10.4823342Z Parallel tests (1): 2025-08-15T00:09:10.4823734Z cpp/c10_InlineStreamGuard_test 1/1 2025-08-15T00:09:10.4824048Z Name: excluded (est. time: 0.0min) 2025-08-15T00:09:10.4824386Z Serial tests (0): 2025-08-15T00:09:10.4824679Z Parallel tests (0): 2025-08-15T00:09:10.4826165Z Running cpp/c10_InlineStreamGuard_test 1/1 ... [2025-08-15 00:09:10.480744] 2025-08-15T00:09:10.4826590Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:09:10.4837666Z 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-58ec4b5717973260.xml', '-x', '--reruns=2'] ... [2025-08-15 00:09:10.480744] 2025-08-15T00:09:10.4839488Z 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-15T00:09:12.0072409Z 2025-08-15T00:09:12.0073376Z 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_94561883fb0ef108_.log 2025-08-15T00:09:12.0074083Z 2025-08-15T00:09:16.4556472Z Running cpp/c10_InlineStreamGuard_test 1/1 ... [2025-08-15 00:09:16.448420] 2025-08-15T00:09:16.4556937Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:09:16.4565679Z 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-db6cdeb52641c66e.xml', '-x', '--reruns=2'] ... [2025-08-15 00:09:16.448420] 2025-08-15T00:09:18.0129211Z 2025-08-15T00:09:18.0130278Z 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_1fcc819a788ab1c1_.log 2025-08-15T00:09:18.0131086Z 2025-08-15T00:09:18.9311943Z Running test batch 'tests to run' cost 8.45 seconds 2025-08-15T00:09:18.9318361Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:09:18.9318831Z Uploading artifacts took 0.00 seconds 2025-08-15T00:09:19.6401535Z 2025-08-15T00:09:19.6402229Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:09:19.6402728Z echo "c10_InlineStreamGuard_test" failed with exit code 0 2025-08-15T00:09:19.6403094Z goto fail 2025-08-15T00:09:19.6403457Z ) 2025-08-15T00:09:19.6403574Z 2025-08-15T00:09:19.6403785Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:09:19.6404239Z echo "c10_InlineStreamGuard_test" failed with exit code 0 2025-08-15T00:09:19.6404581Z goto fail 2025-08-15T00:09:19.6404756Z ) 2025-08-15T00:09:19.6405525Z 2025-08-15T00:09:19.6405963Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:09:19.6412408Z 2025-08-15T00:09:19.6412768Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:09:19.6413559Z call :libtorch_check "c10_IntrusiveList_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_IntrusiveList_test.exe" 2025-08-15T00:09:19.6414242Z if errorlevel 1 goto fail 2025-08-15T00:09:19.6414467Z ) 2025-08-15T00:09:19.6424189Z 2025-08-15T00:09:19.6424572Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:09:19.6428281Z 2025-08-15T00:09:19.6428851Z (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-15T00:09:19.6431483Z 2025-08-15T00:09:19.6432010Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_IntrusiveList_test" == "verify_api_visibility" goto :eof 2025-08-15T00:09:19.6433216Z 2025-08-15T00:09:19.6434109Z (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-15T00:09:19.6436167Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_IntrusiveList_test.exe" 2025-08-15T00:09:19.6436681Z 2025-08-15T00:09:19.6437013Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_IntrusiveList_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:09:19.6437777Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_IntrusiveList_test.exe" 2025-08-15T00:09:19.6438290Z goto :eof 2025-08-15T00:09:19.6438470Z ) 2025-08-15T00:09:19.6438568Z 2025-08-15T00:09:19.6438951Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_IntrusiveList_test" 2025-08-15T00:09:25.7532907Z Found test times from artifacts 2025-08-15T00:09:25.8260980Z Found test times from artifacts 2025-08-15T00:09:25.8289152Z Running all tests 2025-08-15T00:09:25.8295837Z Running parallel tests on 3 processes 2025-08-15T00:09:25.8296209Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:09:25.8296513Z Serial tests (0): 2025-08-15T00:09:25.8296729Z Parallel tests (1): 2025-08-15T00:09:25.8297032Z cpp/c10_IntrusiveList_test 1/1 2025-08-15T00:09:25.8297309Z Name: excluded (est. time: 0.0min) 2025-08-15T00:09:25.8297615Z Serial tests (0): 2025-08-15T00:09:25.8297824Z Parallel tests (0): 2025-08-15T00:09:25.8301352Z Running cpp/c10_IntrusiveList_test 1/1 ... [2025-08-15 00:09:25.829741] 2025-08-15T00:09:25.8301791Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:09:25.8313824Z 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-541080c53cb51a6d.xml', '-x', '--reruns=2'] ... [2025-08-15 00:09:25.830926] 2025-08-15T00:09:25.8315730Z 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-15T00:09:27.3425716Z 2025-08-15T00:09:27.3426737Z 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_3145c9aa1990d3cf_.log 2025-08-15T00:09:27.3427408Z 2025-08-15T00:09:31.8165982Z Running cpp/c10_IntrusiveList_test 1/1 ... [2025-08-15 00:09:31.816128] 2025-08-15T00:09:31.8166444Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:09:31.8175498Z 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-0796986c67cfbf38.xml', '-x', '--reruns=2'] ... [2025-08-15 00:09:31.817319] 2025-08-15T00:09:33.3792201Z 2025-08-15T00:09:33.3793120Z 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_e603804f88a49b95_.log 2025-08-15T00:09:33.3793905Z 2025-08-15T00:09:34.2069439Z Running test batch 'tests to run' cost 8.37 seconds 2025-08-15T00:09:34.2075749Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:09:34.2076200Z Uploading artifacts took 0.00 seconds 2025-08-15T00:09:34.9333447Z 2025-08-15T00:09:34.9334264Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:09:34.9334737Z echo "c10_IntrusiveList_test" failed with exit code 0 2025-08-15T00:09:34.9335105Z goto fail 2025-08-15T00:09:34.9335294Z ) 2025-08-15T00:09:34.9335394Z 2025-08-15T00:09:34.9335584Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:09:34.9336024Z echo "c10_IntrusiveList_test" failed with exit code 0 2025-08-15T00:09:34.9336339Z goto fail 2025-08-15T00:09:34.9336518Z ) 2025-08-15T00:09:34.9336613Z 2025-08-15T00:09:34.9336767Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:09:34.9343052Z 2025-08-15T00:09:34.9343205Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:09:34.9344037Z 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-15T00:09:34.9344802Z if errorlevel 1 goto fail 2025-08-15T00:09:34.9345046Z ) 2025-08-15T00:09:34.9353424Z 2025-08-15T00:09:34.9353803Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:09:34.9357344Z 2025-08-15T00:09:34.9357836Z (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-15T00:09:34.9360330Z 2025-08-15T00:09:34.9360867Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_intrusive_ptr_benchmark" == "verify_api_visibility" goto :eof 2025-08-15T00:09:34.9362068Z 2025-08-15T00:09:34.9362887Z (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-15T00:09:34.9363927Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_intrusive_ptr_benchmark.exe" 2025-08-15T00:09:34.9364392Z 2025-08-15T00:09:34.9364821Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_intrusive_ptr_benchmark" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:09:34.9365599Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_intrusive_ptr_benchmark.exe" 2025-08-15T00:09:34.9366139Z goto :eof 2025-08-15T00:09:34.9366318Z ) 2025-08-15T00:09:34.9583915Z 2025-08-15T00:09:34+00:00 2025-08-15T00:09:34.9584494Z Running C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_intrusive_ptr_benchmark.exe 2025-08-15T00:09:34.9585044Z Run on (16 X 3000 MHz CPU s) 2025-08-15T00:09:34.9585287Z CPU Caches: 2025-08-15T00:09:34.9585476Z L1 Data 32 KiB (x8) 2025-08-15T00:09:34.9585752Z L1 Instruction 32 KiB (x8) 2025-08-15T00:09:34.9586009Z L2 Unified 1024 KiB (x8) 2025-08-15T00:09:34.9586302Z L3 Unified 36608 KiB (x1) 2025-08-15T00:09:35.7594803Z ---------------------------------------------------------------------------- 2025-08-15T00:09:35.7595274Z Benchmark Time CPU Iterations 2025-08-15T00:09:35.7595697Z ---------------------------------------------------------------------------- 2025-08-15T00:09:35.7596306Z BM_IntrusivePtrCtorDtor 13.1 ns 12.6 ns 49777778 2025-08-15T00:09:36.5695175Z BM_SharedPtrCtorDtor 12.1 ns 12.0 ns 56000000 2025-08-15T00:09:37.5375495Z BM_IntrusivePtrArray/16 224 ns 225 ns 3200000 2025-08-15T00:09:38.7534047Z BM_IntrusivePtrArray/32 449 ns 449 ns 1600000 2025-08-15T00:09:39.4279205Z BM_IntrusivePtrArray/64 898 ns 879 ns 640000 2025-08-15T00:09:40.2969524Z BM_IntrusivePtrArray/128 1794 ns 1800 ns 373333 2025-08-15T00:09:41.4120690Z BM_IntrusivePtrArray/256 3670 ns 3530 ns 194783 2025-08-15T00:09:42.0305705Z BM_IntrusivePtrArray/512 8184 ns 8057 ns 64000 2025-08-15T00:09:42.8827412Z BM_IntrusivePtrArray/1024 14998 ns 14997 ns 44800 2025-08-15T00:09:43.9196935Z BM_IntrusivePtrArray/2048 28789 ns 28878 ns 24889 2025-08-15T00:09:44.6287211Z BM_IntrusivePtrArray/4096 57588 ns 57199 ns 11200 2025-08-15T00:09:45.5961638Z BM_SharedPtrArray/16 224 ns 225 ns 3200000 2025-08-15T00:09:46.7921815Z BM_SharedPtrArray/32 449 ns 455 ns 1544828 2025-08-15T00:09:47.6972249Z BM_SharedPtrArray/64 898 ns 889 ns 896000 2025-08-15T00:09:48.6285266Z BM_SharedPtrArray/128 1796 ns 1803 ns 407273 2025-08-15T00:09:49.7616207Z BM_SharedPtrArray/256 3603 ns 3683 ns 203636 2025-08-15T00:09:50.4866215Z BM_SharedPtrArray/512 7199 ns 7150 ns 89600 2025-08-15T00:09:51.3625836Z BM_SharedPtrArray/1024 14381 ns 14439 ns 49778 2025-08-15T00:09:52.3651497Z BM_SharedPtrArray/2048 28900 ns 28495 ns 23579 2025-08-15T00:09:53.0755998Z BM_SharedPtrArray/4096 57685 ns 57199 ns 11200 2025-08-15T00:09:53.8188211Z BM_IntrusivePtrExclusiveOwnership 60.5 ns 60.0 ns 11200000 2025-08-15T00:09:54.6408422Z BM_SharedPtrExclusiveOwnership 66.9 ns 67.0 ns 11200000 2025-08-15T00:09:54.6436488Z 2025-08-15T00:09:54.6437085Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:09:54.6437899Z 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-15T00:09:54.6438669Z if errorlevel 1 goto fail 2025-08-15T00:09:54.6438924Z ) 2025-08-15T00:09:54.6447752Z 2025-08-15T00:09:54.6448273Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:09:54.6451817Z 2025-08-15T00:09:54.6452375Z (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-15T00:09:54.6454991Z 2025-08-15T00:09:54.6455607Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_intrusive_ptr_test" == "verify_api_visibility" goto :eof 2025-08-15T00:09:54.6456781Z 2025-08-15T00:09:54.6457403Z (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-15T00:09:54.6458362Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_intrusive_ptr_test.exe" 2025-08-15T00:09:54.6458924Z 2025-08-15T00:09:54.6459293Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_intrusive_ptr_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:09:54.6460089Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_intrusive_ptr_test.exe" 2025-08-15T00:09:54.6460606Z goto :eof 2025-08-15T00:09:54.6460869Z ) 2025-08-15T00:09:54.6460977Z 2025-08-15T00:09:54.6461406Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_intrusive_ptr_test" 2025-08-15T00:10:00.7518663Z Found test times from artifacts 2025-08-15T00:10:00.8195315Z Found test times from artifacts 2025-08-15T00:10:00.8217438Z Running all tests 2025-08-15T00:10:00.8223256Z Running parallel tests on 3 processes 2025-08-15T00:10:00.8223683Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:10:00.8224000Z Serial tests (0): 2025-08-15T00:10:00.8224255Z Parallel tests (1): 2025-08-15T00:10:00.8224557Z cpp/c10_intrusive_ptr_test 1/1 2025-08-15T00:10:00.8224852Z Name: excluded (est. time: 0.0min) 2025-08-15T00:10:00.8225151Z Serial tests (0): 2025-08-15T00:10:00.8225385Z Parallel tests (0): 2025-08-15T00:10:00.8227547Z Running cpp/c10_intrusive_ptr_test 1/1 ... [2025-08-15 00:10:00.821263] 2025-08-15T00:10:00.8228018Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:10:00.8237010Z 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-212cffc7e8fa258c.xml', '-x', '--reruns=2'] ... [2025-08-15 00:10:00.821263] 2025-08-15T00:10:00.8238842Z 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-15T00:10:02.3499611Z 2025-08-15T00:10:02.3500961Z 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_f752194b1b76bfb1_.log 2025-08-15T00:10:02.3501739Z 2025-08-15T00:10:06.7990149Z Running cpp/c10_intrusive_ptr_test 1/1 ... [2025-08-15 00:10:06.798494] 2025-08-15T00:10:06.7990688Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:10:06.7999882Z 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-a17604a6295b87ac.xml', '-x', '--reruns=2'] ... [2025-08-15 00:10:06.799704] 2025-08-15T00:10:09.7149133Z 2025-08-15T00:10:09.7150062Z 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_9d5a5d4850443e9b_.log 2025-08-15T00:10:09.7157089Z 2025-08-15T00:10:10.5603181Z Running test batch 'tests to run' cost 9.74 seconds 2025-08-15T00:10:10.5609650Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:10:10.5610160Z Uploading artifacts took 0.00 seconds 2025-08-15T00:10:11.3228959Z 2025-08-15T00:10:11.3229791Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:10:11.3230309Z echo "c10_intrusive_ptr_test" failed with exit code 0 2025-08-15T00:10:11.3230671Z goto fail 2025-08-15T00:10:11.3230869Z ) 2025-08-15T00:10:11.3231021Z 2025-08-15T00:10:11.3231244Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:10:11.3231689Z echo "c10_intrusive_ptr_test" failed with exit code 0 2025-08-15T00:10:11.3232043Z goto fail 2025-08-15T00:10:11.3232240Z ) 2025-08-15T00:10:11.3232382Z 2025-08-15T00:10:11.3232543Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:10:11.3238614Z 2025-08-15T00:10:11.3238845Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:10:11.3239547Z call :libtorch_check "c10_irange_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_irange_test.exe" 2025-08-15T00:10:11.3240323Z if errorlevel 1 goto fail 2025-08-15T00:10:11.3240614Z ) 2025-08-15T00:10:11.3249682Z 2025-08-15T00:10:11.3250296Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:10:11.3253745Z 2025-08-15T00:10:11.3254326Z (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-15T00:10:11.3256802Z 2025-08-15T00:10:11.3257209Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_irange_test" == "verify_api_visibility" goto :eof 2025-08-15T00:10:11.3258486Z 2025-08-15T00:10:11.3259023Z (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-15T00:10:11.3259958Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_irange_test.exe" 2025-08-15T00:10:11.3260735Z 2025-08-15T00:10:11.3261145Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_irange_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:10:11.3261892Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_irange_test.exe" 2025-08-15T00:10:11.3262414Z goto :eof 2025-08-15T00:10:11.3262606Z ) 2025-08-15T00:10:11.3262734Z 2025-08-15T00:10:11.3263147Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_irange_test" 2025-08-15T00:10:17.4029072Z Found test times from artifacts 2025-08-15T00:10:17.4705008Z Found test times from artifacts 2025-08-15T00:10:17.4727716Z Running all tests 2025-08-15T00:10:17.4733466Z Running parallel tests on 3 processes 2025-08-15T00:10:17.4733890Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:10:17.4734191Z Serial tests (0): 2025-08-15T00:10:17.4734455Z Parallel tests (1): 2025-08-15T00:10:17.4734851Z cpp/c10_irange_test 1/1 2025-08-15T00:10:17.4735152Z Name: excluded (est. time: 0.0min) 2025-08-15T00:10:17.4735990Z Serial tests (0): 2025-08-15T00:10:17.4736501Z Parallel tests (0): 2025-08-15T00:10:17.4737459Z Running cpp/c10_irange_test 1/1 ... [2025-08-15 00:10:17.473586] 2025-08-15T00:10:17.4737860Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:10:17.4747426Z 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-54a3f91f1dad2905.xml', '-x', '--reruns=2'] ... [2025-08-15 00:10:17.474160] 2025-08-15T00:10:17.4749216Z 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-15T00:10:19.0284489Z 2025-08-15T00:10:19.0285530Z 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_bbddaddbc0a816f0_.log 2025-08-15T00:10:19.0286190Z 2025-08-15T00:10:23.4755482Z Running cpp/c10_irange_test 1/1 ... [2025-08-15 00:10:23.474911] 2025-08-15T00:10:23.4755961Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:10:23.4764825Z 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-d518680b14b52c47.xml', '-x', '--reruns=2'] ... [2025-08-15 00:10:23.474911] 2025-08-15T00:10:25.0122901Z 2025-08-15T00:10:25.0123946Z 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_b4f76cdbd96f0325_.log 2025-08-15T00:10:25.0124592Z 2025-08-15T00:10:25.8358601Z Running test batch 'tests to run' cost 8.36 seconds 2025-08-15T00:10:25.8364933Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:10:25.8365436Z Uploading artifacts took 0.00 seconds 2025-08-15T00:10:26.5631782Z 2025-08-15T00:10:26.5632471Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:10:26.5632944Z echo "c10_irange_test" failed with exit code 0 2025-08-15T00:10:26.5633287Z goto fail 2025-08-15T00:10:26.5633483Z ) 2025-08-15T00:10:26.5633619Z 2025-08-15T00:10:26.5633995Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:10:26.5634454Z echo "c10_irange_test" failed with exit code 0 2025-08-15T00:10:26.5634775Z goto fail 2025-08-15T00:10:26.5634990Z ) 2025-08-15T00:10:26.5635097Z 2025-08-15T00:10:26.5635263Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:10:26.5641724Z 2025-08-15T00:10:26.5642249Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:10:26.5643039Z call :libtorch_check "c10_lazy_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_lazy_test.exe" 2025-08-15T00:10:26.5643661Z if errorlevel 1 goto fail 2025-08-15T00:10:26.5643950Z ) 2025-08-15T00:10:26.5653283Z 2025-08-15T00:10:26.5653778Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:10:26.5657988Z 2025-08-15T00:10:26.5658524Z (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-15T00:10:26.5661629Z 2025-08-15T00:10:26.5662122Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_lazy_test" == "verify_api_visibility" goto :eof 2025-08-15T00:10:26.5663427Z 2025-08-15T00:10:26.5663988Z (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-15T00:10:26.5665003Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_lazy_test.exe" 2025-08-15T00:10:26.5666185Z 2025-08-15T00:10:26.5666708Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_lazy_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:10:26.5667473Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_lazy_test.exe" 2025-08-15T00:10:26.5667992Z goto :eof 2025-08-15T00:10:26.5668188Z ) 2025-08-15T00:10:26.5668316Z 2025-08-15T00:10:26.5668674Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_lazy_test" 2025-08-15T00:10:32.7324844Z Found test times from artifacts 2025-08-15T00:10:32.8002393Z Found test times from artifacts 2025-08-15T00:10:32.8024607Z Running all tests 2025-08-15T00:10:32.8029922Z Running parallel tests on 3 processes 2025-08-15T00:10:32.8030254Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:10:32.8030582Z Serial tests (0): 2025-08-15T00:10:32.8030818Z Parallel tests (1): 2025-08-15T00:10:32.8031080Z cpp/c10_lazy_test 1/1 2025-08-15T00:10:32.8031357Z Name: excluded (est. time: 0.0min) 2025-08-15T00:10:32.8031663Z Serial tests (0): 2025-08-15T00:10:32.8031903Z Parallel tests (0): 2025-08-15T00:10:32.8033656Z Running cpp/c10_lazy_test 1/1 ... [2025-08-15 00:10:32.802368] 2025-08-15T00:10:32.8034082Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:10:32.8043825Z 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-e1754f20b6358327.xml', '-x', '--reruns=2'] ... [2025-08-15 00:10:32.802368] 2025-08-15T00:10:32.8045563Z 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-15T00:10:34.3080295Z 2025-08-15T00:10:34.3081184Z 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_2fcc6af930cff441_.log 2025-08-15T00:10:34.3081892Z 2025-08-15T00:10:38.7120760Z Running cpp/c10_lazy_test 1/1 ... [2025-08-15 00:10:38.707097] 2025-08-15T00:10:38.7121223Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:10:38.7130277Z 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-700d9c89b0a2641f.xml', '-x', '--reruns=2'] ... [2025-08-15 00:10:38.707097] 2025-08-15T00:10:40.2310801Z 2025-08-15T00:10:40.2311740Z 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_db6b3026a95d4aad_.log 2025-08-15T00:10:40.2312468Z 2025-08-15T00:10:41.1170931Z Running test batch 'tests to run' cost 8.31 seconds 2025-08-15T00:10:41.1177316Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:10:41.1177790Z Uploading artifacts took 0.00 seconds 2025-08-15T00:10:41.8277670Z 2025-08-15T00:10:41.8278435Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:10:41.8278916Z echo "c10_lazy_test" failed with exit code 0 2025-08-15T00:10:41.8279259Z goto fail 2025-08-15T00:10:41.8279462Z ) 2025-08-15T00:10:41.8279604Z 2025-08-15T00:10:41.8279804Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:10:41.8280260Z echo "c10_lazy_test" failed with exit code 0 2025-08-15T00:10:41.8280563Z goto fail 2025-08-15T00:10:41.8280775Z ) 2025-08-15T00:10:41.8280880Z 2025-08-15T00:10:41.8281045Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:10:41.8286625Z 2025-08-15T00:10:41.8286877Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:10:41.8287740Z call :libtorch_check "c10_LeftRight_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_LeftRight_test.exe" 2025-08-15T00:10:41.8288399Z if errorlevel 1 goto fail 2025-08-15T00:10:41.8288671Z ) 2025-08-15T00:10:41.8297663Z 2025-08-15T00:10:41.8298054Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:10:41.8301611Z 2025-08-15T00:10:41.8302135Z (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-15T00:10:41.8304694Z 2025-08-15T00:10:41.8305064Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_LeftRight_test" == "verify_api_visibility" goto :eof 2025-08-15T00:10:41.8306316Z 2025-08-15T00:10:41.8307176Z (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-15T00:10:41.8308153Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_LeftRight_test.exe" 2025-08-15T00:10:41.8308635Z 2025-08-15T00:10:41.8309081Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_LeftRight_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:10:41.8309846Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_LeftRight_test.exe" 2025-08-15T00:10:41.8310357Z goto :eof 2025-08-15T00:10:41.8310578Z ) 2025-08-15T00:10:41.8310679Z 2025-08-15T00:10:41.8311051Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_LeftRight_test" 2025-08-15T00:10:47.8661947Z Found test times from artifacts 2025-08-15T00:10:47.9338707Z Found test times from artifacts 2025-08-15T00:10:47.9360998Z Running all tests 2025-08-15T00:10:47.9366563Z Running parallel tests on 3 processes 2025-08-15T00:10:47.9366939Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:10:47.9367237Z Serial tests (0): 2025-08-15T00:10:47.9367497Z Parallel tests (1): 2025-08-15T00:10:47.9367764Z cpp/c10_LeftRight_test 1/1 2025-08-15T00:10:47.9368070Z Name: excluded (est. time: 0.0min) 2025-08-15T00:10:47.9368365Z Serial tests (0): 2025-08-15T00:10:47.9368600Z Parallel tests (0): 2025-08-15T00:10:47.9370589Z Running cpp/c10_LeftRight_test 1/1 ... [2025-08-15 00:10:47.936952] 2025-08-15T00:10:47.9370998Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:10:47.9380710Z 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-faced999f326d412.xml', '-x', '--reruns=2'] ... [2025-08-15 00:10:47.937571] 2025-08-15T00:10:47.9382670Z 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-15T00:10:49.4744946Z 2025-08-15T00:10:49.4745876Z 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_ada3092dfc4c82d6_.log 2025-08-15T00:10:49.4746835Z 2025-08-15T00:10:53.8967045Z Running cpp/c10_LeftRight_test 1/1 ... [2025-08-15 00:10:53.895232] 2025-08-15T00:10:53.8967533Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:10:53.8976701Z 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-1432c54c93d70bf7.xml', '-x', '--reruns=2'] ... [2025-08-15 00:10:53.895232] 2025-08-15T00:10:55.5702409Z 2025-08-15T00:10:55.5703420Z 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_11c73c3c7f6e3d6e_.log 2025-08-15T00:10:55.5704162Z 2025-08-15T00:10:56.4205205Z Running test batch 'tests to run' cost 8.48 seconds 2025-08-15T00:10:56.4211731Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:10:56.4212212Z Uploading artifacts took 0.00 seconds 2025-08-15T00:10:57.1271336Z 2025-08-15T00:10:57.1271973Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:10:57.1272474Z echo "c10_LeftRight_test" failed with exit code 0 2025-08-15T00:10:57.1272803Z goto fail 2025-08-15T00:10:57.1273022Z ) 2025-08-15T00:10:57.1273135Z 2025-08-15T00:10:57.1273339Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:10:57.1273803Z echo "c10_LeftRight_test" failed with exit code 0 2025-08-15T00:10:57.1274128Z goto fail 2025-08-15T00:10:57.1274347Z ) 2025-08-15T00:10:57.1274454Z 2025-08-15T00:10:57.1274639Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:10:57.1280554Z 2025-08-15T00:10:57.1280982Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:10:57.1281693Z call :libtorch_check "c10_logging_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_logging_test.exe" 2025-08-15T00:10:57.1282351Z if errorlevel 1 goto fail 2025-08-15T00:10:57.1282604Z ) 2025-08-15T00:10:57.1290820Z 2025-08-15T00:10:57.1291207Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:10:57.1294710Z 2025-08-15T00:10:57.1295550Z (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-15T00:10:57.1297727Z 2025-08-15T00:10:57.1298263Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_logging_test" == "verify_api_visibility" goto :eof 2025-08-15T00:10:57.1299426Z 2025-08-15T00:10:57.1300046Z (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-15T00:10:57.1301017Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_logging_test.exe" 2025-08-15T00:10:57.1302215Z 2025-08-15T00:10:57.1302624Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_logging_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:10:57.1303365Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_logging_test.exe" 2025-08-15T00:10:57.1303906Z goto :eof 2025-08-15T00:10:57.1304262Z ) 2025-08-15T00:10:57.1304402Z 2025-08-15T00:10:57.1304769Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_logging_test" 2025-08-15T00:11:03.2445664Z Found test times from artifacts 2025-08-15T00:11:03.3130395Z Found test times from artifacts 2025-08-15T00:11:03.3153252Z Running all tests 2025-08-15T00:11:03.3158570Z Running parallel tests on 3 processes 2025-08-15T00:11:03.3159170Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:11:03.3159596Z Serial tests (0): 2025-08-15T00:11:03.3159863Z Parallel tests (1): 2025-08-15T00:11:03.3160171Z cpp/c10_logging_test 1/1 2025-08-15T00:11:03.3160500Z Name: excluded (est. time: 0.0min) 2025-08-15T00:11:03.3160777Z Serial tests (0): 2025-08-15T00:11:03.3161033Z Parallel tests (0): 2025-08-15T00:11:03.3162436Z Running cpp/c10_logging_test 1/1 ... [2025-08-15 00:11:03.315991] 2025-08-15T00:11:03.3162856Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:11:03.3172938Z 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-4e1d1a95b9943f92.xml', '-x', '--reruns=2'] ... [2025-08-15 00:11:03.317134] 2025-08-15T00:11:03.3174739Z 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-15T00:11:04.8458234Z 2025-08-15T00:11:04.8459272Z 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_d25bd0553667c4a4_.log 2025-08-15T00:11:04.8459920Z 2025-08-15T00:11:09.3698713Z Running cpp/c10_logging_test 1/1 ... [2025-08-15 00:11:09.369517] 2025-08-15T00:11:09.3699276Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:11:09.3707838Z 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-2129b23f3e53bf2d.xml', '-x', '--reruns=2'] ... [2025-08-15 00:11:09.370612] 2025-08-15T00:11:10.9322831Z 2025-08-15T00:11:10.9324924Z 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_15f9aea5bd3107d5_.log 2025-08-15T00:11:10.9325587Z 2025-08-15T00:11:11.7472814Z Running test batch 'tests to run' cost 8.43 seconds 2025-08-15T00:11:11.7479630Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:11:11.7480151Z Uploading artifacts took 0.00 seconds 2025-08-15T00:11:12.4516918Z 2025-08-15T00:11:12.4517678Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:11:12.4518156Z echo "c10_logging_test" failed with exit code 0 2025-08-15T00:11:12.4518506Z goto fail 2025-08-15T00:11:12.4518713Z ) 2025-08-15T00:11:12.4518869Z 2025-08-15T00:11:12.4519071Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:11:12.4519545Z echo "c10_logging_test" failed with exit code 0 2025-08-15T00:11:12.4519863Z goto fail 2025-08-15T00:11:12.4520090Z ) 2025-08-15T00:11:12.4520417Z 2025-08-15T00:11:12.4520646Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:11:12.4527778Z 2025-08-15T00:11:12.4528032Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:11:12.4528864Z call :libtorch_check "c10_Metaprogramming_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Metaprogramming_test.exe" 2025-08-15T00:11:12.4529571Z if errorlevel 1 goto fail 2025-08-15T00:11:12.4529846Z ) 2025-08-15T00:11:12.4538221Z 2025-08-15T00:11:12.4538659Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:11:12.4547125Z 2025-08-15T00:11:12.4548070Z (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-15T00:11:12.4548773Z 2025-08-15T00:11:12.4549185Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Metaprogramming_test" == "verify_api_visibility" goto :eof 2025-08-15T00:11:12.4549700Z 2025-08-15T00:11:12.4550221Z (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-15T00:11:12.4551194Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Metaprogramming_test.exe" 2025-08-15T00:11:12.4551655Z 2025-08-15T00:11:12.4551990Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Metaprogramming_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:11:12.4552767Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Metaprogramming_test.exe" 2025-08-15T00:11:12.4553283Z goto :eof 2025-08-15T00:11:12.4553464Z ) 2025-08-15T00:11:12.4553561Z 2025-08-15T00:11:12.4553946Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_Metaprogramming_test" 2025-08-15T00:11:18.5232336Z Found test times from artifacts 2025-08-15T00:11:18.5927235Z Found test times from artifacts 2025-08-15T00:11:18.5950878Z Running all tests 2025-08-15T00:11:18.5956731Z Running parallel tests on 3 processes 2025-08-15T00:11:18.5957205Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:11:18.5957526Z Serial tests (0): 2025-08-15T00:11:18.5957764Z Parallel tests (1): 2025-08-15T00:11:18.5958204Z cpp/c10_Metaprogramming_test 1/1 2025-08-15T00:11:18.5958509Z Name: excluded (est. time: 0.0min) 2025-08-15T00:11:18.5958836Z Serial tests (0): 2025-08-15T00:11:18.5959128Z Parallel tests (0): 2025-08-15T00:11:18.5961214Z Running cpp/c10_Metaprogramming_test 1/1 ... [2025-08-15 00:11:18.595779] 2025-08-15T00:11:18.5961675Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:11:18.5972752Z 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-f18b245d9ea187aa.xml', '-x', '--reruns=2'] ... [2025-08-15 00:11:18.597091] 2025-08-15T00:11:18.5974653Z 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-15T00:11:20.1238362Z 2025-08-15T00:11:20.1239604Z 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_de0af9d0c971e820_.log 2025-08-15T00:11:20.1240338Z 2025-08-15T00:11:24.5610799Z Running cpp/c10_Metaprogramming_test 1/1 ... [2025-08-15 00:11:24.560499] 2025-08-15T00:11:24.5611276Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:11:24.5619934Z 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-cc98ed17f1ca3fbd.xml', '-x', '--reruns=2'] ... [2025-08-15 00:11:24.561619] 2025-08-15T00:11:26.1546728Z 2025-08-15T00:11:26.1547657Z 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_6ba23d3f419d6e5b_.log 2025-08-15T00:11:26.1548528Z 2025-08-15T00:11:27.0510315Z Running test batch 'tests to run' cost 8.45 seconds 2025-08-15T00:11:27.0516690Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:11:27.0517157Z Uploading artifacts took 0.00 seconds 2025-08-15T00:11:27.7576491Z 2025-08-15T00:11:27.7577204Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:11:27.7577694Z echo "c10_Metaprogramming_test" failed with exit code 0 2025-08-15T00:11:27.7578079Z goto fail 2025-08-15T00:11:27.7578486Z ) 2025-08-15T00:11:27.7578600Z 2025-08-15T00:11:27.7578835Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:11:27.7579294Z echo "c10_Metaprogramming_test" failed with exit code 0 2025-08-15T00:11:27.7579622Z goto fail 2025-08-15T00:11:27.7579814Z ) 2025-08-15T00:11:27.7579914Z 2025-08-15T00:11:27.7580082Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:11:27.7586418Z 2025-08-15T00:11:27.7586888Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:11:27.7587652Z call :libtorch_check "c10_NetworkFlow_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_NetworkFlow_test.exe" 2025-08-15T00:11:27.7588308Z if errorlevel 1 goto fail 2025-08-15T00:11:27.7588560Z ) 2025-08-15T00:11:27.7597573Z 2025-08-15T00:11:27.7598055Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:11:27.7601466Z 2025-08-15T00:11:27.7601929Z (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-15T00:11:27.7604482Z 2025-08-15T00:11:27.7604996Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_NetworkFlow_test" == "verify_api_visibility" goto :eof 2025-08-15T00:11:27.7606213Z 2025-08-15T00:11:27.7606868Z (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-15T00:11:27.7608470Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_NetworkFlow_test.exe" 2025-08-15T00:11:27.7609020Z 2025-08-15T00:11:27.7609414Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_NetworkFlow_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:11:27.7610182Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_NetworkFlow_test.exe" 2025-08-15T00:11:27.7610676Z goto :eof 2025-08-15T00:11:27.7610875Z ) 2025-08-15T00:11:27.7610972Z 2025-08-15T00:11:27.7611410Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_NetworkFlow_test" 2025-08-15T00:11:33.8302520Z Found test times from artifacts 2025-08-15T00:11:33.8977795Z Found test times from artifacts 2025-08-15T00:11:33.8999692Z Running all tests 2025-08-15T00:11:33.9005109Z Running parallel tests on 3 processes 2025-08-15T00:11:33.9005521Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:11:33.9005804Z Serial tests (0): 2025-08-15T00:11:33.9006111Z Parallel tests (1): 2025-08-15T00:11:33.9006351Z cpp/c10_NetworkFlow_test 1/1 2025-08-15T00:11:33.9006648Z Name: excluded (est. time: 0.0min) 2025-08-15T00:11:33.9006938Z Serial tests (0): 2025-08-15T00:11:33.9007147Z Parallel tests (0): 2025-08-15T00:11:33.9009048Z Running cpp/c10_NetworkFlow_test 1/1 ... [2025-08-15 00:11:33.896947] 2025-08-15T00:11:33.9009444Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:11:33.9019211Z 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-8adcb6a34e49dfda.xml', '-x', '--reruns=2'] ... [2025-08-15 00:11:33.896947] 2025-08-15T00:11:33.9021066Z 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-15T00:11:35.4221892Z 2025-08-15T00:11:35.4222799Z 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_db8913a43a48e677_.log 2025-08-15T00:11:35.4223445Z 2025-08-15T00:11:39.9848042Z Running cpp/c10_NetworkFlow_test 1/1 ... [2025-08-15 00:11:39.983122] 2025-08-15T00:11:39.9848478Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:11:39.9857305Z 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-fcc65bc02c984f18.xml', '-x', '--reruns=2'] ... [2025-08-15 00:11:39.984750] 2025-08-15T00:11:41.5497625Z 2025-08-15T00:11:41.5498756Z 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_2f1f62780f7357d4_.log 2025-08-15T00:11:41.5499456Z 2025-08-15T00:11:42.3751140Z Running test batch 'tests to run' cost 8.48 seconds 2025-08-15T00:11:42.3757674Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:11:42.3758132Z Uploading artifacts took 0.00 seconds 2025-08-15T00:11:43.0729360Z 2025-08-15T00:11:43.0729963Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:11:43.0730455Z echo "c10_NetworkFlow_test" failed with exit code 0 2025-08-15T00:11:43.0730802Z goto fail 2025-08-15T00:11:43.0730995Z ) 2025-08-15T00:11:43.0731103Z 2025-08-15T00:11:43.0731298Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:11:43.0731742Z echo "c10_NetworkFlow_test" failed with exit code 0 2025-08-15T00:11:43.0732067Z goto fail 2025-08-15T00:11:43.0732245Z ) 2025-08-15T00:11:43.0732343Z 2025-08-15T00:11:43.0732510Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:11:43.0739735Z 2025-08-15T00:11:43.0740109Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:11:43.0740914Z call :libtorch_check "c10_optional_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_optional_test.exe" 2025-08-15T00:11:43.0741692Z if errorlevel 1 goto fail 2025-08-15T00:11:43.0741920Z ) 2025-08-15T00:11:43.0750538Z 2025-08-15T00:11:43.0750923Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:11:43.0754603Z 2025-08-15T00:11:43.0755361Z (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-15T00:11:43.0757694Z 2025-08-15T00:11:43.0758162Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_optional_test" == "verify_api_visibility" goto :eof 2025-08-15T00:11:43.0759360Z 2025-08-15T00:11:43.0759942Z (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-15T00:11:43.0760872Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_optional_test.exe" 2025-08-15T00:11:43.0761760Z 2025-08-15T00:11:43.0762218Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_optional_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:11:43.0762925Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_optional_test.exe" 2025-08-15T00:11:43.0763457Z goto :eof 2025-08-15T00:11:43.0763636Z ) 2025-08-15T00:11:43.0763746Z 2025-08-15T00:11:43.0764097Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_optional_test" 2025-08-15T00:11:49.1469244Z Found test times from artifacts 2025-08-15T00:11:49.2145224Z Found test times from artifacts 2025-08-15T00:11:49.2168309Z Running all tests 2025-08-15T00:11:49.2173771Z Running parallel tests on 3 processes 2025-08-15T00:11:49.2174124Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:11:49.2174416Z Serial tests (0): 2025-08-15T00:11:49.2174650Z Parallel tests (1): 2025-08-15T00:11:49.2174896Z cpp/c10_optional_test 1/1 2025-08-15T00:11:49.2175179Z Name: excluded (est. time: 0.0min) 2025-08-15T00:11:49.2175434Z Serial tests (0): 2025-08-15T00:11:49.2175658Z Parallel tests (0): 2025-08-15T00:11:49.2177423Z Running cpp/c10_optional_test 1/1 ... [2025-08-15 00:11:49.217222] 2025-08-15T00:11:49.2177861Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:11:49.2187574Z 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-76db793b886960dd.xml', '-x', '--reruns=2'] ... [2025-08-15 00:11:49.218367] 2025-08-15T00:11:49.2189315Z 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-15T00:11:50.7353749Z 2025-08-15T00:11:50.7355398Z 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_3954f63c13ec62c0_.log 2025-08-15T00:11:50.7356518Z 2025-08-15T00:11:55.1774304Z Running cpp/c10_optional_test 1/1 ... [2025-08-15 00:11:55.177249] 2025-08-15T00:11:55.1774781Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:11:55.1785116Z 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-2a69fe7ec0ce82b1.xml', '-x', '--reruns=2'] ... [2025-08-15 00:11:55.178342] 2025-08-15T00:11:56.7614165Z 2025-08-15T00:11:56.7615238Z 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_8e09f7de6ea15cd9_.log 2025-08-15T00:11:56.7616163Z 2025-08-15T00:11:57.6385696Z Running test batch 'tests to run' cost 8.42 seconds 2025-08-15T00:11:57.6391985Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:11:57.6392521Z Uploading artifacts took 0.00 seconds 2025-08-15T00:11:58.3375055Z 2025-08-15T00:11:58.3375865Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:11:58.3376373Z echo "c10_optional_test" failed with exit code 0 2025-08-15T00:11:58.3376727Z goto fail 2025-08-15T00:11:58.3376957Z ) 2025-08-15T00:11:58.3377076Z 2025-08-15T00:11:58.3377276Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:11:58.3377714Z echo "c10_optional_test" failed with exit code 0 2025-08-15T00:11:58.3378020Z goto fail 2025-08-15T00:11:58.3378206Z ) 2025-08-15T00:11:58.3378303Z 2025-08-15T00:11:58.3378458Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:11:58.3384874Z 2025-08-15T00:11:58.3385410Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:11:58.3386225Z 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-15T00:11:58.3386974Z if errorlevel 1 goto fail 2025-08-15T00:11:58.3387214Z ) 2025-08-15T00:11:58.3395867Z 2025-08-15T00:11:58.3396261Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:11:58.3400400Z 2025-08-15T00:11:58.3401024Z (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-15T00:11:58.3403296Z 2025-08-15T00:11:58.3403866Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_ordered_preserving_dict_test" == "verify_api_visibility" goto :eof 2025-08-15T00:11:58.3405582Z 2025-08-15T00:11:58.3406863Z (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-15T00:11:58.3407941Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ordered_preserving_dict_test.exe" 2025-08-15T00:11:58.3408432Z 2025-08-15T00:11:58.3408817Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_ordered_preserving_dict_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:11:58.3409629Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ordered_preserving_dict_test.exe" 2025-08-15T00:11:58.3410320Z goto :eof 2025-08-15T00:11:58.3410524Z ) 2025-08-15T00:11:58.3410629Z 2025-08-15T00:11:58.3411082Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_ordered_preserving_dict_test" 2025-08-15T00:12:04.4371471Z Found test times from artifacts 2025-08-15T00:12:04.5054236Z Found test times from artifacts 2025-08-15T00:12:04.5076317Z Running all tests 2025-08-15T00:12:04.5081866Z Running parallel tests on 3 processes 2025-08-15T00:12:04.5082226Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:12:04.5082498Z Serial tests (0): 2025-08-15T00:12:04.5082772Z Parallel tests (1): 2025-08-15T00:12:04.5083026Z cpp/c10_ordered_preserving_dict_test 1/1 2025-08-15T00:12:04.5083315Z Name: excluded (est. time: 0.0min) 2025-08-15T00:12:04.5083571Z Serial tests (0): 2025-08-15T00:12:04.5083800Z Parallel tests (0): 2025-08-15T00:12:04.5086012Z Running cpp/c10_ordered_preserving_dict_test 1/1 ... [2025-08-15 00:12:04.508446] 2025-08-15T00:12:04.5086452Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:12:04.5096342Z 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-65ac5e5ae1f9ec95.xml', '-x', '--reruns=2'] ... [2025-08-15 00:12:04.509017] 2025-08-15T00:12:04.5098287Z 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-15T00:12:06.0247868Z 2025-08-15T00:12:06.0249079Z 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_fba20a8f8c131580_.log 2025-08-15T00:12:06.0249815Z 2025-08-15T00:12:10.5066817Z Running cpp/c10_ordered_preserving_dict_test 1/1 ... [2025-08-15 00:12:10.506488] 2025-08-15T00:12:10.5067311Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:12:10.5076738Z 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-7ff8a82d59def26f.xml', '-x', '--reruns=2'] ... [2025-08-15 00:12:10.507063] 2025-08-15T00:12:12.1615688Z 2025-08-15T00:12:12.1616610Z 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_e11cb504e2145a80_.log 2025-08-15T00:12:12.1617760Z 2025-08-15T00:12:13.0630833Z Running test batch 'tests to run' cost 8.55 seconds 2025-08-15T00:12:13.0637587Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:12:13.0638090Z Uploading artifacts took 0.00 seconds 2025-08-15T00:12:13.7721002Z 2025-08-15T00:12:13.7721540Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:12:13.7722031Z echo "c10_ordered_preserving_dict_test" failed with exit code 0 2025-08-15T00:12:13.7722390Z goto fail 2025-08-15T00:12:13.7722556Z ) 2025-08-15T00:12:13.7722655Z 2025-08-15T00:12:13.7722844Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:12:13.7723355Z echo "c10_ordered_preserving_dict_test" failed with exit code 0 2025-08-15T00:12:13.7723714Z goto fail 2025-08-15T00:12:13.7723892Z ) 2025-08-15T00:12:13.7723992Z 2025-08-15T00:12:13.7724149Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:12:13.7730749Z 2025-08-15T00:12:13.7730929Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:12:13.7731625Z call :libtorch_check "c10_registry_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_registry_test.exe" 2025-08-15T00:12:13.7732956Z if errorlevel 1 goto fail 2025-08-15T00:12:13.7733188Z ) 2025-08-15T00:12:13.7742322Z 2025-08-15T00:12:13.7742804Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:12:13.7746287Z 2025-08-15T00:12:13.7746783Z (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-15T00:12:13.7749370Z 2025-08-15T00:12:13.7749935Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_registry_test" == "verify_api_visibility" goto :eof 2025-08-15T00:12:13.7751155Z 2025-08-15T00:12:13.7751719Z (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-15T00:12:13.7752630Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_registry_test.exe" 2025-08-15T00:12:13.7754002Z 2025-08-15T00:12:13.7754490Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_registry_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:12:13.7755228Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_registry_test.exe" 2025-08-15T00:12:13.7755754Z goto :eof 2025-08-15T00:12:13.7755923Z ) 2025-08-15T00:12:13.7756029Z 2025-08-15T00:12:13.7756374Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_registry_test" 2025-08-15T00:12:19.8694060Z Found test times from artifacts 2025-08-15T00:12:19.9372551Z Found test times from artifacts 2025-08-15T00:12:19.9394701Z Running all tests 2025-08-15T00:12:19.9399988Z Running parallel tests on 3 processes 2025-08-15T00:12:19.9400450Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:12:19.9400718Z Serial tests (0): 2025-08-15T00:12:19.9400938Z Parallel tests (1): 2025-08-15T00:12:19.9401157Z cpp/c10_registry_test 1/1 2025-08-15T00:12:19.9401423Z Name: excluded (est. time: 0.0min) 2025-08-15T00:12:19.9401674Z Serial tests (0): 2025-08-15T00:12:19.9401881Z Parallel tests (0): 2025-08-15T00:12:19.9403963Z Running cpp/c10_registry_test 1/1 ... [2025-08-15 00:12:19.939234] 2025-08-15T00:12:19.9404345Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:12:19.9413997Z 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-446ea0723b33c5f6.xml', '-x', '--reruns=2'] ... [2025-08-15 00:12:19.939234] 2025-08-15T00:12:19.9415664Z 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-15T00:12:21.4626775Z 2025-08-15T00:12:21.4627647Z 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_4b47dec81018366a_.log 2025-08-15T00:12:21.4628352Z 2025-08-15T00:12:25.9551555Z Running cpp/c10_registry_test 1/1 ... [2025-08-15 00:12:25.954660] 2025-08-15T00:12:25.9552041Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:12:25.9560859Z 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-5ec685e4f34492d2.xml', '-x', '--reruns=2'] ... [2025-08-15 00:12:25.955805] 2025-08-15T00:12:27.4936406Z 2025-08-15T00:12:27.4937219Z 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_33422e0d6082e54b_.log 2025-08-15T00:12:27.4938009Z 2025-08-15T00:12:28.3930718Z Running test batch 'tests to run' cost 8.45 seconds 2025-08-15T00:12:28.3937254Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:12:28.3937915Z Uploading artifacts took 0.00 seconds 2025-08-15T00:12:29.0966957Z 2025-08-15T00:12:29.0967494Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:12:29.0967925Z echo "c10_registry_test" failed with exit code 0 2025-08-15T00:12:29.0968238Z goto fail 2025-08-15T00:12:29.0968403Z ) 2025-08-15T00:12:29.0968511Z 2025-08-15T00:12:29.0968698Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:12:29.0969130Z echo "c10_registry_test" failed with exit code 0 2025-08-15T00:12:29.0969418Z goto fail 2025-08-15T00:12:29.0969590Z ) 2025-08-15T00:12:29.0969803Z 2025-08-15T00:12:29.0970162Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:12:29.0977395Z 2025-08-15T00:12:29.0977644Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:12:29.0978307Z call :libtorch_check "c10_Scalar_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Scalar_test.exe" 2025-08-15T00:12:29.0978915Z if errorlevel 1 goto fail 2025-08-15T00:12:29.0979143Z ) 2025-08-15T00:12:29.0988019Z 2025-08-15T00:12:29.0988434Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:12:29.0991967Z 2025-08-15T00:12:29.0992546Z (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-15T00:12:29.0995116Z 2025-08-15T00:12:29.0995675Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Scalar_test" == "verify_api_visibility" goto :eof 2025-08-15T00:12:29.0996879Z 2025-08-15T00:12:29.0997560Z (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-15T00:12:29.0998570Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Scalar_test.exe" 2025-08-15T00:12:29.0999717Z 2025-08-15T00:12:29.1000128Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Scalar_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:12:29.1000874Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Scalar_test.exe" 2025-08-15T00:12:29.1001373Z goto :eof 2025-08-15T00:12:29.1001604Z ) 2025-08-15T00:12:29.1001711Z 2025-08-15T00:12:29.1002149Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_Scalar_test" 2025-08-15T00:12:35.1642753Z Found test times from artifacts 2025-08-15T00:12:35.2321980Z Found test times from artifacts 2025-08-15T00:12:35.2344236Z Running all tests 2025-08-15T00:12:35.2349816Z Running parallel tests on 3 processes 2025-08-15T00:12:35.2350201Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:12:35.2350529Z Serial tests (0): 2025-08-15T00:12:35.2350761Z Parallel tests (1): 2025-08-15T00:12:35.2351027Z cpp/c10_Scalar_test 1/1 2025-08-15T00:12:35.2351291Z Name: excluded (est. time: 0.0min) 2025-08-15T00:12:35.2351592Z Serial tests (0): 2025-08-15T00:12:35.2351840Z Parallel tests (0): 2025-08-15T00:12:35.2353542Z Running cpp/c10_Scalar_test 1/1 ... [2025-08-15 00:12:35.233569] 2025-08-15T00:12:35.2353977Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:12:35.2363326Z 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-106a76e648b95f1f.xml', '-x', '--reruns=2'] ... [2025-08-15 00:12:35.233569] 2025-08-15T00:12:35.2365023Z 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-15T00:12:36.7762426Z 2025-08-15T00:12:36.7763567Z 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_e0394ea4065d26d3_.log 2025-08-15T00:12:36.7764405Z 2025-08-15T00:12:41.2104081Z Running cpp/c10_Scalar_test 1/1 ... [2025-08-15 00:12:41.209987] 2025-08-15T00:12:41.2104551Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:12:41.2113634Z 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-d721e16d04c2f89d.xml', '-x', '--reruns=2'] ... [2025-08-15 00:12:41.211152] 2025-08-15T00:12:42.7392923Z 2025-08-15T00:12:42.7394070Z 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_27539f4290b2a675_.log 2025-08-15T00:12:42.7394719Z 2025-08-15T00:12:43.5965660Z Running test batch 'tests to run' cost 8.36 seconds 2025-08-15T00:12:43.5970873Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:12:43.5971370Z Uploading artifacts took 0.00 seconds 2025-08-15T00:12:44.3082680Z 2025-08-15T00:12:44.3083401Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:12:44.3083895Z echo "c10_Scalar_test" failed with exit code 0 2025-08-15T00:12:44.3084215Z goto fail 2025-08-15T00:12:44.3084436Z ) 2025-08-15T00:12:44.3084562Z 2025-08-15T00:12:44.3084759Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:12:44.3085215Z echo "c10_Scalar_test" failed with exit code 0 2025-08-15T00:12:44.3085745Z goto fail 2025-08-15T00:12:44.3085954Z ) 2025-08-15T00:12:44.3086064Z 2025-08-15T00:12:44.3086333Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:12:44.3092302Z 2025-08-15T00:12:44.3092531Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:12:44.3093253Z call :libtorch_check "c10_Semaphore_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Semaphore_test.exe" 2025-08-15T00:12:44.3093935Z if errorlevel 1 goto fail 2025-08-15T00:12:44.3094177Z ) 2025-08-15T00:12:44.3102671Z 2025-08-15T00:12:44.3103100Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:12:44.3106523Z 2025-08-15T00:12:44.3107048Z (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-15T00:12:44.3109530Z 2025-08-15T00:12:44.3109953Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Semaphore_test" == "verify_api_visibility" goto :eof 2025-08-15T00:12:44.3111163Z 2025-08-15T00:12:44.3111738Z (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-15T00:12:44.3112696Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Semaphore_test.exe" 2025-08-15T00:12:44.3113734Z 2025-08-15T00:12:44.3114144Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Semaphore_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:12:44.3114922Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Semaphore_test.exe" 2025-08-15T00:12:44.3115446Z goto :eof 2025-08-15T00:12:44.3115647Z ) 2025-08-15T00:12:44.3115761Z 2025-08-15T00:12:44.3116152Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_Semaphore_test" 2025-08-15T00:12:50.4800322Z Found test times from artifacts 2025-08-15T00:12:50.5473887Z Found test times from artifacts 2025-08-15T00:12:50.5496655Z Running all tests 2025-08-15T00:12:50.5501958Z Running parallel tests on 3 processes 2025-08-15T00:12:50.5502461Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:12:50.5502755Z Serial tests (0): 2025-08-15T00:12:50.5503021Z Parallel tests (1): 2025-08-15T00:12:50.5503269Z cpp/c10_Semaphore_test 1/1 2025-08-15T00:12:50.5503574Z Name: excluded (est. time: 0.0min) 2025-08-15T00:12:50.5503983Z Serial tests (0): 2025-08-15T00:12:50.5504226Z Parallel tests (0): 2025-08-15T00:12:50.5505805Z Running cpp/c10_Semaphore_test 1/1 ... [2025-08-15 00:12:50.549638] 2025-08-15T00:12:50.5506218Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:12:50.5515956Z 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-7ea48d6c5e38108d.xml', '-x', '--reruns=2'] ... [2025-08-15 00:12:50.550729] 2025-08-15T00:12:50.5517693Z 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-15T00:12:52.0830364Z 2025-08-15T00:12:52.0831288Z 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_70e57409bc377250_.log 2025-08-15T00:12:52.0832072Z 2025-08-15T00:12:56.5174102Z Running cpp/c10_Semaphore_test 1/1 ... [2025-08-15 00:12:56.515615] 2025-08-15T00:12:56.5174560Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:12:56.5183584Z 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-0bf069ef13ff1790.xml', '-x', '--reruns=2'] ... [2025-08-15 00:12:56.515615] 2025-08-15T00:12:58.0703691Z 2025-08-15T00:12:58.0704740Z 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_dddb70c8f3279a25_.log 2025-08-15T00:12:58.0705500Z 2025-08-15T00:12:58.8895107Z Running test batch 'tests to run' cost 8.34 seconds 2025-08-15T00:12:58.8902854Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:12:58.8903328Z Uploading artifacts took 0.00 seconds 2025-08-15T00:12:59.7032280Z 2025-08-15T00:12:59.7032964Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:12:59.7033415Z echo "c10_Semaphore_test" failed with exit code 0 2025-08-15T00:12:59.7033726Z goto fail 2025-08-15T00:12:59.7033905Z ) 2025-08-15T00:12:59.7034006Z 2025-08-15T00:12:59.7034193Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:12:59.7034625Z echo "c10_Semaphore_test" failed with exit code 0 2025-08-15T00:12:59.7034924Z goto fail 2025-08-15T00:12:59.7035096Z ) 2025-08-15T00:12:59.7035188Z 2025-08-15T00:12:59.7035345Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:12:59.7041714Z 2025-08-15T00:12:59.7042184Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:12:59.7042933Z call :libtorch_check "c10_SizesAndStrides_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_SizesAndStrides_test.exe" 2025-08-15T00:12:59.7043633Z if errorlevel 1 goto fail 2025-08-15T00:12:59.7043847Z ) 2025-08-15T00:12:59.7051770Z 2025-08-15T00:12:59.7052107Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:12:59.7055722Z 2025-08-15T00:12:59.7056270Z (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-15T00:12:59.7058761Z 2025-08-15T00:12:59.7059344Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_SizesAndStrides_test" == "verify_api_visibility" goto :eof 2025-08-15T00:12:59.7060492Z 2025-08-15T00:12:59.7061089Z (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-15T00:12:59.7062041Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_SizesAndStrides_test.exe" 2025-08-15T00:12:59.7063153Z 2025-08-15T00:12:59.7063557Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_SizesAndStrides_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:12:59.7064329Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_SizesAndStrides_test.exe" 2025-08-15T00:12:59.7064826Z goto :eof 2025-08-15T00:12:59.7065005Z ) 2025-08-15T00:12:59.7065101Z 2025-08-15T00:12:59.7065481Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_SizesAndStrides_test" 2025-08-15T00:13:05.7776614Z Found test times from artifacts 2025-08-15T00:13:05.8459909Z Found test times from artifacts 2025-08-15T00:13:05.8482888Z Running all tests 2025-08-15T00:13:05.8488056Z Running parallel tests on 3 processes 2025-08-15T00:13:05.8488502Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:13:05.8488775Z Serial tests (0): 2025-08-15T00:13:05.8488981Z Parallel tests (1): 2025-08-15T00:13:05.8489215Z cpp/c10_SizesAndStrides_test 1/1 2025-08-15T00:13:05.8489545Z Name: excluded (est. time: 0.0min) 2025-08-15T00:13:05.8489844Z Serial tests (0): 2025-08-15T00:13:05.8490039Z Parallel tests (0): 2025-08-15T00:13:05.8492149Z Running cpp/c10_SizesAndStrides_test 1/1 ... [2025-08-15 00:13:05.848968] 2025-08-15T00:13:05.8492572Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:13:05.8503357Z 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-24d9430234479dc1.xml', '-x', '--reruns=2'] ... [2025-08-15 00:13:05.850109] 2025-08-15T00:13:05.8505134Z 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-15T00:13:07.3902449Z 2025-08-15T00:13:07.3903461Z 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_37dca6883856d725_.log 2025-08-15T00:13:07.3904160Z 2025-08-15T00:13:11.8517695Z Running cpp/c10_SizesAndStrides_test 1/1 ... [2025-08-15 00:13:11.851135] 2025-08-15T00:13:11.8518150Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:13:11.8528019Z 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-6316b4dac7774bf3.xml', '-x', '--reruns=2'] ... [2025-08-15 00:13:11.852621] 2025-08-15T00:13:13.4611780Z 2025-08-15T00:13:13.4613056Z 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_56d931a2590b0437_.log 2025-08-15T00:13:13.4613810Z 2025-08-15T00:13:14.2777993Z Running test batch 'tests to run' cost 8.43 seconds 2025-08-15T00:13:14.2784481Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:13:14.2784925Z Uploading artifacts took 0.00 seconds 2025-08-15T00:13:14.9922084Z 2025-08-15T00:13:14.9922557Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:13:14.9923016Z echo "c10_SizesAndStrides_test" failed with exit code 0 2025-08-15T00:13:14.9923343Z goto fail 2025-08-15T00:13:14.9923524Z ) 2025-08-15T00:13:14.9923620Z 2025-08-15T00:13:14.9923828Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:13:14.9924265Z echo "c10_SizesAndStrides_test" failed with exit code 0 2025-08-15T00:13:14.9924635Z goto fail 2025-08-15T00:13:14.9924812Z ) 2025-08-15T00:13:14.9925102Z 2025-08-15T00:13:14.9925282Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:13:14.9931837Z 2025-08-15T00:13:14.9932085Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:13:14.9932780Z 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-15T00:13:14.9933590Z if errorlevel 1 goto fail 2025-08-15T00:13:14.9933817Z ) 2025-08-15T00:13:14.9943822Z 2025-08-15T00:13:14.9944185Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:13:14.9947700Z 2025-08-15T00:13:14.9948245Z (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-15T00:13:14.9950805Z 2025-08-15T00:13:14.9951305Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_small_vector_test" == "verify_api_visibility" goto :eof 2025-08-15T00:13:14.9952507Z 2025-08-15T00:13:14.9953061Z (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-15T00:13:14.9954032Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_small_vector_test.exe" 2025-08-15T00:13:14.9955461Z 2025-08-15T00:13:14.9955863Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_small_vector_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:13:14.9956595Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_small_vector_test.exe" 2025-08-15T00:13:14.9957079Z goto :eof 2025-08-15T00:13:14.9957265Z ) 2025-08-15T00:13:14.9957367Z 2025-08-15T00:13:14.9957839Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_small_vector_test" 2025-08-15T00:13:21.1693695Z Found test times from artifacts 2025-08-15T00:13:21.2367458Z Found test times from artifacts 2025-08-15T00:13:21.2389594Z Running all tests 2025-08-15T00:13:21.2395127Z Running parallel tests on 3 processes 2025-08-15T00:13:21.2395523Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:13:21.2395792Z Serial tests (0): 2025-08-15T00:13:21.2396017Z Parallel tests (1): 2025-08-15T00:13:21.2396245Z cpp/c10_small_vector_test 1/1 2025-08-15T00:13:21.2396508Z Name: excluded (est. time: 0.0min) 2025-08-15T00:13:21.2396746Z Serial tests (0): 2025-08-15T00:13:21.2396954Z Parallel tests (0): 2025-08-15T00:13:21.2399981Z Running cpp/c10_small_vector_test 1/1 ... [2025-08-15 00:13:21.239354] 2025-08-15T00:13:21.2400373Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:13:21.2409364Z 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-82b2f7c51e1961f7.xml', '-x', '--reruns=2'] ... [2025-08-15 00:13:21.240507] 2025-08-15T00:13:21.2412027Z 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-15T00:13:22.7677334Z 2025-08-15T00:13:22.7679921Z 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_34546cef2d29e422_.log 2025-08-15T00:13:22.7680557Z 2025-08-15T00:13:27.2359809Z Running cpp/c10_small_vector_test 1/1 ... [2025-08-15 00:13:27.235305] 2025-08-15T00:13:27.2360257Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:13:27.2369677Z 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-e9011f6fa38472d9.xml', '-x', '--reruns=2'] ... [2025-08-15 00:13:27.236478] 2025-08-15T00:13:29.6477832Z 2025-08-15T00:13:29.6478982Z 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_7b748d41438e7f90_.log 2025-08-15T00:13:29.6483611Z 2025-08-15T00:13:30.5346921Z Running test batch 'tests to run' cost 9.29 seconds 2025-08-15T00:13:30.5353583Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:13:30.5354036Z Uploading artifacts took 0.00 seconds 2025-08-15T00:13:31.2433072Z 2025-08-15T00:13:31.2433631Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:13:31.2434081Z echo "c10_small_vector_test" failed with exit code 0 2025-08-15T00:13:31.2434396Z goto fail 2025-08-15T00:13:31.2434589Z ) 2025-08-15T00:13:31.2434697Z 2025-08-15T00:13:31.2434890Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:13:31.2435309Z echo "c10_small_vector_test" failed with exit code 0 2025-08-15T00:13:31.2435616Z goto fail 2025-08-15T00:13:31.2435794Z ) 2025-08-15T00:13:31.2436632Z 2025-08-15T00:13:31.2437014Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:13:31.2443872Z 2025-08-15T00:13:31.2444085Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:13:31.2444734Z call :libtorch_check "c10_ssize_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ssize_test.exe" 2025-08-15T00:13:31.2445322Z if errorlevel 1 goto fail 2025-08-15T00:13:31.2445551Z ) 2025-08-15T00:13:31.2454190Z 2025-08-15T00:13:31.2454590Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:13:31.2458132Z 2025-08-15T00:13:31.2458944Z (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-15T00:13:31.2461672Z 2025-08-15T00:13:31.2462249Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_ssize_test" == "verify_api_visibility" goto :eof 2025-08-15T00:13:31.2462760Z 2025-08-15T00:13:31.2463298Z (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-15T00:13:31.2464201Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ssize_test.exe" 2025-08-15T00:13:31.2465133Z 2025-08-15T00:13:31.2465540Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_ssize_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:13:31.2466238Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ssize_test.exe" 2025-08-15T00:13:31.2466698Z goto :eof 2025-08-15T00:13:31.2466878Z ) 2025-08-15T00:13:31.2466979Z 2025-08-15T00:13:31.2467338Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_ssize_test" 2025-08-15T00:13:37.4513570Z Found test times from artifacts 2025-08-15T00:13:37.5318249Z Found test times from artifacts 2025-08-15T00:13:37.5339863Z Running all tests 2025-08-15T00:13:37.5345288Z Running parallel tests on 3 processes 2025-08-15T00:13:37.5345700Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:13:37.5345958Z Serial tests (0): 2025-08-15T00:13:37.5346211Z Parallel tests (1): 2025-08-15T00:13:37.5346424Z cpp/c10_ssize_test 1/1 2025-08-15T00:13:37.5346661Z Name: excluded (est. time: 0.0min) 2025-08-15T00:13:37.5346899Z Serial tests (0): 2025-08-15T00:13:37.5347102Z Parallel tests (0): 2025-08-15T00:13:37.5349114Z Running cpp/c10_ssize_test 1/1 ... [2025-08-15 00:13:37.523969] 2025-08-15T00:13:37.5349474Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:13:37.5359076Z 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-07d726a181098bbf.xml', '-x', '--reruns=2'] ... [2025-08-15 00:13:37.523969] 2025-08-15T00:13:37.5360817Z 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-15T00:13:39.0885271Z 2025-08-15T00:13:39.0886280Z 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_37a591903eea2c7e_.log 2025-08-15T00:13:39.0886872Z 2025-08-15T00:13:43.5316043Z Running cpp/c10_ssize_test 1/1 ... [2025-08-15 00:13:43.530727] 2025-08-15T00:13:43.5316496Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:13:43.5325546Z 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-d42ad8ecac355bff.xml', '-x', '--reruns=2'] ... [2025-08-15 00:13:43.532327] 2025-08-15T00:13:45.0789722Z 2025-08-15T00:13:45.0790582Z 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_9aa22fb78a2e727b_.log 2025-08-15T00:13:45.0791506Z 2025-08-15T00:13:45.9008554Z Running test batch 'tests to run' cost 8.38 seconds 2025-08-15T00:13:45.9016163Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:13:45.9016625Z Uploading artifacts took 0.00 seconds 2025-08-15T00:13:46.6128739Z 2025-08-15T00:13:46.6129267Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:13:46.6129697Z echo "c10_ssize_test" failed with exit code 0 2025-08-15T00:13:46.6129994Z goto fail 2025-08-15T00:13:46.6130171Z ) 2025-08-15T00:13:46.6130284Z 2025-08-15T00:13:46.6130654Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:13:46.6131199Z echo "c10_ssize_test" failed with exit code 0 2025-08-15T00:13:46.6131577Z goto fail 2025-08-15T00:13:46.6131795Z ) 2025-08-15T00:13:46.6131891Z 2025-08-15T00:13:46.6132081Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:13:46.6138763Z 2025-08-15T00:13:46.6139004Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:13:46.6139696Z call :libtorch_check "c10_StreamGuard_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_StreamGuard_test.exe" 2025-08-15T00:13:46.6140341Z if errorlevel 1 goto fail 2025-08-15T00:13:46.6140564Z ) 2025-08-15T00:13:46.6150031Z 2025-08-15T00:13:46.6150411Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:13:46.6153935Z 2025-08-15T00:13:46.6154475Z (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-15T00:13:46.6157786Z 2025-08-15T00:13:46.6158820Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_StreamGuard_test" == "verify_api_visibility" goto :eof 2025-08-15T00:13:46.6159858Z 2025-08-15T00:13:46.6160945Z (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-15T00:13:46.6162862Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_StreamGuard_test.exe" 2025-08-15T00:13:46.6163765Z 2025-08-15T00:13:46.6164449Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_StreamGuard_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:13:46.6165984Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_StreamGuard_test.exe" 2025-08-15T00:13:46.6167016Z goto :eof 2025-08-15T00:13:46.6167423Z ) 2025-08-15T00:13:46.6167646Z 2025-08-15T00:13:46.6168466Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_StreamGuard_test" 2025-08-15T00:13:52.6789423Z Found test times from artifacts 2025-08-15T00:13:52.7581712Z Found test times from artifacts 2025-08-15T00:13:52.7604009Z Running all tests 2025-08-15T00:13:52.7609459Z Running parallel tests on 3 processes 2025-08-15T00:13:52.7609855Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:13:52.7610145Z Serial tests (0): 2025-08-15T00:13:52.7610546Z Parallel tests (1): 2025-08-15T00:13:52.7610773Z cpp/c10_StreamGuard_test 1/1 2025-08-15T00:13:52.7611044Z Name: excluded (est. time: 0.0min) 2025-08-15T00:13:52.7611296Z Serial tests (0): 2025-08-15T00:13:52.7611513Z Parallel tests (0): 2025-08-15T00:13:52.7613278Z Running cpp/c10_StreamGuard_test 1/1 ... [2025-08-15 00:13:52.757495] 2025-08-15T00:13:52.7613699Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:13:52.7623704Z 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-4eeebda42b9962d6.xml', '-x', '--reruns=2'] ... [2025-08-15 00:13:52.757495] 2025-08-15T00:13:52.7625401Z 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-15T00:13:54.3096909Z 2025-08-15T00:13:54.3097749Z 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_0e903a1679532728_.log 2025-08-15T00:13:54.3099650Z 2025-08-15T00:13:58.8377144Z Running cpp/c10_StreamGuard_test 1/1 ... [2025-08-15 00:13:58.831113] 2025-08-15T00:13:58.8385663Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:13:58.8387143Z 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-d2321ef115192347.xml', '-x', '--reruns=2'] ... [2025-08-15 00:13:58.831113] 2025-08-15T00:14:00.3469886Z 2025-08-15T00:14:00.3470878Z 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_8a74204baeb724d2_.log 2025-08-15T00:14:00.3471684Z 2025-08-15T00:14:01.1896442Z Running test batch 'tests to run' cost 8.43 seconds 2025-08-15T00:14:01.1903076Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:14:01.1903567Z Uploading artifacts took 0.00 seconds 2025-08-15T00:14:01.8978883Z 2025-08-15T00:14:01.8980159Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:14:01.8980611Z echo "c10_StreamGuard_test" failed with exit code 0 2025-08-15T00:14:01.8980936Z goto fail 2025-08-15T00:14:01.8981142Z ) 2025-08-15T00:14:01.8981255Z 2025-08-15T00:14:01.8981451Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:14:01.8981901Z echo "c10_StreamGuard_test" failed with exit code 0 2025-08-15T00:14:01.8982210Z goto fail 2025-08-15T00:14:01.8982405Z ) 2025-08-15T00:14:01.8982503Z 2025-08-15T00:14:01.8982660Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:14:01.8988478Z 2025-08-15T00:14:01.8988729Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:14:01.8989437Z 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-15T00:14:01.8990077Z if errorlevel 1 goto fail 2025-08-15T00:14:01.8990341Z ) 2025-08-15T00:14:01.8999148Z 2025-08-15T00:14:01.8999770Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:14:01.9003063Z 2025-08-15T00:14:01.9003559Z (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-15T00:14:01.9006085Z 2025-08-15T00:14:01.9006613Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_string_util_test" == "verify_api_visibility" goto :eof 2025-08-15T00:14:01.9007778Z 2025-08-15T00:14:01.9008375Z (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-15T00:14:01.9009481Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_string_util_test.exe" 2025-08-15T00:14:01.9009923Z 2025-08-15T00:14:01.9010551Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_string_util_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:14:01.9011302Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_string_util_test.exe" 2025-08-15T00:14:01.9011800Z goto :eof 2025-08-15T00:14:01.9011998Z ) 2025-08-15T00:14:01.9012110Z 2025-08-15T00:14:01.9012482Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_string_util_test" 2025-08-15T00:14:08.0427135Z Found test times from artifacts 2025-08-15T00:14:08.1109026Z Found test times from artifacts 2025-08-15T00:14:08.1131747Z Running all tests 2025-08-15T00:14:08.1137137Z Running parallel tests on 3 processes 2025-08-15T00:14:08.1137589Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:14:08.1137894Z Serial tests (0): 2025-08-15T00:14:08.1138124Z Parallel tests (1): 2025-08-15T00:14:08.1138354Z cpp/c10_string_util_test 1/1 2025-08-15T00:14:08.1138626Z Name: excluded (est. time: 0.0min) 2025-08-15T00:14:08.1138877Z Serial tests (0): 2025-08-15T00:14:08.1139094Z Parallel tests (0): 2025-08-15T00:14:08.1140976Z Running cpp/c10_string_util_test 1/1 ... [2025-08-15 00:14:08.111597] 2025-08-15T00:14:08.1141397Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:14:08.1151184Z 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-1020e588a8c9624c.xml', '-x', '--reruns=2'] ... [2025-08-15 00:14:08.111597] 2025-08-15T00:14:08.1152938Z 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-15T00:14:09.6479072Z 2025-08-15T00:14:09.6479933Z 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_9fbaf046f105f623_.log 2025-08-15T00:14:09.6480624Z 2025-08-15T00:14:14.0345533Z Running cpp/c10_string_util_test 1/1 ... [2025-08-15 00:14:14.034021] 2025-08-15T00:14:14.0346013Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:14:14.0355473Z 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-cf462bfe3e269caa.xml', '-x', '--reruns=2'] ... [2025-08-15 00:14:14.035199] 2025-08-15T00:14:15.6030044Z 2025-08-15T00:14:15.6030895Z 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_8352a91876025807_.log 2025-08-15T00:14:15.6031963Z 2025-08-15T00:14:16.4548306Z Running test batch 'tests to run' cost 8.33 seconds 2025-08-15T00:14:16.4555903Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:14:16.4556364Z Uploading artifacts took 0.00 seconds 2025-08-15T00:14:17.2628541Z 2025-08-15T00:14:17.2629249Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:14:17.2629736Z echo "c10_string_util_test" failed with exit code 0 2025-08-15T00:14:17.2630081Z goto fail 2025-08-15T00:14:17.2630286Z ) 2025-08-15T00:14:17.2630396Z 2025-08-15T00:14:17.2630597Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:14:17.2632052Z echo "c10_string_util_test" failed with exit code 0 2025-08-15T00:14:17.2632359Z goto fail 2025-08-15T00:14:17.2632563Z ) 2025-08-15T00:14:17.2632668Z 2025-08-15T00:14:17.2632841Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:14:17.2638668Z 2025-08-15T00:14:17.2639085Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:14:17.2639799Z 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-15T00:14:17.2640453Z if errorlevel 1 goto fail 2025-08-15T00:14:17.2640685Z ) 2025-08-15T00:14:17.2662569Z 2025-08-15T00:14:17.2663198Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:14:17.2663594Z 2025-08-15T00:14:17.2664035Z (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-15T00:14:17.2664584Z 2025-08-15T00:14:17.2664911Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_string_view_test" == "verify_api_visibility" goto :eof 2025-08-15T00:14:17.2665340Z 2025-08-15T00:14:17.2665853Z (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-15T00:14:17.2666776Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_string_view_test.exe" 2025-08-15T00:14:17.2668215Z 2025-08-15T00:14:17.2668536Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_string_view_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:14:17.2669281Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_string_view_test.exe" 2025-08-15T00:14:17.2669902Z goto :eof 2025-08-15T00:14:17.2670094Z ) 2025-08-15T00:14:17.2670188Z 2025-08-15T00:14:17.2670628Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_string_view_test" 2025-08-15T00:14:23.3360779Z Found test times from artifacts 2025-08-15T00:14:23.4043693Z Found test times from artifacts 2025-08-15T00:14:23.4066595Z Running all tests 2025-08-15T00:14:23.4072231Z Running parallel tests on 3 processes 2025-08-15T00:14:23.4072656Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:14:23.4072992Z Serial tests (0): 2025-08-15T00:14:23.4073226Z Parallel tests (1): 2025-08-15T00:14:23.4073451Z cpp/c10_string_view_test 1/1 2025-08-15T00:14:23.4073723Z Name: excluded (est. time: 0.0min) 2025-08-15T00:14:23.4073971Z Serial tests (0): 2025-08-15T00:14:23.4074192Z Parallel tests (0): 2025-08-15T00:14:23.4076229Z Running cpp/c10_string_view_test 1/1 ... [2025-08-15 00:14:23.407090] 2025-08-15T00:14:23.4076640Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:14:23.4086384Z 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-d00830373a734a47.xml', '-x', '--reruns=2'] ... [2025-08-15 00:14:23.407090] 2025-08-15T00:14:23.4088140Z 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-15T00:14:24.9282036Z 2025-08-15T00:14:24.9283063Z 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_82eb17729423a0a4_.log 2025-08-15T00:14:24.9283729Z 2025-08-15T00:14:29.5105487Z Running cpp/c10_string_view_test 1/1 ... [2025-08-15 00:14:29.508884] 2025-08-15T00:14:29.5105940Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:14:29.5115018Z 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-48ab07f481a688c4.xml', '-x', '--reruns=2'] ... [2025-08-15 00:14:29.508884] 2025-08-15T00:14:31.0172825Z 2025-08-15T00:14:31.0173723Z 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_371efd3032d46739_.log 2025-08-15T00:14:31.0174539Z 2025-08-15T00:14:31.8346777Z Running test batch 'tests to run' cost 8.43 seconds 2025-08-15T00:14:31.8353221Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:14:31.8353684Z Uploading artifacts took 0.00 seconds 2025-08-15T00:14:32.5440302Z 2025-08-15T00:14:32.5441101Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:14:32.5441589Z echo "c10_string_view_test" failed with exit code 0 2025-08-15T00:14:32.5441922Z goto fail 2025-08-15T00:14:32.5442115Z ) 2025-08-15T00:14:32.5442252Z 2025-08-15T00:14:32.5442444Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:14:32.5442881Z echo "c10_string_view_test" failed with exit code 0 2025-08-15T00:14:32.5443243Z goto fail 2025-08-15T00:14:32.5443436Z ) 2025-08-15T00:14:32.5444034Z 2025-08-15T00:14:32.5444255Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:14:32.5450684Z 2025-08-15T00:14:32.5450922Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:14:32.5451598Z call :libtorch_check "c10_SymInt_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_SymInt_test.exe" 2025-08-15T00:14:32.5452205Z if errorlevel 1 goto fail 2025-08-15T00:14:32.5452441Z ) 2025-08-15T00:14:32.5461826Z 2025-08-15T00:14:32.5462324Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:14:32.5465838Z 2025-08-15T00:14:32.5466438Z (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-15T00:14:32.5469851Z 2025-08-15T00:14:32.5470340Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_SymInt_test" == "verify_api_visibility" goto :eof 2025-08-15T00:14:32.5471601Z 2025-08-15T00:14:32.5472251Z (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-15T00:14:32.5473207Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_SymInt_test.exe" 2025-08-15T00:14:32.5474085Z 2025-08-15T00:14:32.5474457Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_SymInt_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:14:32.5475157Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_SymInt_test.exe" 2025-08-15T00:14:32.5475652Z goto :eof 2025-08-15T00:14:32.5475855Z ) 2025-08-15T00:14:32.5475954Z 2025-08-15T00:14:32.5476305Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_SymInt_test" 2025-08-15T00:14:38.6771772Z Found test times from artifacts 2025-08-15T00:14:38.7449385Z Found test times from artifacts 2025-08-15T00:14:38.7471530Z Running all tests 2025-08-15T00:14:38.7477090Z Running parallel tests on 3 processes 2025-08-15T00:14:38.7477511Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:14:38.7477806Z Serial tests (0): 2025-08-15T00:14:38.7478028Z Parallel tests (1): 2025-08-15T00:14:38.7478252Z cpp/c10_SymInt_test 1/1 2025-08-15T00:14:38.7478558Z Name: excluded (est. time: 0.0min) 2025-08-15T00:14:38.7478850Z Serial tests (0): 2025-08-15T00:14:38.7479066Z Parallel tests (0): 2025-08-15T00:14:38.7481059Z Running cpp/c10_SymInt_test 1/1 ... [2025-08-15 00:14:38.747914] 2025-08-15T00:14:38.7481453Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:14:38.7492233Z 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-98df702c1af36b7a.xml', '-x', '--reruns=2'] ... [2025-08-15 00:14:38.749019] 2025-08-15T00:14:38.7494312Z 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-15T00:14:40.3159153Z 2025-08-15T00:14:40.3160038Z 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_6f38dca13a5e9081_.log 2025-08-15T00:14:40.3160754Z 2025-08-15T00:14:44.7471050Z Running cpp/c10_SymInt_test 1/1 ... [2025-08-15 00:14:44.741931] 2025-08-15T00:14:44.7471534Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:14:44.7481100Z 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-f2b970972b8f1b8c.xml', '-x', '--reruns=2'] ... [2025-08-15 00:14:44.747500] 2025-08-15T00:14:46.2744569Z 2025-08-15T00:14:46.2745638Z 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_8317bd1a3fa23645_.log 2025-08-15T00:14:46.2746376Z 2025-08-15T00:14:47.1102222Z Running test batch 'tests to run' cost 8.36 seconds 2025-08-15T00:14:47.1108453Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:14:47.1108951Z Uploading artifacts took 0.00 seconds 2025-08-15T00:14:47.8329641Z 2025-08-15T00:14:47.8330370Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:14:47.8331519Z echo "c10_SymInt_test" failed with exit code 0 2025-08-15T00:14:47.8331889Z goto fail 2025-08-15T00:14:47.8332093Z ) 2025-08-15T00:14:47.8332336Z 2025-08-15T00:14:47.8332616Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:14:47.8333048Z echo "c10_SymInt_test" failed with exit code 0 2025-08-15T00:14:47.8333382Z goto fail 2025-08-15T00:14:47.8333599Z ) 2025-08-15T00:14:47.8333705Z 2025-08-15T00:14:47.8333870Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:14:47.8340470Z 2025-08-15T00:14:47.8340928Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:14:47.8341772Z call :libtorch_check "c10_Synchronized_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Synchronized_test.exe" 2025-08-15T00:14:47.8342471Z if errorlevel 1 goto fail 2025-08-15T00:14:47.8342743Z ) 2025-08-15T00:14:47.8351304Z 2025-08-15T00:14:47.8351780Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:14:47.8355480Z 2025-08-15T00:14:47.8355991Z (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-15T00:14:47.8358588Z 2025-08-15T00:14:47.8359051Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Synchronized_test" == "verify_api_visibility" goto :eof 2025-08-15T00:14:47.8360430Z 2025-08-15T00:14:47.8361019Z (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-15T00:14:47.8362013Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Synchronized_test.exe" 2025-08-15T00:14:47.8363229Z 2025-08-15T00:14:47.8363651Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Synchronized_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:14:47.8364444Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Synchronized_test.exe" 2025-08-15T00:14:47.8364990Z goto :eof 2025-08-15T00:14:47.8365191Z ) 2025-08-15T00:14:47.8365297Z 2025-08-15T00:14:47.8365752Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_Synchronized_test" 2025-08-15T00:14:53.9077364Z Found test times from artifacts 2025-08-15T00:14:53.9755253Z Found test times from artifacts 2025-08-15T00:14:53.9777863Z Running all tests 2025-08-15T00:14:53.9783298Z Running parallel tests on 3 processes 2025-08-15T00:14:53.9783819Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:14:53.9784115Z Serial tests (0): 2025-08-15T00:14:53.9784382Z Parallel tests (1): 2025-08-15T00:14:53.9784634Z cpp/c10_Synchronized_test 1/1 2025-08-15T00:14:53.9785007Z Name: excluded (est. time: 0.0min) 2025-08-15T00:14:53.9785363Z Serial tests (0): 2025-08-15T00:14:53.9785589Z Parallel tests (0): 2025-08-15T00:14:53.9787258Z Running cpp/c10_Synchronized_test 1/1 ... [2025-08-15 00:14:53.978511] 2025-08-15T00:14:53.9787687Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:14:53.9798938Z 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-092d9415093d201d.xml', '-x', '--reruns=2'] ... [2025-08-15 00:14:53.979685] 2025-08-15T00:14:53.9800679Z 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-15T00:14:55.5031347Z 2025-08-15T00:14:55.5032396Z 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_2f4437abea361cda_.log 2025-08-15T00:14:55.5033257Z 2025-08-15T00:14:59.8993084Z Running cpp/c10_Synchronized_test 1/1 ... [2025-08-15 00:14:59.894147] 2025-08-15T00:14:59.9001885Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:14:59.9003249Z 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-58d9c4ba41b8d39f.xml', '-x', '--reruns=2'] ... [2025-08-15 00:14:59.894147] 2025-08-15T00:15:01.4675860Z 2025-08-15T00:15:01.4676761Z 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_2c37d47cc36d056e_.log 2025-08-15T00:15:01.4677548Z 2025-08-15T00:15:02.2953233Z Running test batch 'tests to run' cost 8.32 seconds 2025-08-15T00:15:02.2959352Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:15:02.2959828Z Uploading artifacts took 0.00 seconds 2025-08-15T00:15:03.0137260Z 2025-08-15T00:15:03.0137969Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:15:03.0138903Z echo "c10_Synchronized_test" failed with exit code 0 2025-08-15T00:15:03.0139286Z goto fail 2025-08-15T00:15:03.0139510Z ) 2025-08-15T00:15:03.0139644Z 2025-08-15T00:15:03.0139846Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:15:03.0140316Z echo "c10_Synchronized_test" failed with exit code 0 2025-08-15T00:15:03.0140652Z goto fail 2025-08-15T00:15:03.0140920Z ) 2025-08-15T00:15:03.0141035Z 2025-08-15T00:15:03.0141201Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:15:03.0147645Z 2025-08-15T00:15:03.0147886Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:15:03.0148578Z call :libtorch_check "c10_tempfile_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_tempfile_test.exe" 2025-08-15T00:15:03.0149285Z if errorlevel 1 goto fail 2025-08-15T00:15:03.0149645Z ) 2025-08-15T00:15:03.0159166Z 2025-08-15T00:15:03.0159560Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:15:03.0163209Z 2025-08-15T00:15:03.0163703Z (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-15T00:15:03.0166355Z 2025-08-15T00:15:03.0167196Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_tempfile_test" == "verify_api_visibility" goto :eof 2025-08-15T00:15:03.0168173Z 2025-08-15T00:15:03.0168842Z (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-15T00:15:03.0169805Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_tempfile_test.exe" 2025-08-15T00:15:03.0170341Z 2025-08-15T00:15:03.0170785Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_tempfile_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:15:03.0171550Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_tempfile_test.exe" 2025-08-15T00:15:03.0172108Z goto :eof 2025-08-15T00:15:03.0172335Z ) 2025-08-15T00:15:03.0172496Z 2025-08-15T00:15:03.0172865Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_tempfile_test" 2025-08-15T00:15:09.2628102Z Found test times from artifacts 2025-08-15T00:15:09.3359584Z Found test times from artifacts 2025-08-15T00:15:09.3389047Z Running all tests 2025-08-15T00:15:09.3396075Z Running parallel tests on 3 processes 2025-08-15T00:15:09.3396508Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:15:09.3396786Z Serial tests (0): 2025-08-15T00:15:09.3397004Z Parallel tests (1): 2025-08-15T00:15:09.3397241Z cpp/c10_tempfile_test 1/1 2025-08-15T00:15:09.3397497Z Name: excluded (est. time: 0.0min) 2025-08-15T00:15:09.3397767Z Serial tests (0): 2025-08-15T00:15:09.3397965Z Parallel tests (0): 2025-08-15T00:15:09.3400123Z Running cpp/c10_tempfile_test 1/1 ... [2025-08-15 00:15:09.339449] 2025-08-15T00:15:09.3400512Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:15:09.3411899Z 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-c983303b6480b2b9.xml', '-x', '--reruns=2'] ... [2025-08-15 00:15:09.340766] 2025-08-15T00:15:09.3413684Z 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-15T00:15:10.8880348Z 2025-08-15T00:15:10.8881412Z 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_7cd5adbae76b8f07_.log 2025-08-15T00:15:10.8882038Z 2025-08-15T00:15:15.3758119Z Running cpp/c10_tempfile_test 1/1 ... [2025-08-15 00:15:15.375163] 2025-08-15T00:15:15.3758584Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:15:15.3768296Z 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-655d5b628e6ac2d1.xml', '-x', '--reruns=2'] ... [2025-08-15 00:15:15.376641] 2025-08-15T00:15:16.9211558Z 2025-08-15T00:15:16.9212433Z 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_0e66fbe5c6b9139b_.log 2025-08-15T00:15:16.9213272Z 2025-08-15T00:15:17.7540733Z Running test batch 'tests to run' cost 8.41 seconds 2025-08-15T00:15:17.7546863Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:15:17.7547300Z Uploading artifacts took 0.00 seconds 2025-08-15T00:15:18.4715161Z 2025-08-15T00:15:18.4715842Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:15:18.4716295Z echo "c10_tempfile_test" failed with exit code 0 2025-08-15T00:15:18.4716604Z goto fail 2025-08-15T00:15:18.4716783Z ) 2025-08-15T00:15:18.4716882Z 2025-08-15T00:15:18.4717066Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:15:18.4717477Z echo "c10_tempfile_test" failed with exit code 0 2025-08-15T00:15:18.4717765Z goto fail 2025-08-15T00:15:18.4717946Z ) 2025-08-15T00:15:18.4718190Z 2025-08-15T00:15:18.4718355Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:15:18.4724793Z 2025-08-15T00:15:18.4725020Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:15:18.4725715Z call :libtorch_check "c10_ThreadLocal_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ThreadLocal_test.exe" 2025-08-15T00:15:18.4726351Z if errorlevel 1 goto fail 2025-08-15T00:15:18.4726581Z ) 2025-08-15T00:15:18.4734963Z 2025-08-15T00:15:18.4735354Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:15:18.4738875Z 2025-08-15T00:15:18.4739366Z (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-15T00:15:18.4741941Z 2025-08-15T00:15:18.4742452Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_ThreadLocal_test" == "verify_api_visibility" goto :eof 2025-08-15T00:15:18.4743675Z 2025-08-15T00:15:18.4744509Z (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-15T00:15:18.4745515Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ThreadLocal_test.exe" 2025-08-15T00:15:18.4746707Z 2025-08-15T00:15:18.4747119Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_ThreadLocal_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:15:18.4748016Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ThreadLocal_test.exe" 2025-08-15T00:15:18.4748639Z goto :eof 2025-08-15T00:15:18.4748899Z ) 2025-08-15T00:15:18.4748997Z 2025-08-15T00:15:18.4749381Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_ThreadLocal_test" 2025-08-15T00:15:24.6988993Z Found test times from artifacts 2025-08-15T00:15:24.7722823Z Found test times from artifacts 2025-08-15T00:15:24.7745164Z Running all tests 2025-08-15T00:15:24.7750653Z Running parallel tests on 3 processes 2025-08-15T00:15:24.7751007Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:15:24.7751287Z Serial tests (0): 2025-08-15T00:15:24.7751497Z Parallel tests (1): 2025-08-15T00:15:24.7751734Z cpp/c10_ThreadLocal_test 1/1 2025-08-15T00:15:24.7751988Z Name: excluded (est. time: 0.0min) 2025-08-15T00:15:24.7752240Z Serial tests (0): 2025-08-15T00:15:24.7752435Z Parallel tests (0): 2025-08-15T00:15:24.7754221Z Running cpp/c10_ThreadLocal_test 1/1 ... [2025-08-15 00:15:24.770316] 2025-08-15T00:15:24.7754620Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:15:24.7764162Z 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-a0f08d0270e04536.xml', '-x', '--reruns=2'] ... [2025-08-15 00:15:24.770316] 2025-08-15T00:15:24.7765827Z 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-15T00:15:26.2890116Z 2025-08-15T00:15:26.2890979Z 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_39e3f274196b5bb4_.log 2025-08-15T00:15:26.2891656Z 2025-08-15T00:15:30.8394513Z Running cpp/c10_ThreadLocal_test 1/1 ... [2025-08-15 00:15:30.838810] 2025-08-15T00:15:30.8402955Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:15:30.8404281Z 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-fff759e8d1a3c0ba.xml', '-x', '--reruns=2'] ... [2025-08-15 00:15:30.838810] 2025-08-15T00:15:32.3989409Z 2025-08-15T00:15:32.3990867Z 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_ca73e7ba77e3bc4f_.log 2025-08-15T00:15:32.3991526Z 2025-08-15T00:15:33.2219641Z Running test batch 'tests to run' cost 8.45 seconds 2025-08-15T00:15:33.2226131Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:15:33.2226576Z Uploading artifacts took 0.00 seconds 2025-08-15T00:15:34.0203649Z 2025-08-15T00:15:34.0204394Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:15:34.0204890Z echo "c10_ThreadLocal_test" failed with exit code 0 2025-08-15T00:15:34.0205213Z goto fail 2025-08-15T00:15:34.0205402Z ) 2025-08-15T00:15:34.0205511Z 2025-08-15T00:15:34.0205700Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:15:34.0206134Z echo "c10_ThreadLocal_test" failed with exit code 0 2025-08-15T00:15:34.0206439Z goto fail 2025-08-15T00:15:34.0206631Z ) 2025-08-15T00:15:34.0206728Z 2025-08-15T00:15:34.0206891Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:15:34.0214408Z 2025-08-15T00:15:34.0214647Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:15:34.0215305Z call :libtorch_check "c10_typeid_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_typeid_test.exe" 2025-08-15T00:15:34.0215899Z if errorlevel 1 goto fail 2025-08-15T00:15:34.0216134Z ) 2025-08-15T00:15:34.0225835Z 2025-08-15T00:15:34.0226225Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:15:34.0229745Z 2025-08-15T00:15:34.0230487Z (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-15T00:15:34.0232790Z 2025-08-15T00:15:34.0233164Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_typeid_test" == "verify_api_visibility" goto :eof 2025-08-15T00:15:34.0234461Z 2025-08-15T00:15:34.0234978Z (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-15T00:15:34.0235876Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_typeid_test.exe" 2025-08-15T00:15:34.0236732Z 2025-08-15T00:15:34.0237124Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_typeid_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:15:34.0237818Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_typeid_test.exe" 2025-08-15T00:15:34.0238306Z goto :eof 2025-08-15T00:15:34.0238478Z ) 2025-08-15T00:15:34.0238585Z 2025-08-15T00:15:34.0238936Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_typeid_test" 2025-08-15T00:15:40.1131803Z Found test times from artifacts 2025-08-15T00:15:40.1809770Z Found test times from artifacts 2025-08-15T00:15:40.1832606Z Running all tests 2025-08-15T00:15:40.1838522Z Running parallel tests on 3 processes 2025-08-15T00:15:40.1838911Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:15:40.1839174Z Serial tests (0): 2025-08-15T00:15:40.1839373Z Parallel tests (1): 2025-08-15T00:15:40.1839605Z cpp/c10_typeid_test 1/1 2025-08-15T00:15:40.1839840Z Name: excluded (est. time: 0.0min) 2025-08-15T00:15:40.1840093Z Serial tests (0): 2025-08-15T00:15:40.1840283Z Parallel tests (0): 2025-08-15T00:15:40.1842350Z Running cpp/c10_typeid_test 1/1 ... [2025-08-15 00:15:40.183802] 2025-08-15T00:15:40.1842735Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:15:40.1853971Z 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-11c545e1f46ac30e.xml', '-x', '--reruns=2'] ... [2025-08-15 00:15:40.183802] 2025-08-15T00:15:40.1855894Z 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-15T00:15:41.7625092Z 2025-08-15T00:15:41.7625924Z 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_63421b78d6ac1bbb_.log 2025-08-15T00:15:41.7626749Z 2025-08-15T00:15:46.2150533Z Running cpp/c10_typeid_test 1/1 ... [2025-08-15 00:15:46.213544] 2025-08-15T00:15:46.2150966Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:15:46.2160298Z 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-682c45a952ace48e.xml', '-x', '--reruns=2'] ... [2025-08-15 00:15:46.213544] 2025-08-15T00:15:47.7639955Z 2025-08-15T00:15:47.7640797Z 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_8686d14088c503af_.log 2025-08-15T00:15:47.7641571Z 2025-08-15T00:15:48.6195340Z Running test batch 'tests to run' cost 8.44 seconds 2025-08-15T00:15:48.6203257Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:15:48.6203728Z Uploading artifacts took 0.00 seconds 2025-08-15T00:15:49.3431846Z 2025-08-15T00:15:49.3432715Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:15:49.3433208Z echo "c10_typeid_test" failed with exit code 0 2025-08-15T00:15:49.3433633Z goto fail 2025-08-15T00:15:49.3433913Z ) 2025-08-15T00:15:49.3434029Z 2025-08-15T00:15:49.3434218Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:15:49.3434711Z echo "c10_typeid_test" failed with exit code 0 2025-08-15T00:15:49.3435045Z goto fail 2025-08-15T00:15:49.3435217Z ) 2025-08-15T00:15:49.3435316Z 2025-08-15T00:15:49.3435507Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:15:49.3444277Z 2025-08-15T00:15:49.3444786Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:15:49.3445528Z call :libtorch_check "c10_TypeIndex_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_TypeIndex_test.exe" 2025-08-15T00:15:49.3446221Z if errorlevel 1 goto fail 2025-08-15T00:15:49.3446469Z ) 2025-08-15T00:15:49.3455006Z 2025-08-15T00:15:49.3455438Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:15:49.3460271Z 2025-08-15T00:15:49.3460759Z (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-15T00:15:49.3463398Z 2025-08-15T00:15:49.3463815Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_TypeIndex_test" == "verify_api_visibility" goto :eof 2025-08-15T00:15:49.3465194Z 2025-08-15T00:15:49.3465786Z (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-15T00:15:49.3466709Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_TypeIndex_test.exe" 2025-08-15T00:15:49.3467649Z 2025-08-15T00:15:49.3468043Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_TypeIndex_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:15:49.3468769Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_TypeIndex_test.exe" 2025-08-15T00:15:49.3469254Z goto :eof 2025-08-15T00:15:49.3469427Z ) 2025-08-15T00:15:49.3469533Z 2025-08-15T00:15:49.3469887Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_TypeIndex_test" 2025-08-15T00:15:55.4414676Z Found test times from artifacts 2025-08-15T00:15:55.5094616Z Found test times from artifacts 2025-08-15T00:15:55.5117345Z Running all tests 2025-08-15T00:15:55.5123225Z Running parallel tests on 3 processes 2025-08-15T00:15:55.5123582Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:15:55.5123848Z Serial tests (0): 2025-08-15T00:15:55.5124071Z Parallel tests (1): 2025-08-15T00:15:55.5124297Z cpp/c10_TypeIndex_test 1/1 2025-08-15T00:15:55.5124561Z Name: excluded (est. time: 0.0min) 2025-08-15T00:15:55.5124811Z Serial tests (0): 2025-08-15T00:15:55.5125019Z Parallel tests (0): 2025-08-15T00:15:55.5126833Z Running cpp/c10_TypeIndex_test 1/1 ... [2025-08-15 00:15:55.512270] 2025-08-15T00:15:55.5127246Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:15:55.5136772Z 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-f63f48e0fc6c2ed6.xml', '-x', '--reruns=2'] ... [2025-08-15 00:15:55.513483] 2025-08-15T00:15:55.5138435Z 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-15T00:15:57.0253153Z 2025-08-15T00:15:57.0254068Z 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_0d38151b84403d4f_.log 2025-08-15T00:15:57.0254874Z 2025-08-15T00:16:01.4520529Z Running cpp/c10_TypeIndex_test 1/1 ... [2025-08-15 00:16:01.451519] 2025-08-15T00:16:01.4521008Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:16:01.4530196Z 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-eb8732224aa32038.xml', '-x', '--reruns=2'] ... [2025-08-15 00:16:01.452719] 2025-08-15T00:16:03.0234614Z 2025-08-15T00:16:03.0235480Z 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_511a31a50e9e60e2_.log 2025-08-15T00:16:03.0236727Z 2025-08-15T00:16:03.8431401Z Running test batch 'tests to run' cost 8.33 seconds 2025-08-15T00:16:03.8437863Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:16:03.8438314Z Uploading artifacts took 0.00 seconds 2025-08-15T00:16:04.5595459Z 2025-08-15T00:16:04.5596017Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:16:04.5596476Z echo "c10_TypeIndex_test" failed with exit code 0 2025-08-15T00:16:04.5596791Z goto fail 2025-08-15T00:16:04.5596964Z ) 2025-08-15T00:16:04.5597072Z 2025-08-15T00:16:04.5597257Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:16:04.5597674Z echo "c10_TypeIndex_test" failed with exit code 0 2025-08-15T00:16:04.5597968Z goto fail 2025-08-15T00:16:04.5598145Z ) 2025-08-15T00:16:04.5598398Z 2025-08-15T00:16:04.5598578Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:16:04.5605921Z 2025-08-15T00:16:04.5606442Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:16:04.5607157Z call :libtorch_check "c10_TypeList_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_TypeList_test.exe" 2025-08-15T00:16:04.5607781Z if errorlevel 1 goto fail 2025-08-15T00:16:04.5608001Z ) 2025-08-15T00:16:04.5617160Z 2025-08-15T00:16:04.5617507Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:16:04.5621124Z 2025-08-15T00:16:04.5621592Z (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-15T00:16:04.5624189Z 2025-08-15T00:16:04.5624602Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_TypeList_test" == "verify_api_visibility" goto :eof 2025-08-15T00:16:04.5625941Z 2025-08-15T00:16:04.5626497Z (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-15T00:16:04.5627403Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_TypeList_test.exe" 2025-08-15T00:16:04.5628161Z 2025-08-15T00:16:04.5628550Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_TypeList_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:16:04.5629268Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_TypeList_test.exe" 2025-08-15T00:16:04.5629763Z goto :eof 2025-08-15T00:16:04.5629933Z ) 2025-08-15T00:16:04.5630031Z 2025-08-15T00:16:04.5630385Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_TypeList_test" 2025-08-15T00:16:10.6594052Z Found test times from artifacts 2025-08-15T00:16:10.7315416Z Found test times from artifacts 2025-08-15T00:16:10.7350394Z Running all tests 2025-08-15T00:16:10.7357477Z Running parallel tests on 3 processes 2025-08-15T00:16:10.7357900Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:16:10.7358183Z Serial tests (0): 2025-08-15T00:16:10.7358393Z Parallel tests (1): 2025-08-15T00:16:10.7358617Z cpp/c10_TypeList_test 1/1 2025-08-15T00:16:10.7358862Z Name: excluded (est. time: 0.0min) 2025-08-15T00:16:10.7359113Z Serial tests (0): 2025-08-15T00:16:10.7359309Z Parallel tests (0): 2025-08-15T00:16:10.7361941Z Running cpp/c10_TypeList_test 1/1 ... [2025-08-15 00:16:10.736101] 2025-08-15T00:16:10.7362409Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:16:10.7372754Z 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-fd721db07e38389c.xml', '-x', '--reruns=2'] ... [2025-08-15 00:16:10.736803] 2025-08-15T00:16:10.7374517Z 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-15T00:16:12.2815241Z 2025-08-15T00:16:12.2816198Z 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_cd965db42a8b9333_.log 2025-08-15T00:16:12.2816918Z 2025-08-15T00:16:16.7366270Z Running cpp/c10_TypeList_test 1/1 ... [2025-08-15 00:16:16.734418] 2025-08-15T00:16:16.7366688Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:16:16.7376052Z 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-6a1fe02c670a5634.xml', '-x', '--reruns=2'] ... [2025-08-15 00:16:16.734418] 2025-08-15T00:16:18.2869629Z 2025-08-15T00:16:18.2870495Z 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_2230ef2afe8a6ba0_.log 2025-08-15T00:16:18.2871289Z 2025-08-15T00:16:19.1286910Z Running test batch 'tests to run' cost 8.39 seconds 2025-08-15T00:16:19.1293529Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:16:19.1293982Z Uploading artifacts took 0.00 seconds 2025-08-15T00:16:19.9256643Z 2025-08-15T00:16:19.9257363Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:16:19.9257868Z echo "c10_TypeList_test" failed with exit code 0 2025-08-15T00:16:19.9258221Z goto fail 2025-08-15T00:16:19.9258397Z ) 2025-08-15T00:16:19.9258542Z 2025-08-15T00:16:19.9258730Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:16:19.9259219Z echo "c10_TypeList_test" failed with exit code 0 2025-08-15T00:16:19.9259513Z goto fail 2025-08-15T00:16:19.9259882Z ) 2025-08-15T00:16:19.9260112Z 2025-08-15T00:16:19.9260515Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:16:19.9267271Z 2025-08-15T00:16:19.9267505Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:16:19.9268187Z call :libtorch_check "c10_TypeTraits_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_TypeTraits_test.exe" 2025-08-15T00:16:19.9268833Z if errorlevel 1 goto fail 2025-08-15T00:16:19.9269062Z ) 2025-08-15T00:16:19.9278641Z 2025-08-15T00:16:19.9279039Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:16:19.9282626Z 2025-08-15T00:16:19.9283117Z (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-15T00:16:19.9285696Z 2025-08-15T00:16:19.9286191Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_TypeTraits_test" == "verify_api_visibility" goto :eof 2025-08-15T00:16:19.9287415Z 2025-08-15T00:16:19.9287946Z (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-15T00:16:19.9288887Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_TypeTraits_test.exe" 2025-08-15T00:16:19.9289808Z 2025-08-15T00:16:19.9290218Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_TypeTraits_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:16:19.9291070Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_TypeTraits_test.exe" 2025-08-15T00:16:19.9291650Z goto :eof 2025-08-15T00:16:19.9291888Z ) 2025-08-15T00:16:19.9291994Z 2025-08-15T00:16:19.9292358Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_TypeTraits_test" 2025-08-15T00:16:26.0061250Z Found test times from artifacts 2025-08-15T00:16:26.0741937Z Found test times from artifacts 2025-08-15T00:16:26.0766322Z Running all tests 2025-08-15T00:16:26.0771928Z Running parallel tests on 3 processes 2025-08-15T00:16:26.0772294Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:16:26.0772614Z Serial tests (0): 2025-08-15T00:16:26.0772852Z Parallel tests (1): 2025-08-15T00:16:26.0773131Z cpp/c10_TypeTraits_test 1/1 2025-08-15T00:16:26.0773458Z Name: excluded (est. time: 0.0min) 2025-08-15T00:16:26.0773801Z Serial tests (0): 2025-08-15T00:16:26.0774062Z Parallel tests (0): 2025-08-15T00:16:26.0775659Z Running cpp/c10_TypeTraits_test 1/1 ... [2025-08-15 00:16:26.077401] 2025-08-15T00:16:26.0776106Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:16:26.0786122Z 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-fbea948c76bf2561.xml', '-x', '--reruns=2'] ... [2025-08-15 00:16:26.078003] 2025-08-15T00:16:26.0787845Z 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-15T00:16:27.6092612Z 2025-08-15T00:16:27.6093642Z 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_e5449b424ac16bdb_.log 2025-08-15T00:16:27.6094874Z 2025-08-15T00:16:32.1161299Z Running cpp/c10_TypeTraits_test 1/1 ... [2025-08-15 00:16:32.115943] 2025-08-15T00:16:32.1161766Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:16:32.1171394Z 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-10f437074dd1c732.xml', '-x', '--reruns=2'] ... [2025-08-15 00:16:32.116538] 2025-08-15T00:16:33.6590418Z 2025-08-15T00:16:33.6591570Z 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_30266f0ea0898331_.log 2025-08-15T00:16:33.6592216Z 2025-08-15T00:16:34.5464232Z Running test batch 'tests to run' cost 8.47 seconds 2025-08-15T00:16:34.5470646Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:16:34.5471130Z Uploading artifacts took 0.00 seconds 2025-08-15T00:16:35.2703081Z 2025-08-15T00:16:35.2703842Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:16:35.2704347Z echo "c10_TypeTraits_test" failed with exit code 0 2025-08-15T00:16:35.2704710Z goto fail 2025-08-15T00:16:35.2704910Z ) 2025-08-15T00:16:35.2705054Z 2025-08-15T00:16:35.2705257Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:16:35.2705697Z echo "c10_TypeTraits_test" failed with exit code 0 2025-08-15T00:16:35.2706055Z goto fail 2025-08-15T00:16:35.2706273Z ) 2025-08-15T00:16:35.2706392Z 2025-08-15T00:16:35.2706556Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:16:35.2712564Z 2025-08-15T00:16:35.2712813Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:16:35.2713517Z call :libtorch_check "CppSignature_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\CppSignature_test.exe" 2025-08-15T00:16:35.2714202Z if errorlevel 1 goto fail 2025-08-15T00:16:35.2714650Z ) 2025-08-15T00:16:35.2722973Z 2025-08-15T00:16:35.2723696Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:16:35.2727009Z 2025-08-15T00:16:35.2727570Z (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-15T00:16:35.2730007Z 2025-08-15T00:16:35.2730445Z (base) C:\actions-runner\_work\pytorch\pytorch>if "CppSignature_test" == "verify_api_visibility" goto :eof 2025-08-15T00:16:35.2731772Z 2025-08-15T00:16:35.2732361Z (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-15T00:16:35.2733298Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\CppSignature_test.exe" 2025-08-15T00:16:35.2733907Z 2025-08-15T00:16:35.2734304Z (base) C:\actions-runner\_work\pytorch\pytorch>if "CppSignature_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:16:35.2735070Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\CppSignature_test.exe" 2025-08-15T00:16:35.2735580Z goto :eof 2025-08-15T00:16:35.2735810Z ) 2025-08-15T00:16:35.2735920Z 2025-08-15T00:16:35.2736291Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/CppSignature_test" 2025-08-15T00:16:41.5000247Z Found test times from artifacts 2025-08-15T00:16:41.5681423Z Found test times from artifacts 2025-08-15T00:16:41.5704230Z Running all tests 2025-08-15T00:16:41.5709851Z Running parallel tests on 3 processes 2025-08-15T00:16:41.5710235Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:16:41.5710558Z Serial tests (0): 2025-08-15T00:16:41.5710795Z Parallel tests (1): 2025-08-15T00:16:41.5711068Z cpp/CppSignature_test 1/1 2025-08-15T00:16:41.5711345Z Name: excluded (est. time: 0.0min) 2025-08-15T00:16:41.5711647Z Serial tests (0): 2025-08-15T00:16:41.5711881Z Parallel tests (0): 2025-08-15T00:16:41.5713560Z Running cpp/CppSignature_test 1/1 ... [2025-08-15 00:16:41.570003] 2025-08-15T00:16:41.5714017Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:16:41.5723320Z 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-084a8264b39cb5e8.xml', '-x', '--reruns=2'] ... [2025-08-15 00:16:41.570003] 2025-08-15T00:16:41.5725155Z 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-15T00:16:43.9079432Z 2025-08-15T00:16:43.9080405Z cpp/CppSignature_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.CppSignature_test_1.1_26ddb499053d2b63_.log 2025-08-15T00:16:43.9081056Z 2025-08-15T00:16:48.3464909Z Running cpp/CppSignature_test 1/1 ... [2025-08-15 00:16:48.345013] 2025-08-15T00:16:48.3465337Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:16:48.3473982Z 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-8814c3c76b94e1fd.xml', '-x', '--reruns=2'] ... [2025-08-15 00:16:48.345013] 2025-08-15T00:16:51.4181880Z 2025-08-15T00:16:51.4182720Z cpp/CppSignature_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.CppSignature_test_1.1_24609cdc57dcdd51_.log 2025-08-15T00:16:51.4183793Z 2025-08-15T00:16:52.2523985Z Running test batch 'tests to run' cost 10.68 seconds 2025-08-15T00:16:52.2529798Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:16:52.2530261Z Uploading artifacts took 0.00 seconds 2025-08-15T00:16:52.9685382Z 2025-08-15T00:16:52.9685913Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:16:52.9686863Z echo "CppSignature_test" failed with exit code 0 2025-08-15T00:16:52.9687444Z goto fail 2025-08-15T00:16:52.9687618Z ) 2025-08-15T00:16:52.9687721Z 2025-08-15T00:16:52.9687918Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:16:52.9688324Z echo "CppSignature_test" failed with exit code 0 2025-08-15T00:16:52.9688632Z goto fail 2025-08-15T00:16:52.9688792Z ) 2025-08-15T00:16:52.9688887Z 2025-08-15T00:16:52.9689039Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:16:52.9695788Z 2025-08-15T00:16:52.9696309Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:16:52.9697038Z call :libtorch_check "cpu_allocator_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_allocator_test.exe" 2025-08-15T00:16:52.9697662Z if errorlevel 1 goto fail 2025-08-15T00:16:52.9697903Z ) 2025-08-15T00:16:52.9706304Z 2025-08-15T00:16:52.9706686Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:16:52.9710132Z 2025-08-15T00:16:52.9710646Z (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-15T00:16:52.9713108Z 2025-08-15T00:16:52.9713545Z (base) C:\actions-runner\_work\pytorch\pytorch>if "cpu_allocator_test" == "verify_api_visibility" goto :eof 2025-08-15T00:16:52.9715588Z 2025-08-15T00:16:52.9716393Z (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-15T00:16:52.9717328Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_allocator_test.exe" 2025-08-15T00:16:52.9718538Z 2025-08-15T00:16:52.9719152Z (base) C:\actions-runner\_work\pytorch\pytorch>if "cpu_allocator_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:16:52.9719940Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_allocator_test.exe" 2025-08-15T00:16:52.9720446Z goto :eof 2025-08-15T00:16:52.9720624Z ) 2025-08-15T00:16:52.9720910Z 2025-08-15T00:16:52.9721289Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/cpu_allocator_test" 2025-08-15T00:16:59.1085924Z Found test times from artifacts 2025-08-15T00:16:59.1762094Z Found test times from artifacts 2025-08-15T00:16:59.1784494Z Running all tests 2025-08-15T00:16:59.1790130Z Running parallel tests on 3 processes 2025-08-15T00:16:59.1790548Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:16:59.1790811Z Serial tests (0): 2025-08-15T00:16:59.1791017Z Parallel tests (1): 2025-08-15T00:16:59.1791294Z cpp/cpu_allocator_test 1/1 2025-08-15T00:16:59.1791551Z Name: excluded (est. time: 0.0min) 2025-08-15T00:16:59.1791841Z Serial tests (0): 2025-08-15T00:16:59.1792063Z Parallel tests (0): 2025-08-15T00:16:59.1794116Z Running cpp/cpu_allocator_test 1/1 ... [2025-08-15 00:16:59.179163] 2025-08-15T00:16:59.1794516Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:16:59.1804547Z 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-8eef9f82494a6e06.xml', '-x', '--reruns=2'] ... [2025-08-15 00:16:59.180282] 2025-08-15T00:16:59.1806229Z 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-15T00:17:01.6439535Z 2025-08-15T00:17:01.6440392Z 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_6e6109472c57260f_.log 2025-08-15T00:17:01.6441053Z 2025-08-15T00:17:06.0981881Z Running cpp/cpu_allocator_test 1/1 ... [2025-08-15 00:17:06.097812] 2025-08-15T00:17:06.0982393Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:17:06.0991110Z 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-84a5c2b62d31e76c.xml', '-x', '--reruns=2'] ... [2025-08-15 00:17:06.098941] 2025-08-15T00:17:08.8239749Z 2025-08-15T00:17:08.8240594Z 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_fd526746ac036fae_.log 2025-08-15T00:17:08.8241409Z 2025-08-15T00:17:09.6921690Z Running test batch 'tests to run' cost 10.51 seconds 2025-08-15T00:17:09.6928636Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:17:09.6929098Z Uploading artifacts took 0.00 seconds 2025-08-15T00:17:10.4039787Z 2025-08-15T00:17:10.4040454Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:17:10.4040929Z echo "cpu_allocator_test" failed with exit code 0 2025-08-15T00:17:10.4041252Z goto fail 2025-08-15T00:17:10.4041426Z ) 2025-08-15T00:17:10.4041522Z 2025-08-15T00:17:10.4041717Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:17:10.4042123Z echo "cpu_allocator_test" failed with exit code 0 2025-08-15T00:17:10.4042429Z goto fail 2025-08-15T00:17:10.4042594Z ) 2025-08-15T00:17:10.4043153Z 2025-08-15T00:17:10.4043537Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:17:10.4050948Z 2025-08-15T00:17:10.4051228Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:17:10.4051944Z call :libtorch_check "cpu_generator_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_generator_test.exe" 2025-08-15T00:17:10.4052578Z if errorlevel 1 goto fail 2025-08-15T00:17:10.4052808Z ) 2025-08-15T00:17:10.4062364Z 2025-08-15T00:17:10.4062757Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:17:10.4066316Z 2025-08-15T00:17:10.4067064Z (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-15T00:17:10.4069455Z 2025-08-15T00:17:10.4069875Z (base) C:\actions-runner\_work\pytorch\pytorch>if "cpu_generator_test" == "verify_api_visibility" goto :eof 2025-08-15T00:17:10.4071126Z 2025-08-15T00:17:10.4071673Z (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-15T00:17:10.4072637Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_generator_test.exe" 2025-08-15T00:17:10.4073522Z 2025-08-15T00:17:10.4073938Z (base) C:\actions-runner\_work\pytorch\pytorch>if "cpu_generator_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:17:10.4074651Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_generator_test.exe" 2025-08-15T00:17:10.4075139Z goto :eof 2025-08-15T00:17:10.4075307Z ) 2025-08-15T00:17:10.4075402Z 2025-08-15T00:17:10.4075756Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/cpu_generator_test" 2025-08-15T00:17:16.4933389Z Found test times from artifacts 2025-08-15T00:17:16.5619507Z Found test times from artifacts 2025-08-15T00:17:16.5641538Z Running all tests 2025-08-15T00:17:16.5647649Z Running parallel tests on 3 processes 2025-08-15T00:17:16.5647992Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:17:16.5648268Z Serial tests (0): 2025-08-15T00:17:16.5648487Z Parallel tests (1): 2025-08-15T00:17:16.5648711Z cpp/cpu_generator_test 1/1 2025-08-15T00:17:16.5648964Z Name: excluded (est. time: 0.0min) 2025-08-15T00:17:16.5649214Z Serial tests (0): 2025-08-15T00:17:16.5649592Z Parallel tests (0): 2025-08-15T00:17:16.5651184Z Running cpp/cpu_generator_test 1/1 ... [2025-08-15 00:17:16.563358] 2025-08-15T00:17:16.5651644Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:17:16.5661888Z 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-50ecee511fa303f0.xml', '-x', '--reruns=2'] ... [2025-08-15 00:17:16.563358] 2025-08-15T00:17:16.5663571Z 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-15T00:17:18.8675793Z 2025-08-15T00:17:18.8676934Z 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_bfc7cd7564de99b1_.log 2025-08-15T00:17:18.8677567Z 2025-08-15T00:17:23.3902271Z Running cpp/cpu_generator_test 1/1 ... [2025-08-15 00:17:23.390045] 2025-08-15T00:17:23.3902763Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:17:23.3911909Z 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-f7c76159e882d6b0.xml', '-x', '--reruns=2'] ... [2025-08-15 00:17:23.390644] 2025-08-15T00:17:28.1075412Z 2025-08-15T00:17:28.1076275Z 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_13b6385b7ab0788d_.log 2025-08-15T00:17:28.1077253Z 2025-08-15T00:17:28.9661581Z Running test batch 'tests to run' cost 12.4 seconds 2025-08-15T00:17:28.9671152Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:17:28.9671657Z Uploading artifacts took 0.00 seconds 2025-08-15T00:17:29.6923430Z 2025-08-15T00:17:29.6924209Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:17:29.6924667Z echo "cpu_generator_test" failed with exit code 0 2025-08-15T00:17:29.6924980Z goto fail 2025-08-15T00:17:29.6925161Z ) 2025-08-15T00:17:29.6925254Z 2025-08-15T00:17:29.6925439Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:17:29.6925852Z echo "cpu_generator_test" failed with exit code 0 2025-08-15T00:17:29.6926306Z goto fail 2025-08-15T00:17:29.6926484Z ) 2025-08-15T00:17:29.6926577Z 2025-08-15T00:17:29.6928250Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:17:29.6933048Z 2025-08-15T00:17:29.6933460Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:17:29.6934267Z 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-15T00:17:29.6934995Z if errorlevel 1 goto fail 2025-08-15T00:17:29.6935219Z ) 2025-08-15T00:17:29.6944701Z 2025-08-15T00:17:29.6945164Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:17:29.6948400Z 2025-08-15T00:17:29.6948907Z (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-15T00:17:29.6951395Z 2025-08-15T00:17:29.6951838Z (base) C:\actions-runner\_work\pytorch\pytorch>if "cpu_profiling_allocator_test" == "verify_api_visibility" goto :eof 2025-08-15T00:17:29.6953096Z 2025-08-15T00:17:29.6953763Z (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-15T00:17:29.6954743Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_profiling_allocator_test.exe" 2025-08-15T00:17:29.6955257Z 2025-08-15T00:17:29.6955796Z (base) C:\actions-runner\_work\pytorch\pytorch>if "cpu_profiling_allocator_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:17:29.6956660Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_profiling_allocator_test.exe" 2025-08-15T00:17:29.6957237Z goto :eof 2025-08-15T00:17:29.6957418Z ) 2025-08-15T00:17:29.6957509Z 2025-08-15T00:17:29.6957901Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/cpu_profiling_allocator_test" 2025-08-15T00:17:35.9335970Z Found test times from artifacts 2025-08-15T00:17:36.0010090Z Found test times from artifacts 2025-08-15T00:17:36.0031558Z Running all tests 2025-08-15T00:17:36.0037649Z Running parallel tests on 3 processes 2025-08-15T00:17:36.0038051Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:17:36.0038331Z Serial tests (0): 2025-08-15T00:17:36.0038539Z Parallel tests (1): 2025-08-15T00:17:36.0038777Z cpp/cpu_profiling_allocator_test 1/1 2025-08-15T00:17:36.0039087Z Name: excluded (est. time: 0.0min) 2025-08-15T00:17:36.0039352Z Serial tests (0): 2025-08-15T00:17:36.0039559Z Parallel tests (0): 2025-08-15T00:17:36.0041239Z Running cpp/cpu_profiling_allocator_test 1/1 ... [2025-08-15 00:17:36.003793] 2025-08-15T00:17:36.0041660Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:17:36.0051464Z 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-c9da22e4f4708380.xml', '-x', '--reruns=2'] ... [2025-08-15 00:17:36.004934] 2025-08-15T00:17:36.0053289Z 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-15T00:17:38.2918967Z 2025-08-15T00:17:38.2919923Z 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_66f7a4b421f8525a_.log 2025-08-15T00:17:38.2920632Z 2025-08-15T00:17:42.7622651Z Running cpp/cpu_profiling_allocator_test 1/1 ... [2025-08-15 00:17:42.761710] 2025-08-15T00:17:42.7623177Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:17:42.7655135Z 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-9ff035a20cbe1ae6.xml', '-x', '--reruns=2'] ... [2025-08-15 00:17:42.764918] 2025-08-15T00:17:45.6054583Z 2025-08-15T00:17:45.6055574Z 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_8993f16e4f4c0827_.log 2025-08-15T00:17:45.6057731Z 2025-08-15T00:17:46.4339060Z Running test batch 'tests to run' cost 10.43 seconds 2025-08-15T00:17:46.4345487Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:17:46.4346925Z Uploading artifacts took 0.00 seconds 2025-08-15T00:17:47.1534511Z 2025-08-15T00:17:47.1535103Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:17:47.1535627Z echo "cpu_profiling_allocator_test" failed with exit code 0 2025-08-15T00:17:47.1535962Z goto fail 2025-08-15T00:17:47.1536159Z ) 2025-08-15T00:17:47.1536256Z 2025-08-15T00:17:47.1536858Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:17:47.1537356Z echo "cpu_profiling_allocator_test" failed with exit code 0 2025-08-15T00:17:47.1537768Z goto fail 2025-08-15T00:17:47.1537983Z ) 2025-08-15T00:17:47.1538640Z 2025-08-15T00:17:47.1538848Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:17:47.1545739Z 2025-08-15T00:17:47.1546038Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:17:47.1546955Z call :libtorch_check "cpu_rng_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_rng_test.exe" 2025-08-15T00:17:47.1547628Z if errorlevel 1 goto fail 2025-08-15T00:17:47.1547876Z ) 2025-08-15T00:17:47.1556083Z 2025-08-15T00:17:47.1556454Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:17:47.1560134Z 2025-08-15T00:17:47.1560577Z (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-15T00:17:47.1563121Z 2025-08-15T00:17:47.1563614Z (base) C:\actions-runner\_work\pytorch\pytorch>if "cpu_rng_test" == "verify_api_visibility" goto :eof 2025-08-15T00:17:47.1564853Z 2025-08-15T00:17:47.1565363Z (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-15T00:17:47.1566254Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_rng_test.exe" 2025-08-15T00:17:47.1567115Z 2025-08-15T00:17:47.1567511Z (base) C:\actions-runner\_work\pytorch\pytorch>if "cpu_rng_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:17:47.1568193Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_rng_test.exe" 2025-08-15T00:17:47.1568668Z goto :eof 2025-08-15T00:17:47.1568851Z ) 2025-08-15T00:17:47.1568967Z 2025-08-15T00:17:47.1569310Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/cpu_rng_test" 2025-08-15T00:17:53.2607638Z Found test times from artifacts 2025-08-15T00:17:53.3283837Z Found test times from artifacts 2025-08-15T00:17:53.3324340Z Running all tests 2025-08-15T00:17:53.3324632Z Running parallel tests on 3 processes 2025-08-15T00:17:53.3324933Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:17:53.3325226Z Serial tests (0): 2025-08-15T00:17:53.3325437Z Parallel tests (1): 2025-08-15T00:17:53.3325696Z cpp/cpu_rng_test 1/1 2025-08-15T00:17:53.3325945Z Name: excluded (est. time: 0.0min) 2025-08-15T00:17:53.3326220Z Serial tests (0): 2025-08-15T00:17:53.3326444Z Parallel tests (0): 2025-08-15T00:17:53.3326731Z Running cpp/cpu_rng_test 1/1 ... [2025-08-15 00:17:53.331716] 2025-08-15T00:17:53.3327102Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:17:53.3329025Z 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-23198cc5de9018b5.xml', '-x', '--reruns=2'] ... [2025-08-15 00:17:53.332372] 2025-08-15T00:17:53.3331102Z 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-15T00:17:55.7369843Z 2025-08-15T00:17:55.7371620Z 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_7378b249614a5097_.log 2025-08-15T00:17:55.7372218Z 2025-08-15T00:18:00.2824713Z Running cpp/cpu_rng_test 1/1 ... [2025-08-15 00:18:00.281519] 2025-08-15T00:18:00.2825145Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:18:00.2834038Z 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-a087ef17365e3097.xml', '-x', '--reruns=2'] ... [2025-08-15 00:18:00.282625] 2025-08-15T00:18:06.0090560Z 2025-08-15T00:18:06.0091448Z 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_c92e74de4828ffa4_.log 2025-08-15T00:18:06.0092756Z 2025-08-15T00:18:06.8285406Z Running test batch 'tests to run' cost 13.5 seconds 2025-08-15T00:18:06.8292213Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:18:06.8292784Z Uploading artifacts took 0.00 seconds 2025-08-15T00:18:07.5461599Z 2025-08-15T00:18:07.5462114Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:18:07.5462553Z echo "cpu_rng_test" failed with exit code 0 2025-08-15T00:18:07.5462869Z goto fail 2025-08-15T00:18:07.5463055Z ) 2025-08-15T00:18:07.5463172Z 2025-08-15T00:18:07.5463370Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:18:07.5463808Z echo "cpu_rng_test" failed with exit code 0 2025-08-15T00:18:07.5464089Z goto fail 2025-08-15T00:18:07.5464281Z ) 2025-08-15T00:18:07.5464386Z 2025-08-15T00:18:07.5464538Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:18:07.5470836Z 2025-08-15T00:18:07.5471071Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:18:07.5471695Z call :libtorch_check "Dict_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\Dict_test.exe" 2025-08-15T00:18:07.5472268Z if errorlevel 1 goto fail 2025-08-15T00:18:07.5472516Z ) 2025-08-15T00:18:07.5481297Z 2025-08-15T00:18:07.5481689Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:18:07.5485146Z 2025-08-15T00:18:07.5485639Z (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-15T00:18:07.5488152Z 2025-08-15T00:18:07.5488628Z (base) C:\actions-runner\_work\pytorch\pytorch>if "Dict_test" == "verify_api_visibility" goto :eof 2025-08-15T00:18:07.5489895Z 2025-08-15T00:18:07.5490439Z (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-15T00:18:07.5491299Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\Dict_test.exe" 2025-08-15T00:18:07.5492149Z 2025-08-15T00:18:07.5492554Z (base) C:\actions-runner\_work\pytorch\pytorch>if "Dict_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:18:07.5493235Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\Dict_test.exe" 2025-08-15T00:18:07.5493784Z goto :eof 2025-08-15T00:18:07.5493981Z ) 2025-08-15T00:18:07.5494195Z 2025-08-15T00:18:07.5494791Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/Dict_test" 2025-08-15T00:18:13.7001518Z Found test times from artifacts 2025-08-15T00:18:13.7677858Z Found test times from artifacts 2025-08-15T00:18:13.7700721Z Running all tests 2025-08-15T00:18:13.7707361Z Running parallel tests on 3 processes 2025-08-15T00:18:13.7707983Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:18:13.7708268Z Serial tests (0): 2025-08-15T00:18:13.7708505Z Parallel tests (1): 2025-08-15T00:18:13.7708722Z cpp/Dict_test 1/1 2025-08-15T00:18:13.7708973Z Name: excluded (est. time: 0.0min) 2025-08-15T00:18:13.7709254Z Serial tests (0): 2025-08-15T00:18:13.7709472Z Parallel tests (0): 2025-08-15T00:18:13.7711378Z Running cpp/Dict_test 1/1 ... [2025-08-15 00:18:13.770454] 2025-08-15T00:18:13.7711736Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:18:13.7721255Z 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-0932b548504213c1.xml', '-x', '--reruns=2'] ... [2025-08-15 00:18:13.770454] 2025-08-15T00:18:13.7722905Z 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-15T00:18:16.1190788Z 2025-08-15T00:18:16.1191578Z cpp/Dict_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.Dict_test_1.1_b2fa6a07315c33bc_.log 2025-08-15T00:18:16.1193113Z 2025-08-15T00:18:20.5485192Z Running cpp/Dict_test 1/1 ... [2025-08-15 00:18:20.548315] 2025-08-15T00:18:20.5485758Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:18:20.5497313Z 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-8e3c6e5d0d2ebc58.xml', '-x', '--reruns=2'] ... [2025-08-15 00:18:20.549505] 2025-08-15T00:18:29.4856929Z 2025-08-15T00:18:29.4857815Z cpp/Dict_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.Dict_test_1.1_69f9ba3ac81cc6da_.log 2025-08-15T00:18:29.4860802Z 2025-08-15T00:18:30.3171426Z Running test batch 'tests to run' cost 16.55 seconds 2025-08-15T00:18:30.3178210Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:18:30.3178711Z Uploading artifacts took 0.00 seconds 2025-08-15T00:18:31.0334540Z 2025-08-15T00:18:31.0335223Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:18:31.0335730Z echo "Dict_test" failed with exit code 0 2025-08-15T00:18:31.0336085Z goto fail 2025-08-15T00:18:31.0336312Z ) 2025-08-15T00:18:31.0337692Z 2025-08-15T00:18:31.0338096Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:18:31.0338546Z echo "Dict_test" failed with exit code 0 2025-08-15T00:18:31.0338852Z goto fail 2025-08-15T00:18:31.0339420Z ) 2025-08-15T00:18:31.0339528Z 2025-08-15T00:18:31.0339701Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:18:31.0345985Z 2025-08-15T00:18:31.0346213Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:18:31.0346888Z call :libtorch_check "Dimname_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\Dimname_test.exe" 2025-08-15T00:18:31.0347545Z if errorlevel 1 goto fail 2025-08-15T00:18:31.0347819Z ) 2025-08-15T00:18:31.0356648Z 2025-08-15T00:18:31.0357044Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:18:31.0360768Z 2025-08-15T00:18:31.0361252Z (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-15T00:18:31.0363798Z 2025-08-15T00:18:31.0364433Z (base) C:\actions-runner\_work\pytorch\pytorch>if "Dimname_test" == "verify_api_visibility" goto :eof 2025-08-15T00:18:31.0365605Z 2025-08-15T00:18:31.0366223Z (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-15T00:18:31.0367161Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\Dimname_test.exe" 2025-08-15T00:18:31.0368280Z 2025-08-15T00:18:31.0368693Z (base) C:\actions-runner\_work\pytorch\pytorch>if "Dimname_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:18:31.0369432Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\Dimname_test.exe" 2025-08-15T00:18:31.0369931Z goto :eof 2025-08-15T00:18:31.0370158Z ) 2025-08-15T00:18:31.0370265Z 2025-08-15T00:18:31.0370690Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/Dimname_test" 2025-08-15T00:18:37.1581795Z Found test times from artifacts 2025-08-15T00:18:37.2263425Z Found test times from artifacts 2025-08-15T00:18:37.2285592Z Running all tests 2025-08-15T00:18:37.2291117Z Running parallel tests on 3 processes 2025-08-15T00:18:37.2291533Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:18:37.2291859Z Serial tests (0): 2025-08-15T00:18:37.2292101Z Parallel tests (1): 2025-08-15T00:18:37.2292358Z cpp/Dimname_test 1/1 2025-08-15T00:18:37.2292617Z Name: excluded (est. time: 0.0min) 2025-08-15T00:18:37.2292916Z Serial tests (0): 2025-08-15T00:18:37.2293143Z Parallel tests (0): 2025-08-15T00:18:37.2295044Z Running cpp/Dimname_test 1/1 ... [2025-08-15 00:18:37.222467] 2025-08-15T00:18:37.2295526Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:18:37.2304833Z 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-181b7149b326056b.xml', '-x', '--reruns=2'] ... [2025-08-15 00:18:37.222467] 2025-08-15T00:18:37.2306523Z 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-15T00:18:39.5322318Z 2025-08-15T00:18:39.5323151Z cpp/Dimname_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.Dimname_test_1.1_66e89d64885593bd_.log 2025-08-15T00:18:39.5323810Z 2025-08-15T00:18:44.0218295Z Running cpp/Dimname_test 1/1 ... [2025-08-15 00:18:44.012677] 2025-08-15T00:18:44.0218796Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:18:44.0227613Z 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-2e9cbcabc8255b8d.xml', '-x', '--reruns=2'] ... [2025-08-15 00:18:44.012677] 2025-08-15T00:18:47.0526723Z 2025-08-15T00:18:47.0527847Z cpp/Dimname_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.Dimname_test_1.1_07739362c4c162dd_.log 2025-08-15T00:18:47.0528501Z 2025-08-15T00:18:47.8707654Z Running test batch 'tests to run' cost 10.65 seconds 2025-08-15T00:18:47.8716646Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:18:47.8717159Z Uploading artifacts took 0.00 seconds 2025-08-15T00:18:48.6524626Z 2025-08-15T00:18:48.6525468Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:18:48.6525975Z echo "Dimname_test" failed with exit code 0 2025-08-15T00:18:48.6526309Z goto fail 2025-08-15T00:18:48.6526539Z ) 2025-08-15T00:18:48.6526653Z 2025-08-15T00:18:48.6526854Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:18:48.6527312Z echo "Dimname_test" failed with exit code 0 2025-08-15T00:18:48.6527651Z goto fail 2025-08-15T00:18:48.6527859Z ) 2025-08-15T00:18:48.6528124Z 2025-08-15T00:18:48.6528321Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:18:48.6534166Z 2025-08-15T00:18:48.6534663Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:18:48.6535420Z call :libtorch_check "dlconvertor_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\dlconvertor_test.exe" 2025-08-15T00:18:48.6536078Z if errorlevel 1 goto fail 2025-08-15T00:18:48.6536350Z ) 2025-08-15T00:18:48.6544524Z 2025-08-15T00:18:48.6544931Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:18:48.6548485Z 2025-08-15T00:18:48.6548968Z (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-15T00:18:48.6551533Z 2025-08-15T00:18:48.6552030Z (base) C:\actions-runner\_work\pytorch\pytorch>if "dlconvertor_test" == "verify_api_visibility" goto :eof 2025-08-15T00:18:48.6553285Z 2025-08-15T00:18:48.6554068Z (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-15T00:18:48.6555097Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\dlconvertor_test.exe" 2025-08-15T00:18:48.6555600Z 2025-08-15T00:18:48.6556115Z (base) C:\actions-runner\_work\pytorch\pytorch>if "dlconvertor_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:18:48.6557001Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\dlconvertor_test.exe" 2025-08-15T00:18:48.6557536Z goto :eof 2025-08-15T00:18:48.6557802Z ) 2025-08-15T00:18:48.6558008Z 2025-08-15T00:18:48.6558373Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/dlconvertor_test" 2025-08-15T00:18:54.8437325Z Found test times from artifacts 2025-08-15T00:18:54.9189470Z Found test times from artifacts 2025-08-15T00:18:54.9211678Z Running all tests 2025-08-15T00:18:54.9217180Z Running parallel tests on 3 processes 2025-08-15T00:18:54.9217607Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:18:54.9217905Z Serial tests (0): 2025-08-15T00:18:54.9218153Z Parallel tests (1): 2025-08-15T00:18:54.9218446Z cpp/dlconvertor_test 1/1 2025-08-15T00:18:54.9218755Z Name: excluded (est. time: 0.0min) 2025-08-15T00:18:54.9219054Z Serial tests (0): 2025-08-15T00:18:54.9219289Z Parallel tests (0): 2025-08-15T00:18:54.9221006Z Running cpp/dlconvertor_test 1/1 ... [2025-08-15 00:18:54.920608] 2025-08-15T00:18:54.9221457Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:18:54.9230961Z 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-b879f8968b48fad8.xml', '-x', '--reruns=2'] ... [2025-08-15 00:18:54.922212] 2025-08-15T00:18:54.9232688Z 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-15T00:18:57.4657323Z 2025-08-15T00:18:57.4658549Z cpp/dlconvertor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.dlconvertor_test_1.1_d25a68cb04563056_.log 2025-08-15T00:18:57.4659634Z 2025-08-15T00:19:01.8898652Z Running cpp/dlconvertor_test 1/1 ... [2025-08-15 00:19:01.889036] 2025-08-15T00:19:01.8899154Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:19:01.8908110Z 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-052d9ae149b15bd7.xml', '-x', '--reruns=2'] ... [2025-08-15 00:19:01.889036] 2025-08-15T00:19:04.9631625Z 2025-08-15T00:19:04.9632516Z cpp/dlconvertor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.dlconvertor_test_1.1_7fa50875fc4018d1_.log 2025-08-15T00:19:04.9633471Z 2025-08-15T00:19:05.8162079Z Running test batch 'tests to run' cost 10.89 seconds 2025-08-15T00:19:05.8169015Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:19:05.8169525Z Uploading artifacts took 0.00 seconds 2025-08-15T00:19:06.5289285Z 2025-08-15T00:19:06.5290130Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:19:06.5290632Z echo "dlconvertor_test" failed with exit code 0 2025-08-15T00:19:06.5290985Z goto fail 2025-08-15T00:19:06.5291207Z ) 2025-08-15T00:19:06.5291351Z 2025-08-15T00:19:06.5291556Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:19:06.5291990Z echo "dlconvertor_test" failed with exit code 0 2025-08-15T00:19:06.5292337Z goto fail 2025-08-15T00:19:06.5292554Z ) 2025-08-15T00:19:06.5292661Z 2025-08-15T00:19:06.5292829Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:19:06.5299664Z 2025-08-15T00:19:06.5299852Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:19:06.5300579Z call :libtorch_check "extension_backend_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\extension_backend_test.exe" 2025-08-15T00:19:06.5301293Z if errorlevel 1 goto fail 2025-08-15T00:19:06.5301566Z ) 2025-08-15T00:19:06.5309945Z 2025-08-15T00:19:06.5310475Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:19:06.5313930Z 2025-08-15T00:19:06.5314509Z (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-15T00:19:06.5317037Z 2025-08-15T00:19:06.5317645Z (base) C:\actions-runner\_work\pytorch\pytorch>if "extension_backend_test" == "verify_api_visibility" goto :eof 2025-08-15T00:19:06.5318910Z 2025-08-15T00:19:06.5319512Z (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-15T00:19:06.5320515Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\extension_backend_test.exe" 2025-08-15T00:19:06.5321447Z 2025-08-15T00:19:06.5321934Z (base) C:\actions-runner\_work\pytorch\pytorch>if "extension_backend_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:19:06.5322716Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\extension_backend_test.exe" 2025-08-15T00:19:06.5323265Z goto :eof 2025-08-15T00:19:06.5323496Z ) 2025-08-15T00:19:06.5323635Z 2025-08-15T00:19:06.5324040Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/extension_backend_test" 2025-08-15T00:19:12.5819963Z Found test times from artifacts 2025-08-15T00:19:12.6504733Z Found test times from artifacts 2025-08-15T00:19:12.6526527Z Running all tests 2025-08-15T00:19:12.6532118Z Running parallel tests on 3 processes 2025-08-15T00:19:12.6532550Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:19:12.6532855Z Serial tests (0): 2025-08-15T00:19:12.6533110Z Parallel tests (1): 2025-08-15T00:19:12.6533365Z cpp/extension_backend_test 1/1 2025-08-15T00:19:12.6533690Z Name: excluded (est. time: 0.0min) 2025-08-15T00:19:12.6533959Z Serial tests (0): 2025-08-15T00:19:12.6534202Z Parallel tests (0): 2025-08-15T00:19:12.6535909Z Running cpp/extension_backend_test 1/1 ... [2025-08-15 00:19:12.649512] 2025-08-15T00:19:12.6536383Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:19:12.6545692Z 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-343a1fc72663c4cc.xml', '-x', '--reruns=2'] ... [2025-08-15 00:19:12.649512] 2025-08-15T00:19:12.6548046Z 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-15T00:19:14.9416536Z 2025-08-15T00:19:14.9417503Z 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_efef548bc1c1bcd2_.log 2025-08-15T00:19:14.9418327Z 2025-08-15T00:19:19.3988643Z Running cpp/extension_backend_test 1/1 ... [2025-08-15 00:19:19.398609] 2025-08-15T00:19:19.3989134Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:19:19.4006821Z 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-f23c97f5787541b0.xml', '-x', '--reruns=2'] ... [2025-08-15 00:19:19.400205] 2025-08-15T00:19:22.1437549Z 2025-08-15T00:19:22.1438504Z 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_f52bf93496cde97e_.log 2025-08-15T00:19:22.1439254Z 2025-08-15T00:19:22.9701909Z Running test batch 'tests to run' cost 10.32 seconds 2025-08-15T00:19:22.9708225Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:19:22.9708696Z Uploading artifacts took 0.00 seconds 2025-08-15T00:19:23.6768192Z 2025-08-15T00:19:23.6769066Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:19:23.6769694Z echo "extension_backend_test" failed with exit code 0 2025-08-15T00:19:23.6770113Z goto fail 2025-08-15T00:19:23.6770350Z ) 2025-08-15T00:19:23.6770478Z 2025-08-15T00:19:23.6770683Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:19:23.6771167Z echo "extension_backend_test" failed with exit code 0 2025-08-15T00:19:23.6771512Z goto fail 2025-08-15T00:19:23.6771734Z ) 2025-08-15T00:19:23.6771842Z 2025-08-15T00:19:23.6772027Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:19:23.6777676Z 2025-08-15T00:19:23.6777917Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:19:23.6778590Z call :libtorch_check "half_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\half_test.exe" 2025-08-15T00:19:23.6779186Z if errorlevel 1 goto fail 2025-08-15T00:19:23.6779462Z ) 2025-08-15T00:19:23.6788995Z 2025-08-15T00:19:23.6789398Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:19:23.6792637Z 2025-08-15T00:19:23.6793203Z (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-15T00:19:23.6795759Z 2025-08-15T00:19:23.6796155Z (base) C:\actions-runner\_work\pytorch\pytorch>if "half_test" == "verify_api_visibility" goto :eof 2025-08-15T00:19:23.6797465Z 2025-08-15T00:19:23.6798006Z (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-15T00:19:23.6798905Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\half_test.exe" 2025-08-15T00:19:23.6800231Z 2025-08-15T00:19:23.6800615Z (base) C:\actions-runner\_work\pytorch\pytorch>if "half_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:19:23.6801324Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\half_test.exe" 2025-08-15T00:19:23.6811479Z goto :eof 2025-08-15T00:19:23.6811739Z ) 2025-08-15T00:19:23.6811850Z 2025-08-15T00:19:23.6812222Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/half_test" 2025-08-15T00:19:29.9308992Z Found test times from artifacts 2025-08-15T00:19:29.9986773Z Found test times from artifacts 2025-08-15T00:19:30.0009034Z Running all tests 2025-08-15T00:19:30.0014699Z Running parallel tests on 3 processes 2025-08-15T00:19:30.0015159Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:19:30.0015469Z Serial tests (0): 2025-08-15T00:19:30.0015744Z Parallel tests (1): 2025-08-15T00:19:30.0015995Z cpp/half_test 1/1 2025-08-15T00:19:30.0016284Z Name: excluded (est. time: 0.0min) 2025-08-15T00:19:30.0016566Z Serial tests (0): 2025-08-15T00:19:30.0016828Z Parallel tests (0): 2025-08-15T00:19:30.0018576Z Running cpp/half_test 1/1 ... [2025-08-15 00:19:30.000593] 2025-08-15T00:19:30.0018965Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:19:30.0028708Z 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-63f98c360a40ab6d.xml', '-x', '--reruns=2'] ... [2025-08-15 00:19:30.000593] 2025-08-15T00:19:30.0030403Z 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-15T00:19:32.5482155Z 2025-08-15T00:19:32.5483235Z cpp/half_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.half_test_1.1_5b9d69c6be645267_.log 2025-08-15T00:19:32.5483820Z 2025-08-15T00:19:36.9875982Z Running cpp/half_test 1/1 ... [2025-08-15 00:19:36.985425] 2025-08-15T00:19:36.9884388Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:19:36.9885805Z 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-4d5f46f1caf289ad.xml', '-x', '--reruns=2'] ... [2025-08-15 00:19:36.985425] 2025-08-15T00:19:40.6594464Z 2025-08-15T00:19:40.6595303Z cpp/half_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.half_test_1.1_b201731d7572662c_.log 2025-08-15T00:19:40.6597856Z 2025-08-15T00:19:41.5481469Z Running test batch 'tests to run' cost 11.55 seconds 2025-08-15T00:19:41.5487990Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:19:41.5488505Z Uploading artifacts took 0.00 seconds 2025-08-15T00:19:42.2773210Z 2025-08-15T00:19:42.2774016Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:19:42.2774500Z echo "half_test" failed with exit code 0 2025-08-15T00:19:42.2774840Z goto fail 2025-08-15T00:19:42.2775073Z ) 2025-08-15T00:19:42.2775187Z 2025-08-15T00:19:42.2775408Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:19:42.2775853Z echo "half_test" failed with exit code 0 2025-08-15T00:19:42.2776153Z goto fail 2025-08-15T00:19:42.2776374Z ) 2025-08-15T00:19:42.2776681Z 2025-08-15T00:19:42.2776881Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:19:42.2783261Z 2025-08-15T00:19:42.2783522Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:19:42.2784215Z call :libtorch_check "IListRef_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\IListRef_test.exe" 2025-08-15T00:19:42.2784838Z if errorlevel 1 goto fail 2025-08-15T00:19:42.2785117Z ) 2025-08-15T00:19:42.2793983Z 2025-08-15T00:19:42.2794692Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:19:42.2797881Z 2025-08-15T00:19:42.2798591Z (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-15T00:19:42.2800382Z 2025-08-15T00:19:42.2800795Z (base) C:\actions-runner\_work\pytorch\pytorch>if "IListRef_test" == "verify_api_visibility" goto :eof 2025-08-15T00:19:42.2801685Z 2025-08-15T00:19:42.2802248Z (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-15T00:19:42.2803336Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\IListRef_test.exe" 2025-08-15T00:19:42.2804167Z 2025-08-15T00:19:42.2804574Z (base) C:\actions-runner\_work\pytorch\pytorch>if "IListRef_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:19:42.2805385Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\IListRef_test.exe" 2025-08-15T00:19:42.2805917Z goto :eof 2025-08-15T00:19:42.2806122Z ) 2025-08-15T00:19:42.2806239Z 2025-08-15T00:19:42.2806631Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/IListRef_test" 2025-08-15T00:19:48.3367947Z Found test times from artifacts 2025-08-15T00:19:48.4042410Z Found test times from artifacts 2025-08-15T00:19:48.4064702Z Running all tests 2025-08-15T00:19:48.4070088Z Running parallel tests on 3 processes 2025-08-15T00:19:48.4070466Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:19:48.4070794Z Serial tests (0): 2025-08-15T00:19:48.4071032Z Parallel tests (1): 2025-08-15T00:19:48.4071314Z cpp/IListRef_test 1/1 2025-08-15T00:19:48.4071580Z Name: excluded (est. time: 0.0min) 2025-08-15T00:19:48.4071879Z Serial tests (0): 2025-08-15T00:19:48.4072087Z Parallel tests (0): 2025-08-15T00:19:48.4073816Z Running cpp/IListRef_test 1/1 ... [2025-08-15 00:19:48.403832] 2025-08-15T00:19:48.4074189Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:19:48.4083663Z 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-7cb7f3b92d720fa4.xml', '-x', '--reruns=2'] ... [2025-08-15 00:19:48.403832] 2025-08-15T00:19:48.4085512Z 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-15T00:19:50.8554482Z 2025-08-15T00:19:50.8555344Z cpp/IListRef_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.IListRef_test_1.1_28051dd95225b90f_.log 2025-08-15T00:19:50.8555994Z 2025-08-15T00:19:55.2984208Z Running cpp/IListRef_test 1/1 ... [2025-08-15 00:19:55.297105] 2025-08-15T00:19:55.2984653Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:19:55.2993364Z 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-9bd79b3add1de57c.xml', '-x', '--reruns=2'] ... [2025-08-15 00:19:55.297105] 2025-08-15T00:20:00.5520021Z 2025-08-15T00:20:00.5520878Z cpp/IListRef_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.IListRef_test_1.1_720db9295aa7996e_.log 2025-08-15T00:20:00.5522175Z 2025-08-15T00:20:01.4028120Z Running test batch 'tests to run' cost 13.0 seconds 2025-08-15T00:20:01.4034271Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:20:01.4034790Z Uploading artifacts took 0.00 seconds 2025-08-15T00:20:02.1184855Z 2025-08-15T00:20:02.1185486Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:20:02.1185987Z echo "IListRef_test" failed with exit code 0 2025-08-15T00:20:02.1186310Z goto fail 2025-08-15T00:20:02.1186562Z ) 2025-08-15T00:20:02.1186674Z 2025-08-15T00:20:02.1186886Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:20:02.1187345Z echo "IListRef_test" failed with exit code 0 2025-08-15T00:20:02.1187686Z goto fail 2025-08-15T00:20:02.1187884Z ) 2025-08-15T00:20:02.1188102Z 2025-08-15T00:20:02.1188327Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:20:02.1195725Z 2025-08-15T00:20:02.1196082Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:20:02.1196841Z call :libtorch_check "inline_container_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\inline_container_test.exe" 2025-08-15T00:20:02.1197548Z if errorlevel 1 goto fail 2025-08-15T00:20:02.1197799Z ) 2025-08-15T00:20:02.1206153Z 2025-08-15T00:20:02.1206839Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:20:02.1210350Z 2025-08-15T00:20:02.1210916Z (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-15T00:20:02.1213112Z 2025-08-15T00:20:02.1213677Z (base) C:\actions-runner\_work\pytorch\pytorch>if "inline_container_test" == "verify_api_visibility" goto :eof 2025-08-15T00:20:02.1214904Z 2025-08-15T00:20:02.1215461Z (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-15T00:20:02.1216459Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\inline_container_test.exe" 2025-08-15T00:20:02.1217181Z 2025-08-15T00:20:02.1217629Z (base) C:\actions-runner\_work\pytorch\pytorch>if "inline_container_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:20:02.1218481Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\inline_container_test.exe" 2025-08-15T00:20:02.1219047Z goto :eof 2025-08-15T00:20:02.1219406Z ) 2025-08-15T00:20:02.1219519Z 2025-08-15T00:20:02.1219979Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/inline_container_test" 2025-08-15T00:20:08.2272144Z Found test times from artifacts 2025-08-15T00:20:08.2953834Z Found test times from artifacts 2025-08-15T00:20:08.2975752Z Running all tests 2025-08-15T00:20:08.2981424Z Running parallel tests on 3 processes 2025-08-15T00:20:08.2981916Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:20:08.2982274Z Serial tests (0): 2025-08-15T00:20:08.2982556Z Parallel tests (1): 2025-08-15T00:20:08.2982838Z cpp/inline_container_test 1/1 2025-08-15T00:20:08.2983132Z Name: excluded (est. time: 0.0min) 2025-08-15T00:20:08.2983424Z Serial tests (0): 2025-08-15T00:20:08.2983653Z Parallel tests (0): 2025-08-15T00:20:08.2985436Z Running cpp/inline_container_test 1/1 ... [2025-08-15 00:20:08.298239] 2025-08-15T00:20:08.2985891Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:20:08.2995344Z 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-6a4bf4665864eb95.xml', '-x', '--reruns=2'] ... [2025-08-15 00:20:08.298239] 2025-08-15T00:20:08.2997090Z 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-15T00:20:10.6214072Z 2025-08-15T00:20:10.6215018Z 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_8d3d10a78891f85c_.log 2025-08-15T00:20:10.6215706Z 2025-08-15T00:20:15.0404414Z Running cpp/inline_container_test 1/1 ... [2025-08-15 00:20:15.029638] 2025-08-15T00:20:15.0404894Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:20:15.0413749Z 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-176a2ae162439a1c.xml', '-x', '--reruns=2'] ... [2025-08-15 00:20:15.029638] 2025-08-15T00:20:19.0743583Z 2025-08-15T00:20:19.0744496Z 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_0558b9ab591f1425_.log 2025-08-15T00:20:19.0745611Z 2025-08-15T00:20:19.8966881Z Running test batch 'tests to run' cost 11.59 seconds 2025-08-15T00:20:19.8974971Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:20:19.8975477Z Uploading artifacts took 0.00 seconds 2025-08-15T00:20:20.6912047Z 2025-08-15T00:20:20.6912746Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:20:20.6913285Z echo "inline_container_test" failed with exit code 0 2025-08-15T00:20:20.6913662Z goto fail 2025-08-15T00:20:20.6913888Z ) 2025-08-15T00:20:20.6914018Z 2025-08-15T00:20:20.6914226Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:20:20.6914712Z echo "inline_container_test" failed with exit code 0 2025-08-15T00:20:20.6915053Z goto fail 2025-08-15T00:20:20.6915283Z ) 2025-08-15T00:20:20.6915393Z 2025-08-15T00:20:20.6915582Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:20:20.6923214Z 2025-08-15T00:20:20.6923488Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:20:20.6924180Z call :libtorch_check "ivalue_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\ivalue_test.exe" 2025-08-15T00:20:20.6924798Z if errorlevel 1 goto fail 2025-08-15T00:20:20.6925068Z ) 2025-08-15T00:20:20.6933778Z 2025-08-15T00:20:20.6934211Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:20:20.6937797Z 2025-08-15T00:20:20.6938324Z (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-15T00:20:20.6940219Z 2025-08-15T00:20:20.6940644Z (base) C:\actions-runner\_work\pytorch\pytorch>if "ivalue_test" == "verify_api_visibility" goto :eof 2025-08-15T00:20:20.6941503Z 2025-08-15T00:20:20.6942300Z (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-15T00:20:20.6943272Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\ivalue_test.exe" 2025-08-15T00:20:20.6943811Z 2025-08-15T00:20:20.6944331Z (base) C:\actions-runner\_work\pytorch\pytorch>if "ivalue_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:20:20.6945032Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\ivalue_test.exe" 2025-08-15T00:20:20.6945584Z goto :eof 2025-08-15T00:20:20.6945859Z ) 2025-08-15T00:20:20.6945968Z 2025-08-15T00:20:20.6946326Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/ivalue_test" 2025-08-15T00:20:26.7603040Z Found test times from artifacts 2025-08-15T00:20:26.8279350Z Found test times from artifacts 2025-08-15T00:20:26.8301240Z Running all tests 2025-08-15T00:20:26.8307408Z Running parallel tests on 3 processes 2025-08-15T00:20:26.8307797Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:20:26.8308142Z Serial tests (0): 2025-08-15T00:20:26.8308382Z Parallel tests (1): 2025-08-15T00:20:26.8308599Z cpp/ivalue_test 1/1 2025-08-15T00:20:26.8308834Z Name: excluded (est. time: 0.0min) 2025-08-15T00:20:26.8309076Z Serial tests (0): 2025-08-15T00:20:26.8309286Z Parallel tests (0): 2025-08-15T00:20:26.8311183Z Running cpp/ivalue_test 1/1 ... [2025-08-15 00:20:26.822207] 2025-08-15T00:20:26.8311584Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:20:26.8320668Z 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-7263cccdd28282a9.xml', '-x', '--reruns=2'] ... [2025-08-15 00:20:26.822207] 2025-08-15T00:20:26.8322559Z 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-15T00:20:29.1548562Z 2025-08-15T00:20:29.1549651Z cpp/ivalue_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.ivalue_test_1.1_ad2230554fca2977_.log 2025-08-15T00:20:29.1550237Z 2025-08-15T00:20:33.6777735Z Running cpp/ivalue_test 1/1 ... [2025-08-15 00:20:33.677545] 2025-08-15T00:20:33.6778139Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:20:33.6787330Z 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-9422eec2855a4df8.xml', '-x', '--reruns=2'] ... [2025-08-15 00:20:33.678116] 2025-08-15T00:20:41.7148999Z 2025-08-15T00:20:41.7149933Z cpp/ivalue_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.ivalue_test_1.1_c09fac9c1ac5a024_.log 2025-08-15T00:20:41.7151537Z 2025-08-15T00:20:42.5446098Z Running test batch 'tests to run' cost 15.72 seconds 2025-08-15T00:20:42.5453530Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:20:42.5454034Z Uploading artifacts took 0.00 seconds 2025-08-15T00:20:43.2506624Z 2025-08-15T00:20:43.2507350Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:20:43.2507794Z echo "ivalue_test" failed with exit code 0 2025-08-15T00:20:43.2508082Z goto fail 2025-08-15T00:20:43.2508257Z ) 2025-08-15T00:20:43.2508530Z 2025-08-15T00:20:43.2508798Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:20:43.2509278Z echo "ivalue_test" failed with exit code 0 2025-08-15T00:20:43.2509548Z goto fail 2025-08-15T00:20:43.2509723Z ) 2025-08-15T00:20:43.2509821Z 2025-08-15T00:20:43.2509970Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:20:43.2516370Z 2025-08-15T00:20:43.2516620Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:20:43.2517314Z call :libtorch_check "KernelFunction_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\KernelFunction_test.exe" 2025-08-15T00:20:43.2518039Z if errorlevel 1 goto fail 2025-08-15T00:20:43.2518302Z ) 2025-08-15T00:20:43.2527610Z 2025-08-15T00:20:43.2527965Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:20:43.2531720Z 2025-08-15T00:20:43.2532232Z (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-15T00:20:43.2534180Z 2025-08-15T00:20:43.2534688Z (base) C:\actions-runner\_work\pytorch\pytorch>if "KernelFunction_test" == "verify_api_visibility" goto :eof 2025-08-15T00:20:43.2536075Z 2025-08-15T00:20:43.2536617Z (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-15T00:20:43.2537552Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\KernelFunction_test.exe" 2025-08-15T00:20:43.2537987Z 2025-08-15T00:20:43.2538305Z (base) C:\actions-runner\_work\pytorch\pytorch>if "KernelFunction_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:20:43.2539024Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\KernelFunction_test.exe" 2025-08-15T00:20:43.2539514Z goto :eof 2025-08-15T00:20:43.2539692Z ) 2025-08-15T00:20:43.2539789Z 2025-08-15T00:20:43.2540152Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/KernelFunction_test" 2025-08-15T00:20:49.3516334Z Found test times from artifacts 2025-08-15T00:20:49.4191905Z Found test times from artifacts 2025-08-15T00:20:49.4214474Z Running all tests 2025-08-15T00:20:49.4220198Z Running parallel tests on 3 processes 2025-08-15T00:20:49.4220601Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:20:49.4221039Z Serial tests (0): 2025-08-15T00:20:49.4221247Z Parallel tests (1): 2025-08-15T00:20:49.4221480Z cpp/KernelFunction_test 1/1 2025-08-15T00:20:49.4221723Z Name: excluded (est. time: 0.0min) 2025-08-15T00:20:49.4221980Z Serial tests (0): 2025-08-15T00:20:49.4222174Z Parallel tests (0): 2025-08-15T00:20:49.4224019Z Running cpp/KernelFunction_test 1/1 ... [2025-08-15 00:20:49.418318] 2025-08-15T00:20:49.4224425Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:20:49.4234058Z 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-e861f892e34d4190.xml', '-x', '--reruns=2'] ... [2025-08-15 00:20:49.418318] 2025-08-15T00:20:49.4235737Z 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-15T00:20:51.7733913Z 2025-08-15T00:20:51.7734798Z cpp/KernelFunction_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.KernelFunction_test_1.1_a3d03566f872ca6e_.log 2025-08-15T00:20:51.7735478Z 2025-08-15T00:20:56.3131435Z Running cpp/KernelFunction_test 1/1 ... [2025-08-15 00:20:56.299951] 2025-08-15T00:20:56.3131885Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:20:56.3141449Z 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-1747c648692679e9.xml', '-x', '--reruns=2'] ... [2025-08-15 00:20:56.299951] 2025-08-15T00:21:02.9827997Z 2025-08-15T00:21:02.9828957Z cpp/KernelFunction_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.KernelFunction_test_1.1_9329bc21a764c550_.log 2025-08-15T00:21:02.9830435Z 2025-08-15T00:21:03.8600815Z Running test batch 'tests to run' cost 14.43 seconds 2025-08-15T00:21:03.8607401Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:21:03.8607889Z Uploading artifacts took 0.00 seconds 2025-08-15T00:21:04.5747141Z 2025-08-15T00:21:04.5747926Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:21:04.5748404Z echo "KernelFunction_test" failed with exit code 0 2025-08-15T00:21:04.5748729Z goto fail 2025-08-15T00:21:04.5748926Z ) 2025-08-15T00:21:04.5749020Z 2025-08-15T00:21:04.5749214Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:21:04.5749653Z echo "KernelFunction_test" failed with exit code 0 2025-08-15T00:21:04.5749962Z goto fail 2025-08-15T00:21:04.5750131Z ) 2025-08-15T00:21:04.5750289Z 2025-08-15T00:21:04.5750479Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:21:04.5757203Z 2025-08-15T00:21:04.5757419Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:21:04.5758200Z 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-15T00:21:04.5758896Z if errorlevel 1 goto fail 2025-08-15T00:21:04.5759113Z ) 2025-08-15T00:21:04.5769840Z 2025-08-15T00:21:04.5770224Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:21:04.5773764Z 2025-08-15T00:21:04.5774240Z (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-15T00:21:04.5776633Z 2025-08-15T00:21:04.5777266Z (base) C:\actions-runner\_work\pytorch\pytorch>if "kernel_function_legacy_test" == "verify_api_visibility" goto :eof 2025-08-15T00:21:04.5778005Z 2025-08-15T00:21:04.5778873Z (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-15T00:21:04.5780096Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_function_legacy_test.exe" 2025-08-15T00:21:04.5780577Z 2025-08-15T00:21:04.5780963Z (base) C:\actions-runner\_work\pytorch\pytorch>if "kernel_function_legacy_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:21:04.5781768Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_function_legacy_test.exe" 2025-08-15T00:21:04.5782339Z goto :eof 2025-08-15T00:21:04.5782543Z ) 2025-08-15T00:21:04.5782686Z 2025-08-15T00:21:04.5783091Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/kernel_function_legacy_test" 2025-08-15T00:21:10.7408012Z Found test times from artifacts 2025-08-15T00:21:10.8158296Z Found test times from artifacts 2025-08-15T00:21:10.8186413Z Running all tests 2025-08-15T00:21:10.8192755Z Running parallel tests on 3 processes 2025-08-15T00:21:10.8193203Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:21:10.8193521Z Serial tests (0): 2025-08-15T00:21:10.8193833Z Parallel tests (1): 2025-08-15T00:21:10.8194159Z cpp/kernel_function_legacy_test 1/1 2025-08-15T00:21:10.8194476Z Name: excluded (est. time: 0.0min) 2025-08-15T00:21:10.8194778Z Serial tests (0): 2025-08-15T00:21:10.8195009Z Parallel tests (0): 2025-08-15T00:21:10.8197907Z Running cpp/kernel_function_legacy_test 1/1 ... [2025-08-15 00:21:10.819410] 2025-08-15T00:21:10.8198529Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:21:10.8210954Z 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-20c2b5f1bce4abb8.xml', '-x', '--reruns=2'] ... [2025-08-15 00:21:10.820596] 2025-08-15T00:21:10.8212928Z 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-15T00:21:13.1313857Z 2025-08-15T00:21:13.1315051Z 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_829e40362ab33652_.log 2025-08-15T00:21:13.1315794Z 2025-08-15T00:21:17.5068136Z Running cpp/kernel_function_legacy_test 1/1 ... [2025-08-15 00:21:17.506408] 2025-08-15T00:21:17.5068697Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:21:17.5080118Z 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-6bad14e0d45087e8.xml', '-x', '--reruns=2'] ... [2025-08-15 00:21:17.507596] 2025-08-15T00:21:28.1517152Z 2025-08-15T00:21:28.1518116Z 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_2879879a6bbee8ee_.log 2025-08-15T00:21:28.1520173Z 2025-08-15T00:21:29.0051194Z Running test batch 'tests to run' cost 18.19 seconds 2025-08-15T00:21:29.0057581Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:21:29.0058077Z Uploading artifacts took 0.00 seconds 2025-08-15T00:21:29.7128747Z 2025-08-15T00:21:29.7129588Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:21:29.7130124Z echo "kernel_function_legacy_test" failed with exit code 0 2025-08-15T00:21:29.7130526Z goto fail 2025-08-15T00:21:29.7130725Z ) 2025-08-15T00:21:29.7130862Z 2025-08-15T00:21:29.7131062Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:21:29.7131558Z echo "kernel_function_legacy_test" failed with exit code 0 2025-08-15T00:21:29.7131911Z goto fail 2025-08-15T00:21:29.7132276Z ) 2025-08-15T00:21:29.7132385Z 2025-08-15T00:21:29.7132552Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:21:29.7137452Z 2025-08-15T00:21:29.7137949Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:21:29.7138741Z call :libtorch_check "kernel_function_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_function_test.exe" 2025-08-15T00:21:29.7139411Z if errorlevel 1 goto fail 2025-08-15T00:21:29.7139677Z ) 2025-08-15T00:21:29.7148047Z 2025-08-15T00:21:29.7148486Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:21:29.7152080Z 2025-08-15T00:21:29.7152598Z (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-15T00:21:29.7154940Z 2025-08-15T00:21:29.7155511Z (base) C:\actions-runner\_work\pytorch\pytorch>if "kernel_function_test" == "verify_api_visibility" goto :eof 2025-08-15T00:21:29.7156551Z 2025-08-15T00:21:29.7157205Z (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-15T00:21:29.7158207Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_function_test.exe" 2025-08-15T00:21:29.7158656Z 2025-08-15T00:21:29.7159260Z (base) C:\actions-runner\_work\pytorch\pytorch>if "kernel_function_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:21:29.7160123Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_function_test.exe" 2025-08-15T00:21:29.7160698Z goto :eof 2025-08-15T00:21:29.7160920Z ) 2025-08-15T00:21:29.7161024Z 2025-08-15T00:21:29.7161408Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/kernel_function_test" 2025-08-15T00:21:35.9141503Z Found test times from artifacts 2025-08-15T00:21:35.9821424Z Found test times from artifacts 2025-08-15T00:21:35.9844099Z Running all tests 2025-08-15T00:21:35.9849648Z Running parallel tests on 3 processes 2025-08-15T00:21:35.9850106Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:21:35.9850414Z Serial tests (0): 2025-08-15T00:21:35.9850670Z Parallel tests (1): 2025-08-15T00:21:35.9850920Z cpp/kernel_function_test 1/1 2025-08-15T00:21:35.9851239Z Name: excluded (est. time: 0.0min) 2025-08-15T00:21:35.9851515Z Serial tests (0): 2025-08-15T00:21:35.9851794Z Parallel tests (0): 2025-08-15T00:21:35.9853667Z Running cpp/kernel_function_test 1/1 ... [2025-08-15 00:21:35.984766] 2025-08-15T00:21:35.9854208Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:21:35.9865153Z 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-fb99b2f7d7ee7609.xml', '-x', '--reruns=2'] ... [2025-08-15 00:21:35.986330] 2025-08-15T00:21:35.9872576Z 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-15T00:21:38.4055507Z 2025-08-15T00:21:38.4056704Z 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_624f4460427c7bdd_.log 2025-08-15T00:21:38.4057370Z 2025-08-15T00:21:43.0104026Z Running cpp/kernel_function_test 1/1 ... [2025-08-15 00:21:43.009809] 2025-08-15T00:21:43.0104550Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:21:43.0116489Z 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-4db51785df586209.xml', '-x', '--reruns=2'] ... [2025-08-15 00:21:43.011015] 2025-08-15T00:21:51.6029143Z 2025-08-15T00:21:51.6029982Z 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_78866ac6c9b7a654_.log 2025-08-15T00:21:51.6031763Z 2025-08-15T00:21:52.4225275Z Running test batch 'tests to run' cost 16.44 seconds 2025-08-15T00:21:52.4231554Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:21:52.4232011Z Uploading artifacts took 0.00 seconds 2025-08-15T00:21:53.1328024Z 2025-08-15T00:21:53.1328814Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:21:53.1329304Z echo "kernel_function_test" failed with exit code 0 2025-08-15T00:21:53.1329658Z goto fail 2025-08-15T00:21:53.1329840Z ) 2025-08-15T00:21:53.1329959Z 2025-08-15T00:21:53.1330152Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:21:53.1330579Z echo "kernel_function_test" failed with exit code 0 2025-08-15T00:21:53.1330916Z goto fail 2025-08-15T00:21:53.1331106Z ) 2025-08-15T00:21:53.1331240Z 2025-08-15T00:21:53.1331409Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:21:53.1337901Z 2025-08-15T00:21:53.1338263Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:21:53.1339022Z 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-15T00:21:53.1339873Z if errorlevel 1 goto fail 2025-08-15T00:21:53.1340120Z ) 2025-08-15T00:21:53.1349461Z 2025-08-15T00:21:53.1350096Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:21:53.1353033Z 2025-08-15T00:21:53.1353612Z (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-15T00:21:53.1356095Z 2025-08-15T00:21:53.1356643Z (base) C:\actions-runner\_work\pytorch\pytorch>if "kernel_lambda_legacy_test" == "verify_api_visibility" goto :eof 2025-08-15T00:21:53.1357497Z 2025-08-15T00:21:53.1358072Z (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-15T00:21:53.1359049Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_lambda_legacy_test.exe" 2025-08-15T00:21:53.1359516Z 2025-08-15T00:21:53.1359871Z (base) C:\actions-runner\_work\pytorch\pytorch>if "kernel_lambda_legacy_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:21:53.1360684Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_lambda_legacy_test.exe" 2025-08-15T00:21:53.1361269Z goto :eof 2025-08-15T00:21:53.1361448Z ) 2025-08-15T00:21:53.1361560Z 2025-08-15T00:21:53.1361937Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/kernel_lambda_legacy_test" 2025-08-15T00:21:59.2744170Z Found test times from artifacts 2025-08-15T00:21:59.3425702Z Found test times from artifacts 2025-08-15T00:21:59.3447433Z Running all tests 2025-08-15T00:21:59.3453444Z Running parallel tests on 3 processes 2025-08-15T00:21:59.3453806Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:21:59.3454085Z Serial tests (0): 2025-08-15T00:21:59.3454316Z Parallel tests (1): 2025-08-15T00:21:59.3454551Z cpp/kernel_lambda_legacy_test 1/1 2025-08-15T00:21:59.3454869Z Name: excluded (est. time: 0.0min) 2025-08-15T00:21:59.3455123Z Serial tests (0): 2025-08-15T00:21:59.3455349Z Parallel tests (0): 2025-08-15T00:21:59.3456974Z Running cpp/kernel_lambda_legacy_test 1/1 ... [2025-08-15 00:21:59.340154] 2025-08-15T00:21:59.3457462Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:21:59.3467743Z 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-366b72872732da0d.xml', '-x', '--reruns=2'] ... [2025-08-15 00:21:59.346327] 2025-08-15T00:21:59.3469818Z 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-15T00:22:01.6908757Z 2025-08-15T00:22:01.6909683Z 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_99e5600b615329a9_.log 2025-08-15T00:22:01.6910360Z 2025-08-15T00:22:06.1316942Z Running cpp/kernel_lambda_legacy_test 1/1 ... [2025-08-15 00:22:06.131154] 2025-08-15T00:22:06.1317422Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:22:06.1328013Z 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-a6273dd98013a236.xml', '-x', '--reruns=2'] ... [2025-08-15 00:22:06.132286] 2025-08-15T00:22:16.3755245Z 2025-08-15T00:22:16.3756234Z 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_965e4ace4e7b79ca_.log 2025-08-15T00:22:16.3757988Z 2025-08-15T00:22:17.2171954Z Running test batch 'tests to run' cost 17.87 seconds 2025-08-15T00:22:17.2178648Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:22:17.2179178Z Uploading artifacts took 0.00 seconds 2025-08-15T00:22:17.9316195Z 2025-08-15T00:22:17.9316743Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:22:17.9317235Z echo "kernel_lambda_legacy_test" failed with exit code 0 2025-08-15T00:22:17.9317562Z goto fail 2025-08-15T00:22:17.9317751Z ) 2025-08-15T00:22:17.9317972Z 2025-08-15T00:22:17.9318306Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:22:17.9318758Z echo "kernel_lambda_legacy_test" failed with exit code 0 2025-08-15T00:22:17.9319098Z goto fail 2025-08-15T00:22:17.9319271Z ) 2025-08-15T00:22:17.9319838Z 2025-08-15T00:22:17.9320066Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:22:17.9326321Z 2025-08-15T00:22:17.9326575Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:22:17.9327286Z call :libtorch_check "kernel_lambda_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_lambda_test.exe" 2025-08-15T00:22:17.9327936Z if errorlevel 1 goto fail 2025-08-15T00:22:17.9328173Z ) 2025-08-15T00:22:17.9345650Z 2025-08-15T00:22:17.9346316Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:22:17.9349477Z 2025-08-15T00:22:17.9349970Z (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-15T00:22:17.9352413Z 2025-08-15T00:22:17.9352827Z (base) C:\actions-runner\_work\pytorch\pytorch>if "kernel_lambda_test" == "verify_api_visibility" goto :eof 2025-08-15T00:22:17.9353706Z 2025-08-15T00:22:17.9354338Z (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-15T00:22:17.9355398Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_lambda_test.exe" 2025-08-15T00:22:17.9355984Z 2025-08-15T00:22:17.9356406Z (base) C:\actions-runner\_work\pytorch\pytorch>if "kernel_lambda_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:22:17.9357149Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_lambda_test.exe" 2025-08-15T00:22:17.9357649Z goto :eof 2025-08-15T00:22:17.9357825Z ) 2025-08-15T00:22:17.9357932Z 2025-08-15T00:22:17.9358308Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/kernel_lambda_test" 2025-08-15T00:22:24.0646223Z Found test times from artifacts 2025-08-15T00:22:24.1321228Z Found test times from artifacts 2025-08-15T00:22:24.1343946Z Running all tests 2025-08-15T00:22:24.1349481Z Running parallel tests on 3 processes 2025-08-15T00:22:24.1349923Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:22:24.1350206Z Serial tests (0): 2025-08-15T00:22:24.1350435Z Parallel tests (1): 2025-08-15T00:22:24.1350722Z cpp/kernel_lambda_test 1/1 2025-08-15T00:22:24.1350993Z Name: excluded (est. time: 0.0min) 2025-08-15T00:22:24.1351252Z Serial tests (0): 2025-08-15T00:22:24.1351470Z Parallel tests (0): 2025-08-15T00:22:24.1353514Z Running cpp/kernel_lambda_test 1/1 ... [2025-08-15 00:22:24.134831] 2025-08-15T00:22:24.1353944Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:22:24.1370275Z 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-30bb7ef3a4625ff1.xml', '-x', '--reruns=2'] ... [2025-08-15 00:22:24.136276] 2025-08-15T00:22:24.1371979Z 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-15T00:22:26.4294834Z 2025-08-15T00:22:26.4296059Z 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_efed2c233b8b4c10_.log 2025-08-15T00:22:26.4296773Z 2025-08-15T00:22:30.9220003Z Running cpp/kernel_lambda_test 1/1 ... [2025-08-15 00:22:30.911985] 2025-08-15T00:22:30.9220424Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:22:30.9229291Z 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-7c9fbd3f216b4463.xml', '-x', '--reruns=2'] ... [2025-08-15 00:22:30.922095] 2025-08-15T00:22:39.6635190Z 2025-08-15T00:22:39.6636194Z 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_6da94bab5f5a856b_.log 2025-08-15T00:22:39.6637534Z 2025-08-15T00:22:40.5481411Z Running test batch 'tests to run' cost 16.41 seconds 2025-08-15T00:22:40.5512334Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:22:40.5512793Z Uploading artifacts took 0.00 seconds 2025-08-15T00:22:41.2792118Z 2025-08-15T00:22:41.2792736Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:22:41.2793224Z echo "kernel_lambda_test" failed with exit code 0 2025-08-15T00:22:41.2793585Z goto fail 2025-08-15T00:22:41.2793797Z ) 2025-08-15T00:22:41.2799337Z 2025-08-15T00:22:41.2799629Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:22:41.2800063Z echo "kernel_lambda_test" failed with exit code 0 2025-08-15T00:22:41.2800354Z goto fail 2025-08-15T00:22:41.2800527Z ) 2025-08-15T00:22:41.2800741Z 2025-08-15T00:22:41.2800941Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:22:41.2808092Z 2025-08-15T00:22:41.2808323Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:22:41.2809116Z call :libtorch_check "kernel_stackbased_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_stackbased_test.exe" 2025-08-15T00:22:41.2809868Z if errorlevel 1 goto fail 2025-08-15T00:22:41.2810090Z ) 2025-08-15T00:22:41.2819342Z 2025-08-15T00:22:41.2819707Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:22:41.2823478Z 2025-08-15T00:22:41.2823960Z (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-15T00:22:41.2826335Z 2025-08-15T00:22:41.2826850Z (base) C:\actions-runner\_work\pytorch\pytorch>if "kernel_stackbased_test" == "verify_api_visibility" goto :eof 2025-08-15T00:22:41.2827705Z 2025-08-15T00:22:41.2828248Z (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-15T00:22:41.2829237Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_stackbased_test.exe" 2025-08-15T00:22:41.2830066Z 2025-08-15T00:22:41.2830517Z (base) C:\actions-runner\_work\pytorch\pytorch>if "kernel_stackbased_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:22:41.2831266Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_stackbased_test.exe" 2025-08-15T00:22:41.2831751Z goto :eof 2025-08-15T00:22:41.2831927Z ) 2025-08-15T00:22:41.2832073Z 2025-08-15T00:22:41.2832490Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/kernel_stackbased_test" 2025-08-15T00:22:47.3389243Z Found test times from artifacts 2025-08-15T00:22:47.4074423Z Found test times from artifacts 2025-08-15T00:22:47.4096916Z Running all tests 2025-08-15T00:22:47.4102375Z Running parallel tests on 3 processes 2025-08-15T00:22:47.4102780Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:22:47.4103043Z Serial tests (0): 2025-08-15T00:22:47.4103856Z Parallel tests (1): 2025-08-15T00:22:47.4104101Z cpp/kernel_stackbased_test 1/1 2025-08-15T00:22:47.4104460Z Name: excluded (est. time: 0.0min) 2025-08-15T00:22:47.4104784Z Serial tests (0): 2025-08-15T00:22:47.4104998Z Parallel tests (0): 2025-08-15T00:22:47.4106289Z Running cpp/kernel_stackbased_test 1/1 ... [2025-08-15 00:22:47.409565] 2025-08-15T00:22:47.4106711Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:22:47.4116615Z 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-d9afe77cb5b0eda9.xml', '-x', '--reruns=2'] ... [2025-08-15 00:22:47.409565] 2025-08-15T00:22:47.4118310Z 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-15T00:22:49.7289554Z 2025-08-15T00:22:49.7290611Z 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_07a23f6689609d76_.log 2025-08-15T00:22:49.7291291Z 2025-08-15T00:22:54.1633223Z Running cpp/kernel_stackbased_test 1/1 ... [2025-08-15 00:22:54.163031] 2025-08-15T00:22:54.1633678Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:22:54.1643287Z 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-31c44cc667001cdb.xml', '-x', '--reruns=2'] ... [2025-08-15 00:22:54.163628] 2025-08-15T00:22:58.4335612Z 2025-08-15T00:22:58.4336735Z 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_da658fd7494fc5da_.log 2025-08-15T00:22:58.4337397Z 2025-08-15T00:22:59.2469412Z Running test batch 'tests to run' cost 11.84 seconds 2025-08-15T00:22:59.2477047Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:22:59.2477577Z Uploading artifacts took 0.00 seconds 2025-08-15T00:22:59.9526353Z 2025-08-15T00:22:59.9527108Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:22:59.9527592Z echo "kernel_stackbased_test" failed with exit code 0 2025-08-15T00:22:59.9528079Z goto fail 2025-08-15T00:22:59.9528260Z ) 2025-08-15T00:22:59.9528366Z 2025-08-15T00:22:59.9528558Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:22:59.9528992Z echo "kernel_stackbased_test" failed with exit code 0 2025-08-15T00:22:59.9529309Z goto fail 2025-08-15T00:22:59.9529478Z ) 2025-08-15T00:22:59.9529572Z 2025-08-15T00:22:59.9529729Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:22:59.9536103Z 2025-08-15T00:22:59.9536341Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:22:59.9537004Z call :libtorch_check "lazy_tensor_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\lazy_tensor_test.exe" 2025-08-15T00:22:59.9537647Z if errorlevel 1 goto fail 2025-08-15T00:22:59.9537868Z ) 2025-08-15T00:22:59.9546534Z 2025-08-15T00:22:59.9546888Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:22:59.9550373Z 2025-08-15T00:22:59.9550852Z (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-15T00:22:59.9552848Z 2025-08-15T00:22:59.9553324Z (base) C:\actions-runner\_work\pytorch\pytorch>if "lazy_tensor_test" == "verify_api_visibility" goto :eof 2025-08-15T00:22:59.9554168Z 2025-08-15T00:22:59.9554819Z (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-15T00:22:59.9555798Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\lazy_tensor_test.exe" 2025-08-15T00:22:59.9556386Z 2025-08-15T00:22:59.9556974Z (base) C:\actions-runner\_work\pytorch\pytorch>if "lazy_tensor_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:22:59.9557737Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\lazy_tensor_test.exe" 2025-08-15T00:22:59.9558270Z goto :eof 2025-08-15T00:22:59.9558470Z ) 2025-08-15T00:22:59.9558599Z 2025-08-15T00:22:59.9558956Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/lazy_tensor_test" 2025-08-15T00:23:06.1097080Z Found test times from artifacts 2025-08-15T00:23:06.1777430Z Found test times from artifacts 2025-08-15T00:23:06.1799622Z Running all tests 2025-08-15T00:23:06.1805485Z Running parallel tests on 3 processes 2025-08-15T00:23:06.1805901Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:23:06.1806222Z Serial tests (0): 2025-08-15T00:23:06.1806491Z Parallel tests (1): 2025-08-15T00:23:06.1806764Z cpp/lazy_tensor_test 1/1 2025-08-15T00:23:06.1807047Z Name: excluded (est. time: 0.0min) 2025-08-15T00:23:06.1807349Z Serial tests (0): 2025-08-15T00:23:06.1807572Z Parallel tests (0): 2025-08-15T00:23:06.1808949Z Running cpp/lazy_tensor_test 1/1 ... [2025-08-15 00:23:06.174914] 2025-08-15T00:23:06.1809352Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:23:06.1818753Z 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-c44ce5d107b34ed5.xml', '-x', '--reruns=2'] ... [2025-08-15 00:23:06.174914] 2025-08-15T00:23:06.1820454Z 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-15T00:23:08.5258501Z 2025-08-15T00:23:08.5259411Z 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_59afd85c46bc6366_.log 2025-08-15T00:23:08.5260191Z 2025-08-15T00:23:12.9556778Z Running cpp/lazy_tensor_test 1/1 ... [2025-08-15 00:23:12.955416] 2025-08-15T00:23:12.9557229Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:23:12.9566497Z 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-70b2054925fc4980.xml', '-x', '--reruns=2'] ... [2025-08-15 00:23:12.956021] 2025-08-15T00:23:15.7777248Z 2025-08-15T00:23:15.7778393Z 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_814ac30a70733bd2_.log 2025-08-15T00:23:15.7779044Z 2025-08-15T00:23:16.6296834Z Running test batch 'tests to run' cost 10.45 seconds 2025-08-15T00:23:16.6303484Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:23:16.6303966Z Uploading artifacts took 0.00 seconds 2025-08-15T00:23:17.3439120Z 2025-08-15T00:23:17.3439767Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:23:17.3440272Z echo "lazy_tensor_test" failed with exit code 0 2025-08-15T00:23:17.3440623Z goto fail 2025-08-15T00:23:17.3440861Z ) 2025-08-15T00:23:17.3440978Z 2025-08-15T00:23:17.3441205Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:23:17.3441627Z echo "lazy_tensor_test" failed with exit code 0 2025-08-15T00:23:17.3441974Z goto fail 2025-08-15T00:23:17.3442168Z ) 2025-08-15T00:23:17.3442295Z 2025-08-15T00:23:17.3442459Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:23:17.3450706Z 2025-08-15T00:23:17.3451376Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:23:17.3452183Z call :libtorch_check "legacy_vmap_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\legacy_vmap_test.exe" 2025-08-15T00:23:17.3452915Z if errorlevel 1 goto fail 2025-08-15T00:23:17.3453203Z ) 2025-08-15T00:23:17.3460728Z 2025-08-15T00:23:17.3461097Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:23:17.3464350Z 2025-08-15T00:23:17.3464821Z (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-15T00:23:17.3467193Z 2025-08-15T00:23:17.3467653Z (base) C:\actions-runner\_work\pytorch\pytorch>if "legacy_vmap_test" == "verify_api_visibility" goto :eof 2025-08-15T00:23:17.3468880Z 2025-08-15T00:23:17.3469439Z (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-15T00:23:17.3470396Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\legacy_vmap_test.exe" 2025-08-15T00:23:17.3471189Z 2025-08-15T00:23:17.3471625Z (base) C:\actions-runner\_work\pytorch\pytorch>if "legacy_vmap_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:23:17.3472361Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\legacy_vmap_test.exe" 2025-08-15T00:23:17.3472883Z goto :eof 2025-08-15T00:23:17.3473108Z ) 2025-08-15T00:23:17.3473217Z 2025-08-15T00:23:17.3473582Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/legacy_vmap_test" 2025-08-15T00:23:23.4818705Z Found test times from artifacts 2025-08-15T00:23:23.5498806Z Found test times from artifacts 2025-08-15T00:23:23.5521385Z Running all tests 2025-08-15T00:23:23.5527013Z Running parallel tests on 3 processes 2025-08-15T00:23:23.5527408Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:23:23.5527766Z Serial tests (0): 2025-08-15T00:23:23.5528003Z Parallel tests (1): 2025-08-15T00:23:23.5528285Z cpp/legacy_vmap_test 1/1 2025-08-15T00:23:23.5528599Z Name: excluded (est. time: 0.0min) 2025-08-15T00:23:23.5528881Z Serial tests (0): 2025-08-15T00:23:23.5529134Z Parallel tests (0): 2025-08-15T00:23:23.5530889Z Running cpp/legacy_vmap_test 1/1 ... [2025-08-15 00:23:23.552988] 2025-08-15T00:23:23.5531310Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:23:23.5540798Z 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-a144d593612ffa24.xml', '-x', '--reruns=2'] ... [2025-08-15 00:23:23.553608] 2025-08-15T00:23:23.5542695Z 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-15T00:23:25.8385851Z 2025-08-15T00:23:25.8386792Z 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_a685d5b1dcaad01f_.log 2025-08-15T00:23:25.8387428Z 2025-08-15T00:23:30.3023444Z Running cpp/legacy_vmap_test 1/1 ... [2025-08-15 00:23:30.302186] 2025-08-15T00:23:30.3023919Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:23:30.3032923Z 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-8010984d3ab1bd2c.xml', '-x', '--reruns=2'] ... [2025-08-15 00:23:30.302759] 2025-08-15T00:23:35.9557951Z 2025-08-15T00:23:35.9559008Z 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_aa811ef23427c7f0_.log 2025-08-15T00:23:35.9562747Z 2025-08-15T00:23:36.7879926Z Running test batch 'tests to run' cost 13.24 seconds 2025-08-15T00:23:36.7886088Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:23:36.7886639Z Uploading artifacts took 0.00 seconds 2025-08-15T00:23:37.4913355Z 2025-08-15T00:23:37.4913935Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:23:37.4914429Z echo "legacy_vmap_test" failed with exit code 0 2025-08-15T00:23:37.4914763Z goto fail 2025-08-15T00:23:37.4915027Z ) 2025-08-15T00:23:37.4915147Z 2025-08-15T00:23:37.4915346Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:23:37.4915815Z echo "legacy_vmap_test" failed with exit code 0 2025-08-15T00:23:37.4916204Z goto fail 2025-08-15T00:23:37.4916398Z ) 2025-08-15T00:23:37.4916543Z 2025-08-15T00:23:37.4917180Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:23:37.4924367Z 2025-08-15T00:23:37.4924636Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:23:37.4925307Z call :libtorch_check "List_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\List_test.exe" 2025-08-15T00:23:37.4925928Z if errorlevel 1 goto fail 2025-08-15T00:23:37.4926176Z ) 2025-08-15T00:23:37.4935422Z 2025-08-15T00:23:37.4936116Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:23:37.4939671Z 2025-08-15T00:23:37.4940463Z (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-15T00:23:37.4942007Z 2025-08-15T00:23:37.4942519Z (base) C:\actions-runner\_work\pytorch\pytorch>if "List_test" == "verify_api_visibility" goto :eof 2025-08-15T00:23:37.4943363Z 2025-08-15T00:23:37.4943880Z (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-15T00:23:37.4944896Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\List_test.exe" 2025-08-15T00:23:37.4945742Z 2025-08-15T00:23:37.4946164Z (base) C:\actions-runner\_work\pytorch\pytorch>if "List_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:23:37.4946855Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\List_test.exe" 2025-08-15T00:23:37.4947358Z goto :eof 2025-08-15T00:23:37.4947559Z ) 2025-08-15T00:23:37.4947688Z 2025-08-15T00:23:37.4948700Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/List_test" 2025-08-15T00:23:43.6125160Z Found test times from artifacts 2025-08-15T00:23:43.6800812Z Found test times from artifacts 2025-08-15T00:23:43.6823241Z Running all tests 2025-08-15T00:23:43.6829047Z Running parallel tests on 3 processes 2025-08-15T00:23:43.6829417Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:23:43.6829725Z Serial tests (0): 2025-08-15T00:23:43.6829964Z Parallel tests (1): 2025-08-15T00:23:43.6830248Z cpp/List_test 1/1 2025-08-15T00:23:43.6830523Z Name: excluded (est. time: 0.0min) 2025-08-15T00:23:43.6830811Z Serial tests (0): 2025-08-15T00:23:43.6831074Z Parallel tests (0): 2025-08-15T00:23:43.6832720Z Running cpp/List_test 1/1 ... [2025-08-15 00:23:43.682796] 2025-08-15T00:23:43.6833122Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:23:43.6842632Z 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-fb6029da3f30b23e.xml', '-x', '--reruns=2'] ... [2025-08-15 00:23:43.683960] 2025-08-15T00:23:43.6844346Z 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-15T00:23:45.9976005Z 2025-08-15T00:23:45.9977024Z cpp/List_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.List_test_1.1_23912df2464a3f42_.log 2025-08-15T00:23:45.9977605Z 2025-08-15T00:23:50.4208414Z Running cpp/List_test 1/1 ... [2025-08-15 00:23:50.420654] 2025-08-15T00:23:50.4216864Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:23:50.4218051Z 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-95be714594596fe6.xml', '-x', '--reruns=2'] ... [2025-08-15 00:23:50.421214] 2025-08-15T00:24:12.0061233Z 2025-08-15T00:24:12.0062060Z cpp/List_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.List_test_1.1_c97eee57f15a4922_.log 2025-08-15T00:24:12.0066849Z 2025-08-15T00:24:12.9371826Z Running test batch 'tests to run' cost 29.25 seconds 2025-08-15T00:24:12.9378154Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:24:12.9378678Z Uploading artifacts took 0.00 seconds 2025-08-15T00:24:13.6369531Z 2025-08-15T00:24:13.6370077Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:24:13.6370586Z echo "List_test" failed with exit code 0 2025-08-15T00:24:13.6370889Z goto fail 2025-08-15T00:24:13.6371121Z ) 2025-08-15T00:24:13.6371235Z 2025-08-15T00:24:13.6371438Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:24:13.6371889Z echo "List_test" failed with exit code 0 2025-08-15T00:24:13.6372187Z goto fail 2025-08-15T00:24:13.6372413Z ) 2025-08-15T00:24:13.6372520Z 2025-08-15T00:24:13.6372714Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:24:13.6379176Z 2025-08-15T00:24:13.6379778Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:24:13.6380845Z 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-15T00:24:13.6381638Z if errorlevel 1 goto fail 2025-08-15T00:24:13.6381919Z ) 2025-08-15T00:24:13.6408656Z 2025-08-15T00:24:13.6409054Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:24:13.6418879Z 2025-08-15T00:24:13.6419499Z (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-15T00:24:13.6420230Z 2025-08-15T00:24:13.6420624Z (base) C:\actions-runner\_work\pytorch\pytorch>if "make_boxed_from_unboxed_functor_test" == "verify_api_visibility" goto :eof 2025-08-15T00:24:13.6421195Z 2025-08-15T00:24:13.6421796Z (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-15T00:24:13.6422856Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\make_boxed_from_unboxed_functor_test.exe" 2025-08-15T00:24:13.6423376Z 2025-08-15T00:24:13.6423806Z (base) C:\actions-runner\_work\pytorch\pytorch>if "make_boxed_from_unboxed_functor_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:24:13.6424767Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\make_boxed_from_unboxed_functor_test.exe" 2025-08-15T00:24:13.6425329Z goto :eof 2025-08-15T00:24:13.6425554Z ) 2025-08-15T00:24:13.6425667Z 2025-08-15T00:24:13.6426091Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/make_boxed_from_unboxed_functor_test" 2025-08-15T00:24:19.7940390Z Found test times from artifacts 2025-08-15T00:24:19.8617809Z Found test times from artifacts 2025-08-15T00:24:19.8639565Z Running all tests 2025-08-15T00:24:19.8645214Z Running parallel tests on 3 processes 2025-08-15T00:24:19.8645594Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:24:19.8646070Z Serial tests (0): 2025-08-15T00:24:19.8646337Z Parallel tests (1): 2025-08-15T00:24:19.8646698Z cpp/make_boxed_from_unboxed_functor_test 1/1 2025-08-15T00:24:19.8647144Z Name: excluded (est. time: 0.0min) 2025-08-15T00:24:19.8647439Z Serial tests (0): 2025-08-15T00:24:19.8647668Z Parallel tests (0): 2025-08-15T00:24:19.8649151Z Running cpp/make_boxed_from_unboxed_functor_test 1/1 ... [2025-08-15 00:24:19.863328] 2025-08-15T00:24:19.8649636Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:24:19.8658784Z 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-c493b56b8065564f.xml', '-x', '--reruns=2'] ... [2025-08-15 00:24:19.863328] 2025-08-15T00:24:19.8660600Z 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-15T00:24:22.1694299Z 2025-08-15T00:24:22.1695640Z 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_699b04b06ecabad7_.log 2025-08-15T00:24:22.1696847Z 2025-08-15T00:24:26.6353412Z Running cpp/make_boxed_from_unboxed_functor_test 1/1 ... [2025-08-15 00:24:26.634655] 2025-08-15T00:24:26.6353930Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:24:26.6362588Z 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-064a0649f9321856.xml', '-x', '--reruns=2'] ... [2025-08-15 00:24:26.634655] 2025-08-15T00:24:35.4729766Z 2025-08-15T00:24:35.4731072Z 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_e2955f65b6e58ddc_.log 2025-08-15T00:24:35.4732250Z 2025-08-15T00:24:36.2949007Z Running test batch 'tests to run' cost 16.43 seconds 2025-08-15T00:24:36.2955431Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:24:36.2955926Z Uploading artifacts took 0.00 seconds 2025-08-15T00:24:36.9993684Z 2025-08-15T00:24:36.9994416Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:24:36.9995152Z echo "make_boxed_from_unboxed_functor_test" failed with exit code 0 2025-08-15T00:24:36.9995567Z goto fail 2025-08-15T00:24:36.9995766Z ) 2025-08-15T00:24:36.9995885Z 2025-08-15T00:24:36.9996108Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:24:36.9996607Z echo "make_boxed_from_unboxed_functor_test" failed with exit code 0 2025-08-15T00:24:36.9997007Z goto fail 2025-08-15T00:24:36.9997204Z ) 2025-08-15T00:24:36.9997350Z 2025-08-15T00:24:36.9997514Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:24:37.0004013Z 2025-08-15T00:24:37.0004245Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:24:37.0004946Z call :libtorch_check "math_kernel_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\math_kernel_test.exe" 2025-08-15T00:24:37.0005584Z if errorlevel 1 goto fail 2025-08-15T00:24:37.0005853Z ) 2025-08-15T00:24:37.0014465Z 2025-08-15T00:24:37.0014884Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:24:37.0018348Z 2025-08-15T00:24:37.0018893Z (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-15T00:24:37.0021284Z 2025-08-15T00:24:37.0021780Z (base) C:\actions-runner\_work\pytorch\pytorch>if "math_kernel_test" == "verify_api_visibility" goto :eof 2025-08-15T00:24:37.0022660Z 2025-08-15T00:24:37.0023280Z (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-15T00:24:37.0024273Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\math_kernel_test.exe" 2025-08-15T00:24:37.0024737Z 2025-08-15T00:24:37.0025230Z (base) C:\actions-runner\_work\pytorch\pytorch>if "math_kernel_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:24:37.0025983Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\math_kernel_test.exe" 2025-08-15T00:24:37.0026480Z goto :eof 2025-08-15T00:24:37.0026701Z ) 2025-08-15T00:24:37.0026808Z 2025-08-15T00:24:37.0027172Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/math_kernel_test" 2025-08-15T00:24:43.1738291Z Found test times from artifacts 2025-08-15T00:24:43.2422008Z Found test times from artifacts 2025-08-15T00:24:43.2444113Z Running all tests 2025-08-15T00:24:43.2449657Z Running parallel tests on 3 processes 2025-08-15T00:24:43.2450092Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:24:43.2450422Z Serial tests (0): 2025-08-15T00:24:43.2450684Z Parallel tests (1): 2025-08-15T00:24:43.2450936Z cpp/math_kernel_test 1/1 2025-08-15T00:24:43.2451225Z Name: excluded (est. time: 0.0min) 2025-08-15T00:24:43.2451496Z Serial tests (0): 2025-08-15T00:24:43.2451743Z Parallel tests (0): 2025-08-15T00:24:43.2453474Z Running cpp/math_kernel_test 1/1 ... [2025-08-15 00:24:43.243747] 2025-08-15T00:24:43.2453901Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:24:43.2464310Z 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-f8a205c87966c523.xml', '-x', '--reruns=2'] ... [2025-08-15 00:24:43.243747] 2025-08-15T00:24:43.2466016Z 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-15T00:24:45.5599554Z 2025-08-15T00:24:45.5600658Z 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_f12006e4d2f7cdd9_.log 2025-08-15T00:24:45.5601309Z 2025-08-15T00:24:50.0070683Z Running cpp/math_kernel_test 1/1 ... [2025-08-15 00:24:50.006511] 2025-08-15T00:24:50.0071394Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:24:50.0079984Z 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-a443c8f30405d4d6.xml', '-x', '--reruns=2'] ... [2025-08-15 00:24:50.007689] 2025-08-15T00:24:53.2242517Z 2025-08-15T00:24:53.2243574Z 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_823ac03068f4be24_.log 2025-08-15T00:24:53.2244277Z 2025-08-15T00:24:54.0421748Z Running test batch 'tests to run' cost 10.8 seconds 2025-08-15T00:24:54.0429525Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:24:54.0430056Z Uploading artifacts took 0.00 seconds 2025-08-15T00:24:54.8833525Z 2025-08-15T00:24:54.8834234Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:24:54.8834737Z echo "math_kernel_test" failed with exit code 0 2025-08-15T00:24:54.8835082Z goto fail 2025-08-15T00:24:54.8835280Z ) 2025-08-15T00:24:54.8835398Z 2025-08-15T00:24:54.8835624Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:24:54.8836056Z echo "math_kernel_test" failed with exit code 0 2025-08-15T00:24:54.8836401Z goto fail 2025-08-15T00:24:54.8836601Z ) 2025-08-15T00:24:54.8836879Z 2025-08-15T00:24:54.8837050Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:24:54.8845263Z 2025-08-15T00:24:54.8846104Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:24:54.8847372Z call :libtorch_check "MaybeOwned_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\MaybeOwned_test.exe" 2025-08-15T00:24:54.8848468Z if errorlevel 1 goto fail 2025-08-15T00:24:54.8848965Z ) 2025-08-15T00:24:54.8860776Z 2025-08-15T00:24:54.8861474Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:24:54.8865046Z 2025-08-15T00:24:54.8865909Z (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-15T00:24:54.8867986Z 2025-08-15T00:24:54.8868399Z (base) C:\actions-runner\_work\pytorch\pytorch>if "MaybeOwned_test" == "verify_api_visibility" goto :eof 2025-08-15T00:24:54.8869512Z 2025-08-15T00:24:54.8870154Z (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-15T00:24:54.8871124Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\MaybeOwned_test.exe" 2025-08-15T00:24:54.8871559Z 2025-08-15T00:24:54.8871965Z (base) C:\actions-runner\_work\pytorch\pytorch>if "MaybeOwned_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:24:54.8872718Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\MaybeOwned_test.exe" 2025-08-15T00:24:54.8873242Z goto :eof 2025-08-15T00:24:54.8873447Z ) 2025-08-15T00:24:54.8873580Z 2025-08-15T00:24:54.8873947Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/MaybeOwned_test" 2025-08-15T00:25:01.1246534Z Found test times from artifacts 2025-08-15T00:25:01.1922936Z Found test times from artifacts 2025-08-15T00:25:01.1945529Z Running all tests 2025-08-15T00:25:01.1954043Z Running parallel tests on 3 processes 2025-08-15T00:25:01.1954421Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:25:01.1954700Z Serial tests (0): 2025-08-15T00:25:01.1954904Z Parallel tests (1): 2025-08-15T00:25:01.1955141Z cpp/MaybeOwned_test 1/1 2025-08-15T00:25:01.1955399Z Name: excluded (est. time: 0.0min) 2025-08-15T00:25:01.1955645Z Serial tests (0): 2025-08-15T00:25:01.1955863Z Parallel tests (0): 2025-08-15T00:25:01.1956327Z Running cpp/MaybeOwned_test 1/1 ... [2025-08-15 00:25:01.195418] 2025-08-15T00:25:01.1956713Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:25:01.1965140Z 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-c441d98a557a050b.xml', '-x', '--reruns=2'] ... [2025-08-15 00:25:01.195418] 2025-08-15T00:25:01.1966845Z 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-15T00:25:03.6762029Z 2025-08-15T00:25:03.6762971Z cpp/MaybeOwned_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.MaybeOwned_test_1.1_66eaf7bb7883ee1c_.log 2025-08-15T00:25:03.6763713Z 2025-08-15T00:25:08.1758105Z Running cpp/MaybeOwned_test 1/1 ... [2025-08-15 00:25:08.175355] 2025-08-15T00:25:08.1758564Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:25:08.1770244Z 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-c97dbe8abef81a35.xml', '-x', '--reruns=2'] ... [2025-08-15 00:25:08.176544] 2025-08-15T00:25:14.6235497Z 2025-08-15T00:25:14.6236515Z cpp/MaybeOwned_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.MaybeOwned_test_1.1_9de4c31715244784_.log 2025-08-15T00:25:14.6237727Z 2025-08-15T00:25:15.4432535Z Running test batch 'tests to run' cost 14.25 seconds 2025-08-15T00:25:15.4438768Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:25:15.4439214Z Uploading artifacts took 0.00 seconds 2025-08-15T00:25:16.1558826Z 2025-08-15T00:25:16.1559416Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:25:16.1559880Z echo "MaybeOwned_test" failed with exit code 0 2025-08-15T00:25:16.1560169Z goto fail 2025-08-15T00:25:16.1560351Z ) 2025-08-15T00:25:16.1560463Z 2025-08-15T00:25:16.1560649Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:25:16.1561062Z echo "MaybeOwned_test" failed with exit code 0 2025-08-15T00:25:16.1561343Z goto fail 2025-08-15T00:25:16.1561524Z ) 2025-08-15T00:25:16.1562091Z 2025-08-15T00:25:16.1562337Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:25:16.1568466Z 2025-08-15T00:25:16.1568681Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:25:16.1569364Z call :libtorch_check "memory_format_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\memory_format_test.exe" 2025-08-15T00:25:16.1570013Z if errorlevel 1 goto fail 2025-08-15T00:25:16.1570229Z ) 2025-08-15T00:25:16.1579702Z 2025-08-15T00:25:16.1580047Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:25:16.1583629Z 2025-08-15T00:25:16.1584084Z (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-15T00:25:16.1586542Z 2025-08-15T00:25:16.1587037Z (base) C:\actions-runner\_work\pytorch\pytorch>if "memory_format_test" == "verify_api_visibility" goto :eof 2025-08-15T00:25:16.1587928Z 2025-08-15T00:25:16.1588473Z (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-15T00:25:16.1589387Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\memory_format_test.exe" 2025-08-15T00:25:16.1590129Z 2025-08-15T00:25:16.1590528Z (base) C:\actions-runner\_work\pytorch\pytorch>if "memory_format_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:25:16.1591253Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\memory_format_test.exe" 2025-08-15T00:25:16.1591909Z goto :eof 2025-08-15T00:25:16.1592089Z ) 2025-08-15T00:25:16.1592190Z 2025-08-15T00:25:16.1592561Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/memory_format_test" 2025-08-15T00:25:22.3743680Z Found test times from artifacts 2025-08-15T00:25:22.4448880Z Found test times from artifacts 2025-08-15T00:25:22.4471454Z Running all tests 2025-08-15T00:25:22.4477127Z Running parallel tests on 3 processes 2025-08-15T00:25:22.4477484Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:25:22.4477773Z Serial tests (0): 2025-08-15T00:25:22.4478016Z Parallel tests (1): 2025-08-15T00:25:22.4478253Z cpp/memory_format_test 1/1 2025-08-15T00:25:22.4478529Z Name: excluded (est. time: 0.0min) 2025-08-15T00:25:22.4478816Z Serial tests (0): 2025-08-15T00:25:22.4479025Z Parallel tests (0): 2025-08-15T00:25:22.4481194Z Running cpp/memory_format_test 1/1 ... [2025-08-15 00:25:22.448012] 2025-08-15T00:25:22.4481654Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:25:22.4491021Z 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-90adc11d515acc66.xml', '-x', '--reruns=2'] ... [2025-08-15 00:25:22.448656] 2025-08-15T00:25:22.4493525Z 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-15T00:25:24.7561822Z 2025-08-15T00:25:24.7562686Z 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_b70c8423c4309487_.log 2025-08-15T00:25:24.7563432Z 2025-08-15T00:25:29.1425952Z Running cpp/memory_format_test 1/1 ... [2025-08-15 00:25:29.141976] 2025-08-15T00:25:29.1426409Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:25:29.1435362Z 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-31cdc46a13ea9cb4.xml', '-x', '--reruns=2'] ... [2025-08-15 00:25:29.143154] 2025-08-15T00:25:32.1981538Z 2025-08-15T00:25:32.1982533Z 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_49265b05604100fd_.log 2025-08-15T00:25:32.1983204Z 2025-08-15T00:25:33.0200891Z Running test batch 'tests to run' cost 10.57 seconds 2025-08-15T00:25:33.0208373Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:25:33.0208853Z Uploading artifacts took 0.00 seconds 2025-08-15T00:25:33.7648099Z 2025-08-15T00:25:33.7648670Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:25:33.7649187Z echo "memory_format_test" failed with exit code 0 2025-08-15T00:25:33.7649517Z goto fail 2025-08-15T00:25:33.7649721Z ) 2025-08-15T00:25:33.7649819Z 2025-08-15T00:25:33.7650013Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:25:33.7650455Z echo "memory_format_test" failed with exit code 0 2025-08-15T00:25:33.7650768Z goto fail 2025-08-15T00:25:33.7650957Z ) 2025-08-15T00:25:33.7651055Z 2025-08-15T00:25:33.7651235Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:25:33.7657270Z 2025-08-15T00:25:33.7657785Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:25:33.7658557Z call :libtorch_check "memory_overlapping_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\memory_overlapping_test.exe" 2025-08-15T00:25:33.7659255Z if errorlevel 1 goto fail 2025-08-15T00:25:33.7659502Z ) 2025-08-15T00:25:33.7667995Z 2025-08-15T00:25:33.7668374Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:25:33.7672803Z 2025-08-15T00:25:33.7673261Z (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-15T00:25:33.7675681Z 2025-08-15T00:25:33.7676169Z (base) C:\actions-runner\_work\pytorch\pytorch>if "memory_overlapping_test" == "verify_api_visibility" goto :eof 2025-08-15T00:25:33.7677112Z 2025-08-15T00:25:33.7677678Z (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-15T00:25:33.7678664Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\memory_overlapping_test.exe" 2025-08-15T00:25:33.7679492Z 2025-08-15T00:25:33.7679956Z (base) C:\actions-runner\_work\pytorch\pytorch>if "memory_overlapping_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:25:33.7680719Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\memory_overlapping_test.exe" 2025-08-15T00:25:33.7681255Z goto :eof 2025-08-15T00:25:33.7681461Z ) 2025-08-15T00:25:33.7681560Z 2025-08-15T00:25:33.7681982Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/memory_overlapping_test" 2025-08-15T00:25:39.9192801Z Found test times from artifacts 2025-08-15T00:25:39.9876259Z Found test times from artifacts 2025-08-15T00:25:39.9898392Z Running all tests 2025-08-15T00:25:39.9903793Z Running parallel tests on 3 processes 2025-08-15T00:25:39.9904705Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:25:39.9905254Z Serial tests (0): 2025-08-15T00:25:39.9905478Z Parallel tests (1): 2025-08-15T00:25:39.9905720Z cpp/memory_overlapping_test 1/1 2025-08-15T00:25:39.9906018Z Name: excluded (est. time: 0.0min) 2025-08-15T00:25:39.9906287Z Serial tests (0): 2025-08-15T00:25:39.9906507Z Parallel tests (0): 2025-08-15T00:25:39.9907702Z Running cpp/memory_overlapping_test 1/1 ... [2025-08-15 00:25:39.988555] 2025-08-15T00:25:39.9908130Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:25:39.9917531Z 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-55f9b0772422249a.xml', '-x', '--reruns=2'] ... [2025-08-15 00:25:39.988555] 2025-08-15T00:25:39.9919250Z 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-15T00:25:42.3691297Z 2025-08-15T00:25:42.3692444Z 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_eee88a68f3e42a81_.log 2025-08-15T00:25:42.3694400Z 2025-08-15T00:25:46.8055635Z Running cpp/memory_overlapping_test 1/1 ... [2025-08-15 00:25:46.804927] 2025-08-15T00:25:46.8056114Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:25:46.8065567Z 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-6464971f86014489.xml', '-x', '--reruns=2'] ... [2025-08-15 00:25:46.806107] 2025-08-15T00:25:49.8975080Z 2025-08-15T00:25:49.8976069Z 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_412c04ae2bdb87b9_.log 2025-08-15T00:25:49.8976881Z 2025-08-15T00:25:50.7513588Z Running test batch 'tests to run' cost 10.76 seconds 2025-08-15T00:25:50.7520191Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:25:50.7520818Z Uploading artifacts took 0.00 seconds 2025-08-15T00:25:51.4531705Z 2025-08-15T00:25:51.4532443Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:25:51.4532988Z echo "memory_overlapping_test" failed with exit code 0 2025-08-15T00:25:51.4533339Z goto fail 2025-08-15T00:25:51.4533537Z ) 2025-08-15T00:25:51.4533646Z 2025-08-15T00:25:51.4533840Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:25:51.4534310Z echo "memory_overlapping_test" failed with exit code 0 2025-08-15T00:25:51.4534626Z goto fail 2025-08-15T00:25:51.4534811Z ) 2025-08-15T00:25:51.4534906Z 2025-08-15T00:25:51.4535064Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:25:51.4542940Z 2025-08-15T00:25:51.4543182Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:25:51.4543903Z call :libtorch_check "mobile_memory_cleanup" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\mobile_memory_cleanup.exe" 2025-08-15T00:25:51.4544565Z if errorlevel 1 goto fail 2025-08-15T00:25:51.4544804Z ) 2025-08-15T00:25:51.4553560Z 2025-08-15T00:25:51.4554126Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:25:51.4557567Z 2025-08-15T00:25:51.4558088Z (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-15T00:25:51.4560457Z 2025-08-15T00:25:51.4561033Z (base) C:\actions-runner\_work\pytorch\pytorch>if "mobile_memory_cleanup" == "verify_api_visibility" goto :eof 2025-08-15T00:25:51.4561618Z 2025-08-15T00:25:51.4562285Z (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-15T00:25:51.4563342Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\mobile_memory_cleanup.exe" 2025-08-15T00:25:51.4564041Z 2025-08-15T00:25:51.4564436Z (base) C:\actions-runner\_work\pytorch\pytorch>if "mobile_memory_cleanup" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:25:51.4565192Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\mobile_memory_cleanup.exe" 2025-08-15T00:25:51.4565685Z goto :eof 2025-08-15T00:25:51.4565878Z ) 2025-08-15T00:25:51.4565985Z 2025-08-15T00:25:51.4566409Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/mobile_memory_cleanup" 2025-08-15T00:25:57.5407759Z Found test times from artifacts 2025-08-15T00:25:57.6094500Z Found test times from artifacts 2025-08-15T00:25:57.6117210Z Running all tests 2025-08-15T00:25:57.6123857Z Running parallel tests on 3 processes 2025-08-15T00:25:57.6124239Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:25:57.6124523Z Serial tests (0): 2025-08-15T00:25:57.6124736Z Parallel tests (1): 2025-08-15T00:25:57.6124996Z cpp/mobile_memory_cleanup 1/1 2025-08-15T00:25:57.6125263Z Name: excluded (est. time: 0.0min) 2025-08-15T00:25:57.6125541Z Serial tests (0): 2025-08-15T00:25:57.6125747Z Parallel tests (0): 2025-08-15T00:25:57.6127508Z Running cpp/mobile_memory_cleanup 1/1 ... [2025-08-15 00:25:57.612276] 2025-08-15T00:25:57.6127931Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:25:57.6137878Z 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-eae0c9c9aa61abb4.xml', '-x', '--reruns=2'] ... [2025-08-15 00:25:57.613420] 2025-08-15T00:25:57.6139646Z 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-15T00:25:59.9957650Z 2025-08-15T00:25:59.9958798Z 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_8cb8c77502268bf9_.log 2025-08-15T00:25:59.9959644Z 2025-08-15T00:26:04.4860417Z Running cpp/mobile_memory_cleanup 1/1 ... [2025-08-15 00:26:04.485139] 2025-08-15T00:26:04.4860860Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:26:04.4869897Z 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-e440e1f859b0f153.xml', '-x', '--reruns=2'] ... [2025-08-15 00:26:04.485139] 2025-08-15T00:26:07.3993645Z 2025-08-15T00:26:07.3994600Z 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_11e6593e62fbb069_.log 2025-08-15T00:26:07.3995293Z 2025-08-15T00:26:08.2845189Z Running test batch 'tests to run' cost 10.66 seconds 2025-08-15T00:26:08.2851367Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:26:08.2851837Z Uploading artifacts took 0.00 seconds 2025-08-15T00:26:09.0119142Z 2025-08-15T00:26:09.0119827Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:26:09.0120351Z echo "mobile_memory_cleanup" failed with exit code 0 2025-08-15T00:26:09.0120718Z goto fail 2025-08-15T00:26:09.0120887Z ) 2025-08-15T00:26:09.0120982Z 2025-08-15T00:26:09.0121226Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:26:09.0121833Z echo "mobile_memory_cleanup" failed with exit code 0 2025-08-15T00:26:09.0122152Z goto fail 2025-08-15T00:26:09.0122397Z ) 2025-08-15T00:26:09.0122648Z 2025-08-15T00:26:09.0123017Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:26:09.0131981Z 2025-08-15T00:26:09.0132405Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:26:09.0133194Z call :libtorch_check "NamedTensor_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\NamedTensor_test.exe" 2025-08-15T00:26:09.0133900Z if errorlevel 1 goto fail 2025-08-15T00:26:09.0134131Z ) 2025-08-15T00:26:09.0142541Z 2025-08-15T00:26:09.0142896Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:26:09.0146387Z 2025-08-15T00:26:09.0146841Z (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-15T00:26:09.0148902Z 2025-08-15T00:26:09.0149330Z (base) C:\actions-runner\_work\pytorch\pytorch>if "NamedTensor_test" == "verify_api_visibility" goto :eof 2025-08-15T00:26:09.0150120Z 2025-08-15T00:26:09.0150666Z (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-15T00:26:09.0151570Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\NamedTensor_test.exe" 2025-08-15T00:26:09.0152566Z 2025-08-15T00:26:09.0153014Z (base) C:\actions-runner\_work\pytorch\pytorch>if "NamedTensor_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:26:09.0153723Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\NamedTensor_test.exe" 2025-08-15T00:26:09.0154198Z goto :eof 2025-08-15T00:26:09.0154377Z ) 2025-08-15T00:26:09.0154468Z 2025-08-15T00:26:09.0154826Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/NamedTensor_test" 2025-08-15T00:26:15.0915035Z Found test times from artifacts 2025-08-15T00:26:15.1598166Z Found test times from artifacts 2025-08-15T00:26:15.1620042Z Running all tests 2025-08-15T00:26:15.1625960Z Running parallel tests on 3 processes 2025-08-15T00:26:15.1626294Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:26:15.1626567Z Serial tests (0): 2025-08-15T00:26:15.1626767Z Parallel tests (1): 2025-08-15T00:26:15.1626996Z cpp/NamedTensor_test 1/1 2025-08-15T00:26:15.1627406Z Name: excluded (est. time: 0.0min) 2025-08-15T00:26:15.1627658Z Serial tests (0): 2025-08-15T00:26:15.1627852Z Parallel tests (0): 2025-08-15T00:26:15.1629476Z Running cpp/NamedTensor_test 1/1 ... [2025-08-15 00:26:15.159612] 2025-08-15T00:26:15.1629864Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:26:15.1639513Z 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-6f507fb1a3963626.xml', '-x', '--reruns=2'] ... [2025-08-15 00:26:15.159612] 2025-08-15T00:26:15.1641173Z 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-15T00:26:17.4671387Z 2025-08-15T00:26:17.4672481Z cpp/NamedTensor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.NamedTensor_test_1.1_9fd1ad7632806630_.log 2025-08-15T00:26:17.4673118Z 2025-08-15T00:26:21.9631842Z Running cpp/NamedTensor_test 1/1 ... [2025-08-15 00:26:21.958504] 2025-08-15T00:26:21.9632261Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:26:21.9641500Z 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-2193c38ddbce172a.xml', '-x', '--reruns=2'] ... [2025-08-15 00:26:21.958504] 2025-08-15T00:26:26.0029533Z 2025-08-15T00:26:26.0030806Z cpp/NamedTensor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.NamedTensor_test_1.1_f24d981d1b7c8d67_.log 2025-08-15T00:26:26.0031505Z 2025-08-15T00:26:26.8982312Z Running test batch 'tests to run' cost 11.74 seconds 2025-08-15T00:26:26.8988803Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:26:26.8989273Z Uploading artifacts took 0.00 seconds 2025-08-15T00:26:27.6060017Z 2025-08-15T00:26:27.6060808Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:26:27.6061272Z echo "NamedTensor_test" failed with exit code 0 2025-08-15T00:26:27.6061563Z goto fail 2025-08-15T00:26:27.6061752Z ) 2025-08-15T00:26:27.6061849Z 2025-08-15T00:26:27.6062037Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:26:27.6062476Z echo "NamedTensor_test" failed with exit code 0 2025-08-15T00:26:27.6062758Z goto fail 2025-08-15T00:26:27.6062937Z ) 2025-08-15T00:26:27.6063143Z 2025-08-15T00:26:27.6063357Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:26:27.6070449Z 2025-08-15T00:26:27.6070667Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:26:27.6071309Z call :libtorch_check "native_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\native_test.exe" 2025-08-15T00:26:27.6071895Z if errorlevel 1 goto fail 2025-08-15T00:26:27.6072122Z ) 2025-08-15T00:26:27.6080572Z 2025-08-15T00:26:27.6080983Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:26:27.6084178Z 2025-08-15T00:26:27.6084906Z (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-15T00:26:27.6086856Z 2025-08-15T00:26:27.6087260Z (base) C:\actions-runner\_work\pytorch\pytorch>if "native_test" == "verify_api_visibility" goto :eof 2025-08-15T00:26:27.6088500Z 2025-08-15T00:26:27.6089076Z (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-15T00:26:27.6089956Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\native_test.exe" 2025-08-15T00:26:27.6091022Z 2025-08-15T00:26:27.6091497Z (base) C:\actions-runner\_work\pytorch\pytorch>if "native_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:26:27.6092162Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\native_test.exe" 2025-08-15T00:26:27.6092624Z goto :eof 2025-08-15T00:26:27.6092801Z ) 2025-08-15T00:26:27.6092918Z 2025-08-15T00:26:27.6093390Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/native_test" 2025-08-15T00:26:33.7480693Z Found test times from artifacts 2025-08-15T00:26:33.8163884Z Found test times from artifacts 2025-08-15T00:26:33.8187008Z Running all tests 2025-08-15T00:26:33.8192468Z Running parallel tests on 3 processes 2025-08-15T00:26:33.8192874Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:26:33.8193169Z Serial tests (0): 2025-08-15T00:26:33.8193415Z Parallel tests (1): 2025-08-15T00:26:33.8193682Z cpp/native_test 1/1 2025-08-15T00:26:33.8193939Z Name: excluded (est. time: 0.0min) 2025-08-15T00:26:33.8194245Z Serial tests (0): 2025-08-15T00:26:33.8194470Z Parallel tests (0): 2025-08-15T00:26:33.8196324Z Running cpp/native_test 1/1 ... [2025-08-15 00:26:33.818554] 2025-08-15T00:26:33.8196757Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:26:33.8206270Z 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-3a88225d6fe6ee4e.xml', '-x', '--reruns=2'] ... [2025-08-15 00:26:33.819680] 2025-08-15T00:26:33.8208036Z 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-15T00:26:36.2462276Z 2025-08-15T00:26:36.2463379Z cpp/native_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.native_test_1.1_71f5dd7759bfc915_.log 2025-08-15T00:26:36.2464002Z 2025-08-15T00:26:40.8063935Z Running cpp/native_test 1/1 ... [2025-08-15 00:26:40.805902] 2025-08-15T00:26:40.8064398Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:26:40.8073258Z 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-19a4c8ba4f78e314.xml', '-x', '--reruns=2'] ... [2025-08-15 00:26:40.807092] 2025-08-15T00:26:43.5017122Z 2025-08-15T00:26:43.5017963Z cpp/native_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.native_test_1.1_e83e4a107a8bea13_.log 2025-08-15T00:26:43.5018656Z 2025-08-15T00:26:44.3798160Z Running test batch 'tests to run' cost 10.56 seconds 2025-08-15T00:26:44.3804456Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:26:44.3804921Z Uploading artifacts took 0.00 seconds 2025-08-15T00:26:45.0898346Z 2025-08-15T00:26:45.0899183Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:26:45.0899673Z echo "native_test" failed with exit code 0 2025-08-15T00:26:45.0900034Z goto fail 2025-08-15T00:26:45.0900266Z ) 2025-08-15T00:26:45.0900393Z 2025-08-15T00:26:45.0900672Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:26:45.0901158Z echo "native_test" failed with exit code 0 2025-08-15T00:26:45.0901481Z goto fail 2025-08-15T00:26:45.0901698Z ) 2025-08-15T00:26:45.0901834Z 2025-08-15T00:26:45.0902007Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:26:45.0908470Z 2025-08-15T00:26:45.0908980Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:26:45.0909692Z call :libtorch_check "operators_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\operators_test.exe" 2025-08-15T00:26:45.0910357Z if errorlevel 1 goto fail 2025-08-15T00:26:45.0910762Z ) 2025-08-15T00:26:45.0918705Z 2025-08-15T00:26:45.0919234Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:26:45.0922368Z 2025-08-15T00:26:45.0922930Z (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-15T00:26:45.0924901Z 2025-08-15T00:26:45.0925357Z (base) C:\actions-runner\_work\pytorch\pytorch>if "operators_test" == "verify_api_visibility" goto :eof 2025-08-15T00:26:45.0926165Z 2025-08-15T00:26:45.0926730Z (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-15T00:26:45.0927811Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\operators_test.exe" 2025-08-15T00:26:45.0928752Z 2025-08-15T00:26:45.0929259Z (base) C:\actions-runner\_work\pytorch\pytorch>if "operators_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:26:45.0930021Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\operators_test.exe" 2025-08-15T00:26:45.0930542Z goto :eof 2025-08-15T00:26:45.0930761Z ) 2025-08-15T00:26:45.0930867Z 2025-08-15T00:26:45.0931230Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/operators_test" 2025-08-15T00:26:51.1590180Z Found test times from artifacts 2025-08-15T00:26:51.2267105Z Found test times from artifacts 2025-08-15T00:26:51.2291572Z Running all tests 2025-08-15T00:26:51.2297084Z Running parallel tests on 3 processes 2025-08-15T00:26:51.2297608Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:26:51.2298056Z Serial tests (0): 2025-08-15T00:26:51.2298362Z Parallel tests (1): 2025-08-15T00:26:51.2298613Z cpp/operators_test 1/1 2025-08-15T00:26:51.2298947Z Name: excluded (est. time: 0.0min) 2025-08-15T00:26:51.2299221Z Serial tests (0): 2025-08-15T00:26:51.2299477Z Parallel tests (0): 2025-08-15T00:26:51.2301250Z Running cpp/operators_test 1/1 ... [2025-08-15 00:26:51.229862] 2025-08-15T00:26:51.2301688Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:26:51.2311549Z 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-8045e9bbafabea92.xml', '-x', '--reruns=2'] ... [2025-08-15 00:26:51.230466] 2025-08-15T00:26:51.2313266Z 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-15T00:26:53.5804422Z 2025-08-15T00:26:53.5805329Z cpp/operators_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.operators_test_1.1_d9c78bd2fbcd795d_.log 2025-08-15T00:26:53.5807370Z 2025-08-15T00:26:58.0867687Z Running cpp/operators_test 1/1 ... [2025-08-15 00:26:58.083837] 2025-08-15T00:26:58.0868182Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:26:58.0877303Z 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-71b32baab89c80b0.xml', '-x', '--reruns=2'] ... [2025-08-15 00:26:58.087406] 2025-08-15T00:27:01.2029452Z 2025-08-15T00:27:01.2030286Z cpp/operators_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.operators_test_1.1_7be4a0aac8ee8d63_.log 2025-08-15T00:27:01.2031042Z 2025-08-15T00:27:02.0181560Z Running test batch 'tests to run' cost 10.78 seconds 2025-08-15T00:27:02.0187848Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:27:02.0188345Z Uploading artifacts took 0.00 seconds 2025-08-15T00:27:02.7562868Z 2025-08-15T00:27:02.7563600Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:27:02.7564100Z echo "operators_test" failed with exit code 0 2025-08-15T00:27:02.7564449Z goto fail 2025-08-15T00:27:02.7564655Z ) 2025-08-15T00:27:02.7564773Z 2025-08-15T00:27:02.7565003Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:27:02.7565484Z echo "operators_test" failed with exit code 0 2025-08-15T00:27:02.7565833Z goto fail 2025-08-15T00:27:02.7566030Z ) 2025-08-15T00:27:02.7566179Z 2025-08-15T00:27:02.7566748Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:27:02.7572847Z 2025-08-15T00:27:02.7573106Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:27:02.7573788Z call :libtorch_check "operator_name_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\operator_name_test.exe" 2025-08-15T00:27:02.7574419Z if errorlevel 1 goto fail 2025-08-15T00:27:02.7574640Z ) 2025-08-15T00:27:02.7583177Z 2025-08-15T00:27:02.7583553Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:27:02.7587345Z 2025-08-15T00:27:02.7587828Z (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-15T00:27:02.7589792Z 2025-08-15T00:27:02.7590284Z (base) C:\actions-runner\_work\pytorch\pytorch>if "operator_name_test" == "verify_api_visibility" goto :eof 2025-08-15T00:27:02.7591742Z 2025-08-15T00:27:02.7592949Z (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-15T00:27:02.7593948Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\operator_name_test.exe" 2025-08-15T00:27:02.7594375Z 2025-08-15T00:27:02.7594681Z (base) C:\actions-runner\_work\pytorch\pytorch>if "operator_name_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:27:02.7595406Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\operator_name_test.exe" 2025-08-15T00:27:02.7595889Z goto :eof 2025-08-15T00:27:02.7596062Z ) 2025-08-15T00:27:02.7596151Z 2025-08-15T00:27:02.7596501Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/operator_name_test" 2025-08-15T00:27:08.9732414Z Found test times from artifacts 2025-08-15T00:27:09.0410219Z Found test times from artifacts 2025-08-15T00:27:09.0434000Z Running all tests 2025-08-15T00:27:09.0440469Z Running parallel tests on 3 processes 2025-08-15T00:27:09.0441056Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:27:09.0441328Z Serial tests (0): 2025-08-15T00:27:09.0441549Z Parallel tests (1): 2025-08-15T00:27:09.0441778Z cpp/operator_name_test 1/1 2025-08-15T00:27:09.0442034Z Name: excluded (est. time: 0.0min) 2025-08-15T00:27:09.0442274Z Serial tests (0): 2025-08-15T00:27:09.0442477Z Parallel tests (0): 2025-08-15T00:27:09.0445024Z Running cpp/operator_name_test 1/1 ... [2025-08-15 00:27:09.044021] 2025-08-15T00:27:09.0446937Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:27:09.0455150Z 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-784dad236dbc7510.xml', '-x', '--reruns=2'] ... [2025-08-15 00:27:09.045245] 2025-08-15T00:27:09.0456955Z 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-15T00:27:10.5648388Z 2025-08-15T00:27:10.5649247Z 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_4eadf7dacf26e531_.log 2025-08-15T00:27:10.5650073Z 2025-08-15T00:27:14.9940963Z Running cpp/operator_name_test 1/1 ... [2025-08-15 00:27:14.990712] 2025-08-15T00:27:14.9941555Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:27:14.9950209Z 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-f27de01438c5362e.xml', '-x', '--reruns=2'] ... [2025-08-15 00:27:14.990712] 2025-08-15T00:27:16.5313798Z 2025-08-15T00:27:16.5314628Z 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_fc1537458f4c2289_.log 2025-08-15T00:27:16.5315611Z 2025-08-15T00:27:17.3547162Z Running test batch 'tests to run' cost 8.31 seconds 2025-08-15T00:27:17.3554094Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:27:17.3554569Z Uploading artifacts took 0.00 seconds 2025-08-15T00:27:18.0674130Z 2025-08-15T00:27:18.0674876Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:27:18.0675324Z echo "operator_name_test" failed with exit code 0 2025-08-15T00:27:18.0675638Z goto fail 2025-08-15T00:27:18.0675812Z ) 2025-08-15T00:27:18.0675916Z 2025-08-15T00:27:18.0676104Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:27:18.0676521Z echo "operator_name_test" failed with exit code 0 2025-08-15T00:27:18.0676807Z goto fail 2025-08-15T00:27:18.0676977Z ) 2025-08-15T00:27:18.0677239Z 2025-08-15T00:27:18.0677395Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:27:18.0683537Z 2025-08-15T00:27:18.0683751Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:27:18.0684456Z call :libtorch_check "op_allowlist_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\op_allowlist_test.exe" 2025-08-15T00:27:18.0685072Z if errorlevel 1 goto fail 2025-08-15T00:27:18.0685291Z ) 2025-08-15T00:27:18.0694246Z 2025-08-15T00:27:18.0694848Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:27:18.0698188Z 2025-08-15T00:27:18.0698672Z (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-15T00:27:18.0701026Z 2025-08-15T00:27:18.0701503Z (base) C:\actions-runner\_work\pytorch\pytorch>if "op_allowlist_test" == "verify_api_visibility" goto :eof 2025-08-15T00:27:18.0702414Z 2025-08-15T00:27:18.0702946Z (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-15T00:27:18.0703853Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\op_allowlist_test.exe" 2025-08-15T00:27:18.0704655Z 2025-08-15T00:27:18.0705043Z (base) C:\actions-runner\_work\pytorch\pytorch>if "op_allowlist_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:27:18.0705759Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\op_allowlist_test.exe" 2025-08-15T00:27:18.0706235Z goto :eof 2025-08-15T00:27:18.0706416Z ) 2025-08-15T00:27:18.0706508Z 2025-08-15T00:27:18.0706865Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/op_allowlist_test" 2025-08-15T00:27:24.1521251Z Found test times from artifacts 2025-08-15T00:27:24.2198105Z Found test times from artifacts 2025-08-15T00:27:24.2220582Z Running all tests 2025-08-15T00:27:24.2226265Z Running parallel tests on 3 processes 2025-08-15T00:27:24.2226706Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:27:24.2227025Z Serial tests (0): 2025-08-15T00:27:24.2227245Z Parallel tests (1): 2025-08-15T00:27:24.2227506Z cpp/op_allowlist_test 1/1 2025-08-15T00:27:24.2227761Z Name: excluded (est. time: 0.0min) 2025-08-15T00:27:24.2228005Z Serial tests (0): 2025-08-15T00:27:24.2228210Z Parallel tests (0): 2025-08-15T00:27:24.2230188Z Running cpp/op_allowlist_test 1/1 ... [2025-08-15 00:27:24.222730] 2025-08-15T00:27:24.2230575Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:27:24.2240672Z 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-9bac01edfd935803.xml', '-x', '--reruns=2'] ... [2025-08-15 00:27:24.223875] 2025-08-15T00:27:24.2242335Z 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-15T00:27:25.7345500Z 2025-08-15T00:27:25.7346553Z 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_638ca76e1c47b10e_.log 2025-08-15T00:27:25.7347168Z 2025-08-15T00:27:30.2109805Z Running cpp/op_allowlist_test 1/1 ... [2025-08-15 00:27:30.210716] 2025-08-15T00:27:30.2110248Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:27:30.2121737Z 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-9c6f8f522b61e5ce.xml', '-x', '--reruns=2'] ... [2025-08-15 00:27:30.211906] 2025-08-15T00:27:31.7114290Z 2025-08-15T00:27:31.7115378Z 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_b7021adaea0fd79b_.log 2025-08-15T00:27:31.7116102Z 2025-08-15T00:27:32.5400641Z Running test batch 'tests to run' cost 8.32 seconds 2025-08-15T00:27:32.5407518Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:27:32.5408016Z Uploading artifacts took 0.00 seconds 2025-08-15T00:27:33.2600881Z 2025-08-15T00:27:33.2601678Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:27:33.2602137Z echo "op_allowlist_test" failed with exit code 0 2025-08-15T00:27:33.2602469Z goto fail 2025-08-15T00:27:33.2602704Z ) 2025-08-15T00:27:33.2602809Z 2025-08-15T00:27:33.2603007Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:27:33.2603454Z echo "op_allowlist_test" failed with exit code 0 2025-08-15T00:27:33.2603769Z goto fail 2025-08-15T00:27:33.2603965Z ) 2025-08-15T00:27:33.2604085Z 2025-08-15T00:27:33.2604278Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:27:33.2610618Z 2025-08-15T00:27:33.2610984Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:27:33.2611726Z call :libtorch_check "op_registration_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\op_registration_test.exe" 2025-08-15T00:27:33.2612378Z if errorlevel 1 goto fail 2025-08-15T00:27:33.2612642Z ) 2025-08-15T00:27:33.2621168Z 2025-08-15T00:27:33.2621563Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:27:33.2625231Z 2025-08-15T00:27:33.2625711Z (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-15T00:27:33.2628130Z 2025-08-15T00:27:33.2628633Z (base) C:\actions-runner\_work\pytorch\pytorch>if "op_registration_test" == "verify_api_visibility" goto :eof 2025-08-15T00:27:33.2629687Z 2025-08-15T00:27:33.2630385Z (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-15T00:27:33.2631364Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\op_registration_test.exe" 2025-08-15T00:27:33.2631872Z 2025-08-15T00:27:33.2632271Z (base) C:\actions-runner\_work\pytorch\pytorch>if "op_registration_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:27:33.2633163Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\op_registration_test.exe" 2025-08-15T00:27:33.2633665Z goto :eof 2025-08-15T00:27:33.2633854Z ) 2025-08-15T00:27:33.2633956Z 2025-08-15T00:27:33.2634338Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/op_registration_test" 2025-08-15T00:27:39.3546549Z Found test times from artifacts 2025-08-15T00:27:39.4224378Z Found test times from artifacts 2025-08-15T00:27:39.4246646Z Running all tests 2025-08-15T00:27:39.4252058Z Running parallel tests on 3 processes 2025-08-15T00:27:39.4252534Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:27:39.4252820Z Serial tests (0): 2025-08-15T00:27:39.4253052Z Parallel tests (1): 2025-08-15T00:27:39.4253288Z cpp/op_registration_test 1/1 2025-08-15T00:27:39.4253565Z Name: excluded (est. time: 0.0min) 2025-08-15T00:27:39.4253822Z Serial tests (0): 2025-08-15T00:27:39.4254045Z Parallel tests (0): 2025-08-15T00:27:39.4255987Z Running cpp/op_registration_test 1/1 ... [2025-08-15 00:27:39.425208] 2025-08-15T00:27:39.4256384Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:27:39.4266381Z 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-c2043676363bcfd5.xml', '-x', '--reruns=2'] ... [2025-08-15 00:27:39.426353] 2025-08-15T00:27:39.4268242Z 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-15T00:27:41.7700810Z 2025-08-15T00:27:41.7701902Z 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_44587c94382ab0d8_.log 2025-08-15T00:27:41.7702545Z 2025-08-15T00:27:46.2197474Z Running cpp/op_registration_test 1/1 ... [2025-08-15 00:27:46.219115] 2025-08-15T00:27:46.2197934Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:27:46.2207222Z 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-8361a8f1a0a5f867.xml', '-x', '--reruns=2'] ... [2025-08-15 00:27:46.220310] 2025-08-15T00:28:06.3035094Z 2025-08-15T00:28:06.3036130Z 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_cee7ba266a77413b_.log 2025-08-15T00:28:06.3038286Z 2025-08-15T00:28:07.1631364Z Running test batch 'tests to run' cost 27.73 seconds 2025-08-15T00:28:07.1638095Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:28:07.1638569Z Uploading artifacts took 0.00 seconds 2025-08-15T00:28:07.8679552Z 2025-08-15T00:28:07.8680075Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:28:07.8680563Z echo "op_registration_test" failed with exit code 0 2025-08-15T00:28:07.8680901Z goto fail 2025-08-15T00:28:07.8681106Z ) 2025-08-15T00:28:07.8681206Z 2025-08-15T00:28:07.8681396Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:28:07.8681842Z echo "op_registration_test" failed with exit code 0 2025-08-15T00:28:07.8682177Z goto fail 2025-08-15T00:28:07.8682370Z ) 2025-08-15T00:28:07.8682469Z 2025-08-15T00:28:07.8682644Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:28:07.8688798Z 2025-08-15T00:28:07.8688986Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:28:07.8689836Z call :libtorch_check "packedtensoraccessor_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\packedtensoraccessor_test.exe" 2025-08-15T00:28:07.8691244Z if errorlevel 1 goto fail 2025-08-15T00:28:07.8691491Z ) 2025-08-15T00:28:07.8699716Z 2025-08-15T00:28:07.8700074Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:28:07.8703694Z 2025-08-15T00:28:07.8704213Z (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-15T00:28:07.8706615Z 2025-08-15T00:28:07.8707112Z (base) C:\actions-runner\_work\pytorch\pytorch>if "packedtensoraccessor_test" == "verify_api_visibility" goto :eof 2025-08-15T00:28:07.8708011Z 2025-08-15T00:28:07.8708941Z (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-15T00:28:07.8709977Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\packedtensoraccessor_test.exe" 2025-08-15T00:28:07.8710446Z 2025-08-15T00:28:07.8710812Z (base) C:\actions-runner\_work\pytorch\pytorch>if "packedtensoraccessor_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:28:07.8711620Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\packedtensoraccessor_test.exe" 2025-08-15T00:28:07.8712152Z goto :eof 2025-08-15T00:28:07.8712339Z ) 2025-08-15T00:28:07.8712437Z 2025-08-15T00:28:07.8712844Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/packedtensoraccessor_test" 2025-08-15T00:28:14.0680485Z Found test times from artifacts 2025-08-15T00:28:14.1485947Z Found test times from artifacts 2025-08-15T00:28:14.1509448Z Running all tests 2025-08-15T00:28:14.1514914Z Running parallel tests on 3 processes 2025-08-15T00:28:14.1515366Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:28:14.1515661Z Serial tests (0): 2025-08-15T00:28:14.1515938Z Parallel tests (1): 2025-08-15T00:28:14.1516201Z cpp/packedtensoraccessor_test 1/1 2025-08-15T00:28:14.1516535Z Name: excluded (est. time: 0.0min) 2025-08-15T00:28:14.1516807Z Serial tests (0): 2025-08-15T00:28:14.1517049Z Parallel tests (0): 2025-08-15T00:28:14.1518794Z Running cpp/packedtensoraccessor_test 1/1 ... [2025-08-15 00:28:14.150381] 2025-08-15T00:28:14.1519322Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:28:14.1528685Z 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-9d0cfa2322a2c9c4.xml', '-x', '--reruns=2'] ... [2025-08-15 00:28:14.150381] 2025-08-15T00:28:14.1530456Z 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-15T00:28:16.4846709Z 2025-08-15T00:28:16.4847806Z cpp/packedtensoraccessor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.packedtensoraccessor_test_1.1_5dacfeedc6a3e80a_.log 2025-08-15T00:28:16.4848550Z 2025-08-15T00:28:21.0103179Z Running cpp/packedtensoraccessor_test 1/1 ... [2025-08-15 00:28:20.998065] 2025-08-15T00:28:21.0103681Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:28:21.0112312Z 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-9c8cd1fd806ec836.xml', '-x', '--reruns=2'] ... [2025-08-15 00:28:20.998065] 2025-08-15T00:28:23.8623326Z 2025-08-15T00:28:23.8624298Z cpp/packedtensoraccessor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.packedtensoraccessor_test_1.1_b1d60fab98352d5b_.log 2025-08-15T00:28:23.8625066Z 2025-08-15T00:28:24.7320776Z Running test batch 'tests to run' cost 10.57 seconds 2025-08-15T00:28:24.7327232Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:28:24.7327756Z Uploading artifacts took 0.00 seconds 2025-08-15T00:28:25.4529707Z 2025-08-15T00:28:25.4530321Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:28:25.4530862Z echo "packedtensoraccessor_test" failed with exit code 0 2025-08-15T00:28:25.4531233Z goto fail 2025-08-15T00:28:25.4531512Z ) 2025-08-15T00:28:25.4531629Z 2025-08-15T00:28:25.4531922Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:28:25.4532402Z echo "packedtensoraccessor_test" failed with exit code 0 2025-08-15T00:28:25.4532782Z goto fail 2025-08-15T00:28:25.4532972Z ) 2025-08-15T00:28:25.4533219Z 2025-08-15T00:28:25.4533614Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:28:25.4539918Z 2025-08-15T00:28:25.4540188Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:28:25.4540817Z call :libtorch_check "pow_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\pow_test.exe" 2025-08-15T00:28:25.4541450Z if errorlevel 1 goto fail 2025-08-15T00:28:25.4541702Z ) 2025-08-15T00:28:25.4551584Z 2025-08-15T00:28:25.4551970Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:28:25.4555727Z 2025-08-15T00:28:25.4556378Z (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-15T00:28:25.4558751Z 2025-08-15T00:28:25.4559217Z (base) C:\actions-runner\_work\pytorch\pytorch>if "pow_test" == "verify_api_visibility" goto :eof 2025-08-15T00:28:25.4560065Z 2025-08-15T00:28:25.4560709Z (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-15T00:28:25.4561596Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\pow_test.exe" 2025-08-15T00:28:25.4562833Z 2025-08-15T00:28:25.4563277Z (base) C:\actions-runner\_work\pytorch\pytorch>if "pow_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:28:25.4563947Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\pow_test.exe" 2025-08-15T00:28:25.4564451Z goto :eof 2025-08-15T00:28:25.4564644Z ) 2025-08-15T00:28:25.4564770Z 2025-08-15T00:28:25.4565110Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/pow_test" 2025-08-15T00:28:31.5801967Z Found test times from artifacts 2025-08-15T00:28:31.6599292Z Found test times from artifacts 2025-08-15T00:28:31.6621208Z Running all tests 2025-08-15T00:28:31.6626870Z Running parallel tests on 3 processes 2025-08-15T00:28:31.6627274Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:28:31.6627562Z Serial tests (0): 2025-08-15T00:28:31.6627827Z Parallel tests (1): 2025-08-15T00:28:31.6628067Z cpp/pow_test 1/1 2025-08-15T00:28:31.6628359Z Name: excluded (est. time: 0.0min) 2025-08-15T00:28:31.6628636Z Serial tests (0): 2025-08-15T00:28:31.6628880Z Parallel tests (0): 2025-08-15T00:28:31.6630177Z Running cpp/pow_test 1/1 ... [2025-08-15 00:28:31.659186] 2025-08-15T00:28:31.6630574Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:28:31.6640053Z 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-d19006b29f52936b.xml', '-x', '--reruns=2'] ... [2025-08-15 00:28:31.659186] 2025-08-15T00:28:31.6641712Z 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-15T00:28:34.0696182Z 2025-08-15T00:28:34.0696974Z cpp/pow_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.pow_test_1.1_6e2d168454d19129_.log 2025-08-15T00:28:34.0697897Z 2025-08-15T00:28:38.4779670Z Running cpp/pow_test 1/1 ... [2025-08-15 00:28:38.477217] 2025-08-15T00:28:38.4788233Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:28:38.4789486Z 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-7dab7386ec178fff.xml', '-x', '--reruns=2'] ... [2025-08-15 00:28:38.477217] 2025-08-15T00:28:42.9742622Z 2025-08-15T00:28:42.9743550Z cpp/pow_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.pow_test_1.1_688facb006ce9c94_.log 2025-08-15T00:28:42.9744704Z 2025-08-15T00:28:43.7864059Z Running test batch 'tests to run' cost 12.13 seconds 2025-08-15T00:28:43.7870691Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:28:43.7871195Z Uploading artifacts took 0.00 seconds 2025-08-15T00:28:44.6144345Z 2025-08-15T00:28:44.6145051Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:28:44.6145529Z echo "pow_test" failed with exit code 0 2025-08-15T00:28:44.6145834Z goto fail 2025-08-15T00:28:44.6146083Z ) 2025-08-15T00:28:44.6146205Z 2025-08-15T00:28:44.6146430Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:28:44.6146891Z echo "pow_test" failed with exit code 0 2025-08-15T00:28:44.6147434Z goto fail 2025-08-15T00:28:44.6147635Z ) 2025-08-15T00:28:44.6147745Z 2025-08-15T00:28:44.6148436Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:28:44.6154893Z 2025-08-15T00:28:44.6155334Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:28:44.6156095Z call :libtorch_check "quantized_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\quantized_test.exe" 2025-08-15T00:28:44.6156809Z if errorlevel 1 goto fail 2025-08-15T00:28:44.6157078Z ) 2025-08-15T00:28:44.6166498Z 2025-08-15T00:28:44.6166841Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:28:44.6170594Z 2025-08-15T00:28:44.6171351Z (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-15T00:28:44.6174031Z 2025-08-15T00:28:44.6174459Z (base) C:\actions-runner\_work\pytorch\pytorch>if "quantized_test" == "verify_api_visibility" goto :eof 2025-08-15T00:28:44.6175438Z 2025-08-15T00:28:44.6176069Z (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-15T00:28:44.6177062Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\quantized_test.exe" 2025-08-15T00:28:44.6178382Z 2025-08-15T00:28:44.6178958Z (base) C:\actions-runner\_work\pytorch\pytorch>if "quantized_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:28:44.6179716Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\quantized_test.exe" 2025-08-15T00:28:44.6180235Z goto :eof 2025-08-15T00:28:44.6180434Z ) 2025-08-15T00:28:44.6180564Z 2025-08-15T00:28:44.6180930Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/quantized_test" 2025-08-15T00:28:50.7845253Z Found test times from artifacts 2025-08-15T00:28:50.8527605Z Found test times from artifacts 2025-08-15T00:28:50.8550488Z Running all tests 2025-08-15T00:28:50.8556019Z Running parallel tests on 3 processes 2025-08-15T00:28:50.8556490Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:28:50.8556788Z Serial tests (0): 2025-08-15T00:28:50.8557034Z Parallel tests (1): 2025-08-15T00:28:50.8557288Z cpp/quantized_test 1/1 2025-08-15T00:28:50.8557577Z Name: excluded (est. time: 0.0min) 2025-08-15T00:28:50.8557845Z Serial tests (0): 2025-08-15T00:28:50.8558256Z Parallel tests (0): 2025-08-15T00:28:50.8560953Z Running cpp/quantized_test 1/1 ... [2025-08-15 00:28:50.855475] 2025-08-15T00:28:50.8561365Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:28:50.8569924Z 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-8e15e269880f7288.xml', '-x', '--reruns=2'] ... [2025-08-15 00:28:50.856629] 2025-08-15T00:28:50.8572635Z 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-15T00:28:53.2503863Z 2025-08-15T00:28:53.2504783Z cpp/quantized_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.quantized_test_1.1_19a915946ff25cbb_.log 2025-08-15T00:28:53.2505584Z 2025-08-15T00:28:57.6974113Z Running cpp/quantized_test 1/1 ... [2025-08-15 00:28:57.697125] 2025-08-15T00:28:57.6982720Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:28:57.6983979Z 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-827e927b38275aab.xml', '-x', '--reruns=2'] ... [2025-08-15 00:28:57.697696] 2025-08-15T00:29:01.2224952Z 2025-08-15T00:29:01.2226129Z cpp/quantized_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.quantized_test_1.1_204c1f7589f2d328_.log 2025-08-15T00:29:01.2226973Z 2025-08-15T00:29:02.0426551Z Running test batch 'tests to run' cost 11.19 seconds 2025-08-15T00:29:02.0433207Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:29:02.0433736Z Uploading artifacts took 0.00 seconds 2025-08-15T00:29:02.7494553Z 2025-08-15T00:29:02.7495113Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:29:02.7495607Z echo "quantized_test" failed with exit code 0 2025-08-15T00:29:02.7495940Z goto fail 2025-08-15T00:29:02.7496166Z ) 2025-08-15T00:29:02.7496281Z 2025-08-15T00:29:02.7496484Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:29:02.7496942Z echo "quantized_test" failed with exit code 0 2025-08-15T00:29:02.7497258Z goto fail 2025-08-15T00:29:02.7497483Z ) 2025-08-15T00:29:02.7497601Z 2025-08-15T00:29:02.7497793Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:29:02.7504545Z 2025-08-15T00:29:02.7505150Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:29:02.7505897Z call :libtorch_check "reduce_ops_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\reduce_ops_test.exe" 2025-08-15T00:29:02.7506556Z if errorlevel 1 goto fail 2025-08-15T00:29:02.7506806Z ) 2025-08-15T00:29:02.7514900Z 2025-08-15T00:29:02.7515303Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:29:02.7518747Z 2025-08-15T00:29:02.7519265Z (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-15T00:29:02.7521249Z 2025-08-15T00:29:02.7521739Z (base) C:\actions-runner\_work\pytorch\pytorch>if "reduce_ops_test" == "verify_api_visibility" goto :eof 2025-08-15T00:29:02.7522585Z 2025-08-15T00:29:02.7523135Z (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-15T00:29:02.7524081Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\reduce_ops_test.exe" 2025-08-15T00:29:02.7524810Z 2025-08-15T00:29:02.7525217Z (base) C:\actions-runner\_work\pytorch\pytorch>if "reduce_ops_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:29:02.7526114Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\reduce_ops_test.exe" 2025-08-15T00:29:02.7526615Z goto :eof 2025-08-15T00:29:02.7526848Z ) 2025-08-15T00:29:02.7526961Z 2025-08-15T00:29:02.7527348Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/reduce_ops_test" 2025-08-15T00:29:08.8579321Z Found test times from artifacts 2025-08-15T00:29:08.9257190Z Found test times from artifacts 2025-08-15T00:29:08.9279953Z Running all tests 2025-08-15T00:29:08.9286025Z Running parallel tests on 3 processes 2025-08-15T00:29:08.9286385Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:29:08.9286696Z Serial tests (0): 2025-08-15T00:29:08.9286956Z Parallel tests (1): 2025-08-15T00:29:08.9287225Z cpp/reduce_ops_test 1/1 2025-08-15T00:29:08.9287489Z Name: excluded (est. time: 0.0min) 2025-08-15T00:29:08.9287787Z Serial tests (0): 2025-08-15T00:29:08.9288007Z Parallel tests (0): 2025-08-15T00:29:08.9290314Z Running cpp/reduce_ops_test 1/1 ... [2025-08-15 00:29:08.928409] 2025-08-15T00:29:08.9290752Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:29:08.9299726Z 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-f225e22dd714d3c2.xml', '-x', '--reruns=2'] ... [2025-08-15 00:29:08.929567] 2025-08-15T00:29:08.9301745Z 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-15T00:29:11.3107403Z 2025-08-15T00:29:11.3108358Z 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_025e239a1a6c83d9_.log 2025-08-15T00:29:11.3108973Z 2025-08-15T00:29:15.7752166Z Running cpp/reduce_ops_test 1/1 ... [2025-08-15 00:29:15.774918] 2025-08-15T00:29:15.7752633Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:29:15.7764727Z 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-ad721a615dca4926.xml', '-x', '--reruns=2'] ... [2025-08-15 00:29:15.776105] 2025-08-15T00:29:18.5133129Z 2025-08-15T00:29:18.5134247Z 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_78339c1ad515de85_.log 2025-08-15T00:29:18.5134886Z 2025-08-15T00:29:19.3299451Z Running test batch 'tests to run' cost 10.4 seconds 2025-08-15T00:29:19.3306183Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:29:19.3306692Z Uploading artifacts took 0.00 seconds 2025-08-15T00:29:20.0303256Z 2025-08-15T00:29:20.0303863Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:29:20.0304385Z echo "reduce_ops_test" failed with exit code 0 2025-08-15T00:29:20.0304715Z goto fail 2025-08-15T00:29:20.0304940Z ) 2025-08-15T00:29:20.0305047Z 2025-08-15T00:29:20.0305249Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:29:20.0305690Z echo "reduce_ops_test" failed with exit code 0 2025-08-15T00:29:20.0306014Z goto fail 2025-08-15T00:29:20.0306228Z ) 2025-08-15T00:29:20.0306338Z 2025-08-15T00:29:20.0306540Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:29:20.0313412Z 2025-08-15T00:29:20.0313909Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:29:20.0314708Z call :libtorch_check "reportMemoryUsage_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\reportMemoryUsage_test.exe" 2025-08-15T00:29:20.0315450Z if errorlevel 1 goto fail 2025-08-15T00:29:20.0315699Z ) 2025-08-15T00:29:20.0324331Z 2025-08-15T00:29:20.0324809Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:29:20.0328203Z 2025-08-15T00:29:20.0328736Z (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-15T00:29:20.0330871Z 2025-08-15T00:29:20.0331292Z (base) C:\actions-runner\_work\pytorch\pytorch>if "reportMemoryUsage_test" == "verify_api_visibility" goto :eof 2025-08-15T00:29:20.0332527Z 2025-08-15T00:29:20.0333111Z (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-15T00:29:20.0334115Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\reportMemoryUsage_test.exe" 2025-08-15T00:29:20.0334833Z 2025-08-15T00:29:20.0335322Z (base) C:\actions-runner\_work\pytorch\pytorch>if "reportMemoryUsage_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:29:20.0336104Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\reportMemoryUsage_test.exe" 2025-08-15T00:29:20.0336661Z goto :eof 2025-08-15T00:29:20.0336859Z ) 2025-08-15T00:29:20.0336986Z 2025-08-15T00:29:20.0337376Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/reportMemoryUsage_test" 2025-08-15T00:29:26.1156053Z Found test times from artifacts 2025-08-15T00:29:26.1832459Z Found test times from artifacts 2025-08-15T00:29:26.1855057Z Running all tests 2025-08-15T00:29:26.1860751Z Running parallel tests on 3 processes 2025-08-15T00:29:26.1861269Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:29:26.1861667Z Serial tests (0): 2025-08-15T00:29:26.1861914Z Parallel tests (1): 2025-08-15T00:29:26.1862206Z cpp/reportMemoryUsage_test 1/1 2025-08-15T00:29:26.1862499Z Name: excluded (est. time: 0.0min) 2025-08-15T00:29:26.1862797Z Serial tests (0): 2025-08-15T00:29:26.1863020Z Parallel tests (0): 2025-08-15T00:29:26.1864775Z Running cpp/reportMemoryUsage_test 1/1 ... [2025-08-15 00:29:26.186375] 2025-08-15T00:29:26.1865240Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:29:26.1874869Z 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-ad61e12618e15696.xml', '-x', '--reruns=2'] ... [2025-08-15 00:29:26.186992] 2025-08-15T00:29:26.1876726Z 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-15T00:29:28.5043313Z 2025-08-15T00:29:28.5044266Z cpp/reportMemoryUsage_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.reportMemoryUsage_test_1.1_14be9b81f3c5e220_.log 2025-08-15T00:29:28.5046136Z 2025-08-15T00:29:32.9117438Z Running cpp/reportMemoryUsage_test 1/1 ... [2025-08-15 00:29:32.911276] 2025-08-15T00:29:32.9117993Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:29:32.9126744Z 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-d9e6551f0b60094f.xml', '-x', '--reruns=2'] ... [2025-08-15 00:29:32.912457] 2025-08-15T00:29:35.7486252Z 2025-08-15T00:29:35.7487285Z cpp/reportMemoryUsage_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.reportMemoryUsage_test_1.1_3da29186a8d223ab_.log 2025-08-15T00:29:35.7487991Z 2025-08-15T00:29:36.6022818Z Running test batch 'tests to run' cost 10.42 seconds 2025-08-15T00:29:36.6031848Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:29:36.6032355Z Uploading artifacts took 0.00 seconds 2025-08-15T00:29:37.3659872Z 2025-08-15T00:29:37.3660727Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:29:37.3661232Z echo "reportMemoryUsage_test" failed with exit code 0 2025-08-15T00:29:37.3661602Z goto fail 2025-08-15T00:29:37.3661802Z ) 2025-08-15T00:29:37.3661930Z 2025-08-15T00:29:37.3662138Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:29:37.3662670Z echo "reportMemoryUsage_test" failed with exit code 0 2025-08-15T00:29:37.3663074Z goto fail 2025-08-15T00:29:37.3663294Z ) 2025-08-15T00:29:37.3663402Z 2025-08-15T00:29:37.3663579Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:29:37.3669264Z 2025-08-15T00:29:37.3669474Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:29:37.3670207Z call :libtorch_check "scalar_tensor_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\scalar_tensor_test.exe" 2025-08-15T00:29:37.3670873Z if errorlevel 1 goto fail 2025-08-15T00:29:37.3671149Z ) 2025-08-15T00:29:37.3679705Z 2025-08-15T00:29:37.3680288Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:29:37.3683682Z 2025-08-15T00:29:37.3684188Z (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-15T00:29:37.3686259Z 2025-08-15T00:29:37.3686865Z (base) C:\actions-runner\_work\pytorch\pytorch>if "scalar_tensor_test" == "verify_api_visibility" goto :eof 2025-08-15T00:29:37.3687617Z 2025-08-15T00:29:37.3688850Z (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-15T00:29:37.3690326Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\scalar_tensor_test.exe" 2025-08-15T00:29:37.3690817Z 2025-08-15T00:29:37.3691212Z (base) C:\actions-runner\_work\pytorch\pytorch>if "scalar_tensor_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:29:37.3692054Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\scalar_tensor_test.exe" 2025-08-15T00:29:37.3692679Z goto :eof 2025-08-15T00:29:37.3692886Z ) 2025-08-15T00:29:37.3693064Z 2025-08-15T00:29:37.3693482Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/scalar_tensor_test" 2025-08-15T00:29:43.3890199Z Found test times from artifacts 2025-08-15T00:29:43.4569277Z Found test times from artifacts 2025-08-15T00:29:43.4591632Z Running all tests 2025-08-15T00:29:43.4597810Z Running parallel tests on 3 processes 2025-08-15T00:29:43.4609225Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:29:43.4609599Z Serial tests (0): 2025-08-15T00:29:43.4609815Z Parallel tests (1): 2025-08-15T00:29:43.4610038Z cpp/scalar_tensor_test 1/1 2025-08-15T00:29:43.4610290Z Name: excluded (est. time: 0.0min) 2025-08-15T00:29:43.4610532Z Serial tests (0): 2025-08-15T00:29:43.4610748Z Parallel tests (0): 2025-08-15T00:29:43.4611056Z Running cpp/scalar_tensor_test 1/1 ... [2025-08-15 00:29:43.459993] 2025-08-15T00:29:43.4611501Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:29:43.4612738Z 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-948d008c958c39cc.xml', '-x', '--reruns=2'] ... [2025-08-15 00:29:43.460596] 2025-08-15T00:29:43.4614447Z 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-15T00:29:45.7759582Z 2025-08-15T00:29:45.7760679Z 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_0c0fb4b4c77f948b_.log 2025-08-15T00:29:45.7761497Z 2025-08-15T00:29:50.1637256Z Running cpp/scalar_tensor_test 1/1 ... [2025-08-15 00:29:50.161821] 2025-08-15T00:29:50.1637681Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:29:50.1646615Z 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-931e9c986a060929.xml', '-x', '--reruns=2'] ... [2025-08-15 00:29:50.161821] 2025-08-15T00:29:52.9350298Z 2025-08-15T00:29:52.9351214Z 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_ecadd5b6b22de848_.log 2025-08-15T00:29:52.9351936Z 2025-08-15T00:29:53.8057364Z Running test batch 'tests to run' cost 10.34 seconds 2025-08-15T00:29:53.8063988Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:29:53.8064450Z Uploading artifacts took 0.00 seconds 2025-08-15T00:29:54.5121874Z 2025-08-15T00:29:54.5122579Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:29:54.5123039Z echo "scalar_tensor_test" failed with exit code 0 2025-08-15T00:29:54.5123348Z goto fail 2025-08-15T00:29:54.5123519Z ) 2025-08-15T00:29:54.5123682Z 2025-08-15T00:29:54.5124120Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:29:54.5124573Z echo "scalar_tensor_test" failed with exit code 0 2025-08-15T00:29:54.5125017Z goto fail 2025-08-15T00:29:54.5125194Z ) 2025-08-15T00:29:54.5125572Z 2025-08-15T00:29:54.5125880Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:29:54.5135307Z 2025-08-15T00:29:54.5135576Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:29:54.5136202Z call :libtorch_check "scalar_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\scalar_test.exe" 2025-08-15T00:29:54.5136785Z if errorlevel 1 goto fail 2025-08-15T00:29:54.5137021Z ) 2025-08-15T00:29:54.5148316Z 2025-08-15T00:29:54.5148664Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:29:54.5152458Z 2025-08-15T00:29:54.5152914Z (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-15T00:29:54.5155046Z 2025-08-15T00:29:54.5155526Z (base) C:\actions-runner\_work\pytorch\pytorch>if "scalar_test" == "verify_api_visibility" goto :eof 2025-08-15T00:29:54.5156956Z 2025-08-15T00:29:54.5157558Z (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-15T00:29:54.5158463Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\scalar_test.exe" 2025-08-15T00:29:54.5158875Z 2025-08-15T00:29:54.5159236Z (base) C:\actions-runner\_work\pytorch\pytorch>if "scalar_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:29:54.5159914Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\scalar_test.exe" 2025-08-15T00:29:54.5160360Z goto :eof 2025-08-15T00:29:54.5160532Z ) 2025-08-15T00:29:54.5160632Z 2025-08-15T00:29:54.5160978Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/scalar_test" 2025-08-15T00:30:00.5674218Z Found test times from artifacts 2025-08-15T00:30:00.6349113Z Found test times from artifacts 2025-08-15T00:30:00.6371348Z Running all tests 2025-08-15T00:30:00.6376934Z Running parallel tests on 3 processes 2025-08-15T00:30:00.6377397Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:30:00.6377674Z Serial tests (0): 2025-08-15T00:30:00.6377890Z Parallel tests (1): 2025-08-15T00:30:00.6378096Z cpp/scalar_test 1/1 2025-08-15T00:30:00.6378327Z Name: excluded (est. time: 0.0min) 2025-08-15T00:30:00.6378566Z Serial tests (0): 2025-08-15T00:30:00.6378884Z Parallel tests (0): 2025-08-15T00:30:00.6380766Z Running cpp/scalar_test 1/1 ... [2025-08-15 00:30:00.629238] 2025-08-15T00:30:00.6381131Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:30:00.6390601Z 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-44ee0f6af82c54d9.xml', '-x', '--reruns=2'] ... [2025-08-15 00:30:00.629238] 2025-08-15T00:30:00.6392246Z 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-15T00:30:03.0139672Z 2025-08-15T00:30:03.0140471Z cpp/scalar_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.scalar_test_1.1_4c61278641832a84_.log 2025-08-15T00:30:03.0141043Z 2025-08-15T00:30:07.5195012Z Running cpp/scalar_test 1/1 ... [2025-08-15 00:30:07.518310] 2025-08-15T00:30:07.5195444Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:30:07.5204475Z 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-4ebfd8aaafa5c707.xml', '-x', '--reruns=2'] ... [2025-08-15 00:30:07.518310] 2025-08-15T00:30:10.7420364Z 2025-08-15T00:30:10.7421576Z cpp/scalar_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.scalar_test_1.1_80c29cf2e5fceab2_.log 2025-08-15T00:30:10.7422249Z 2025-08-15T00:30:11.5673933Z Running test batch 'tests to run' cost 10.92 seconds 2025-08-15T00:30:11.5680321Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:30:11.5680762Z Uploading artifacts took 0.00 seconds 2025-08-15T00:30:12.2768298Z 2025-08-15T00:30:12.2768977Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:30:12.2769479Z echo "scalar_test" failed with exit code 0 2025-08-15T00:30:12.2769811Z goto fail 2025-08-15T00:30:12.2770019Z ) 2025-08-15T00:30:12.2770331Z 2025-08-15T00:30:12.2770873Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:30:12.2771418Z echo "scalar_test" failed with exit code 0 2025-08-15T00:30:12.2771740Z goto fail 2025-08-15T00:30:12.2771915Z ) 2025-08-15T00:30:12.2772008Z 2025-08-15T00:30:12.2772220Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:30:12.2779773Z 2025-08-15T00:30:12.2780226Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:30:12.2781100Z call :libtorch_check "StorageUtils_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\StorageUtils_test.exe" 2025-08-15T00:30:12.2781853Z if errorlevel 1 goto fail 2025-08-15T00:30:12.2782132Z ) 2025-08-15T00:30:12.2790983Z 2025-08-15T00:30:12.2791469Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:30:12.2795430Z 2025-08-15T00:30:12.2796005Z (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-15T00:30:12.2798628Z 2025-08-15T00:30:12.2799098Z (base) C:\actions-runner\_work\pytorch\pytorch>if "StorageUtils_test" == "verify_api_visibility" goto :eof 2025-08-15T00:30:12.2800046Z 2025-08-15T00:30:12.2800677Z (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-15T00:30:12.2801745Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\StorageUtils_test.exe" 2025-08-15T00:30:12.2802698Z 2025-08-15T00:30:12.2803151Z (base) C:\actions-runner\_work\pytorch\pytorch>if "StorageUtils_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:30:12.2804012Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\StorageUtils_test.exe" 2025-08-15T00:30:12.2804704Z goto :eof 2025-08-15T00:30:12.2804926Z ) 2025-08-15T00:30:12.2805034Z 2025-08-15T00:30:12.2805399Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/StorageUtils_test" 2025-08-15T00:30:18.4450395Z Found test times from artifacts 2025-08-15T00:30:18.5132430Z Found test times from artifacts 2025-08-15T00:30:18.5154277Z Running all tests 2025-08-15T00:30:18.5160268Z Running parallel tests on 3 processes 2025-08-15T00:30:18.5160675Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:30:18.5161028Z Serial tests (0): 2025-08-15T00:30:18.5161293Z Parallel tests (1): 2025-08-15T00:30:18.5161591Z cpp/StorageUtils_test 1/1 2025-08-15T00:30:18.5161896Z Name: excluded (est. time: 0.0min) 2025-08-15T00:30:18.5162167Z Serial tests (0): 2025-08-15T00:30:18.5162415Z Parallel tests (0): 2025-08-15T00:30:18.5164019Z Running cpp/StorageUtils_test 1/1 ... [2025-08-15 00:30:18.516138] 2025-08-15T00:30:18.5164466Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:30:18.5174000Z 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-0858bb7c7d78b130.xml', '-x', '--reruns=2'] ... [2025-08-15 00:30:18.517236] 2025-08-15T00:30:18.5175902Z 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-15T00:30:20.9321658Z 2025-08-15T00:30:20.9322577Z cpp/StorageUtils_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.StorageUtils_test_1.1_7fa42c7ef6cf29f1_.log 2025-08-15T00:30:20.9323407Z 2025-08-15T00:30:25.3409321Z Running cpp/StorageUtils_test 1/1 ... [2025-08-15 00:30:25.340417] 2025-08-15T00:30:25.3409844Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:30:25.3419013Z 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-8c74e4c3cf0992b2.xml', '-x', '--reruns=2'] ... [2025-08-15 00:30:25.341598] 2025-08-15T00:30:28.0165329Z 2025-08-15T00:30:28.0166480Z cpp/StorageUtils_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.StorageUtils_test_1.1_bdc14d02cd7e9c54_.log 2025-08-15T00:30:28.0167171Z 2025-08-15T00:30:28.8616138Z Running test batch 'tests to run' cost 10.34 seconds 2025-08-15T00:30:28.8622404Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:30:28.8622881Z Uploading artifacts took 0.00 seconds 2025-08-15T00:30:29.5699611Z 2025-08-15T00:30:29.5700407Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:30:29.5700951Z echo "StorageUtils_test" failed with exit code 0 2025-08-15T00:30:29.5701291Z goto fail 2025-08-15T00:30:29.5701513Z ) 2025-08-15T00:30:29.5701631Z 2025-08-15T00:30:29.5701842Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:30:29.5702304Z echo "StorageUtils_test" failed with exit code 0 2025-08-15T00:30:29.5702652Z goto fail 2025-08-15T00:30:29.5702842Z ) 2025-08-15T00:30:29.5702950Z 2025-08-15T00:30:29.5703144Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:30:29.5709211Z 2025-08-15T00:30:29.5709484Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:30:29.5710243Z call :libtorch_check "stride_properties_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\stride_properties_test.exe" 2025-08-15T00:30:29.5710955Z if errorlevel 1 goto fail 2025-08-15T00:30:29.5711195Z ) 2025-08-15T00:30:29.5720165Z 2025-08-15T00:30:29.5720642Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:30:29.5724276Z 2025-08-15T00:30:29.5725046Z (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-15T00:30:29.5727231Z 2025-08-15T00:30:29.5727812Z (base) C:\actions-runner\_work\pytorch\pytorch>if "stride_properties_test" == "verify_api_visibility" goto :eof 2025-08-15T00:30:29.5728755Z 2025-08-15T00:30:29.5729393Z (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-15T00:30:29.5730387Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\stride_properties_test.exe" 2025-08-15T00:30:29.5730856Z 2025-08-15T00:30:29.5731268Z (base) C:\actions-runner\_work\pytorch\pytorch>if "stride_properties_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:30:29.5732076Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\stride_properties_test.exe" 2025-08-15T00:30:29.5732727Z goto :eof 2025-08-15T00:30:29.5733001Z ) 2025-08-15T00:30:29.5733112Z 2025-08-15T00:30:29.5733497Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/stride_properties_test" 2025-08-15T00:30:35.6861765Z Found test times from artifacts 2025-08-15T00:30:35.7541908Z Found test times from artifacts 2025-08-15T00:30:35.7563913Z Running all tests 2025-08-15T00:30:35.7569446Z Running parallel tests on 3 processes 2025-08-15T00:30:35.7569956Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:30:35.7570348Z Serial tests (0): 2025-08-15T00:30:35.7570617Z Parallel tests (1): 2025-08-15T00:30:35.7570874Z cpp/stride_properties_test 1/1 2025-08-15T00:30:35.7571198Z Name: excluded (est. time: 0.0min) 2025-08-15T00:30:35.7571470Z Serial tests (0): 2025-08-15T00:30:35.7571722Z Parallel tests (0): 2025-08-15T00:30:35.7573341Z Running cpp/stride_properties_test 1/1 ... [2025-08-15 00:30:35.755572] 2025-08-15T00:30:35.7573800Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:30:35.7583457Z 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-e1341df634e0db4f.xml', '-x', '--reruns=2'] ... [2025-08-15 00:30:35.755572] 2025-08-15T00:30:35.7585282Z 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-15T00:30:38.2011926Z 2025-08-15T00:30:38.2013107Z 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_5f6085d4c38cb84b_.log 2025-08-15T00:30:38.2013820Z 2025-08-15T00:30:42.6783973Z Running cpp/stride_properties_test 1/1 ... [2025-08-15 00:30:42.677873] 2025-08-15T00:30:42.6784501Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:30:42.6795994Z 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-88c7e246c68bf4ad.xml', '-x', '--reruns=2'] ... [2025-08-15 00:30:42.679062] 2025-08-15T00:30:45.7593415Z 2025-08-15T00:30:45.7594529Z 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_2400849d4f3fc08b_.log 2025-08-15T00:30:45.7595212Z 2025-08-15T00:30:46.6255236Z Running test batch 'tests to run' cost 10.87 seconds 2025-08-15T00:30:46.6261764Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:30:46.6262204Z Uploading artifacts took 0.00 seconds 2025-08-15T00:30:47.3401381Z 2025-08-15T00:30:47.3402155Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:30:47.3402624Z echo "stride_properties_test" failed with exit code 0 2025-08-15T00:30:47.3402930Z goto fail 2025-08-15T00:30:47.3403098Z ) 2025-08-15T00:30:47.3403190Z 2025-08-15T00:30:47.3403383Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:30:47.3403810Z echo "stride_properties_test" failed with exit code 0 2025-08-15T00:30:47.3404145Z goto fail 2025-08-15T00:30:47.3404308Z ) 2025-08-15T00:30:47.3404402Z 2025-08-15T00:30:47.3404558Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:30:47.3410348Z 2025-08-15T00:30:47.3410601Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:30:47.3411281Z call :libtorch_check "tensor_iterator_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\tensor_iterator_test.exe" 2025-08-15T00:30:47.3411944Z if errorlevel 1 goto fail 2025-08-15T00:30:47.3412160Z ) 2025-08-15T00:30:47.3421176Z 2025-08-15T00:30:47.3421797Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:30:47.3425575Z 2025-08-15T00:30:47.3427078Z (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-15T00:30:47.3428780Z 2025-08-15T00:30:47.3429349Z (base) C:\actions-runner\_work\pytorch\pytorch>if "tensor_iterator_test" == "verify_api_visibility" goto :eof 2025-08-15T00:30:47.3429938Z 2025-08-15T00:30:47.3430539Z (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-15T00:30:47.3431592Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\tensor_iterator_test.exe" 2025-08-15T00:30:47.3432059Z 2025-08-15T00:30:47.3432446Z (base) C:\actions-runner\_work\pytorch\pytorch>if "tensor_iterator_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:30:47.3433177Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\tensor_iterator_test.exe" 2025-08-15T00:30:47.3433665Z goto :eof 2025-08-15T00:30:47.3433830Z ) 2025-08-15T00:30:47.3433926Z 2025-08-15T00:30:47.3434286Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/tensor_iterator_test" 2025-08-15T00:30:53.5166516Z Found test times from artifacts 2025-08-15T00:30:53.5893661Z Found test times from artifacts 2025-08-15T00:30:53.5917985Z Running all tests 2025-08-15T00:30:53.5924350Z Running parallel tests on 3 processes 2025-08-15T00:30:53.5924757Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:30:53.5925027Z Serial tests (0): 2025-08-15T00:30:53.5925241Z Parallel tests (1): 2025-08-15T00:30:53.5925479Z cpp/tensor_iterator_test 1/1 2025-08-15T00:30:53.5925736Z Name: excluded (est. time: 0.0min) 2025-08-15T00:30:53.5925996Z Serial tests (0): 2025-08-15T00:30:53.5926194Z Parallel tests (0): 2025-08-15T00:30:53.5928556Z Running cpp/tensor_iterator_test 1/1 ... [2025-08-15 00:30:53.592771] 2025-08-15T00:30:53.5928965Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:30:53.5939580Z 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-33e90c08e8c5deed.xml', '-x', '--reruns=2'] ... [2025-08-15 00:30:53.593442] 2025-08-15T00:30:53.5941430Z 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-15T00:30:55.8924794Z 2025-08-15T00:30:55.8925681Z 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_cbde50c4b787430e_.log 2025-08-15T00:30:55.8926653Z 2025-08-15T00:31:00.3022995Z Running cpp/tensor_iterator_test 1/1 ... [2025-08-15 00:31:00.293238] 2025-08-15T00:31:00.3023433Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:31:00.3032216Z 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-e97416280e94e3f1.xml', '-x', '--reruns=2'] ... [2025-08-15 00:31:00.293238] 2025-08-15T00:31:12.2409497Z 2025-08-15T00:31:12.2410392Z 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_2cf469155ca567ab_.log 2025-08-15T00:31:12.2412283Z 2025-08-15T00:31:13.1599070Z Running test batch 'tests to run' cost 19.57 seconds 2025-08-15T00:31:13.1605223Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:31:13.1605706Z Uploading artifacts took 0.00 seconds 2025-08-15T00:31:13.8603654Z 2025-08-15T00:31:13.8604362Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:31:13.8605177Z echo "tensor_iterator_test" failed with exit code 0 2025-08-15T00:31:13.8605496Z goto fail 2025-08-15T00:31:13.8605665Z ) 2025-08-15T00:31:13.8605766Z 2025-08-15T00:31:13.8605956Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:31:13.8607055Z echo "tensor_iterator_test" failed with exit code 0 2025-08-15T00:31:13.8607385Z goto fail 2025-08-15T00:31:13.8607571Z ) 2025-08-15T00:31:13.8607746Z 2025-08-15T00:31:13.8607977Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:31:13.8613439Z 2025-08-15T00:31:13.8613911Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:31:13.8614612Z call :libtorch_check "test_parallel" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\test_parallel.exe" 2025-08-15T00:31:13.8615230Z if errorlevel 1 goto fail 2025-08-15T00:31:13.8615657Z ) 2025-08-15T00:31:13.8625134Z 2025-08-15T00:31:13.8625568Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:31:13.8629103Z 2025-08-15T00:31:13.8629642Z (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-15T00:31:13.8631949Z 2025-08-15T00:31:13.8632347Z (base) C:\actions-runner\_work\pytorch\pytorch>if "test_parallel" == "verify_api_visibility" goto :eof 2025-08-15T00:31:13.8633357Z 2025-08-15T00:31:13.8633928Z (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-15T00:31:13.8634820Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\test_parallel.exe" 2025-08-15T00:31:13.8635622Z 2025-08-15T00:31:13.8636039Z (base) C:\actions-runner\_work\pytorch\pytorch>if "test_parallel" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:31:13.8636721Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\test_parallel.exe" 2025-08-15T00:31:13.8637187Z goto :eof 2025-08-15T00:31:13.8637365Z ) 2025-08-15T00:31:13.8637475Z 2025-08-15T00:31:13.8637822Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/test_parallel" 2025-08-15T00:31:20.0266512Z Found test times from artifacts 2025-08-15T00:31:20.0941614Z Found test times from artifacts 2025-08-15T00:31:20.0963662Z Running all tests 2025-08-15T00:31:20.0969794Z Running parallel tests on 3 processes 2025-08-15T00:31:20.0970298Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:31:20.0970711Z Serial tests (0): 2025-08-15T00:31:20.0970916Z Parallel tests (1): 2025-08-15T00:31:20.0971136Z cpp/test_parallel 1/1 2025-08-15T00:31:20.0971379Z Name: excluded (est. time: 0.0min) 2025-08-15T00:31:20.0971776Z Serial tests (0): 2025-08-15T00:31:20.0971982Z Parallel tests (0): 2025-08-15T00:31:20.0973488Z Running cpp/test_parallel 1/1 ... [2025-08-15 00:31:20.097010] 2025-08-15T00:31:20.0973865Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:31:20.0983604Z 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-28c65c4b0ce9df16.xml', '-x', '--reruns=2'] ... [2025-08-15 00:31:20.098167] 2025-08-15T00:31:20.0985276Z 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-15T00:31:22.4093311Z 2025-08-15T00:31:22.4094299Z cpp/test_parallel 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.test_parallel_1.1_78ed65b76f7cf575_.log 2025-08-15T00:31:22.4094949Z 2025-08-15T00:31:26.9118212Z Running cpp/test_parallel 1/1 ... [2025-08-15 00:31:26.911549] 2025-08-15T00:31:26.9118765Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:31:26.9129476Z 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-2bc138e487e41709.xml', '-x', '--reruns=2'] ... [2025-08-15 00:31:26.912701] 2025-08-15T00:31:30.1183688Z 2025-08-15T00:31:30.1185048Z cpp/test_parallel 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.test_parallel_1.1_6a1fab8df5ee601c_.log 2025-08-15T00:31:30.1185718Z 2025-08-15T00:31:30.9799457Z Running test batch 'tests to run' cost 10.88 seconds 2025-08-15T00:31:30.9805557Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:31:30.9806020Z Uploading artifacts took 0.00 seconds 2025-08-15T00:31:31.7312477Z 2025-08-15T00:31:31.7313075Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:31:31.7313512Z echo "test_parallel" failed with exit code 0 2025-08-15T00:31:31.7313802Z goto fail 2025-08-15T00:31:31.7313974Z ) 2025-08-15T00:31:31.7314074Z 2025-08-15T00:31:31.7314270Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:31:31.7314667Z echo "test_parallel" failed with exit code 0 2025-08-15T00:31:31.7315034Z goto fail 2025-08-15T00:31:31.7315203Z ) 2025-08-15T00:31:31.7315712Z 2025-08-15T00:31:31.7315930Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:31:31.7323428Z 2025-08-15T00:31:31.7323675Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:31:31.7324342Z call :libtorch_check "thread_init_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\thread_init_test.exe" 2025-08-15T00:31:31.7324957Z if errorlevel 1 goto fail 2025-08-15T00:31:31.7325176Z ) 2025-08-15T00:31:31.7334589Z 2025-08-15T00:31:31.7334948Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:31:31.7338717Z 2025-08-15T00:31:31.7339213Z (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-15T00:31:31.7341607Z 2025-08-15T00:31:31.7342010Z (base) C:\actions-runner\_work\pytorch\pytorch>if "thread_init_test" == "verify_api_visibility" goto :eof 2025-08-15T00:31:31.7343031Z 2025-08-15T00:31:31.7343632Z (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-15T00:31:31.7344588Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\thread_init_test.exe" 2025-08-15T00:31:31.7345567Z 2025-08-15T00:31:31.7345989Z (base) C:\actions-runner\_work\pytorch\pytorch>if "thread_init_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:31:31.7346853Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\thread_init_test.exe" 2025-08-15T00:31:31.7347324Z goto :eof 2025-08-15T00:31:31.7347490Z ) 2025-08-15T00:31:31.7347592Z 2025-08-15T00:31:31.7347941Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/thread_init_test" 2025-08-15T00:31:37.8563535Z Found test times from artifacts 2025-08-15T00:31:37.9246492Z Found test times from artifacts 2025-08-15T00:31:37.9269114Z Running all tests 2025-08-15T00:31:37.9274887Z Running parallel tests on 3 processes 2025-08-15T00:31:37.9275321Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:31:37.9275604Z Serial tests (0): 2025-08-15T00:31:37.9275821Z Parallel tests (1): 2025-08-15T00:31:37.9276047Z cpp/thread_init_test 1/1 2025-08-15T00:31:37.9276301Z Name: excluded (est. time: 0.0min) 2025-08-15T00:31:37.9276544Z Serial tests (0): 2025-08-15T00:31:37.9276762Z Parallel tests (0): 2025-08-15T00:31:37.9278813Z Running cpp/thread_init_test 1/1 ... [2025-08-15 00:31:37.927777] 2025-08-15T00:31:37.9279202Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:31:37.9289077Z 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-4eb4460502da8d8c.xml', '-x', '--reruns=2'] ... [2025-08-15 00:31:37.928395] 2025-08-15T00:31:37.9290910Z 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-15T00:31:40.2398750Z 2025-08-15T00:31:40.2399760Z 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_384b7c8c4e7631c2_.log 2025-08-15T00:31:40.2401621Z 2025-08-15T00:31:44.7302785Z Running cpp/thread_init_test 1/1 ... [2025-08-15 00:31:44.730102] 2025-08-15T00:31:44.7303259Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:31:44.7313304Z 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-2d1563118cfbbcdb.xml', '-x', '--reruns=2'] ... [2025-08-15 00:31:44.731151] 2025-08-15T00:31:47.6351396Z 2025-08-15T00:31:47.6352253Z 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_10bc46da06343c70_.log 2025-08-15T00:31:47.6353140Z 2025-08-15T00:31:48.5013241Z Running test batch 'tests to run' cost 10.57 seconds 2025-08-15T00:31:48.5020295Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:31:48.5020834Z Uploading artifacts took 0.00 seconds 2025-08-15T00:31:49.2147204Z 2025-08-15T00:31:49.2147728Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:31:49.2148171Z echo "thread_init_test" failed with exit code 0 2025-08-15T00:31:49.2148466Z goto fail 2025-08-15T00:31:49.2148638Z ) 2025-08-15T00:31:49.2148738Z 2025-08-15T00:31:49.2148930Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:31:49.2149327Z echo "thread_init_test" failed with exit code 0 2025-08-15T00:31:49.2149624Z goto fail 2025-08-15T00:31:49.2149812Z ) 2025-08-15T00:31:49.2149914Z 2025-08-15T00:31:49.2150069Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:31:49.2156856Z 2025-08-15T00:31:49.2157114Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:31:49.2157746Z call :libtorch_check "type_ptr_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\type_ptr_test.exe" 2025-08-15T00:31:49.2158340Z if errorlevel 1 goto fail 2025-08-15T00:31:49.2158816Z ) 2025-08-15T00:31:49.2167112Z 2025-08-15T00:31:49.2167481Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:31:49.2170908Z 2025-08-15T00:31:49.2171440Z (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-15T00:31:49.2173505Z 2025-08-15T00:31:49.2173967Z (base) C:\actions-runner\_work\pytorch\pytorch>if "type_ptr_test" == "verify_api_visibility" goto :eof 2025-08-15T00:31:49.2174755Z 2025-08-15T00:31:49.2175612Z (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-15T00:31:49.2176590Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\type_ptr_test.exe" 2025-08-15T00:31:49.2177017Z 2025-08-15T00:31:49.2177460Z (base) C:\actions-runner\_work\pytorch\pytorch>if "type_ptr_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:31:49.2178167Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\type_ptr_test.exe" 2025-08-15T00:31:49.2178688Z goto :eof 2025-08-15T00:31:49.2178878Z ) 2025-08-15T00:31:49.2179009Z 2025-08-15T00:31:49.2179365Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/type_ptr_test" 2025-08-15T00:31:55.3782917Z Found test times from artifacts 2025-08-15T00:31:55.4471336Z Found test times from artifacts 2025-08-15T00:31:55.4493559Z Running all tests 2025-08-15T00:31:55.4498972Z Running parallel tests on 3 processes 2025-08-15T00:31:55.4499570Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:31:55.4499981Z Serial tests (0): 2025-08-15T00:31:55.4500250Z Parallel tests (1): 2025-08-15T00:31:55.4500513Z cpp/type_ptr_test 1/1 2025-08-15T00:31:55.4500771Z Name: excluded (est. time: 0.0min) 2025-08-15T00:31:55.4501062Z Serial tests (0): 2025-08-15T00:31:55.4501292Z Parallel tests (0): 2025-08-15T00:31:55.4503239Z Running cpp/type_ptr_test 1/1 ... [2025-08-15 00:31:55.449961] 2025-08-15T00:31:55.4503660Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:31:55.4512915Z 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-b4f23e90b1f97725.xml', '-x', '--reruns=2'] ... [2025-08-15 00:31:55.449961] 2025-08-15T00:31:55.4514618Z 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-15T00:31:57.7867722Z 2025-08-15T00:31:57.7868630Z 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_e4d7c9547f864e57_.log 2025-08-15T00:31:57.7869438Z 2025-08-15T00:32:02.2359745Z Running cpp/type_ptr_test 1/1 ... [2025-08-15 00:32:02.235589] 2025-08-15T00:32:02.2360244Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:32:02.2370017Z 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-45599e259673a6c8.xml', '-x', '--reruns=2'] ... [2025-08-15 00:32:02.236796] 2025-08-15T00:32:05.3802232Z 2025-08-15T00:32:05.3803349Z 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_da1dafb6e67fb466_.log 2025-08-15T00:32:05.3803962Z 2025-08-15T00:32:06.2422580Z Running test batch 'tests to run' cost 10.79 seconds 2025-08-15T00:32:06.2431774Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:32:06.2432251Z Uploading artifacts took 0.00 seconds 2025-08-15T00:32:07.0181412Z 2025-08-15T00:32:07.0182059Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:32:07.0183367Z echo "type_ptr_test" failed with exit code 0 2025-08-15T00:32:07.0183748Z goto fail 2025-08-15T00:32:07.0184022Z ) 2025-08-15T00:32:07.0210308Z 2025-08-15T00:32:07.0211021Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:32:07.0211497Z echo "type_ptr_test" failed with exit code 0 2025-08-15T00:32:07.0211834Z goto fail 2025-08-15T00:32:07.0212030Z ) 2025-08-15T00:32:07.0212161Z 2025-08-15T00:32:07.0212347Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:32:07.0212618Z 2025-08-15T00:32:07.0212757Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:32:07.0213409Z call :libtorch_check "type_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\type_test.exe" 2025-08-15T00:32:07.0214017Z if errorlevel 1 goto fail 2025-08-15T00:32:07.0214259Z ) 2025-08-15T00:32:07.0214364Z 2025-08-15T00:32:07.0214661Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:32:07.0215107Z 2025-08-15T00:32:07.0215593Z (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-15T00:32:07.0216251Z 2025-08-15T00:32:07.0216592Z (base) C:\actions-runner\_work\pytorch\pytorch>if "type_test" == "verify_api_visibility" goto :eof 2025-08-15T00:32:07.0217042Z 2025-08-15T00:32:07.0217790Z (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-15T00:32:07.0218788Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\type_test.exe" 2025-08-15T00:32:07.0219295Z 2025-08-15T00:32:07.0219587Z (base) C:\actions-runner\_work\pytorch\pytorch>if "type_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:32:07.0220272Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\type_test.exe" 2025-08-15T00:32:07.0220754Z goto :eof 2025-08-15T00:32:07.0220974Z ) 2025-08-15T00:32:07.0221077Z 2025-08-15T00:32:07.0221415Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/type_test" 2025-08-15T00:32:13.2161471Z Found test times from artifacts 2025-08-15T00:32:13.2845520Z Found test times from artifacts 2025-08-15T00:32:13.2867542Z Running all tests 2025-08-15T00:32:13.2873047Z Running parallel tests on 3 processes 2025-08-15T00:32:13.2873468Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:32:13.2873794Z Serial tests (0): 2025-08-15T00:32:13.2874032Z Parallel tests (1): 2025-08-15T00:32:13.2874315Z cpp/type_test 1/1 2025-08-15T00:32:13.2874566Z Name: excluded (est. time: 0.0min) 2025-08-15T00:32:13.2874860Z Serial tests (0): 2025-08-15T00:32:13.2875090Z Parallel tests (0): 2025-08-15T00:32:13.2876756Z Running cpp/type_test 1/1 ... [2025-08-15 00:32:13.272027] 2025-08-15T00:32:13.2877177Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:32:13.2888733Z 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-9ab6a8980bd61575.xml', '-x', '--reruns=2'] ... [2025-08-15 00:32:13.287867] 2025-08-15T00:32:13.2890414Z 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-15T00:32:15.6105643Z 2025-08-15T00:32:15.6106552Z cpp/type_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.type_test_1.1_db584ebcdeb6607f_.log 2025-08-15T00:32:15.6108513Z 2025-08-15T00:32:20.0957470Z Running cpp/type_test 1/1 ... [2025-08-15 00:32:20.095503] 2025-08-15T00:32:20.0957880Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:32:20.0969386Z 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-ca0080992b6819b2.xml', '-x', '--reruns=2'] ... [2025-08-15 00:32:20.096689] 2025-08-15T00:32:23.7303442Z 2025-08-15T00:32:23.7304311Z cpp/type_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.type_test_1.1_61b81732ce7a47c6_.log 2025-08-15T00:32:23.7305478Z 2025-08-15T00:32:24.5859310Z Running test batch 'tests to run' cost 11.31 seconds 2025-08-15T00:32:24.5866422Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:32:24.5866931Z Uploading artifacts took 0.00 seconds 2025-08-15T00:32:25.2910664Z 2025-08-15T00:32:25.2911436Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:32:25.2911875Z echo "type_test" failed with exit code 0 2025-08-15T00:32:25.2912204Z goto fail 2025-08-15T00:32:25.2912395Z ) 2025-08-15T00:32:25.2912503Z 2025-08-15T00:32:25.2912693Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:32:25.2913104Z echo "type_test" failed with exit code 0 2025-08-15T00:32:25.2913375Z goto fail 2025-08-15T00:32:25.2913556Z ) 2025-08-15T00:32:25.2913858Z 2025-08-15T00:32:25.2914050Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:32:25.2920504Z 2025-08-15T00:32:25.2920850Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:32:25.2921651Z call :libtorch_check "undefined_tensor_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\undefined_tensor_test.exe" 2025-08-15T00:32:25.2922385Z if errorlevel 1 goto fail 2025-08-15T00:32:25.2922622Z ) 2025-08-15T00:32:25.2931975Z 2025-08-15T00:32:25.2932656Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:32:25.2936024Z 2025-08-15T00:32:25.2936662Z (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-15T00:32:25.2938800Z 2025-08-15T00:32:25.2939320Z (base) C:\actions-runner\_work\pytorch\pytorch>if "undefined_tensor_test" == "verify_api_visibility" goto :eof 2025-08-15T00:32:25.2940143Z 2025-08-15T00:32:25.2940727Z (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-15T00:32:25.2941685Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\undefined_tensor_test.exe" 2025-08-15T00:32:25.2942489Z 2025-08-15T00:32:25.2942904Z (base) C:\actions-runner\_work\pytorch\pytorch>if "undefined_tensor_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:32:25.2943711Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\undefined_tensor_test.exe" 2025-08-15T00:32:25.2944308Z goto :eof 2025-08-15T00:32:25.2944482Z ) 2025-08-15T00:32:25.2944589Z 2025-08-15T00:32:25.2944959Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/undefined_tensor_test" 2025-08-15T00:32:31.4603586Z Found test times from artifacts 2025-08-15T00:32:31.5284728Z Found test times from artifacts 2025-08-15T00:32:31.5306354Z Running all tests 2025-08-15T00:32:31.5312483Z Running parallel tests on 3 processes 2025-08-15T00:32:31.5312850Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:32:31.5313142Z Serial tests (0): 2025-08-15T00:32:31.5313370Z Parallel tests (1): 2025-08-15T00:32:31.5313613Z cpp/undefined_tensor_test 1/1 2025-08-15T00:32:31.5313908Z Name: excluded (est. time: 0.0min) 2025-08-15T00:32:31.5314160Z Serial tests (0): 2025-08-15T00:32:31.5314377Z Parallel tests (0): 2025-08-15T00:32:31.5316025Z Running cpp/undefined_tensor_test 1/1 ... [2025-08-15 00:32:31.523343] 2025-08-15T00:32:31.5316443Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:32:31.5325968Z 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-c2ba8f3542c4dfdd.xml', '-x', '--reruns=2'] ... [2025-08-15 00:32:31.523343] 2025-08-15T00:32:31.5327655Z 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-15T00:32:33.9697769Z 2025-08-15T00:32:33.9698854Z 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_31f1bd053254dd65_.log 2025-08-15T00:32:33.9699877Z 2025-08-15T00:32:38.3905875Z Running cpp/undefined_tensor_test 1/1 ... [2025-08-15 00:32:38.378176] 2025-08-15T00:32:38.3906343Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:32:38.3924405Z 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-3f986bf482944363.xml', '-x', '--reruns=2'] ... [2025-08-15 00:32:38.378176] 2025-08-15T00:32:41.1697844Z 2025-08-15T00:32:41.1699009Z 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_fd71c6c8e1e795ea_.log 2025-08-15T00:32:41.1699687Z 2025-08-15T00:32:41.9845080Z Running test batch 'tests to run' cost 10.46 seconds 2025-08-15T00:32:41.9851477Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:32:41.9851939Z Uploading artifacts took 0.00 seconds 2025-08-15T00:32:42.6869351Z 2025-08-15T00:32:42.6870128Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:32:42.6870973Z echo "undefined_tensor_test" failed with exit code 0 2025-08-15T00:32:42.6871519Z goto fail 2025-08-15T00:32:42.6871743Z ) 2025-08-15T00:32:42.6871866Z 2025-08-15T00:32:42.6872057Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:32:42.6872509Z echo "undefined_tensor_test" failed with exit code 0 2025-08-15T00:32:42.6872831Z goto fail 2025-08-15T00:32:42.6873025Z ) 2025-08-15T00:32:42.6873127Z 2025-08-15T00:32:42.6873282Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:32:42.6879934Z 2025-08-15T00:32:42.6880374Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:32:42.6881138Z call :libtorch_check "verify_api_visibility" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\verify_api_visibility.exe" 2025-08-15T00:32:42.6881824Z if errorlevel 1 goto fail 2025-08-15T00:32:42.6882091Z ) 2025-08-15T00:32:42.6890614Z 2025-08-15T00:32:42.6891109Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:32:42.6894467Z 2025-08-15T00:32:42.6895068Z (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-15T00:32:42.6897372Z 2025-08-15T00:32:42.6897948Z (base) C:\actions-runner\_work\pytorch\pytorch>if "verify_api_visibility" == "verify_api_visibility" goto :eof 2025-08-15T00:32:42.6905162Z 2025-08-15T00:32:42.6905385Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:32:42.6906171Z call :libtorch_check "weakref_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\weakref_test.exe" 2025-08-15T00:32:42.6906859Z if errorlevel 1 goto fail 2025-08-15T00:32:42.6907135Z ) 2025-08-15T00:32:42.6915600Z 2025-08-15T00:32:42.6916003Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:32:42.6919217Z 2025-08-15T00:32:42.6919785Z (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-15T00:32:42.6921823Z 2025-08-15T00:32:42.6922195Z (base) C:\actions-runner\_work\pytorch\pytorch>if "weakref_test" == "verify_api_visibility" goto :eof 2025-08-15T00:32:42.6923029Z 2025-08-15T00:32:42.6923620Z (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-15T00:32:42.6924503Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\weakref_test.exe" 2025-08-15T00:32:42.6925225Z 2025-08-15T00:32:42.6925640Z (base) C:\actions-runner\_work\pytorch\pytorch>if "weakref_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:32:42.6926430Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\weakref_test.exe" 2025-08-15T00:32:42.6926917Z goto :eof 2025-08-15T00:32:42.6927111Z ) 2025-08-15T00:32:42.6927738Z 2025-08-15T00:32:42.6928116Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/weakref_test" 2025-08-15T00:32:48.8155211Z Found test times from artifacts 2025-08-15T00:32:48.8830628Z Found test times from artifacts 2025-08-15T00:32:48.8853564Z Running all tests 2025-08-15T00:32:48.8859144Z Running parallel tests on 3 processes 2025-08-15T00:32:48.8859637Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:32:48.8859927Z Serial tests (0): 2025-08-15T00:32:48.8860190Z Parallel tests (1): 2025-08-15T00:32:48.8860593Z cpp/weakref_test 1/1 2025-08-15T00:32:48.8860876Z Name: excluded (est. time: 0.0min) 2025-08-15T00:32:48.8861230Z Serial tests (0): 2025-08-15T00:32:48.8861550Z Parallel tests (0): 2025-08-15T00:32:48.8862966Z Running cpp/weakref_test 1/1 ... [2025-08-15 00:32:48.883851] 2025-08-15T00:32:48.8863360Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:32:48.8873049Z 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-40972ed401d38515.xml', '-x', '--reruns=2'] ... [2025-08-15 00:32:48.886930] 2025-08-15T00:32:48.8874754Z 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-15T00:32:51.1883871Z 2025-08-15T00:32:51.1884722Z cpp/weakref_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.weakref_test_1.1_cf7f2b61eaed4891_.log 2025-08-15T00:32:51.1885547Z 2025-08-15T00:32:55.6788106Z Running cpp/weakref_test 1/1 ... [2025-08-15 00:32:55.676092] 2025-08-15T00:32:55.6788546Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:32:55.6797581Z 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-38223e206c378303.xml', '-x', '--reruns=2'] ... [2025-08-15 00:32:55.676092] 2025-08-15T00:32:58.3669350Z 2025-08-15T00:32:58.3670244Z cpp/weakref_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.weakref_test_1.1_8ad0c7ec4af6eb58_.log 2025-08-15T00:32:58.3670956Z 2025-08-15T00:32:59.2212173Z Running test batch 'tests to run' cost 10.33 seconds 2025-08-15T00:32:59.2218398Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:32:59.2218896Z Uploading artifacts took 0.00 seconds 2025-08-15T00:32:59.9414585Z 2025-08-15T00:32:59.9415141Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:32:59.9415598Z echo "weakref_test" failed with exit code 0 2025-08-15T00:32:59.9415932Z goto fail 2025-08-15T00:32:59.9416141Z ) 2025-08-15T00:32:59.9416286Z 2025-08-15T00:32:59.9416485Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:32:59.9417050Z echo "weakref_test" failed with exit code 0 2025-08-15T00:32:59.9417382Z goto fail 2025-08-15T00:32:59.9417600Z ) 2025-08-15T00:32:59.9417710Z 2025-08-15T00:32:59.9418019Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:32:59.9425277Z 2025-08-15T00:32:59.9425527Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:32:59.9426226Z call :libtorch_check "wrapdim_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\wrapdim_test.exe" 2025-08-15T00:32:59.9426842Z if errorlevel 1 goto fail 2025-08-15T00:32:59.9427118Z ) 2025-08-15T00:32:59.9435534Z 2025-08-15T00:32:59.9435890Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:32:59.9439225Z 2025-08-15T00:32:59.9439705Z (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-15T00:32:59.9442000Z 2025-08-15T00:32:59.9442433Z (base) C:\actions-runner\_work\pytorch\pytorch>if "wrapdim_test" == "verify_api_visibility" goto :eof 2025-08-15T00:32:59.9443665Z 2025-08-15T00:32:59.9444219Z (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-15T00:32:59.9445140Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\wrapdim_test.exe" 2025-08-15T00:32:59.9446521Z 2025-08-15T00:32:59.9447104Z (base) C:\actions-runner\_work\pytorch\pytorch>if "wrapdim_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:32:59.9447886Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\wrapdim_test.exe" 2025-08-15T00:32:59.9448459Z goto :eof 2025-08-15T00:32:59.9448692Z ) 2025-08-15T00:32:59.9448798Z 2025-08-15T00:32:59.9449152Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/wrapdim_test" 2025-08-15T00:33:05.9993695Z Found test times from artifacts 2025-08-15T00:33:06.0670826Z Found test times from artifacts 2025-08-15T00:33:06.0693161Z Running all tests 2025-08-15T00:33:06.0698602Z Running parallel tests on 3 processes 2025-08-15T00:33:06.0699044Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:33:06.0699335Z Serial tests (0): 2025-08-15T00:33:06.0699587Z Parallel tests (1): 2025-08-15T00:33:06.0699829Z cpp/wrapdim_test 1/1 2025-08-15T00:33:06.0700130Z Name: excluded (est. time: 0.0min) 2025-08-15T00:33:06.0700404Z Serial tests (0): 2025-08-15T00:33:06.0700647Z Parallel tests (0): 2025-08-15T00:33:06.0702192Z Running cpp/wrapdim_test 1/1 ... [2025-08-15 00:33:06.069825] 2025-08-15T00:33:06.0702616Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:33:06.0712007Z 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-c73071336122eb7f.xml', '-x', '--reruns=2'] ... [2025-08-15 00:33:06.070976] 2025-08-15T00:33:06.0713712Z 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-15T00:33:08.3506246Z 2025-08-15T00:33:08.3507208Z cpp/wrapdim_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.wrapdim_test_1.1_63231aece16e2cdd_.log 2025-08-15T00:33:08.3507970Z 2025-08-15T00:33:12.7819182Z Running cpp/wrapdim_test 1/1 ... [2025-08-15 00:33:12.781684] 2025-08-15T00:33:12.7819663Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:33:12.7829249Z 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-957513c8cdb8690e.xml', '-x', '--reruns=2'] ... [2025-08-15 00:33:12.782716] 2025-08-15T00:33:15.4577647Z 2025-08-15T00:33:15.4578513Z cpp/wrapdim_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.wrapdim_test_1.1_e4a280abeadfe274_.log 2025-08-15T00:33:15.4579264Z 2025-08-15T00:33:16.2737573Z Running test batch 'tests to run' cost 10.2 seconds 2025-08-15T00:33:16.2742836Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:33:16.2743325Z Uploading artifacts took 0.00 seconds 2025-08-15T00:33:16.9846251Z 2025-08-15T00:33:16.9846991Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:33:16.9847495Z echo "wrapdim_test" failed with exit code 0 2025-08-15T00:33:16.9847806Z goto fail 2025-08-15T00:33:16.9848016Z ) 2025-08-15T00:33:16.9848138Z 2025-08-15T00:33:16.9848340Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:33:16.9848769Z echo "wrapdim_test" failed with exit code 0 2025-08-15T00:33:16.9849080Z goto fail 2025-08-15T00:33:16.9849285Z ) 2025-08-15T00:33:16.9849383Z 2025-08-15T00:33:16.9849554Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:33:16.9855320Z 2025-08-15T00:33:16.9855585Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-08-15T00:33:16.9856267Z call :libtorch_check "xla_tensor_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\xla_tensor_test.exe" 2025-08-15T00:33:16.9857063Z if errorlevel 1 goto fail 2025-08-15T00:33:16.9857328Z ) 2025-08-15T00:33:16.9866233Z 2025-08-15T00:33:16.9866720Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:33:16.9869967Z 2025-08-15T00:33:16.9870765Z (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-15T00:33:16.9872457Z 2025-08-15T00:33:16.9872881Z (base) C:\actions-runner\_work\pytorch\pytorch>if "xla_tensor_test" == "verify_api_visibility" goto :eof 2025-08-15T00:33:16.9873686Z 2025-08-15T00:33:16.9874243Z (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-15T00:33:16.9875193Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\xla_tensor_test.exe" 2025-08-15T00:33:16.9876145Z 2025-08-15T00:33:16.9876589Z (base) C:\actions-runner\_work\pytorch\pytorch>if "xla_tensor_test" == "c10_intrusive_ptr_benchmark" ( 2025-08-15T00:33:16.9877315Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\xla_tensor_test.exe" 2025-08-15T00:33:16.9877847Z goto :eof 2025-08-15T00:33:16.9878048Z ) 2025-08-15T00:33:16.9878180Z 2025-08-15T00:33:16.9878548Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/xla_tensor_test" 2025-08-15T00:33:23.0940052Z Found test times from artifacts 2025-08-15T00:33:23.1622417Z Found test times from artifacts 2025-08-15T00:33:23.1644627Z Running all tests 2025-08-15T00:33:23.1650517Z Running parallel tests on 3 processes 2025-08-15T00:33:23.1650893Z Name: tests to run (est. time: 0.0min) 2025-08-15T00:33:23.1651212Z Serial tests (0): 2025-08-15T00:33:23.1651479Z Parallel tests (1): 2025-08-15T00:33:23.1651724Z cpp/xla_tensor_test 1/1 2025-08-15T00:33:23.1652030Z Name: excluded (est. time: 0.0min) 2025-08-15T00:33:23.1652304Z Serial tests (0): 2025-08-15T00:33:23.1652584Z Parallel tests (0): 2025-08-15T00:33:23.1654032Z Running cpp/xla_tensor_test 1/1 ... [2025-08-15 00:33:23.162990] 2025-08-15T00:33:23.1654463Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:33:23.1664230Z 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-845333538781018f.xml', '-x', '--reruns=2'] ... [2025-08-15 00:33:23.162990] 2025-08-15T00:33:23.1666061Z 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-15T00:33:25.4622728Z 2025-08-15T00:33:25.4623646Z 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_7a88a7caeecc3234_.log 2025-08-15T00:33:25.4624292Z 2025-08-15T00:33:29.9182846Z Running cpp/xla_tensor_test 1/1 ... [2025-08-15 00:33:29.906081] 2025-08-15T00:33:29.9183346Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-15T00:33:29.9192146Z 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-f578689f6d5e47c3.xml', '-x', '--reruns=2'] ... [2025-08-15 00:33:29.906081] 2025-08-15T00:33:32.6640490Z 2025-08-15T00:33:32.6641334Z 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_c66a46c9c7b130c2_.log 2025-08-15T00:33:32.6642364Z 2025-08-15T00:33:33.5512758Z Running test batch 'tests to run' cost 10.39 seconds 2025-08-15T00:33:33.5519591Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:33:33.5520068Z Uploading artifacts took 0.00 seconds 2025-08-15T00:33:34.2489080Z 2025-08-15T00:33:34.2489628Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-08-15T00:33:34.2490619Z echo "xla_tensor_test" failed with exit code 0 2025-08-15T00:33:34.2491238Z goto fail 2025-08-15T00:33:34.2491470Z ) 2025-08-15T00:33:34.2491665Z 2025-08-15T00:33:34.2491873Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-15T00:33:34.2492388Z echo "xla_tensor_test" failed with exit code 0 2025-08-15T00:33:34.2492711Z goto fail 2025-08-15T00:33:34.2492930Z ) 2025-08-15T00:33:34.2493036Z 2025-08-15T00:33:34.2493205Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:33:34.2513259Z 2025-08-15T00:33:34.2513826Z (base) C:\actions-runner\_work\pytorch\pytorch>goto :eof 2025-08-15T00:33:34.2535934Z + [[ 0 == \1 ]] 2025-08-15T00:33:34.2544783Z + assert_git_not_dirty 2025-08-15T00:33:34.2545133Z + [[ win-vs2022-cpu-py3 != *rocm* ]] 2025-08-15T00:33:34.2545451Z + [[ win-vs2022-cpu-py3 != *xla* ]] 2025-08-15T00:33:34.2685866Z ++ git status --porcelain 2025-08-15T00:33:34.2739434Z ++ grep -v '?? third_party' 2025-08-15T00:33:49.1221832Z ++ true 2025-08-15T00:33:49.1225927Z + git_status= 2025-08-15T00:33:49.1226193Z + [[ -n '' ]] 2025-08-15T00:33:49.1226461Z + echo 'TEST PASSED' 2025-08-15T00:33:49.1226706Z TEST PASSED 2025-08-15T00:33:49.2269069Z ##[group]Run cat test/**/*_toprint.log || true 2025-08-15T00:33:49.2269514Z cat test/**/*_toprint.log || true 2025-08-15T00:33:49.2288832Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-15T00:33:49.2289310Z env: 2025-08-15T00:33:49.2289530Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:33:49.2289953Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:33:49.2290499Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:33:49.2291012Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:33:49.2291448Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:33:49.2291763Z ##[endgroup] 2025-08-15T00:33:49.3191129Z cat: 'test/**/*_toprint.log': No such file or directory 2025-08-15T00:33:49.3340216Z ##[group]Run kill "$MONITOR_SCRIPT_PID" 2025-08-15T00:33:49.3340571Z kill "$MONITOR_SCRIPT_PID" 2025-08-15T00:33:49.3359495Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-15T00:33:49.3359922Z env: 2025-08-15T00:33:49.3360190Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:33:49.3360558Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:33:49.3361056Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:33:49.3361614Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:33:49.3361999Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:33:49.3362351Z MONITOR_SCRIPT_PID: 600 2025-08-15T00:33:49.3362581Z ##[endgroup] 2025-08-15T00:33:49.4420937Z Prepare all required actions 2025-08-15T00:33:49.4421543Z Getting action download info 2025-08-15T00:33:49.5791786Z Download action repository 'seemethere/upload-artifact-s3@v5' (SHA:baba72d0712b404f646cebe0730933554ebce96a) 2025-08-15T00:33:49.8544896Z Download action repository 'actions/upload-artifact@v4' (SHA:ea165f8d65b6e75b540449e92b4886f43607fa02) 2025-08-15T00:33:50.2811982Z ##[group]Run ./.github/actions/upload-test-artifacts 2025-08-15T00:33:50.2812306Z with: 2025-08-15T00:33:50.2812675Z file-suffix: test-default-1-3-lf.windows.4xlarge.nonephemeral_48128743919 2025-08-15T00:33:50.2813111Z s3-bucket: gha-artifacts 2025-08-15T00:33:50.2813358Z env: 2025-08-15T00:33:50.2813538Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:33:50.2813912Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:33:50.2814420Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:33:50.2814949Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:33:50.2815341Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:33:50.2815639Z ##[endgroup] 2025-08-15T00:33:50.2922562Z ##[group]Run # -ir => recursive include all files in pattern 2025-08-15T00:33:50.2923008Z # -ir => recursive include all files in pattern 2025-08-15T00:33:50.2923459Z 7z a "test-jsons-$Env:FILE_SUFFIX.zip" -ir'!test\test-reports\*.json' 2025-08-15T00:33:50.2938803Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-15T00:33:50.2939270Z env: 2025-08-15T00:33:50.2939458Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:33:50.2939851Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:33:50.2940360Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:33:50.2940842Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:33:50.2941256Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:33:50.2941706Z FILE_SUFFIX: test-default-1-3-lf.windows.4xlarge.nonephemeral_48128743919 2025-08-15T00:33:50.2942145Z ##[endgroup] 2025-08-15T00:33:50.7062031Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-15T00:33:50.7151489Z Finished 2025-08-15T00:33:50.8745166Z 2025-08-15T00:33:50.8745697Z 7-Zip 24.09 (x64) : Copyright (c) 1999-2024 Igor Pavlov : 2024-11-29 2025-08-15T00:33:50.8745995Z 2025-08-15T00:33:50.8746105Z Scanning the drive: 2025-08-15T00:33:50.8746332Z 109 files, 28325 bytes (28 KiB) 2025-08-15T00:33:50.8746501Z 2025-08-15T00:33:50.8746838Z Creating archive: test-jsons-test-default-1-3-lf.windows.4xlarge.nonephemeral_48128743919.zip 2025-08-15T00:33:50.8747285Z 2025-08-15T00:33:50.8747419Z Add new data to archive: 109 files, 28325 bytes (28 KiB) 2025-08-15T00:33:50.8747658Z 2025-08-15T00:33:50.8747661Z 2025-08-15T00:33:50.8747761Z Files read from disk: 109 2025-08-15T00:33:50.8748006Z Archive size: 35690 bytes (35 KiB) 2025-08-15T00:33:50.8748269Z Everything is Ok 2025-08-15T00:33:50.9025660Z ##[group]Run # -ir => recursive include all files in pattern 2025-08-15T00:33:50.9026086Z # -ir => recursive include all files in pattern 2025-08-15T00:33:50.9026644Z 7z a "test-reports-$Env:FILE_SUFFIX.zip" -ir'!test\test-reports\*.xml' -ir'!test\test-reports\*.csv' 2025-08-15T00:33:50.9042462Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-15T00:33:50.9043007Z env: 2025-08-15T00:33:50.9043187Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:33:50.9043562Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:33:50.9044067Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:33:50.9044520Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:33:50.9044910Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:33:50.9046850Z FILE_SUFFIX: test-default-1-3-lf.windows.4xlarge.nonephemeral_48128743919 2025-08-15T00:33:50.9047315Z ##[endgroup] 2025-08-15T00:33:51.2825807Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-15T00:33:51.2873198Z Finished 2025-08-15T00:33:51.7234670Z 2025-08-15T00:33:51.7235174Z 7-Zip 24.09 (x64) : Copyright (c) 1999-2024 Igor Pavlov : 2024-11-29 2025-08-15T00:33:51.7235472Z 2025-08-15T00:33:51.7235567Z Scanning the drive: 2025-08-15T00:33:51.7235813Z 426 files, 22712157 bytes (22 MiB) 2025-08-15T00:33:51.7236029Z 2025-08-15T00:33:51.7236381Z Creating archive: test-reports-test-default-1-3-lf.windows.4xlarge.nonephemeral_48128743919.zip 2025-08-15T00:33:51.7236829Z 2025-08-15T00:33:51.7236969Z Add new data to archive: 426 files, 22712157 bytes (22 MiB) 2025-08-15T00:33:51.7237270Z 2025-08-15T00:33:51.7237275Z 2025-08-15T00:33:51.7237361Z Files read from disk: 426 2025-08-15T00:33:51.7237630Z Archive size: 950435 bytes (929 KiB) 2025-08-15T00:33:51.7237924Z Everything is Ok 2025-08-15T00:33:51.7514029Z ##[group]Run # -ir => recursive include all files in pattern 2025-08-15T00:33:51.7514458Z # -ir => recursive include all files in pattern 2025-08-15T00:33:51.7514991Z 7z a "logs-$Env:FILE_SUFFIX.zip" 'usage_log.txt' -ir'!test\test-reports\*.log' 2025-08-15T00:33:51.7530545Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-15T00:33:51.7530986Z env: 2025-08-15T00:33:51.7531197Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:33:51.7531577Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:33:51.7532094Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:33:51.7532553Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:33:51.7532938Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:33:51.7533394Z FILE_SUFFIX: test-default-1-3-lf.windows.4xlarge.nonephemeral_48128743919 2025-08-15T00:33:51.7533801Z ##[endgroup] 2025-08-15T00:33:52.1504900Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-15T00:33:52.1574921Z Finished 2025-08-15T00:33:52.5240434Z 2025-08-15T00:33:52.5241141Z 7-Zip 24.09 (x64) : Copyright (c) 1999-2024 Igor Pavlov : 2024-11-29 2025-08-15T00:33:52.5241453Z 2025-08-15T00:33:52.5241535Z Scanning the drive: 2025-08-15T00:33:52.5241795Z 576 files, 25037529 bytes (24 MiB) 2025-08-15T00:33:52.5241978Z 2025-08-15T00:33:52.5242292Z Creating archive: logs-test-default-1-3-lf.windows.4xlarge.nonephemeral_48128743919.zip 2025-08-15T00:33:52.5242747Z 2025-08-15T00:33:52.5242943Z Add new data to archive: 576 files, 25037529 bytes (24 MiB) 2025-08-15T00:33:52.5243195Z 2025-08-15T00:33:52.5243199Z 2025-08-15T00:33:52.5243287Z Files read from disk: 576 2025-08-15T00:33:52.5243531Z Archive size: 1699635 bytes (1660 KiB) 2025-08-15T00:33:52.5243788Z Everything is Ok 2025-08-15T00:33:52.5553855Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-08-15T00:33:52.5554187Z with: 2025-08-15T00:33:52.5554384Z s3-bucket: gha-artifacts 2025-08-15T00:33:52.5554687Z s3-prefix: pytorch/pytorch/16976255045/1/artifact 2025-08-15T00:33:52.5555002Z retention-days: 14 2025-08-15T00:33:52.5555237Z if-no-files-found: warn 2025-08-15T00:33:52.5555491Z path: test-jsons-*.zip 2025-08-15T00:33:52.5555710Z name: artifact 2025-08-15T00:33:52.5555914Z region: us-east-1 2025-08-15T00:33:52.5556112Z env: 2025-08-15T00:33:52.5556390Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:33:52.5556759Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:33:52.5557284Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:33:52.5557759Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:33:52.5558157Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:33:52.5558456Z ##[endgroup] 2025-08-15T00:33:52.9591102Z NOTE: s3-prefix specified, ignoring name parameter 2025-08-15T00:33:52.9591580Z With the provided path, there will be 1 file uploaded 2025-08-15T00:33:52.9591998Z Uploading to s3 prefix: pytorch/pytorch/16976255045/1/artifact 2025-08-15T00:33:52.9606165Z Starting upload of test-jsons-test-default-1-3-lf.windows.4xlarge.nonephemeral_48128743919.zip 2025-08-15T00:33:53.1134863Z Finished upload of test-jsons-test-default-1-3-lf.windows.4xlarge.nonephemeral_48128743919.zip 2025-08-15T00:33:53.1390128Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-08-15T00:33:53.1390488Z with: 2025-08-15T00:33:53.1390680Z s3-bucket: gha-artifacts 2025-08-15T00:33:53.1391008Z s3-prefix: pytorch/pytorch/16976255045/1/artifact 2025-08-15T00:33:53.1391352Z retention-days: 14 2025-08-15T00:33:53.1391610Z if-no-files-found: error 2025-08-15T00:33:53.1391864Z path: test-reports-*.zip 2025-08-15T00:33:53.1392132Z name: artifact 2025-08-15T00:33:53.1392352Z region: us-east-1 2025-08-15T00:33:53.1392558Z env: 2025-08-15T00:33:53.1392781Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:33:53.1393188Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:33:53.1393829Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:33:53.1394387Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:33:53.1394823Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:33:53.1395144Z ##[endgroup] 2025-08-15T00:33:53.5424094Z NOTE: s3-prefix specified, ignoring name parameter 2025-08-15T00:33:53.5424539Z With the provided path, there will be 1 file uploaded 2025-08-15T00:33:53.5424955Z Uploading to s3 prefix: pytorch/pytorch/16976255045/1/artifact 2025-08-15T00:33:53.5438477Z Starting upload of test-reports-test-default-1-3-lf.windows.4xlarge.nonephemeral_48128743919.zip 2025-08-15T00:33:53.7953725Z Finished upload of test-reports-test-default-1-3-lf.windows.4xlarge.nonephemeral_48128743919.zip 2025-08-15T00:33:53.8206378Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-08-15T00:33:53.8206683Z with: 2025-08-15T00:33:53.8206866Z s3-bucket: gha-artifacts 2025-08-15T00:33:53.8207149Z s3-prefix: pytorch/pytorch/16976255045/1/artifact 2025-08-15T00:33:53.8207461Z retention-days: 14 2025-08-15T00:33:53.8207681Z if-no-files-found: ignore 2025-08-15T00:33:53.8207911Z path: logs-*.zip 2025-08-15T00:33:53.8208105Z name: artifact 2025-08-15T00:33:53.8208298Z region: us-east-1 2025-08-15T00:33:53.8208480Z env: 2025-08-15T00:33:53.8208707Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:33:53.8209089Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:33:53.8209659Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:33:53.8210120Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:33:53.8210506Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:33:53.8210795Z ##[endgroup] 2025-08-15T00:33:54.2168477Z NOTE: s3-prefix specified, ignoring name parameter 2025-08-15T00:33:54.2169011Z With the provided path, there will be 1 file uploaded 2025-08-15T00:33:54.2169420Z Uploading to s3 prefix: pytorch/pytorch/16976255045/1/artifact 2025-08-15T00:33:54.2182311Z Starting upload of logs-test-default-1-3-lf.windows.4xlarge.nonephemeral_48128743919.zip 2025-08-15T00:33:54.4819156Z Finished upload of logs-test-default-1-3-lf.windows.4xlarge.nonephemeral_48128743919.zip 2025-08-15T00:33:54.5109644Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-08-15T00:33:54.5110059Z with: 2025-08-15T00:33:54.5110250Z s3-bucket: gha-artifacts 2025-08-15T00:33:54.5110532Z s3-prefix: pytorch/pytorch/16976255045/1/artifact 2025-08-15T00:33:54.5110834Z retention-days: 14 2025-08-15T00:33:54.5111056Z if-no-files-found: ignore 2025-08-15T00:33:54.5111281Z path: debug-*.zip 2025-08-15T00:33:54.5111486Z name: artifact 2025-08-15T00:33:54.5111674Z region: us-east-1 2025-08-15T00:33:54.5111870Z env: 2025-08-15T00:33:54.5112157Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:33:54.5112527Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:33:54.5113042Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:33:54.5113577Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:33:54.5114015Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:33:54.5114297Z ##[endgroup] 2025-08-15T00:33:54.8956704Z No files were found with the provided path: debug-*.zip. No artifacts will be uploaded. 2025-08-15T00:33:54.9259761Z Prepare all required actions 2025-08-15T00:33:54.9260157Z Getting action download info 2025-08-15T00:33:55.0369718Z ##[group]Run ./.github/actions/upload-utilization-stats 2025-08-15T00:33:55.0370043Z with: 2025-08-15T00:33:55.0370284Z job_id: 48128743919 2025-08-15T00:33:55.0370710Z job_name: win-vs2022-cpu-py3 / test (default, 1, 3, lf.windows.4xlarge.nonephemeral) 2025-08-15T00:33:55.0371150Z workflow_name: trunk 2025-08-15T00:33:55.0371370Z workflow_run_id: 16976255045 2025-08-15T00:33:55.0371607Z workflow_attempt: 1 2025-08-15T00:33:55.0371810Z env: 2025-08-15T00:33:55.0372072Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:33:55.0372446Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:33:55.0372956Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:33:55.0373444Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:33:55.0373862Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:33:55.0374148Z ##[endgroup] 2025-08-15T00:33:55.0460290Z ##[group]Run echo "workflow_id: 16976255045" 2025-08-15T00:33:55.0460608Z echo "workflow_id: 16976255045" 2025-08-15T00:33:55.0460894Z echo "workflow_attempt: 1" 2025-08-15T00:33:55.0461261Z echo "workflow_Name: trunk" 2025-08-15T00:33:55.0461531Z echo "job_id: 48128743919" 2025-08-15T00:33:55.0462004Z echo "job_name: win-vs2022-cpu-py3 / test (default, 1, 3, lf.windows.4xlarge.nonephemeral)" 2025-08-15T00:33:55.0462492Z echo "artifact_prefix: " 2025-08-15T00:33:55.0462771Z python3 --version 2025-08-15T00:33:55.0483679Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-15T00:33:55.0484102Z env: 2025-08-15T00:33:55.0484292Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:33:55.0484662Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:33:55.0485185Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:33:55.0485646Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:33:55.0486033Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:33:55.0486313Z ##[endgroup] 2025-08-15T00:33:55.0695943Z workflow_id: 16976255045 2025-08-15T00:33:55.0696214Z workflow_attempt: 1 2025-08-15T00:33:55.0696432Z workflow_Name: trunk 2025-08-15T00:33:55.0696628Z job_id: 48128743919 2025-08-15T00:33:55.0697000Z job_name: win-vs2022-cpu-py3 / test (default, 1, 3, lf.windows.4xlarge.nonephemeral) 2025-08-15T00:33:55.0697443Z artifact_prefix: 2025-08-15T00:33:55.0879851Z Python 3.9.19 2025-08-15T00:33:55.1019335Z ##[group]Run nick-fields/retry@v3.0.0 2025-08-15T00:33:55.1019608Z with: 2025-08-15T00:33:55.1019780Z shell: bash 2025-08-15T00:33:55.1019977Z timeout_minutes: 5 2025-08-15T00:33:55.1020178Z max_attempts: 5 2025-08-15T00:33:55.1020474Z retry_wait_seconds: 30 2025-08-15T00:33:55.1021030Z 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-15T00:33:55.1021645Z polling_interval_seconds: 1 2025-08-15T00:33:55.1021889Z warning_on_retry: true 2025-08-15T00:33:55.1022112Z continue_on_error: false 2025-08-15T00:33:55.1022331Z env: 2025-08-15T00:33:55.1022500Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:33:55.1022861Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:33:55.1023362Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:33:55.1023830Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:33:55.1024218Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:33:55.1024497Z ##[endgroup] 2025-08-15T00:33:56.4881377Z Collecting python-dateutil==2.8.2 2025-08-15T00:33:56.6824057Z Downloading python_dateutil-2.8.2-py2.py3-none-any.whl.metadata (8.2 kB) 2025-08-15T00:33:57.3995178Z Collecting boto3==1.35.42 2025-08-15T00:33:57.4049076Z Downloading boto3-1.35.42-py3-none-any.whl.metadata (6.7 kB) 2025-08-15T00:33:57.6322640Z Collecting pandas==2.1.3 2025-08-15T00:33:57.6386984Z Downloading pandas-2.1.3-cp39-cp39-win_amd64.whl.metadata (18 kB) 2025-08-15T00:33:57.6716232Z Requirement already satisfied: dataclasses_json==0.6.7 in c:\jenkins\miniconda3\lib\site-packages (0.6.7) 2025-08-15T00:33:57.6739190Z Requirement already satisfied: six>=1.5 in c:\jenkins\miniconda3\lib\site-packages (from python-dateutil==2.8.2) (1.17.0) 2025-08-15T00:33:58.4096452Z Collecting botocore<1.36.0,>=1.35.42 (from boto3==1.35.42) 2025-08-15T00:33:58.4156436Z Downloading botocore-1.35.99-py3-none-any.whl.metadata (5.7 kB) 2025-08-15T00:33:58.4254132Z 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-15T00:33:58.4509103Z Collecting s3transfer<0.11.0,>=0.10.0 (from boto3==1.35.42) 2025-08-15T00:33:58.4950054Z Downloading s3transfer-0.10.4-py3-none-any.whl.metadata (1.7 kB) 2025-08-15T00:33:58.9163308Z Collecting numpy<2,>=1.22.4 (from pandas==2.1.3) 2025-08-15T00:33:58.9258579Z Downloading numpy-1.26.4-cp39-cp39-win_amd64.whl.metadata (61 kB) 2025-08-15T00:33:58.9740026Z ---------------------------------------- 61.0/61.0 kB 1.6 MB/s eta 0:00:00 2025-08-15T00:33:59.0501248Z Collecting pytz>=2020.1 (from pandas==2.1.3) 2025-08-15T00:33:59.0560587Z Downloading pytz-2025.2-py2.py3-none-any.whl.metadata (22 kB) 2025-08-15T00:33:59.0891299Z Collecting tzdata>=2022.1 (from pandas==2.1.3) 2025-08-15T00:33:59.0948845Z Downloading tzdata-2025.2-py2.py3-none-any.whl.metadata (1.4 kB) 2025-08-15T00:33:59.1091596Z 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-15T00:33:59.1099429Z 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-15T00:33:59.1228032Z 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-15T00:33:59.1368495Z 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-15T00:33:59.3693055Z 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-15T00:33:59.3701779Z 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-15T00:33:59.4147200Z Downloading python_dateutil-2.8.2-py2.py3-none-any.whl (247 kB) 2025-08-15T00:33:59.4359955Z --------------------------------------- 247.7/247.7 kB 15.8 MB/s eta 0:00:00 2025-08-15T00:33:59.4510972Z Downloading boto3-1.35.42-py3-none-any.whl (139 kB) 2025-08-15T00:33:59.4602976Z ---------------------------------------- 139.2/139.2 kB 8.1 MB/s eta 0:00:00 2025-08-15T00:33:59.4656843Z Downloading pandas-2.1.3-cp39-cp39-win_amd64.whl (10.8 MB) 2025-08-15T00:33:59.5487108Z ---------------------------------------- 10.8/10.8 MB 131.1 MB/s eta 0:00:00 2025-08-15T00:33:59.5534272Z Downloading botocore-1.35.99-py3-none-any.whl (13.3 MB) 2025-08-15T00:33:59.6487120Z ---------------------------------------- 13.3/13.3 MB 131.0 MB/s eta 0:00:00 2025-08-15T00:33:59.6540005Z Downloading numpy-1.26.4-cp39-cp39-win_amd64.whl (15.8 MB) 2025-08-15T00:33:59.8129175Z ---------------------------------------- 15.8/15.8 MB 81.8 MB/s eta 0:00:00 2025-08-15T00:33:59.8235327Z Downloading pytz-2025.2-py2.py3-none-any.whl (509 kB) 2025-08-15T00:33:59.8383278Z --------------------------------------- 509.2/509.2 kB 31.2 MB/s eta 0:00:00 2025-08-15T00:33:59.8435747Z Downloading s3transfer-0.10.4-py3-none-any.whl (83 kB) 2025-08-15T00:33:59.8514512Z ---------------------------------------- 83.2/83.2 kB ? eta 0:00:00 2025-08-15T00:33:59.8586548Z Downloading tzdata-2025.2-py2.py3-none-any.whl (347 kB) 2025-08-15T00:33:59.8714046Z --------------------------------------- 347.8/347.8 kB 21.1 MB/s eta 0:00:00 2025-08-15T00:34:01.3966469Z Installing collected packages: pytz, tzdata, python-dateutil, numpy, pandas, botocore, s3transfer, boto3 2025-08-15T00:34:02.1519123Z Attempting uninstall: python-dateutil 2025-08-15T00:34:02.1532459Z Found existing installation: python-dateutil 2.9.0.post0 2025-08-15T00:34:02.1617848Z Uninstalling python-dateutil-2.9.0.post0: 2025-08-15T00:34:02.1643290Z Successfully uninstalled python-dateutil-2.9.0.post0 2025-08-15T00:34:02.2562186Z Attempting uninstall: numpy 2025-08-15T00:34:02.2572233Z Found existing installation: numpy 1.22.3 2025-08-15T00:34:02.4190460Z Uninstalling numpy-1.22.3: 2025-08-15T00:34:02.6162348Z Successfully uninstalled numpy-1.22.3 2025-08-15T00:34:05.7249657Z WARNING: The script f2py.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-15T00:34:05.7250792Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-15T00:34:12.6485139Z Attempting uninstall: botocore 2025-08-15T00:34:12.6495931Z Found existing installation: botocore 1.37.10 2025-08-15T00:34:12.8597276Z Uninstalling botocore-1.37.10: 2025-08-15T00:34:12.9537439Z Successfully uninstalled botocore-1.37.10 2025-08-15T00:34:15.9182558Z Attempting uninstall: s3transfer 2025-08-15T00:34:15.9197785Z Found existing installation: s3transfer 0.11.2 2025-08-15T00:34:15.9292158Z Uninstalling s3transfer-0.11.2: 2025-08-15T00:34:15.9317651Z Successfully uninstalled s3transfer-0.11.2 2025-08-15T00:34:16.0135283Z Attempting uninstall: boto3 2025-08-15T00:34:16.0143779Z Found existing installation: boto3 1.37.10 2025-08-15T00:34:16.0317467Z Uninstalling boto3-1.37.10: 2025-08-15T00:34:16.0366015Z Successfully uninstalled boto3-1.37.10 2025-08-15T00:34:16.2379684Z 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-15T00:34:16.2380632Z scipy 1.6.3 requires numpy<1.23.0,>=1.16.5, but you have numpy 1.26.4 which is incompatible. 2025-08-15T00:34:16.2381441Z 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-15T00:34:17.3689704Z Command completed after 1 attempt(s). 2025-08-15T00:34:17.3837295Z ##[group]Run python3 -m tools.stats.upload_utilization_stats.upload_utilization_stats \ 2025-08-15T00:34:17.3837929Z python3 -m tools.stats.upload_utilization_stats.upload_utilization_stats \ 2025-08-15T00:34:17.3838445Z  --workflow-run-id "16976255045" \ 2025-08-15T00:34:17.3838890Z  --workflow-name "trunk" \ 2025-08-15T00:34:17.3839197Z  --workflow-run-attempt "1" \ 2025-08-15T00:34:17.3839479Z  --job-id "48128743919" \ 2025-08-15T00:34:17.3839926Z  --job-name "win-vs2022-cpu-py3 / test (default, 1, 3, lf.windows.4xlarge.nonephemeral)" \ 2025-08-15T00:34:17.3840409Z  --local-path "" \ 2025-08-15T00:34:17.3840654Z  --artifact-prefix "" 2025-08-15T00:34:17.3859756Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-15T00:34:17.3860179Z env: 2025-08-15T00:34:17.3860379Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:34:17.3860753Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:34:17.3861323Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:34:17.3861842Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:34:17.3862234Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:34:17.3862684Z ##[endgroup] 2025-08-15T00:34:21.7343883Z repo: pytorch/pytorch 2025-08-15T00:34:21.7344224Z Search for test log in s3 bucket: ossci-utilization 2025-08-15T00:34:21.7344740Z Downloading logs-test-default-1-3-lf.windows.4xlarge.nonephemeral_48128743919.zip 2025-08-15T00:34:21.7345490Z extracting usage_log.txt from zip file logs-test-default-1-3-lf.windows.4xlarge.nonephemeral_48128743919.zip 2025-08-15T00:34:21.7346058Z Converted Log Model: UtilizationMetadata: 2025-08-15T00:34:21.7347312Z UtilizationMetadata(level='metadata', workflow_id='16976255045', job_id='48128743919', workflow_name='trunk', job_name='win-vs2022-cpu-py3 / test (default, 1, 3, lf.windows.4xlarge.nonephemeral)', usage_collect_interval=1.0, data_model_version=1.5, start_at=1755208030, gpu_count=0, cpu_count=16, gpu_type=None, error=None) 2025-08-15T00:34:21.7348817Z [Db Segments] detected pytest cmd: 119, generated segments: 119 2025-08-15T00:34:21.7349188Z [db model] Peek db timeseries 2025-08-15T00:34:21.7349427Z :{ 2025-08-15T00:34:21.7349613Z "created_at": 1755218060, 2025-08-15T00:34:21.7349860Z "type": "utilization", 2025-08-15T00:34:21.7350076Z "tags": [ 2025-08-15T00:34:21.7350275Z "record" 2025-08-15T00:34:21.7350451Z ], 2025-08-15T00:34:21.7350628Z "time_stamp": 1755208030, 2025-08-15T00:34:21.7350871Z "repo": "pytorch/pytorch", 2025-08-15T00:34:21.7351104Z "workflow_id": 16976255045, 2025-08-15T00:34:21.7351340Z "run_attempt": 1, 2025-08-15T00:34:21.7351547Z "job_id": 48128743919, 2025-08-15T00:34:21.7351772Z "workflow_name": "trunk", 2025-08-15T00:34:21.7352182Z "job_name": "win-vs2022-cpu-py3 / test (default, 1, 3, lf.windows.4xlarge.nonephemeral)", 2025-08-15T00:34:21.7352624Z "json_data": "{}" 2025-08-15T00:34:21.7352818Z } 2025-08-15T00:34:21.7353265Z Writing 1 documents to S3 ossci-utilization/util_metadata/v_1.5/pytorch/pytorch/16976255045/1/48128743919/metadata 2025-08-15T00:34:21.7354114Z Done! Finish writing document to S3 ossci-utilization/util_metadata/v_1.5/pytorch/pytorch/16976255045/1/48128743919/metadata 2025-08-15T00:34:21.7354991Z Writing 1992 documents to S3 ossci-utilization/util_timeseries/v_1.5/pytorch/pytorch/16976255045/1/48128743919/time_series 2025-08-15T00:34:21.7355884Z Done! Finish writing document to S3 ossci-utilization/util_timeseries/v_1.5/pytorch/pytorch/16976255045/1/48128743919/time_series 2025-08-15T00:34:21.8575523Z ##[group]Run python3 .github/scripts/parse_ref.py 2025-08-15T00:34:21.8575922Z python3 .github/scripts/parse_ref.py 2025-08-15T00:34:21.8595255Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-15T00:34:21.8595684Z env: 2025-08-15T00:34:21.8595876Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:34:21.8596311Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:34:21.8596864Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:34:21.8597420Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:34:21.8597807Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:34:21.8598096Z ##[endgroup] 2025-08-15T00:34:21.9214984Z Setting output branch=main 2025-08-15T00:34:21.9365475Z ##[group]Run # This step removes PyTorch installed by the test to give a clean slate 2025-08-15T00:34:21.9366088Z # This step removes PyTorch installed by the test to give a clean slate 2025-08-15T00:34:21.9366492Z # to the next job 2025-08-15T00:34:21.9366756Z python3 -mpip uninstall -y torch 2025-08-15T00:34:21.9385170Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-15T00:34:21.9385617Z env: 2025-08-15T00:34:21.9385793Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:34:21.9386166Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:34:21.9386666Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:34:21.9387150Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:34:21.9387539Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:34:21.9387819Z ##[endgroup] 2025-08-15T00:34:22.4577668Z Found existing installation: torch 2.9.0a0+git1fc683c 2025-08-15T00:34:23.6998557Z Uninstalling torch-2.9.0a0+git1fc683c: 2025-08-15T00:34:23.9516182Z Successfully uninstalled torch-2.9.0a0+git1fc683c 2025-08-15T00:34:26.4357236Z Prepare all required actions 2025-08-15T00:34:26.4357710Z Getting action download info 2025-08-15T00:34:26.5660741Z ##[group]Run ./.github/actions/teardown-win 2025-08-15T00:34:26.5661130Z with: 2025-08-15T00:34:26.5661316Z env: 2025-08-15T00:34:26.5661493Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:34:26.5661866Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:34:26.5662367Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:34:26.5662841Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:34:26.5663223Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:34:26.5663514Z ##[endgroup] 2025-08-15T00:34:26.5750405Z ##[group]Run .github\scripts\wait_for_ssh_to_drain.ps1 2025-08-15T00:34:26.5750806Z .github\scripts\wait_for_ssh_to_drain.ps1 2025-08-15T00:34:26.5766074Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-15T00:34:26.5766509Z env: 2025-08-15T00:34:26.5766704Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:34:26.5767070Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:34:26.5767582Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:34:26.5768053Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:34:26.5768433Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:34:26.5768717Z ##[endgroup] 2025-08-15T00:34:26.9539494Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-15T00:34:26.9586285Z Finished 2025-08-15T00:34:27.0720789Z Holding runner until all ssh sessions have logged out 2025-08-15T00:34:27.0969157Z ##[group]Run .github\scripts\kill_active_ssh_sessions.ps1 2025-08-15T00:34:27.0969580Z .github\scripts\kill_active_ssh_sessions.ps1 2025-08-15T00:34:27.0985120Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-15T00:34:27.0985612Z env: 2025-08-15T00:34:27.0985798Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:34:27.0986174Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:34:27.0986680Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:34:27.0987150Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:34:27.0987543Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:34:27.0987907Z ##[endgroup] 2025-08-15T00:34:27.4730874Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-15T00:34:27.4778433Z Finished 2025-08-15T00:34:27.5145266Z ##[group]Run pytorch/test-infra/.github/actions/cleanup-runner@main 2025-08-15T00:34:27.5145657Z env: 2025-08-15T00:34:27.5145846Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:34:27.5146218Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:34:27.5146738Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:34:27.5147194Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:34:27.5147581Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:34:27.5147871Z ##[endgroup] 2025-08-15T00:34:27.5219164Z ##[group]Run # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-08-15T00:34:27.5219887Z # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-08-15T00:34:27.5220541Z # Below is the list of commands that could lock $GITHUB_WORKSPACE gathered from sysinternals 2025-08-15T00:34:27.5221016Z # handle tool 2025-08-15T00:34:27.5221347Z $processes = "python", "ninja", "cl", "nvcc", "cmd", "sccache", "git" 2025-08-15T00:34:27.5221761Z Foreach ($process In $processes) { 2025-08-15T00:34:27.5222041Z  Try { 2025-08-15T00:34:27.5223780Z  # https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/stop-process 2025-08-15T00:34:27.5224521Z  Get-Process -Name $process -ErrorAction Stop | Stop-Process -Force 2025-08-15T00:34:27.5224994Z  } 2025-08-15T00:34:27.5225190Z  Catch { 2025-08-15T00:34:27.5225499Z  Write-Output "No leftover $process process, continuing" 2025-08-15T00:34:27.5225879Z  Write-Output $_ 2025-08-15T00:34:27.5226110Z  } 2025-08-15T00:34:27.5226301Z } 2025-08-15T00:34:27.5226482Z  2025-08-15T00:34:27.5226931Z # Try it again https://stackoverflow.com/questions/40585754/powershell-wont-terminate-hung-process 2025-08-15T00:34:27.5227489Z # for hung processes 2025-08-15T00:34:27.5227753Z Foreach ($process In $processes) { 2025-08-15T00:34:27.5228037Z  Try { 2025-08-15T00:34:27.5228418Z  (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process}%'").terminate() 2025-08-15T00:34:27.5228860Z  } 2025-08-15T00:34:27.5229037Z  Catch { 2025-08-15T00:34:27.5229248Z  Write-Output $_ 2025-08-15T00:34:27.5229480Z  } 2025-08-15T00:34:27.5229652Z } 2025-08-15T00:34:27.5229826Z  2025-08-15T00:34:27.5229999Z Try { 2025-08-15T00:34:27.5230236Z  # Print all the processes for debugging 2025-08-15T00:34:27.5230682Z  Wmic Path Win32_Process Get Caption,Processid,Commandline | Format-List 2025-08-15T00:34:27.5231100Z } 2025-08-15T00:34:27.5231273Z Catch { 2025-08-15T00:34:27.5231661Z  # Better to write out whatever exception thrown to help debugging any potential issue 2025-08-15T00:34:27.5232123Z  Write-Output $_ 2025-08-15T00:34:27.5232341Z } 2025-08-15T00:34:27.5247826Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-15T00:34:27.5248279Z env: 2025-08-15T00:34:27.5248467Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:34:27.5248834Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:34:27.5249354Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:34:27.5249812Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:34:27.5250205Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:34:27.5250494Z ##[endgroup] 2025-08-15T00:34:27.8975345Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-15T00:34:27.9023657Z Finished 2025-08-15T00:34:27.9167600Z No leftover python process, continuing 2025-08-15T00:34:27.9616670Z Get-Process : Cannot find a process with the name "python". Verify the process name and call the cmdlet again. 2025-08-15T00:34:27.9617355Z At C:\actions-runner\_work\_temp\72fbdce7-1bb3-4c06-adbe-db934ef74bb4.ps1:9 char:5 2025-08-15T00:34:27.9617950Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-15T00:34:27.9618341Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-15T00:34:27.9618821Z + CategoryInfo : ObjectNotFound: (python:String) [Get-Process], ProcessCommandException 2025-08-15T00:34:27.9619680Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-15T00:34:27.9620260Z 2025-08-15T00:34:27.9632911Z No leftover ninja process, continuing 2025-08-15T00:34:27.9643082Z Get-Process : Cannot find a process with the name "ninja". Verify the process name and call the cmdlet again. 2025-08-15T00:34:27.9643745Z At C:\actions-runner\_work\_temp\72fbdce7-1bb3-4c06-adbe-db934ef74bb4.ps1:9 char:5 2025-08-15T00:34:27.9644296Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-15T00:34:27.9644692Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-15T00:34:27.9645961Z + CategoryInfo : ObjectNotFound: (ninja:String) [Get-Process], ProcessCommandException 2025-08-15T00:34:27.9646783Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-15T00:34:27.9647452Z 2025-08-15T00:34:27.9657918Z No leftover cl process, continuing 2025-08-15T00:34:27.9667507Z Get-Process : Cannot find a process with the name "cl". Verify the process name and call the cmdlet again. 2025-08-15T00:34:27.9668169Z At C:\actions-runner\_work\_temp\72fbdce7-1bb3-4c06-adbe-db934ef74bb4.ps1:9 char:5 2025-08-15T00:34:27.9668725Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-15T00:34:27.9669131Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-15T00:34:27.9669589Z + CategoryInfo : ObjectNotFound: (cl:String) [Get-Process], ProcessCommandException 2025-08-15T00:34:27.9670421Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-15T00:34:27.9671011Z 2025-08-15T00:34:27.9679470Z No leftover nvcc process, continuing 2025-08-15T00:34:27.9689091Z Get-Process : Cannot find a process with the name "nvcc". Verify the process name and call the cmdlet again. 2025-08-15T00:34:27.9689773Z At C:\actions-runner\_work\_temp\72fbdce7-1bb3-4c06-adbe-db934ef74bb4.ps1:9 char:5 2025-08-15T00:34:27.9690333Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-15T00:34:27.9690741Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-15T00:34:27.9691201Z + CategoryInfo : ObjectNotFound: (nvcc:String) [Get-Process], ProcessCommandException 2025-08-15T00:34:27.9692045Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-15T00:34:27.9692629Z 2025-08-15T00:34:27.9700355Z No leftover cmd process, continuing 2025-08-15T00:34:27.9710125Z Get-Process : Cannot find a process with the name "cmd". Verify the process name and call the cmdlet again. 2025-08-15T00:34:27.9710976Z At C:\actions-runner\_work\_temp\72fbdce7-1bb3-4c06-adbe-db934ef74bb4.ps1:9 char:5 2025-08-15T00:34:27.9711656Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-15T00:34:27.9712171Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-15T00:34:27.9712753Z + CategoryInfo : ObjectNotFound: (cmd:String) [Get-Process], ProcessCommandException 2025-08-15T00:34:27.9713732Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-15T00:34:27.9714573Z 2025-08-15T00:34:27.9722083Z No leftover sccache process, continuing 2025-08-15T00:34:27.9731802Z Get-Process : Cannot find a process with the name "sccache". Verify the process name and call the cmdlet again. 2025-08-15T00:34:27.9732531Z At C:\actions-runner\_work\_temp\72fbdce7-1bb3-4c06-adbe-db934ef74bb4.ps1:9 char:5 2025-08-15T00:34:27.9733120Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-15T00:34:27.9733531Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-15T00:34:27.9734012Z + CategoryInfo : ObjectNotFound: (sccache:String) [Get-Process], ProcessCommandException 2025-08-15T00:34:27.9734871Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-15T00:34:27.9735468Z 2025-08-15T00:34:27.9742993Z No leftover git process, continuing 2025-08-15T00:34:27.9752743Z Get-Process : Cannot find a process with the name "git". Verify the process name and call the cmdlet again. 2025-08-15T00:34:27.9753407Z At C:\actions-runner\_work\_temp\72fbdce7-1bb3-4c06-adbe-db934ef74bb4.ps1:9 char:5 2025-08-15T00:34:27.9753986Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-15T00:34:27.9754382Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-15T00:34:27.9754850Z + CategoryInfo : ObjectNotFound: (git:String) [Get-Process], ProcessCommandException 2025-08-15T00:34:27.9755861Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-15T00:34:27.9756463Z 2025-08-15T00:34:28.0231908Z You cannot call a method on a null-valued expression. 2025-08-15T00:34:28.0232601Z At C:\actions-runner\_work\_temp\72fbdce7-1bb3-4c06-adbe-db934ef74bb4.ps1:21 char:5 2025-08-15T00:34:28.0233180Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-15T00:34:28.0233602Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-15T00:34:28.0234022Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-15T00:34:28.0234423Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-15T00:34:28.0234705Z 2025-08-15T00:34:28.0398274Z You cannot call a method on a null-valued expression. 2025-08-15T00:34:28.0398817Z At C:\actions-runner\_work\_temp\72fbdce7-1bb3-4c06-adbe-db934ef74bb4.ps1:21 char:5 2025-08-15T00:34:28.0399414Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-15T00:34:28.0399836Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-15T00:34:28.0400254Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-15T00:34:28.0400662Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-15T00:34:28.0400951Z 2025-08-15T00:34:28.0556413Z You cannot call a method on a null-valued expression. 2025-08-15T00:34:28.0556950Z At C:\actions-runner\_work\_temp\72fbdce7-1bb3-4c06-adbe-db934ef74bb4.ps1:21 char:5 2025-08-15T00:34:28.0557534Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-15T00:34:28.0557963Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-15T00:34:28.0558361Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-15T00:34:28.0558763Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-15T00:34:28.0559044Z 2025-08-15T00:34:28.0757666Z You cannot call a method on a null-valued expression. 2025-08-15T00:34:28.0758193Z At C:\actions-runner\_work\_temp\72fbdce7-1bb3-4c06-adbe-db934ef74bb4.ps1:21 char:5 2025-08-15T00:34:28.0758770Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-15T00:34:28.0759204Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-15T00:34:28.0759609Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-15T00:34:28.0760010Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-15T00:34:28.0760466Z 2025-08-15T00:34:28.0913363Z You cannot call a method on a null-valued expression. 2025-08-15T00:34:28.0913887Z At C:\actions-runner\_work\_temp\72fbdce7-1bb3-4c06-adbe-db934ef74bb4.ps1:21 char:5 2025-08-15T00:34:28.0914463Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-15T00:34:28.0914897Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-15T00:34:28.0915313Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-15T00:34:28.0915718Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-15T00:34:28.0916007Z 2025-08-15T00:34:28.1082572Z You cannot call a method on a null-valued expression. 2025-08-15T00:34:28.1083194Z At C:\actions-runner\_work\_temp\72fbdce7-1bb3-4c06-adbe-db934ef74bb4.ps1:21 char:5 2025-08-15T00:34:28.1083791Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-15T00:34:28.1084272Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-15T00:34:28.1084821Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-15T00:34:28.1085319Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-15T00:34:28.1085702Z 2025-08-15T00:34:28.1249733Z You cannot call a method on a null-valued expression. 2025-08-15T00:34:28.1250250Z At C:\actions-runner\_work\_temp\72fbdce7-1bb3-4c06-adbe-db934ef74bb4.ps1:21 char:5 2025-08-15T00:34:28.1251050Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-15T00:34:28.1251493Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-15T00:34:28.1251894Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-15T00:34:28.1252372Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-15T00:34:28.1252660Z 2025-08-15T00:34:28.2418657Z Caption CommandLine ProcessId 2025-08-15T00:34:28.2419174Z 2025-08-15T00:34:28.2419502Z System Idle Process 0 2025-08-15T00:34:28.2419914Z 2025-08-15T00:34:28.2420179Z System 4 2025-08-15T00:34:28.2420548Z 2025-08-15T00:34:28.2420868Z Registry 168 2025-08-15T00:34:28.2421234Z 2025-08-15T00:34:28.2422059Z smss.exe 408 2025-08-15T00:34:28.2423642Z 2025-08-15T00:34:28.2423946Z csrss.exe 524 2025-08-15T00:34:28.2424315Z 2025-08-15T00:34:28.2424593Z csrss.exe 600 2025-08-15T00:34:28.2424954Z 2025-08-15T00:34:28.2426121Z wininit.exe 652 2025-08-15T00:34:28.2426587Z 2025-08-15T00:34:28.2426937Z winlogon.exe winlogon.exe 672 2025-08-15T00:34:28.2427361Z 2025-08-15T00:34:28.2427662Z services.exe 744 2025-08-15T00:34:28.2428041Z 2025-08-15T00:34:28.2429309Z lsass.exe C:\Windows\system32\lsass.exe 764 2025-08-15T00:34:28.2429814Z 2025-08-15T00:34:28.2430414Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s PlugPlay 892 2025-08-15T00:34:28.2431179Z 2025-08-15T00:34:28.2432362Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p 916 2025-08-15T00:34:28.2432897Z 2025-08-15T00:34:28.2433338Z fontdrvhost.exe "fontdrvhost.exe" 940 2025-08-15T00:34:28.2433790Z 2025-08-15T00:34:28.2434681Z fontdrvhost.exe "fontdrvhost.exe" 944 2025-08-15T00:34:28.2435183Z 2025-08-15T00:34:28.2435956Z svchost.exe C:\Windows\system32\svchost.exe -k RPCSS -p 136 2025-08-15T00:34:28.2436528Z 2025-08-15T00:34:28.2437651Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s LSM 460 2025-08-15T00:34:28.2438193Z 2025-08-15T00:34:28.2438675Z svchost.exe C:\Windows\System32\svchost.exe -k termsvcs -s TermService 472 2025-08-15T00:34:28.2439249Z 2025-08-15T00:34:28.2439895Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService 1116 2025-08-15T00:34:28.2440609Z 2025-08-15T00:34:28.2440955Z dwm.exe "dwm.exe" 1200 2025-08-15T00:34:28.2441389Z 2025-08-15T00:34:28.2442321Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s EventLog 1248 2025-08-15T00:34:28.2442988Z 2025-08-15T00:34:28.2443441Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s gpsvc 1336 2025-08-15T00:34:28.2443973Z 2025-08-15T00:34:28.2444509Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s nsi 1344 2025-08-15T00:34:28.2445099Z 2025-08-15T00:34:28.2445640Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s Dhcp 1384 2025-08-15T00:34:28.2446348Z 2025-08-15T00:34:28.2446881Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s NlaSvc 1464 2025-08-15T00:34:28.2447460Z 2025-08-15T00:34:28.2449183Z NVDisplay.Container.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\Display.NvContainer\NVDisplay.Container.exe -s NVDisplay.ContainerLocalSystem -f C:\ProgramData\NVIDIA\NVDisplay.ContainerLocalSystem.log -l 3 -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\Display.NvContainer\plugins\LocalSystem -r -p 30000 -cfg NVDisplay.ContainerLocalSystem\LocalSystem /ert 1488 2025-08-15T00:34:28.2451007Z 2025-08-15T00:34:28.2451465Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Schedule 1508 2025-08-15T00:34:28.2452075Z 2025-08-15T00:34:28.2452602Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s netprofm 1596 2025-08-15T00:34:28.2453217Z 2025-08-15T00:34:28.2453889Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s TimeBrokerSvc 1636 2025-08-15T00:34:28.2454581Z 2025-08-15T00:34:28.2455028Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s Themes 1732 2025-08-15T00:34:28.2455573Z 2025-08-15T00:34:28.2456089Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s ProfSvc 1740 2025-08-15T00:34:28.2457019Z 2025-08-15T00:34:28.2457531Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s EventSystem 1748 2025-08-15T00:34:28.2458177Z 2025-08-15T00:34:28.2458681Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s SENS 1852 2025-08-15T00:34:28.2459212Z 2025-08-15T00:34:28.2459724Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s Dnscache 1900 2025-08-15T00:34:28.2460440Z 2025-08-15T00:34:28.2460981Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p 1908 2025-08-15T00:34:28.2461596Z 2025-08-15T00:34:28.2462100Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s ShellHWDetection 1976 2025-08-15T00:34:28.2462741Z 2025-08-15T00:34:28.2463231Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s FontCache 2044 2025-08-15T00:34:28.2463865Z 2025-08-15T00:34:28.2464440Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetworkFirewall -p 1720 2025-08-15T00:34:28.2465561Z 2025-08-15T00:34:28.2466193Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s WinHttpAutoProxySvc 2068 2025-08-15T00:34:28.2466954Z 2025-08-15T00:34:28.2467430Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UserManager 2196 2025-08-15T00:34:28.2467998Z 2025-08-15T00:34:28.2468521Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s LanmanWorkstation 2216 2025-08-15T00:34:28.2469149Z 2025-08-15T00:34:28.2469765Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s UmRdpService 2268 2025-08-15T00:34:28.2470504Z 2025-08-15T00:34:28.2470973Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -s CertPropSvc 2436 2025-08-15T00:34:28.2471584Z 2025-08-15T00:34:28.2472043Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s SessionEnv 2472 2025-08-15T00:34:28.2472598Z 2025-08-15T00:34:28.2472985Z spoolsv.exe C:\Windows\System32\spoolsv.exe 2668 2025-08-15T00:34:28.2473457Z 2025-08-15T00:34:28.2473974Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Winmgmt 2744 2025-08-15T00:34:28.2474521Z 2025-08-15T00:34:28.2475046Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s CryptSvc 2752 2025-08-15T00:34:28.2475655Z 2025-08-15T00:34:28.2476284Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s SysMain 2760 2025-08-15T00:34:28.2476927Z 2025-08-15T00:34:28.2477417Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork -p 2768 2025-08-15T00:34:28.2477996Z 2025-08-15T00:34:28.2478543Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s TrkWks 2784 2025-08-15T00:34:28.2479196Z 2025-08-15T00:34:28.2479655Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s WpnService 2792 2025-08-15T00:34:28.2480253Z 2025-08-15T00:34:28.2480723Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s WinRM 2800 2025-08-15T00:34:28.2481294Z 2025-08-15T00:34:28.2481817Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -s W32Time 2808 2025-08-15T00:34:28.2482496Z 2025-08-15T00:34:28.2483184Z IpOverUsbSvc.exe "C:\Program Files (x86)\Common Files\Microsoft Shared\Phone Tools\CoreCon\11.0\bin\IpOverUsbSvc.exe" 3040 2025-08-15T00:34:28.2483922Z 2025-08-15T00:34:28.2484312Z sshd.exe C:\Windows\System32\OpenSSH\sshd.exe 3056 2025-08-15T00:34:28.2484790Z 2025-08-15T00:34:28.2485258Z svchost.exe C:\Windows\System32\svchost.exe -k smbsvcs -s LanmanServer 2964 2025-08-15T00:34:28.2485838Z 2025-08-15T00:34:28.2486460Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe 3092 2025-08-15T00:34:28.2487176Z 2025-08-15T00:34:28.2487738Z svchost.exe C:\Windows\System32\svchost.exe -k NetSvcs -p -s iphlpsvc 3120 2025-08-15T00:34:28.2488283Z 2025-08-15T00:34:28.2488878Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted -p -s PolicyAgent 3552 2025-08-15T00:34:28.2489588Z 2025-08-15T00:34:28.2490151Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s lmhosts 1944 2025-08-15T00:34:28.2490801Z 2025-08-15T00:34:28.2491292Z LogonUI.exe "LogonUI.exe" /flags:0x2 /state0:0xa3a77055 /state1:0x41c64e6d 2736 2025-08-15T00:34:28.2491857Z 2025-08-15T00:34:28.2493650Z NVDisplay.Container.exe "C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\Display.NvContainer\NVDisplay.Container.exe" -f %ProgramData%\NVIDIA\DisplaySessionContainer%d.log -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\Display.NvContainer\plugins\Session -r -l 3 -p 30000 -cfg NVDisplay.ContainerLocalSystem\Session /ert -c 1860 2025-08-15T00:34:28.2495389Z 2025-08-15T00:34:28.2496072Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe -spawnprovider 452 2025-08-15T00:34:28.2496859Z 2025-08-15T00:34:28.2497207Z vds.exe C:\Windows\System32\vds.exe 3760 2025-08-15T00:34:28.2497656Z 2025-08-15T00:34:28.2498160Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNoNetwork -p -s DPS 1924 2025-08-15T00:34:28.2498824Z 2025-08-15T00:34:28.2499240Z msdtc.exe C:\Windows\System32\msdtc.exe 3864 2025-08-15T00:34:28.2499740Z 2025-08-15T00:34:28.2500288Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s UALSVC 3300 2025-08-15T00:34:28.2500931Z 2025-08-15T00:34:28.2501379Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UsoSvc 1332 2025-08-15T00:34:28.2501930Z 2025-08-15T00:34:28.2502454Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s CDPSvc 3816 2025-08-15T00:34:28.2503015Z 2025-08-15T00:34:28.2503576Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s PcaSvc 4532 2025-08-15T00:34:28.2504255Z 2025-08-15T00:34:28.2504866Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s LicenseManager 4648 2025-08-15T00:34:28.2505458Z 2025-08-15T00:34:28.2506163Z start-amazon-cloudwatch-agent.exe "C:\Program Files\Amazon\AmazonCloudWatchAgent\start-amazon-cloudwatch-agent.exe" 3904 2025-08-15T00:34:28.2506954Z 2025-08-15T00:34:28.2508470Z 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 4956 2025-08-15T00:34:28.2510120Z 2025-08-15T00:34:28.2510565Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4960 2025-08-15T00:34:28.2511081Z 2025-08-15T00:34:28.2511600Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p 4468 2025-08-15T00:34:28.2512216Z 2025-08-15T00:34:28.2512710Z svchost.exe C:\Windows\system32\svchost.exe -k appmodel -p -s StateRepository 1324 2025-08-15T00:34:28.2513299Z 2025-08-15T00:34:28.2513939Z MicrosoftEdgeUpdate.exe "C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe" /c 3408 2025-08-15T00:34:28.2514653Z 2025-08-15T00:34:28.2515042Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 2292 2025-08-15T00:34:28.2515528Z 2025-08-15T00:34:28.2516056Z Runner.Listener.exe "C:\actions-runner\\bin\Runner.Listener.exe" run 4976 2025-08-15T00:34:28.2516679Z 2025-08-15T00:34:28.2517153Z amazon-ssm-agent.exe "C:\Program Files\Amazon\SSM\amazon-ssm-agent.exe" 4184 2025-08-15T00:34:28.2517727Z 2025-08-15T00:34:28.2518203Z ssm-agent-worker.exe "C:\Program Files\Amazon\SSM\ssm-agent-worker.exe" 4508 2025-08-15T00:34:28.2518781Z 2025-08-15T00:34:28.2519172Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4504 2025-08-15T00:34:28.2519693Z 2025-08-15T00:34:28.2520207Z Runner.Worker.exe "C:\actions-runner\bin\Runner.Worker.exe" spawnclient 2172 1388 3920 2025-08-15T00:34:28.2520803Z 2025-08-15T00:34:28.2521199Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 3936 2025-08-15T00:34:28.2521734Z 2025-08-15T00:34:28.2522459Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s DsSvc 1680 2025-08-15T00:34:28.2523128Z 2025-08-15T00:34:28.2523540Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 2080 2025-08-15T00:34:28.2524040Z 2025-08-15T00:34:28.2524832Z powershell.exe "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE" -command ". 'C:\actions-runner\_work\_temp\72fbdce7-1bb3-4c06-adbe-db934ef74bb4.ps1'" 4772 2025-08-15T00:34:28.2525706Z 2025-08-15T00:34:28.2526271Z WMIC.exe "C:\Windows\System32\Wbem\WMIC.exe" Path Win32_Process Get Caption,Processid,Commandline 5400 2025-08-15T00:34:28.2526939Z 2025-08-15T00:34:28.2526948Z 2025-08-15T00:34:28.2526951Z 2025-08-15T00:34:28.2794040Z ##[group]Run nick-fields/retry@v3.0.0 2025-08-15T00:34:28.2794316Z with: 2025-08-15T00:34:28.2794481Z shell: bash 2025-08-15T00:34:28.2794678Z timeout_minutes: 5 2025-08-15T00:34:28.2794879Z max_attempts: 3 2025-08-15T00:34:28.2795089Z retry_wait_seconds: 90 2025-08-15T00:34:28.2796048Z 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-15T00:34:28.2797124Z polling_interval_seconds: 1 2025-08-15T00:34:28.2797376Z warning_on_retry: true 2025-08-15T00:34:28.2797598Z continue_on_error: false 2025-08-15T00:34:28.2797827Z env: 2025-08-15T00:34:28.2798006Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:34:28.2798366Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:34:28.2798868Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:34:28.2799334Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:34:28.2799732Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:34:28.2800018Z EXTRA_DELETE_DIR: 2025-08-15T00:34:28.2800227Z ##[endgroup] 2025-08-15T00:34:28.3981950Z + '[' -n '' ']' 2025-08-15T00:34:28.4007230Z + 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-lf.windows.4xlarge.nonephemeral_48128743919.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-lf.windows.4xlarge.nonephemeral_48128743919.zip ./test-reports ./test-reports-test-default-1-3-lf.windows.4xlarge.nonephemeral_48128743919.zip ./third_party ./tools ./torch ./torchgen ./ubsan.supp ./ufunc_defs.bzl ./usage_log.txt ./version.txt 2025-08-15T00:34:52.4849707Z Command completed after 1 attempt(s). 2025-08-15T00:34:52.5003266Z ##[group]Run handle C:\actions-runner\_work\ 2025-08-15T00:34:52.5003626Z handle C:\actions-runner\_work\ 2025-08-15T00:34:52.5018801Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-15T00:34:52.5019247Z env: 2025-08-15T00:34:52.5019432Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:34:52.5019813Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:34:52.5020319Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:34:52.5020810Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:34:52.5021200Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:34:52.5021481Z ##[endgroup] 2025-08-15T00:34:52.8750711Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-15T00:34:52.8820762Z Finished 2025-08-15T00:34:52.9850896Z 2025-08-15T00:34:52.9851323Z Nthandle v5.0 - Handle viewer 2025-08-15T00:34:52.9851654Z Copyright (C) 1997-2022 Mark Russinovich 2025-08-15T00:34:52.9851959Z Sysinternals - www.sysinternals.com 2025-08-15T00:34:52.9852170Z 2025-08-15T00:34:53.0154260Z powershell.exe pid: 5840 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:34:53.0154855Z handle.exe pid: 968 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:34:53.0155383Z handle.exe pid: 4708 type: File 94: C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:34:53.0155958Z handle64.exe pid: 5264 type: File 50: C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:34:53.0536180Z Post job cleanup. 2025-08-15T00:34:53.0799833Z Post job cleanup. 2025-08-15T00:34:53.3194501Z [command]"C:\Program Files\Git\cmd\git.exe" version 2025-08-15T00:34:53.3441733Z git version 2.49.0.windows.1 2025-08-15T00:34:53.3499636Z Copying 'C:\Users\runneruser\.gitconfig' to 'C:\actions-runner\_work\_temp\dfa5e6b8-1718-457e-b66a-5b6c2b9a5d85\.gitconfig' 2025-08-15T00:34:53.3517324Z Temporarily overriding HOME='C:\actions-runner\_work\_temp\dfa5e6b8-1718-457e-b66a-5b6c2b9a5d85' before making global git config changes 2025-08-15T00:34:53.3518406Z Adding repository directory to the temporary git global config as a safe directory 2025-08-15T00:34:53.3528656Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:34:53.3820937Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand 2025-08-15T00:34:53.4069548Z [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-15T00:34:53.8599516Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-08-15T00:34:53.8810334Z http.https://github.com/.extraheader 2025-08-15T00:34:53.8854458Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all http.https://github.com/.extraheader 2025-08-15T00:34:53.9114428Z [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-15T00:34:54.2989390Z A job completed hook has been configured by the self-hosted runner administrator 2025-08-15T00:34:54.3039117Z ##[group]Run 'C:\actions-runner\jobcompleted.ps1' 2025-08-15T00:34:54.3057655Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-15T00:34:54.3058109Z ##[endgroup] 2025-08-15T00:34:54.6904069Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-15T00:34:54.6949907Z Finished 2025-08-15T00:34:56.2140501Z Cleaning up orphan processes